From 06b31937b911e02d73d8d0bfdc869cab4f1456b1 Mon Sep 17 00:00:00 2001 From: TShapinsky Date: Fri, 29 Dec 2023 14:26:50 -0700 Subject: [PATCH] add model to tests --- .../measures/alfalfa_vars/measure.rb | 92 + .../measures/alfalfa_vars/measure.xml | 54 + .../api/models/small_office/small_office.osm | 8587 ++++++++++++++++ ...ayton-Wright.Patterson.AFB.745700_TMY3.epw | 8768 +++++++++++++++++ tests/api/models/small_office/workflow.osw | 19 + 5 files changed, 17520 insertions(+) create mode 100644 tests/api/models/small_office/measures/alfalfa_vars/measure.rb create mode 100644 tests/api/models/small_office/measures/alfalfa_vars/measure.xml create mode 100644 tests/api/models/small_office/small_office.osm create mode 100644 tests/api/models/small_office/weather/USA_OH_Dayton-Wright.Patterson.AFB.745700_TMY3.epw create mode 100644 tests/api/models/small_office/workflow.osw diff --git a/tests/api/models/small_office/measures/alfalfa_vars/measure.rb b/tests/api/models/small_office/measures/alfalfa_vars/measure.rb new file mode 100644 index 00000000..2c00c795 --- /dev/null +++ b/tests/api/models/small_office/measures/alfalfa_vars/measure.rb @@ -0,0 +1,92 @@ +# insert your copyright here + +# see the URL below for information on how to write OpenStudio measures +# http://nrel.github.io/OpenStudio-user-documentation/reference/measure_writing_guide/ + +# start the measure +class AlfalfaVariables < OpenStudio::Measure::ModelMeasure + # human readable name + def name + return 'AlfalfaVariables' + end + + # human readable description + def description + return 'Add custom variables for Alfalfa' + end + + # human readable description of modeling approach + def modeler_description + return 'Add EMS global variables required by Alfalfa' + end + + # define the arguments that the user will input + def arguments(model) + args = OpenStudio::Measure::OSArgumentVector.new + return args + end + + def create_input(model, name, freq) + # The purpose of this function is to create an Alfalfa input that is accessible via python plugins + + global = OpenStudio::Model::EnergyManagementSystemGlobalVariable.new(model, name) + global.setExportToBCVTB(true) + + # The global variable's value must be sent to output an variable so that python programs can read it + # don't be mistaken, An OuputVariable object is created, but this is "input" to the simulation, from Alfalfa clients + global_ems_output = OpenStudio::Model::EnergyManagementSystemOutputVariable.new(model, global) + global_ems_output.setName(name + "_EMS_Value") + global_ems_output.setUpdateFrequency("SystemTimestep") + + # Request the custom ems output var creaed in the previous step + global_output = OpenStudio::Model::OutputVariable.new(global_ems_output.nameString(), model) + global_output.setName(name + "_Value") + global_output.setReportingFrequency(freq) + global_output.setKeyValue("EMS") + # Setting exportToBCVTB to true is optional, and will result in the output variable showing up in the Alfalfa api, + # this might be useful for confirmation of the input + global_output.setExportToBCVTB(true) + + # repeat the previous steps for an "Enable" input + # This value will be 1 (instead of 0) anytime a client writes to the input via the Alfalfa api + global_enable = OpenStudio::Model::EnergyManagementSystemGlobalVariable.new(model, name + "_Enable") + global_enable.setExportToBCVTB(true) + + global_enable_ems_output = OpenStudio::Model::EnergyManagementSystemOutputVariable.new(model, global_enable) + global_enable_ems_output.setName(name + "_Enable_EMS_Value") + global_enable_ems_output.setUpdateFrequency("SystemTimestep") + + global_enable_output = OpenStudio::Model::OutputVariable.new(global_enable_ems_output.nameString(), model) + global_enable_output.setName(name + "_Enable_Value") + global_enable_output.setReportingFrequency(freq) + global_enable_output.setKeyValue("EMS") + global_enable_output.setExportToBCVTB(true) + end + + def create_output(model, var, key, name, freq) + new_var = OpenStudio::Model::OutputVariable.new(var, model) + new_var.setName(name) + new_var.setReportingFrequency(freq) + new_var.setKeyValue(key) + new_var.setExportToBCVTB(true) + end + + # define what happens when the measure is run + def run(model, runner, user_arguments) + super(model, runner, user_arguments) + + # Alfalfa inputs + # These can be set through the Alfalfa API, they will be available as OutputVariables + # in the simulation. Use them as you will + # Also see comments on the create_input method + create_input(model, "Test_Point_1", "Timestep") + + # other OutputVariables might be custom python defined output variables, + # you should still be able to request them here, and as long as exportToBCVTB is true they will be available via Alfalfa + + return true + end +end + +# register the measure to be used by the application +AlfalfaVariables.new.registerWithApplication diff --git a/tests/api/models/small_office/measures/alfalfa_vars/measure.xml b/tests/api/models/small_office/measures/alfalfa_vars/measure.xml new file mode 100644 index 00000000..21a6a2ad --- /dev/null +++ b/tests/api/models/small_office/measures/alfalfa_vars/measure.xml @@ -0,0 +1,54 @@ + + + 3.0 + alfalfa_variables + 86d51823-68a5-478a-b60b-60891c3c9b5f + 5c94ef46-d8e9-4ae9-864e-d884aba51509 + 20201216T214230Z + 356BE47F + AlfalfaVariables + AlfalfaVariables + Add custom variables for Alfalfa + Add EMS global variables required by Alfalfa + + + + + HVAC.HVAC Controls + + + + Measure Type + ModelMeasure + string + + + Intended Software Tool + Apply Measure Now + string + + + Intended Software Tool + OpenStudio Application + string + + + Intended Software Tool + Parametric Analysis Tool + string + + + + + + OpenStudio + 3.1.0 + 3.1.0 + + measure.rb + rb + script + A9E1EEF2 + + + diff --git a/tests/api/models/small_office/small_office.osm b/tests/api/models/small_office/small_office.osm new file mode 100644 index 00000000..f7411840 --- /dev/null +++ b/tests/api/models/small_office/small_office.osm @@ -0,0 +1,8587 @@ + +OS:Version, + {3e03e10b-7442-479f-89e4-113fab36371e}, !- Handle + 2.8.1; !- Version Identifier + +OS:Site, + {e4e0cf83-aa67-462b-ac86-dd69d24de0d1}, !- Handle + Chicago Ohare Intl Ap, !- Name + 41.98, !- Latitude {deg} + -87.92, !- Longitude {deg} + -6, !- Time Zone {hr} + 201, !- Elevation {m} + City; !- Terrain + +OS:SimulationControl, + {fe5b5f3c-f637-4fd1-a2b3-f4d09456dccb}, !- Handle + Yes, !- Do Zone Sizing Calculation + Yes, !- Do System Sizing Calculation + Yes, !- Do Plant Sizing Calculation + No, !- Run Simulation for Sizing Periods + Yes, !- Run Simulation for Weather File Run Periods + 0.04, !- Loads Convergence Tolerance Value + 0.2, !- Temperature Convergence Tolerance Value {deltaC} + FullInteriorAndExterior, !- Solar Distribution + 25, !- Maximum Number of Warmup Days + 6; !- Minimum Number of Warmup Days + +OS:Surface, + {67ca62ce-e572-4957-8e6a-efb74825f170}, !- Handle + Perimeter_ZN_1_wall_south, !- Name + Wall, !- Surface Type + , !- Construction Name + {72459874-7e2c-4ecd-ae58-b2d96c368b31}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 0, 3.05, !- X,Y,Z Vertex 1 {m} + 0, 0, 0, !- X,Y,Z Vertex 2 {m} + 27.69, 0, 0, !- X,Y,Z Vertex 3 {m} + 27.69, 0, 3.05; !- X,Y,Z Vertex 4 {m} + +OS:Connection, + {d367abd9-ef96-4df2-a4a5-60b4b9f5779f}, !- Handle + {fca4d4d3-2721-42a9-a76c-f4b74826d7aa}, !- Name + , !- Source Object + 11, !- Outlet Port + , !- Target Object + 2; !- Inlet Port + +OS:Space, + {72459874-7e2c-4ecd-ae58-b2d96c368b31}, !- Handle + Perimeter_ZN_1, !- Name + {629a271e-7460-4c51-87d3-d2d3125cfac1}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + 0, !- Direction of Relative North {deg} + 0, !- X Origin {m} + 0, !- Y Origin {m} + 0, !- Z Origin {m} + {2edc3034-10d9-48ff-9f1e-ff89d18bbb3f}, !- Building Story Name + {eccf2622-9374-4edf-8caf-1981d96b5c12}, !- Thermal Zone Name + Yes, !- Part of Total Floor Area + ; !- Design Specification Outdoor Air Object Name + +OS:SubSurface, + {5cf70f46-9488-45b0-b286-2fd3b9defdcb}, !- Handle + Perimeter_ZN_1_wall_south_Window_1, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {67ca62ce-e572-4957-8e6a-efb74825f170}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Shading Control Name + , !- Frame and Divider Name + 1, !- Multiplier + , !- Number of Vertices + 1.39, 0, 2.424, !- X,Y,Z Vertex 1 {m} + 1.39, 0, 0.9, !- X,Y,Z Vertex 2 {m} + 3.22, 0, 0.9, !- X,Y,Z Vertex 3 {m} + 3.22, 0, 2.424; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {f3b8b73c-8caf-40ab-b966-4fbde2e2f57a}, !- Handle + Attic_roof_east, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {fb08bb0a-69e7-4942-8807-550e21855286}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 18.46, 9.23, 6.33, !- X,Y,Z Vertex 1 {m} + 28.29, -0.6, 3.05, !- X,Y,Z Vertex 2 {m} + 28.29, 19.06, 3.05; !- X,Y,Z Vertex 3 {m} + +OS:Connection, + {b76c9257-2ba1-41ca-b928-7e4cece1fb38}, !- Handle + {8ddc6125-8508-4ec6-bdad-ad6cfff54633}, !- Name + , !- Source Object + 11, !- Outlet Port + , !- Target Object + 2; !- Inlet Port + +OS:Space, + {fb08bb0a-69e7-4942-8807-550e21855286}, !- Handle + Attic, !- Name + {a8affc2d-d2e8-44c9-85f3-e6d076201869}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + 0, !- Direction of Relative North {deg} + 0, !- X Origin {m} + 0, !- Y Origin {m} + 0, !- Z Origin {m} + , !- Building Story Name + {07da4a00-d5c2-41b4-9f11-98b105ebba18}, !- Thermal Zone Name + No; !- Part of Total Floor Area + +OS:Surface, + {14eb925b-51a2-48c3-b571-9be87c158227}, !- Handle + Attic_roof_north, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {fb08bb0a-69e7-4942-8807-550e21855286}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 18.46, 9.23, 6.33, !- X,Y,Z Vertex 1 {m} + 28.29, 19.06, 3.05, !- X,Y,Z Vertex 2 {m} + -0.6, 19.06, 3.05, !- X,Y,Z Vertex 3 {m} + 9.23, 9.23, 6.33; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {de9219d4-cc0d-45c1-b670-26d576f7fec4}, !- Handle + Perimeter_ZN_2_ceiling, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {0ebdaea7-c6cb-452f-b121-7bbfcb1d95b8}, !- Space Name + Surface, !- Outside Boundary Condition + {5ba0e030-ad8e-4939-9022-603ea15873fd}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 27.69, 0, 3.05, !- X,Y,Z Vertex 1 {m} + 27.69, 18.46, 3.05, !- X,Y,Z Vertex 2 {m} + 22.69, 13.46, 3.05, !- X,Y,Z Vertex 3 {m} + 22.69, 5, 3.05; !- X,Y,Z Vertex 4 {m} + +OS:Connection, + {3e98f27d-1e5c-47bf-b1dd-320cc71dc280}, !- Handle + {14e56078-538e-4195-bf4d-564485d8013c}, !- Name + , !- Source Object + 11, !- Outlet Port + , !- Target Object + 2; !- Inlet Port + +OS:Space, + {0ebdaea7-c6cb-452f-b121-7bbfcb1d95b8}, !- Handle + Perimeter_ZN_2, !- Name + {629a271e-7460-4c51-87d3-d2d3125cfac1}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + 0, !- Direction of Relative North {deg} + 0, !- X Origin {m} + 0, !- Y Origin {m} + 0, !- Z Origin {m} + {2edc3034-10d9-48ff-9f1e-ff89d18bbb3f}, !- Building Story Name + {4e0efcce-e00c-469a-b646-c4dbfeb628cd}, !- Thermal Zone Name + Yes, !- Part of Total Floor Area + ; !- Design Specification Outdoor Air Object Name + +OS:Surface, + {e6e6213c-27e3-4780-914d-aab86a026932}, !- Handle + Perimeter_ZN_2_wall_north, !- Name + Wall, !- Surface Type + , !- Construction Name + {0ebdaea7-c6cb-452f-b121-7bbfcb1d95b8}, !- Space Name + Surface, !- Outside Boundary Condition + {294e6a4a-4754-4ea0-b450-586c284d51ae}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 27.69, 18.46, 3.05, !- X,Y,Z Vertex 1 {m} + 27.69, 18.46, 0, !- X,Y,Z Vertex 2 {m} + 22.69, 13.46, 0, !- X,Y,Z Vertex 3 {m} + 22.69, 13.46, 3.05; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {5ad6d532-e8de-4604-a79c-c900df2aa730}, !- Handle + Perimeter_ZN_3_wall_south, !- Name + Wall, !- Surface Type + , !- Construction Name + {bb97cae6-ab6e-4ca9-a862-a3e532ee5e5d}, !- Space Name + Surface, !- Outside Boundary Condition + {7f4227ad-335c-4683-9a99-6c804048153c}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 5, 13.46, 3.05, !- X,Y,Z Vertex 1 {m} + 5, 13.46, 0, !- X,Y,Z Vertex 2 {m} + 22.69, 13.46, 0, !- X,Y,Z Vertex 3 {m} + 22.69, 13.46, 3.05; !- X,Y,Z Vertex 4 {m} + +OS:Connection, + {4d957a31-f699-4eae-93e7-35cb0402bdc3}, !- Handle + {556b787e-14ea-444a-8f28-da77ff85692d}, !- Name + , !- Source Object + 11, !- Outlet Port + , !- Target Object + 2; !- Inlet Port + +OS:Space, + {bb97cae6-ab6e-4ca9-a862-a3e532ee5e5d}, !- Handle + Perimeter_ZN_3, !- Name + {629a271e-7460-4c51-87d3-d2d3125cfac1}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + 0, !- Direction of Relative North {deg} + 0, !- X Origin {m} + 0, !- Y Origin {m} + 0, !- Z Origin {m} + {2edc3034-10d9-48ff-9f1e-ff89d18bbb3f}, !- Building Story Name + {afcd34b0-00fa-40af-a2e1-995004075d3f}, !- Thermal Zone Name + Yes; !- Part of Total Floor Area + +OS:Connection, + {99cfc414-45c1-4be7-8757-3ae36bc2af42}, !- Handle + {96671398-0007-4bc0-8470-144aceb20b70}, !- Name + , !- Source Object + 11, !- Outlet Port + , !- Target Object + 2; !- Inlet Port + +OS:Space, + {f9fb4430-2ed2-4cfb-bf10-1172712402a2}, !- Handle + Perimeter_ZN_4, !- Name + {629a271e-7460-4c51-87d3-d2d3125cfac1}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + 0, !- Direction of Relative North {deg} + 0, !- X Origin {m} + 0, !- Y Origin {m} + 0, !- Z Origin {m} + {2edc3034-10d9-48ff-9f1e-ff89d18bbb3f}, !- Building Story Name + {5a3afc2e-d12e-4ab3-b952-581dd46d9df3}, !- Thermal Zone Name + Yes; !- Part of Total Floor Area + +OS:Surface, + {76eef8b9-8d45-4e4a-a6e8-a678fd658045}, !- Handle + Perimeter_ZN_2_wall_west, !- Name + Wall, !- Surface Type + , !- Construction Name + {0ebdaea7-c6cb-452f-b121-7bbfcb1d95b8}, !- Space Name + Surface, !- Outside Boundary Condition + {72a1b6a0-5c0f-4a8b-a8d5-81bef0ff1769}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 22.69, 13.46, 3.05, !- X,Y,Z Vertex 1 {m} + 22.69, 13.46, 0, !- X,Y,Z Vertex 2 {m} + 22.69, 5, 0, !- X,Y,Z Vertex 3 {m} + 22.69, 5, 3.05; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {9f3c4b24-4e8e-4b4e-932c-0c0aeb12edab}, !- Handle + Perimeter_ZN_4_ceiling, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {f9fb4430-2ed2-4cfb-bf10-1172712402a2}, !- Space Name + Surface, !- Outside Boundary Condition + {b890eeac-5336-4ed2-9467-56785822dd86}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 0, 3.05, !- X,Y,Z Vertex 1 {m} + 5, 5, 3.05, !- X,Y,Z Vertex 2 {m} + 5, 13.46, 3.05, !- X,Y,Z Vertex 3 {m} + 0, 18.46, 3.05; !- X,Y,Z Vertex 4 {m} + +OS:Output:Meter, + {abc5d571-df7f-47b1-bf8b-892a6dadede3}, !- Handle + Gas:Facility, !- Name + Hourly, !- Reporting Frequency + True, !- Meter File Only + False; !- Cumulative + +OS:Surface, + {feb7c449-5351-48a2-865e-0e36c2c4fc6f}, !- Handle + Core_ZN_ceiling, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {32844cd3-cab3-4870-bbb6-6c79a28481b7}, !- Space Name + Surface, !- Outside Boundary Condition + {30049214-f475-466f-8308-e6d33248de87}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 22.69, 5, 3.05, !- X,Y,Z Vertex 1 {m} + 22.69, 13.46, 3.05, !- X,Y,Z Vertex 2 {m} + 5, 13.46, 3.05, !- X,Y,Z Vertex 3 {m} + 5, 5, 3.05; !- X,Y,Z Vertex 4 {m} + +OS:Connection, + {3cc89c32-b209-45a8-aee8-40997f52820c}, !- Handle + {3266c372-df06-4762-8ade-3366935e0120}, !- Name + , !- Source Object + 11, !- Outlet Port + , !- Target Object + 2; !- Inlet Port + +OS:Space, + {32844cd3-cab3-4870-bbb6-6c79a28481b7}, !- Handle + Core_ZN, !- Name + {629a271e-7460-4c51-87d3-d2d3125cfac1}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + 0, !- Direction of Relative North {deg} + 0, !- X Origin {m} + 0, !- Y Origin {m} + 0, !- Z Origin {m} + {2edc3034-10d9-48ff-9f1e-ff89d18bbb3f}, !- Building Story Name + {28915964-e2c4-4332-a684-5091ad72d321}, !- Thermal Zone Name + Yes; !- Part of Total Floor Area + +OS:Surface, + {f6aedc93-26f5-4756-bb28-f7b245139570}, !- Handle + Attic_soffit_north, !- Name + Floor, !- Surface Type + , !- Construction Name + {fb08bb0a-69e7-4942-8807-550e21855286}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 28.29, 19.06, 3.05, !- X,Y,Z Vertex 1 {m} + 27.69, 18.46, 3.05, !- X,Y,Z Vertex 2 {m} + 0, 18.46, 3.05, !- X,Y,Z Vertex 3 {m} + -0.6, 19.06, 3.05; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {cf5a64d9-d084-4725-8267-3f5e6962fc94}, !- Handle + Perimeter_ZN_2_floor, !- Name + Floor, !- Surface Type + , !- Construction Name + {0ebdaea7-c6cb-452f-b121-7bbfcb1d95b8}, !- Space Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 27.69, 18.46, 0, !- X,Y,Z Vertex 1 {m} + 27.69, 0, 0, !- X,Y,Z Vertex 2 {m} + 22.69, 5, 0, !- X,Y,Z Vertex 3 {m} + 22.69, 13.46, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {7f4227ad-335c-4683-9a99-6c804048153c}, !- Handle + Core_ZN_wall_north, !- Name + Wall, !- Surface Type + , !- Construction Name + {32844cd3-cab3-4870-bbb6-6c79a28481b7}, !- Space Name + Surface, !- Outside Boundary Condition + {5ad6d532-e8de-4604-a79c-c900df2aa730}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 22.69, 13.46, 3.05, !- X,Y,Z Vertex 1 {m} + 22.69, 13.46, 0, !- X,Y,Z Vertex 2 {m} + 5, 13.46, 0, !- X,Y,Z Vertex 3 {m} + 5, 13.46, 3.05; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {d4106b28-896a-419d-8c67-83b35ee4d552}, !- Handle + Core_ZN_wall_west, !- Name + Wall, !- Surface Type + , !- Construction Name + {32844cd3-cab3-4870-bbb6-6c79a28481b7}, !- Space Name + Surface, !- Outside Boundary Condition + {7db0c075-4e62-4963-865c-3941b58b019a}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 5, 13.46, 3.05, !- X,Y,Z Vertex 1 {m} + 5, 13.46, 0, !- X,Y,Z Vertex 2 {m} + 5, 5, 0, !- X,Y,Z Vertex 3 {m} + 5, 5, 3.05; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {10adca74-548a-4d13-a7fc-d1068a27bad8}, !- Handle + Attic_roof_south, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {fb08bb0a-69e7-4942-8807-550e21855286}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 9.23, 9.23, 6.33, !- X,Y,Z Vertex 1 {m} + -0.6, -0.6, 3.05, !- X,Y,Z Vertex 2 {m} + 28.29, -0.6, 3.05, !- X,Y,Z Vertex 3 {m} + 18.46, 9.23, 6.33; !- X,Y,Z Vertex 4 {m} + +OS:SubSurface, + {80155533-5f7b-4962-a469-a417c2c2426b}, !- Handle + Perimeter_ZN_3_wall_north_Window_2, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {17c4f45d-4218-45b0-b696-893c60c109f8}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Shading Control Name + , !- Frame and Divider Name + 1, !- Multiplier + , !- Number of Vertices + 21.68, 18.46, 2.424, !- X,Y,Z Vertex 1 {m} + 21.68, 18.46, 0.9, !- X,Y,Z Vertex 2 {m} + 19.85, 18.46, 0.9, !- X,Y,Z Vertex 3 {m} + 19.85, 18.46, 2.424; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {17c4f45d-4218-45b0-b696-893c60c109f8}, !- Handle + Perimeter_ZN_3_wall_north, !- Name + Wall, !- Surface Type + , !- Construction Name + {bb97cae6-ab6e-4ca9-a862-a3e532ee5e5d}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 27.69, 18.46, 3.05, !- X,Y,Z Vertex 1 {m} + 27.69, 18.46, 0, !- X,Y,Z Vertex 2 {m} + 0, 18.46, 0, !- X,Y,Z Vertex 3 {m} + 0, 18.46, 3.05; !- X,Y,Z Vertex 4 {m} + +OS:ConvergenceLimits, + {257bad81-3887-44d2-9561-57968d0ebe2d}, !- Handle + 1, !- Minimum System Timestep {minutes} + 20; !- Maximum HVAC Iterations + +OS:Surface, + {b366b5a3-078a-4642-9a0a-cdd102cd3eba}, !- Handle + Perimeter_ZN_2_wall_south, !- Name + Wall, !- Surface Type + , !- Construction Name + {0ebdaea7-c6cb-452f-b121-7bbfcb1d95b8}, !- Space Name + Surface, !- Outside Boundary Condition + {713571c9-f6e5-4b5b-9f42-ad39d5868894}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 22.69, 5, 3.05, !- X,Y,Z Vertex 1 {m} + 22.69, 5, 0, !- X,Y,Z Vertex 2 {m} + 27.69, 2.04187384066908e-015, 0, !- X,Y,Z Vertex 3 {m} + 27.69, 2.04187384066908e-015, 3.05; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {63b30273-21d2-4b1d-bd16-9edb06da8514}, !- Handle + Attic_soffit_west, !- Name + Floor, !- Surface Type + , !- Construction Name + {fb08bb0a-69e7-4942-8807-550e21855286}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -0.6, 19.06, 3.05, !- X,Y,Z Vertex 1 {m} + 0, 18.46, 3.05, !- X,Y,Z Vertex 2 {m} + 0, 0, 3.05, !- X,Y,Z Vertex 3 {m} + -0.6, -0.6, 3.05; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {de083cd1-af79-470a-a5a9-6fa78e743ccd}, !- Handle + Perimeter_ZN_4_floor, !- Name + Floor, !- Surface Type + , !- Construction Name + {f9fb4430-2ed2-4cfb-bf10-1172712402a2}, !- Space Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 18.46, 0, !- X,Y,Z Vertex 1 {m} + 5, 13.46, 0, !- X,Y,Z Vertex 2 {m} + 5, 5, 0, !- X,Y,Z Vertex 3 {m} + 0, 0, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {677c0d88-4564-44d6-9ac6-251a100e5d72}, !- Handle + Perimeter_ZN_4_wall_north, !- Name + Wall, !- Surface Type + , !- Construction Name + {f9fb4430-2ed2-4cfb-bf10-1172712402a2}, !- Space Name + Surface, !- Outside Boundary Condition + {2addb368-09d7-4d71-9187-50f89aab0d28}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 5, 13.46, 3.05, !- X,Y,Z Vertex 1 {m} + 5, 13.46, 0, !- X,Y,Z Vertex 2 {m} + 0, 18.46, 0, !- X,Y,Z Vertex 3 {m} + 0, 18.46, 3.05; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {744c91a9-1025-49a9-ad5f-3252777fd52a}, !- Handle + Attic_soffit_east, !- Name + Floor, !- Surface Type + , !- Construction Name + {fb08bb0a-69e7-4942-8807-550e21855286}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 28.29, 19.06, 3.05, !- X,Y,Z Vertex 1 {m} + 28.29, -0.6, 3.05, !- X,Y,Z Vertex 2 {m} + 27.69, 0, 3.05, !- X,Y,Z Vertex 3 {m} + 27.69, 18.46, 3.05; !- X,Y,Z Vertex 4 {m} + +OS:SubSurface, + {2df821be-f673-4ea5-87b4-c86896014413}, !- Handle + Perimeter_ZN_3_wall_north_Window_5, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {17c4f45d-4218-45b0-b696-893c60c109f8}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Shading Control Name + , !- Frame and Divider Name + 1, !- Multiplier + , !- Number of Vertices + 7.84, 18.46, 2.424, !- X,Y,Z Vertex 1 {m} + 7.84, 18.46, 0.9, !- X,Y,Z Vertex 2 {m} + 6.01, 18.46, 0.9, !- X,Y,Z Vertex 3 {m} + 6.01, 18.46, 2.424; !- X,Y,Z Vertex 4 {m} + +OS:SubSurface, + {cb364a7a-fc44-494f-8c36-bc2e73cb7bff}, !- Handle + Perimeter_ZN_1_wall_south_Window_5, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {67ca62ce-e572-4957-8e6a-efb74825f170}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Shading Control Name + , !- Frame and Divider Name + 1, !- Multiplier + , !- Number of Vertices + 19.85, 0, 2.424, !- X,Y,Z Vertex 1 {m} + 19.85, 0, 0.9, !- X,Y,Z Vertex 2 {m} + 21.68, 0, 0.9, !- X,Y,Z Vertex 3 {m} + 21.68, 0, 2.424; !- X,Y,Z Vertex 4 {m} + +OS:HeatBalanceAlgorithm, + {30aa4e32-ecc1-41fa-8e20-75c7b3a9c558}, !- Handle + ConductionTransferFunction, !- Algorithm + 200; !- Surface Temperature Upper Limit {C} + +OS:Surface, + {47ffdd48-31f2-4e14-9cf2-3fe0ba8f9927}, !- Handle + Core_ZN_wall_south, !- Name + Wall, !- Surface Type + , !- Construction Name + {32844cd3-cab3-4870-bbb6-6c79a28481b7}, !- Space Name + Surface, !- Outside Boundary Condition + {678af1cc-9075-45b3-843b-3d44eb4901e0}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 5, 5, 3.05, !- X,Y,Z Vertex 1 {m} + 5, 5, 0, !- X,Y,Z Vertex 2 {m} + 22.69, 5, 0, !- X,Y,Z Vertex 3 {m} + 22.69, 5, 3.05; !- X,Y,Z Vertex 4 {m} + +OS:SubSurface, + {d229ddc0-288c-468d-9866-579c2434d344}, !- Handle + Perimeter_ZN_1_wall_south_Window_4, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {67ca62ce-e572-4957-8e6a-efb74825f170}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Shading Control Name + , !- Frame and Divider Name + 1, !- Multiplier + , !- Number of Vertices + 15.24, 0, 2.424, !- X,Y,Z Vertex 1 {m} + 15.24, 0, 0.9, !- X,Y,Z Vertex 2 {m} + 17.07, 0, 0.9, !- X,Y,Z Vertex 3 {m} + 17.07, 0, 2.424; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {912f372d-b179-468e-9e7f-29298eeec743}, !- Handle + Perimeter_ZN_3_ceiling, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {bb97cae6-ab6e-4ca9-a862-a3e532ee5e5d}, !- Space Name + Surface, !- Outside Boundary Condition + {6846f3e0-5f3c-4764-857d-efef5d44c707}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 22.69, 13.46, 3.05, !- X,Y,Z Vertex 1 {m} + 27.69, 18.46, 3.05, !- X,Y,Z Vertex 2 {m} + 0, 18.46, 3.05, !- X,Y,Z Vertex 3 {m} + 5, 13.46, 3.05; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {b890eeac-5336-4ed2-9467-56785822dd86}, !- Handle + Attic_floor_perimeter_west, !- Name + Floor, !- Surface Type + , !- Construction Name + {fb08bb0a-69e7-4942-8807-550e21855286}, !- Space Name + Surface, !- Outside Boundary Condition + {9f3c4b24-4e8e-4b4e-932c-0c0aeb12edab}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 18.46, 3.05, !- X,Y,Z Vertex 1 {m} + 5, 13.46, 3.05, !- X,Y,Z Vertex 2 {m} + 5, 5, 3.05, !- X,Y,Z Vertex 3 {m} + 0, 0, 3.05; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {b6ff9519-a9c1-41bb-a9a2-a8a38ed021e1}, !- Handle + Perimeter_ZN_2_wall_east, !- Name + Wall, !- Surface Type + , !- Construction Name + {0ebdaea7-c6cb-452f-b121-7bbfcb1d95b8}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 27.69, 0, 3.05, !- X,Y,Z Vertex 1 {m} + 27.69, 0, 0, !- X,Y,Z Vertex 2 {m} + 27.69, 18.46, 0, !- X,Y,Z Vertex 3 {m} + 27.69, 18.46, 3.05; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {1b4ea672-9fb0-4630-b4b2-b2587fc83673}, !- Handle + Attic_floor_perimeter_south, !- Name + Floor, !- Surface Type + , !- Construction Name + {fb08bb0a-69e7-4942-8807-550e21855286}, !- Space Name + Surface, !- Outside Boundary Condition + {645a4e50-0ece-46bb-aac3-ec237130a18d}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 22.69, 5, 3.05, !- X,Y,Z Vertex 1 {m} + 27.69, 0, 3.05, !- X,Y,Z Vertex 2 {m} + 0, 0, 3.05, !- X,Y,Z Vertex 3 {m} + 5, 5, 3.05; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {9aa4b0d6-2814-4c71-a486-0c272576ee4d}, !- Handle + Perimeter_ZN_1_wall_west, !- Name + Wall, !- Surface Type + , !- Construction Name + {72459874-7e2c-4ecd-ae58-b2d96c368b31}, !- Space Name + Surface, !- Outside Boundary Condition + {10583da6-829d-472d-90f7-81a54a7bb399}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 5, 5, 3.05, !- X,Y,Z Vertex 1 {m} + 5, 5, 0, !- X,Y,Z Vertex 2 {m} + 0, 0, 0, !- X,Y,Z Vertex 3 {m} + 0, 0, 3.05; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {2addb368-09d7-4d71-9187-50f89aab0d28}, !- Handle + Perimeter_ZN_3_wall_west, !- Name + Wall, !- Surface Type + , !- Construction Name + {bb97cae6-ab6e-4ca9-a862-a3e532ee5e5d}, !- Space Name + Surface, !- Outside Boundary Condition + {677c0d88-4564-44d6-9ac6-251a100e5d72}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 18.46, 3.05, !- X,Y,Z Vertex 1 {m} + 0, 18.46, 0, !- X,Y,Z Vertex 2 {m} + 5, 13.46, 0, !- X,Y,Z Vertex 3 {m} + 5, 13.46, 3.05; !- X,Y,Z Vertex 4 {m} + +OS:SubSurface, + {ab17b1fc-cf5a-4f83-a75f-c979f9e5ec68}, !- Handle + Perimeter_ZN_3_wall_north_Window_3, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {17c4f45d-4218-45b0-b696-893c60c109f8}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Shading Control Name + , !- Frame and Divider Name + 1, !- Multiplier + , !- Number of Vertices + 17.07, 18.46, 2.424, !- X,Y,Z Vertex 1 {m} + 17.07, 18.46, 0.9, !- X,Y,Z Vertex 2 {m} + 15.24, 18.46, 0.9, !- X,Y,Z Vertex 3 {m} + 15.24, 18.46, 2.424; !- X,Y,Z Vertex 4 {m} + +OS:SubSurface, + {6935fc42-b444-4a6b-b07f-234327773d16}, !- Handle + Perimeter_ZN_1_wall_south_Window_2, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {67ca62ce-e572-4957-8e6a-efb74825f170}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Shading Control Name + , !- Frame and Divider Name + 1, !- Multiplier + , !- Number of Vertices + 6.01, 0, 2.424, !- X,Y,Z Vertex 1 {m} + 6.01, 0, 0.9, !- X,Y,Z Vertex 2 {m} + 7.84, 0, 0.9, !- X,Y,Z Vertex 3 {m} + 7.84, 0, 2.424; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {0f61baff-cb03-4a25-97fd-0c204a43cad2}, !- Handle + Attic_roof_west, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {fb08bb0a-69e7-4942-8807-550e21855286}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 9.23, 9.23, 6.33, !- X,Y,Z Vertex 1 {m} + -0.6, 19.06, 3.05, !- X,Y,Z Vertex 2 {m} + -0.6, -0.6, 3.05; !- X,Y,Z Vertex 3 {m} + +OS:Surface, + {294e6a4a-4754-4ea0-b450-586c284d51ae}, !- Handle + Perimeter_ZN_3_wall_east, !- Name + Wall, !- Surface Type + , !- Construction Name + {bb97cae6-ab6e-4ca9-a862-a3e532ee5e5d}, !- Space Name + Surface, !- Outside Boundary Condition + {e6e6213c-27e3-4780-914d-aab86a026932}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 22.69, 13.46, 3.05, !- X,Y,Z Vertex 1 {m} + 22.69, 13.46, 0, !- X,Y,Z Vertex 2 {m} + 27.69, 18.46, 0, !- X,Y,Z Vertex 3 {m} + 27.69, 18.46, 3.05; !- X,Y,Z Vertex 4 {m} + +OS:SubSurface, + {00249f83-d4db-4412-a65b-516306588f49}, !- Handle + Perimeter_ZN_1_wall_south_Window_3, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {67ca62ce-e572-4957-8e6a-efb74825f170}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Shading Control Name + , !- Frame and Divider Name + 1, !- Multiplier + , !- Number of Vertices + 10.62, 0, 2.424, !- X,Y,Z Vertex 1 {m} + 10.62, 0, 0.9, !- X,Y,Z Vertex 2 {m} + 12.45, 0, 0.9, !- X,Y,Z Vertex 3 {m} + 12.45, 0, 2.424; !- X,Y,Z Vertex 4 {m} + +OS:SubSurface, + {01b570ed-fed9-4e8f-ab7c-dc432196da7b}, !- Handle + Perimeter_ZN_3_wall_north_Window_4, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {17c4f45d-4218-45b0-b696-893c60c109f8}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Shading Control Name + , !- Frame and Divider Name + 1, !- Multiplier + , !- Number of Vertices + 12.45, 18.46, 2.424, !- X,Y,Z Vertex 1 {m} + 12.45, 18.46, 0.9, !- X,Y,Z Vertex 2 {m} + 10.62, 18.46, 0.9, !- X,Y,Z Vertex 3 {m} + 10.62, 18.46, 2.424; !- X,Y,Z Vertex 4 {m} + +OS:Timestep, + {eb583d9a-28e0-49c6-8519-cae0088b5073}, !- Handle + 60; !- Number of Timesteps per Hour + +OS:Surface, + {1f023a99-6062-4e6b-a2ee-74cc9513d97f}, !- Handle + Perimeter_ZN_1_floor, !- Name + Floor, !- Surface Type + , !- Construction Name + {72459874-7e2c-4ecd-ae58-b2d96c368b31}, !- Space Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 22.69, 5, 0, !- X,Y,Z Vertex 1 {m} + 27.69, 0, 0, !- X,Y,Z Vertex 2 {m} + 0, 0, 0, !- X,Y,Z Vertex 3 {m} + 5, 5, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {645a4e50-0ece-46bb-aac3-ec237130a18d}, !- Handle + Perimeter_ZN_1_ceiling, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {72459874-7e2c-4ecd-ae58-b2d96c368b31}, !- Space Name + Surface, !- Outside Boundary Condition + {1b4ea672-9fb0-4630-b4b2-b2587fc83673}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 27.69, 0, 3.05, !- X,Y,Z Vertex 1 {m} + 22.69, 5, 3.05, !- X,Y,Z Vertex 2 {m} + 5, 5, 3.05, !- X,Y,Z Vertex 3 {m} + 0, 0, 3.05; !- X,Y,Z Vertex 4 {m} + +OS:SubSurface, + {e51f02c4-8ab6-4b72-9afa-25754ca41d63}, !- Handle + Perimeter_ZN_1_wall_south_Window_6, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {67ca62ce-e572-4957-8e6a-efb74825f170}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Shading Control Name + , !- Frame and Divider Name + 1, !- Multiplier + , !- Number of Vertices + 24.47, 0, 2.424, !- X,Y,Z Vertex 1 {m} + 24.47, 0, 0.9, !- X,Y,Z Vertex 2 {m} + 26.3, 0, 0.9, !- X,Y,Z Vertex 3 {m} + 26.3, 0, 2.424; !- X,Y,Z Vertex 4 {m} + +OS:SubSurface, + {58a81d86-1089-4c25-9dc2-b3cf3a7551cf}, !- Handle + Perimeter_ZN_2_wall_east_Window_1, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {b6ff9519-a9c1-41bb-a9a2-a8a38ed021e1}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Shading Control Name + , !- Frame and Divider Name + 1, !- Multiplier + , !- Number of Vertices + 27.69, 1.39, 2.424, !- X,Y,Z Vertex 1 {m} + 27.69, 1.39, 0.9, !- X,Y,Z Vertex 2 {m} + 27.69, 3.22, 0.9, !- X,Y,Z Vertex 3 {m} + 27.69, 3.22, 2.424; !- X,Y,Z Vertex 4 {m} + +OS:SubSurface, + {3c3e008b-c13d-493b-a54a-6882ec666bca}, !- Handle + Perimeter_ZN_2_wall_east_Window_3, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {b6ff9519-a9c1-41bb-a9a2-a8a38ed021e1}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Shading Control Name + , !- Frame and Divider Name + 1, !- Multiplier + , !- Number of Vertices + 27.69, 10.62, 2.424, !- X,Y,Z Vertex 1 {m} + 27.69, 10.62, 0.9, !- X,Y,Z Vertex 2 {m} + 27.69, 12.45, 0.9, !- X,Y,Z Vertex 3 {m} + 27.69, 12.45, 2.424; !- X,Y,Z Vertex 4 {m} + +OS:Output:Meter, + {15699204-c979-4451-b40c-3b532d8c0da9}, !- Handle + ElectricityNet:Facility, !- Name + Hourly, !- Reporting Frequency + True, !- Meter File Only + False; !- Cumulative + +OS:SubSurface, + {e5c5c1db-dfe9-4a48-bb35-75ca0b08f7c8}, !- Handle + Perimeter_ZN_4_wall_west_Window_4, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {3977972e-c38f-4caf-ac22-02109f4eaee3}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Shading Control Name + , !- Frame and Divider Name + 1, !- Multiplier + , !- Number of Vertices + 0, 3.22, 2.424, !- X,Y,Z Vertex 1 {m} + 0, 3.22, 0.9, !- X,Y,Z Vertex 2 {m} + 0, 1.39, 0.9, !- X,Y,Z Vertex 3 {m} + 0, 1.39, 2.424; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {3977972e-c38f-4caf-ac22-02109f4eaee3}, !- Handle + Perimeter_ZN_4_wall_west, !- Name + Wall, !- Surface Type + , !- Construction Name + {f9fb4430-2ed2-4cfb-bf10-1172712402a2}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 18.46, 3.05, !- X,Y,Z Vertex 1 {m} + 0, 18.46, 0, !- X,Y,Z Vertex 2 {m} + 0, 0, 0, !- X,Y,Z Vertex 3 {m} + 0, 0, 3.05; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {678af1cc-9075-45b3-843b-3d44eb4901e0}, !- Handle + Perimeter_ZN_1_wall_north, !- Name + Wall, !- Surface Type + , !- Construction Name + {72459874-7e2c-4ecd-ae58-b2d96c368b31}, !- Space Name + Surface, !- Outside Boundary Condition + {47ffdd48-31f2-4e14-9cf2-3fe0ba8f9927}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 22.69, 5, 3.05, !- X,Y,Z Vertex 1 {m} + 22.69, 5, 0, !- X,Y,Z Vertex 2 {m} + 5, 5, 0, !- X,Y,Z Vertex 3 {m} + 5, 5, 3.05; !- X,Y,Z Vertex 4 {m} + +OS:SubSurface, + {bf062f5b-d087-4887-96ba-89e2cd6a703c}, !- Handle + Perimeter_ZN_4_wall_west_Window_2, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {3977972e-c38f-4caf-ac22-02109f4eaee3}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Shading Control Name + , !- Frame and Divider Name + 1, !- Multiplier + , !- Number of Vertices + 0, 12.45, 2.424, !- X,Y,Z Vertex 1 {m} + 0, 12.45, 0.9, !- X,Y,Z Vertex 2 {m} + 0, 10.62, 0.9, !- X,Y,Z Vertex 3 {m} + 0, 10.62, 2.424; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {5ba0e030-ad8e-4939-9022-603ea15873fd}, !- Handle + Attic_floor_perimeter_east, !- Name + Floor, !- Surface Type + , !- Construction Name + {fb08bb0a-69e7-4942-8807-550e21855286}, !- Space Name + Surface, !- Outside Boundary Condition + {de9219d4-cc0d-45c1-b670-26d576f7fec4}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 27.69, 18.46, 3.05, !- X,Y,Z Vertex 1 {m} + 27.69, 0, 3.05, !- X,Y,Z Vertex 2 {m} + 22.69, 5, 3.05, !- X,Y,Z Vertex 3 {m} + 22.69, 13.46, 3.05; !- X,Y,Z Vertex 4 {m} + +OS:Output:Meter, + {d446ed18-52cc-487c-bf58-c78a8edaa642}, !- Handle + Electricity:Facility, !- Name + Hourly, !- Reporting Frequency + True, !- Meter File Only + False; !- Cumulative + +OS:Surface, + {72a1b6a0-5c0f-4a8b-a8d5-81bef0ff1769}, !- Handle + Core_ZN_wall_east, !- Name + Wall, !- Surface Type + , !- Construction Name + {32844cd3-cab3-4870-bbb6-6c79a28481b7}, !- Space Name + Surface, !- Outside Boundary Condition + {76eef8b9-8d45-4e4a-a6e8-a678fd658045}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 22.69, 5, 3.05, !- X,Y,Z Vertex 1 {m} + 22.69, 5, 0, !- X,Y,Z Vertex 2 {m} + 22.69, 13.46, 0, !- X,Y,Z Vertex 3 {m} + 22.69, 13.46, 3.05; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {d0826a01-d018-4104-931a-9173a72e19b7}, !- Handle + Attic_soffit_south, !- Name + Floor, !- Surface Type + , !- Construction Name + {fb08bb0a-69e7-4942-8807-550e21855286}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 27.69, 0, 3.05, !- X,Y,Z Vertex 1 {m} + 28.29, -0.6, 3.05, !- X,Y,Z Vertex 2 {m} + -0.6, -0.6, 3.05, !- X,Y,Z Vertex 3 {m} + 0, 0, 3.05; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {31889fa0-d974-455a-a2bd-f5abe47e7f37}, !- Handle + Perimeter_ZN_3_floor, !- Name + Floor, !- Surface Type + , !- Construction Name + {bb97cae6-ab6e-4ca9-a862-a3e532ee5e5d}, !- Space Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 27.69, 18.46, 0, !- X,Y,Z Vertex 1 {m} + 22.69, 13.46, 0, !- X,Y,Z Vertex 2 {m} + 5, 13.46, 0, !- X,Y,Z Vertex 3 {m} + 0, 18.46, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {7db0c075-4e62-4963-865c-3941b58b019a}, !- Handle + Perimeter_ZN_4_wall_east, !- Name + Wall, !- Surface Type + , !- Construction Name + {f9fb4430-2ed2-4cfb-bf10-1172712402a2}, !- Space Name + Surface, !- Outside Boundary Condition + {d4106b28-896a-419d-8c67-83b35ee4d552}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 5, 5, 3.05, !- X,Y,Z Vertex 1 {m} + 5, 5, 0, !- X,Y,Z Vertex 2 {m} + 5, 13.46, 0, !- X,Y,Z Vertex 3 {m} + 5, 13.46, 3.05; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {30049214-f475-466f-8308-e6d33248de87}, !- Handle + Attic_floor_core, !- Name + Floor, !- Surface Type + , !- Construction Name + {fb08bb0a-69e7-4942-8807-550e21855286}, !- Space Name + Surface, !- Outside Boundary Condition + {feb7c449-5351-48a2-865e-0e36c2c4fc6f}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 22.69, 13.46, 3.05, !- X,Y,Z Vertex 1 {m} + 22.69, 5, 3.05, !- X,Y,Z Vertex 2 {m} + 5, 5, 3.05, !- X,Y,Z Vertex 3 {m} + 5, 13.46, 3.05; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {713571c9-f6e5-4b5b-9f42-ad39d5868894}, !- Handle + Perimeter_ZN_1_wall_east, !- Name + Wall, !- Surface Type + , !- Construction Name + {72459874-7e2c-4ecd-ae58-b2d96c368b31}, !- Space Name + Surface, !- Outside Boundary Condition + {b366b5a3-078a-4642-9a0a-cdd102cd3eba}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 27.69, 2.04187384066908e-015, 3.05, !- X,Y,Z Vertex 1 {m} + 27.69, 2.04187384066908e-015, 0, !- X,Y,Z Vertex 2 {m} + 22.69, 5, 0, !- X,Y,Z Vertex 3 {m} + 22.69, 5, 3.05; !- X,Y,Z Vertex 4 {m} + +OS:SubSurface, + {f689c536-53ce-4401-983e-669e62dc4035}, !- Handle + Perimeter_ZN_2_wall_east_Window_4, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {b6ff9519-a9c1-41bb-a9a2-a8a38ed021e1}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Shading Control Name + , !- Frame and Divider Name + 1, !- Multiplier + , !- Number of Vertices + 27.69, 15.24, 2.424, !- X,Y,Z Vertex 1 {m} + 27.69, 15.24, 0.9, !- X,Y,Z Vertex 2 {m} + 27.69, 17.07, 0.9, !- X,Y,Z Vertex 3 {m} + 27.69, 17.07, 2.424; !- X,Y,Z Vertex 4 {m} + +OS:SubSurface, + {1658ab79-d8c2-42b6-9b7d-92ec9fd1924f}, !- Handle + Perimeter_ZN_2_wall_east_Window_2, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {b6ff9519-a9c1-41bb-a9a2-a8a38ed021e1}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Shading Control Name + , !- Frame and Divider Name + 1, !- Multiplier + , !- Number of Vertices + 27.69, 6.01, 2.424, !- X,Y,Z Vertex 1 {m} + 27.69, 6.01, 0.9, !- X,Y,Z Vertex 2 {m} + 27.69, 7.84, 0.9, !- X,Y,Z Vertex 3 {m} + 27.69, 7.84, 2.424; !- X,Y,Z Vertex 4 {m} + +OS:RunPeriod, + {94267dee-950c-4c53-aa76-7a4b668d0573}, !- Handle + Run Period 1, !- Name + 2, !- Begin Month + 2, !- Begin Day of Month + 2, !- End Month + 28, !- End Day of Month + No, !- Use Weather File Holidays and Special Days + No, !- Use Weather File Daylight Saving Period + No, !- Apply Weekend Holiday Rule + Yes, !- Use Weather File Rain Indicators + Yes, !- Use Weather File Snow Indicators + 1; !- Number of Times Runperiod to be Repeated + +OS:YearDescription, + {c909b14d-25f4-4587-81ac-13c1e4bb0508}, !- Handle + , !- Calendar Year + Sunday; !- Day of Week for Start Day + +OS:Surface, + {6846f3e0-5f3c-4764-857d-efef5d44c707}, !- Handle + Attic_floor_perimeter_north, !- Name + Floor, !- Surface Type + , !- Construction Name + {fb08bb0a-69e7-4942-8807-550e21855286}, !- Space Name + Surface, !- Outside Boundary Condition + {912f372d-b179-468e-9e7f-29298eeec743}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 27.69, 18.46, 3.05, !- X,Y,Z Vertex 1 {m} + 22.69, 13.46, 3.05, !- X,Y,Z Vertex 2 {m} + 5, 13.46, 3.05, !- X,Y,Z Vertex 3 {m} + 0, 18.46, 3.05; !- X,Y,Z Vertex 4 {m} + +OS:ShadowCalculation, + {208066fd-3337-431a-92af-1b641ddb4c8e}, !- Handle + 30, !- Calculation Frequency + 15000; !- Maximum Figures in Shadow Overlap Calculations + +OS:SubSurface, + {7601ac5c-8c78-486c-8a6b-46d19f4aef2f}, !- Handle + Perimeter_ZN_4_wall_west_Window_3, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {3977972e-c38f-4caf-ac22-02109f4eaee3}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Shading Control Name + , !- Frame and Divider Name + 1, !- Multiplier + , !- Number of Vertices + 0, 7.84, 2.424, !- X,Y,Z Vertex 1 {m} + 0, 7.84, 0.9, !- X,Y,Z Vertex 2 {m} + 0, 6.01, 0.9, !- X,Y,Z Vertex 3 {m} + 0, 6.01, 2.424; !- X,Y,Z Vertex 4 {m} + +OS:Building, + {6b25c3c7-39e4-4be7-84a9-17e80feecaf5}, !- Handle + SmallOffice-5A Unitary, !- Name + , !- Building Sector Type + 0, !- North Axis {deg} + , !- Nominal Floor to Floor Height {m} + , !- Space Type Name + {43439ea6-b207-4356-ab36-b087c1b4dd53}, !- Default Construction Set Name + , !- Default Schedule Set Name + 1, !- Standards Number of Stories + 1, !- Standards Number of Above Ground Stories + , !- Standards Template + SmallOffice; !- Standards Building Type + +OS:Surface, + {10583da6-829d-472d-90f7-81a54a7bb399}, !- Handle + Perimeter_ZN_4_wall_south, !- Name + Wall, !- Surface Type + , !- Construction Name + {f9fb4430-2ed2-4cfb-bf10-1172712402a2}, !- Space Name + Surface, !- Outside Boundary Condition + {9aa4b0d6-2814-4c71-a486-0c272576ee4d}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 0, 3.05, !- X,Y,Z Vertex 1 {m} + 0, 0, 0, !- X,Y,Z Vertex 2 {m} + 5, 5, 0, !- X,Y,Z Vertex 3 {m} + 5, 5, 3.05; !- X,Y,Z Vertex 4 {m} + +OS:SubSurface, + {30959840-2498-4755-bd79-a6730b388911}, !- Handle + Perimeter_ZN_4_wall_west_Window_1, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {3977972e-c38f-4caf-ac22-02109f4eaee3}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Shading Control Name + , !- Frame and Divider Name + 1, !- Multiplier + , !- Number of Vertices + 0, 17.07, 2.424, !- X,Y,Z Vertex 1 {m} + 0, 17.07, 0.9, !- X,Y,Z Vertex 2 {m} + 0, 15.24, 0.9, !- X,Y,Z Vertex 3 {m} + 0, 15.24, 2.424; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {1d4e0950-59cb-4339-b400-f4a8bebb3997}, !- Handle + Core_ZN_floor, !- Name + Floor, !- Surface Type + , !- Construction Name + {32844cd3-cab3-4870-bbb6-6c79a28481b7}, !- Space Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 22.69, 13.46, 0, !- X,Y,Z Vertex 1 {m} + 22.69, 5, 0, !- X,Y,Z Vertex 2 {m} + 5, 5, 0, !- X,Y,Z Vertex 3 {m} + 5, 13.46, 0; !- X,Y,Z Vertex 4 {m} + +OS:SubSurface, + {931ae67d-55c0-4873-bdaf-9b304c8e6ddf}, !- Handle + Perimeter_ZN_3_wall_north_Window_1, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {17c4f45d-4218-45b0-b696-893c60c109f8}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Shading Control Name + , !- Frame and Divider Name + 1, !- Multiplier + , !- Number of Vertices + 26.3, 18.46, 2.424, !- X,Y,Z Vertex 1 {m} + 26.3, 18.46, 0.9, !- X,Y,Z Vertex 2 {m} + 24.47, 18.46, 0.9, !- X,Y,Z Vertex 3 {m} + 24.47, 18.46, 2.424; !- X,Y,Z Vertex 4 {m} + +OS:SubSurface, + {092b1b3c-7a6e-4ded-9a20-f857dd391a41}, !- Handle + Perimeter_ZN_3_wall_north_Window_6, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {17c4f45d-4218-45b0-b696-893c60c109f8}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Shading Control Name + , !- Frame and Divider Name + 1, !- Multiplier + , !- Number of Vertices + 3.22, 18.46, 2.424, !- X,Y,Z Vertex 1 {m} + 3.22, 18.46, 0.9, !- X,Y,Z Vertex 2 {m} + 1.39, 18.46, 0.9, !- X,Y,Z Vertex 3 {m} + 1.39, 18.46, 2.424; !- X,Y,Z Vertex 4 {m} + +OS:SubSurface, + {53588f1b-5734-4f40-b8d3-73d92c10e021}, !- Handle + Perimeter_ZN_1_wall_south_door, !- Name + GlassDoor, !- Sub Surface Type + , !- Construction Name + {67ca62ce-e572-4957-8e6a-efb74825f170}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Shading Control Name + , !- Frame and Divider Name + 1, !- Multiplier + , !- Number of Vertices + 12.93, 0, 2.134, !- X,Y,Z Vertex 1 {m} + 12.93, 0, 0, !- X,Y,Z Vertex 2 {m} + 14.76, 0, 0, !- X,Y,Z Vertex 3 {m} + 14.76, 0, 2.134; !- X,Y,Z Vertex 4 {m} + +OS:Facility, + {8b48fb85-9058-4291-a948-6088f0592bb3}; !- Handle + +OS:BuildingStory, + {2edc3034-10d9-48ff-9f1e-ff89d18bbb3f}, !- Handle + Building Story 1, !- Name + 0, !- Nominal Z Coordinate {m} + , !- Nominal Floor to Floor Height {m} + , !- Default Construction Set Name + , !- Default Schedule Set Name + {edf75d60-088c-496a-87da-556d74439047}; !- Group Rendering Name + +OS:SpaceType, + {629a271e-7460-4c51-87d3-d2d3125cfac1}, !- Handle + Office WholeBuilding - Sm Office, !- Name + , !- Default Construction Set Name + {9dc4e963-eaf9-4f02-9731-8aeda2294db4}, !- Default Schedule Set Name + {30ff0848-5cdc-4dd8-a086-1caeb68bb0d8}, !- Group Rendering Name + {e6dfb89d-c79f-4077-ae54-a56c9861f769}, !- Design Specification Outdoor Air Object Name + , !- Standards Template + Office, !- Standards Building Type + WholeBuilding - Sm Office; !- Standards Space Type + +OS:SpaceType, + {a8affc2d-d2e8-44c9-85f3-e6d076201869}, !- Handle + Office Attic, !- Name + {5dbc5807-b4cd-48b8-a864-61afd371e1f2}, !- Default Construction Set Name + {a93117e9-e1db-4c0b-84f7-2e0f5aa859ce}, !- Default Schedule Set Name + {464e0ca9-ee56-43ac-be06-ca07903d50e4}, !- Group Rendering Name + {b1e0eab9-6fed-4c82-a687-26e9e44dbd0a}, !- Design Specification Outdoor Air Object Name + , !- Standards Template + Office, !- Standards Building Type + Attic; !- Standards Space Type + +OS:Rendering:Color, + {464e0ca9-ee56-43ac-be06-ca07903d50e4}, !- Handle + Office Attic 1, !- Name + 120, !- Rendering Red Value + 149, !- Rendering Green Value + 230; !- Rendering Blue Value + +OS:DesignSpecification:OutdoorAir, + {b1e0eab9-6fed-4c82-a687-26e9e44dbd0a}, !- Handle + Office Attic Ventilation, !- Name + , !- Outdoor Air Method + 0, !- Outdoor Air Flow per Person {m3/s-person} + 0, !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + 0, !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:DefaultScheduleSet, + {a93117e9-e1db-4c0b-84f7-2e0f5aa859ce}, !- Handle + Office Attic Schedule Set, !- Name + , !- Hours of Operation Schedule Name + , !- Number of People Schedule Name + , !- People Activity Level Schedule Name + , !- Lighting Schedule Name + , !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {ef22c4e0-071c-497a-9d4a-84f7b59f5651}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:Schedule:Ruleset, + {ef22c4e0-071c-497a-9d4a-84f7b59f5651}, !- Handle + OfficeLarge INFIL_SCH_PNNL, !- Name + {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name + {4cd505ce-cbe6-4555-8dee-02e32b19585b}, !- Default Day Schedule Name + {af08fa08-6654-41e8-bd66-013e6dca80e4}, !- Summer Design Day Schedule Name + {28f8a1cd-ec0a-4760-b51d-4b2c6d4ba03d}; !- Winter Design Day Schedule Name + +OS:Schedule:Day, + {4cd505ce-cbe6-4555-8dee-02e32b19585b}, !- Handle + OfficeLarge INFIL_SCH_PNNL Default, !- Name + {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 1; !- Value Until Time 1 + +OS:Schedule:Day, + {af08fa08-6654-41e8-bd66-013e6dca80e4}, !- Handle + OfficeLarge INFIL_SCH_PNNL Summer Design Day, !- Name + {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 6, !- Hour 1 + 0, !- Minute 1 + 1, !- Value Until Time 1 + 22, !- Hour 2 + 0, !- Minute 2 + 0.25, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 1; !- Value Until Time 3 + +OS:Schedule:Rule, + {a7e23df8-8b3b-4f88-8b78-d47af83d29f6}, !- Handle + Schedule Rule 1, !- Name + {ef22c4e0-071c-497a-9d4a-84f7b59f5651}, !- Schedule Ruleset Name + 1, !- Rule Order + {341ae3c0-1e4b-438d-a349-78c4d893609b}, !- Day Schedule Name + , !- Apply Sunday + Yes, !- Apply Monday + Yes, !- Apply Tuesday + Yes, !- Apply Wednesday + Yes, !- Apply Thursday + Yes, !- Apply Friday + , !- Apply Saturday + , !- Apply Holiday + DateRange, !- Date Specification Type + 1, !- Start Month + 1, !- Start Day + 12, !- End Month + 31; !- End Day + +OS:Schedule:Day, + {341ae3c0-1e4b-438d-a349-78c4d893609b}, !- Handle + OfficeLarge INFIL_SCH_PNNL SmrDsn|Wkdy Day, !- Name + {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 6, !- Hour 1 + 0, !- Minute 1 + 1, !- Value Until Time 1 + 22, !- Hour 2 + 0, !- Minute 2 + 0.25, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 1; !- Value Until Time 3 + +OS:Schedule:Day, + {28f8a1cd-ec0a-4760-b51d-4b2c6d4ba03d}, !- Handle + OfficeLarge INFIL_SCH_PNNL Winter Design Day, !- Name + {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 6, !- Hour 1 + 0, !- Minute 1 + 1, !- Value Until Time 1 + 18, !- Hour 2 + 0, !- Minute 2 + 0.25, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 1; !- Value Until Time 3 + +OS:Schedule:Rule, + {55097f0a-4cf3-405f-bcff-92084b900f0d}, !- Handle + Schedule Rule 2, !- Name + {ef22c4e0-071c-497a-9d4a-84f7b59f5651}, !- Schedule Ruleset Name + 0, !- Rule Order + {11021c79-21b2-410d-8761-4ca0169659f2}, !- Day Schedule Name + , !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + Yes, !- Apply Saturday + , !- Apply Holiday + DateRange, !- Date Specification Type + 1, !- Start Month + 1, !- Start Day + 12, !- End Month + 31; !- End Day + +OS:Schedule:Day, + {11021c79-21b2-410d-8761-4ca0169659f2}, !- Handle + OfficeLarge INFIL_SCH_PNNL WntrDsn|Sat Day, !- Name + {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 6, !- Hour 1 + 0, !- Minute 1 + 1, !- Value Until Time 1 + 18, !- Hour 2 + 0, !- Minute 2 + 0.25, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 1; !- Value Until Time 3 + +OS:ScheduleTypeLimits, + {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Handle + Fractional, !- Name + 0, !- Lower Limit Value + 1, !- Upper Limit Value + Continuous; !- Numeric Type + +OS:ThermostatSetpoint:DualSetpoint, + {a3cd6643-7831-4264-9074-5bfe5f37f78f}, !- Handle + Office Attic Thermostat; !- Name + +OS:Rendering:Color, + {30ff0848-5cdc-4dd8-a086-1caeb68bb0d8}, !- Handle + Office WholeBuilding - Sm Office 1, !- Name + 120, !- Rendering Red Value + 230, !- Rendering Green Value + 199; !- Rendering Blue Value + +OS:People:Definition, + {3031b171-109a-44ae-9de9-5736c93b0cfd}, !- Handle + Office WholeBuilding - Sm Office People Definition, !- Name + People/Area, !- Number of People Calculation Method + , !- Number of People {people} + 0.0602778983335744, !- People per Space Floor Area {person/m2} + , !- Space Floor Area per Person {m2/person} + 0.3; !- Fraction Radiant + +OS:People, + {a01b9518-0d63-4370-9865-d6053c901e72}, !- Handle + Office WholeBuilding - Sm Office People, !- Name + {3031b171-109a-44ae-9de9-5736c93b0cfd}, !- People Definition Name + {629a271e-7460-4c51-87d3-d2d3125cfac1}, !- Space or SpaceType Name + , !- Number of People Schedule Name + , !- Activity Level Schedule Name + , !- Surface Name/Angle Factor List Name + {aec93a38-365e-4bbb-913e-1665f358a2dc}, !- Work Efficiency Schedule Name + {d29a5bab-97c5-40ae-a77f-70ff33b2440c}, !- Clothing Insulation Schedule Name + {be7c18ee-b179-4be1-bfe1-f53cb7cb4929}, !- Air Velocity Schedule Name + 1; !- Multiplier + +OS:Schedule:Ruleset, + {d29a5bab-97c5-40ae-a77f-70ff33b2440c}, !- Handle + Clothing Schedule, !- Name + {4883d6af-171a-4672-a7f3-205f0523266e}, !- Schedule Type Limits Name + {eb0ff46a-33ed-4634-a4aa-a1751d528c9f}; !- Default Day Schedule Name + +OS:Schedule:Day, + {eb0ff46a-33ed-4634-a4aa-a1751d528c9f}, !- Handle + Clothing Schedule Default Winter Clothes, !- Name + {4883d6af-171a-4672-a7f3-205f0523266e}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 1; !- Value Until Time 1 + +OS:Schedule:Rule, + {76cc82df-9813-439f-8cf7-814913e90951}, !- Handle + Schedule Rule 3, !- Name + {d29a5bab-97c5-40ae-a77f-70ff33b2440c}, !- Schedule Ruleset Name + 0, !- Rule Order + {1e708e87-e5ea-429a-b96d-c3c136e48fa6}, !- Day Schedule Name + , !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + , !- Apply Saturday + , !- Apply Holiday + DateRange, !- Date Specification Type + 5, !- Start Month + 1, !- Start Day + 9, !- End Month + 30; !- End Day + +OS:Schedule:Day, + {1e708e87-e5ea-429a-b96d-c3c136e48fa6}, !- Handle + Clothing Schedule Summer Clothes, !- Name + {4883d6af-171a-4672-a7f3-205f0523266e}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0.5; !- Value Until Time 1 + +OS:ScheduleTypeLimits, + {4883d6af-171a-4672-a7f3-205f0523266e}, !- Handle + ClothingInsulation, !- Name + 0, !- Lower Limit Value + , !- Upper Limit Value + Continuous, !- Numeric Type + ClothingInsulation; !- Unit Type + +OS:Schedule:Ruleset, + {be7c18ee-b179-4be1-bfe1-f53cb7cb4929}, !- Handle + Air Velocity Schedule, !- Name + {3143140e-acca-42b6-b979-89e20a8bd33e}, !- Schedule Type Limits Name + {69a57694-cf56-4827-b49a-a48a97f4f746}; !- Default Day Schedule Name + +OS:Schedule:Day, + {69a57694-cf56-4827-b49a-a48a97f4f746}, !- Handle + Air Velocity Schedule Default, !- Name + {3143140e-acca-42b6-b979-89e20a8bd33e}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0.2; !- Value Until Time 1 + +OS:ScheduleTypeLimits, + {3143140e-acca-42b6-b979-89e20a8bd33e}, !- Handle + Velocity, !- Name + 0, !- Lower Limit Value + , !- Upper Limit Value + Continuous, !- Numeric Type + Velocity; !- Unit Type + +OS:Schedule:Ruleset, + {aec93a38-365e-4bbb-913e-1665f358a2dc}, !- Handle + Work Efficiency Schedule, !- Name + {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name + {2ed19a06-2b81-49e2-895a-b0faf9183bcf}; !- Default Day Schedule Name + +OS:Schedule:Day, + {2ed19a06-2b81-49e2-895a-b0faf9183bcf}, !- Handle + Work Efficiency Schedule Default, !- Name + {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 + +OS:Lights:Definition, + {f23b6d4a-5c04-4ea6-bb04-6fc4c45f5db2}, !- Handle + Office WholeBuilding - Sm Office Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 8.82640654170197, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.7, !- Fraction Radiant + 0.2; !- Fraction Visible + +OS:Lights, + {bbf996f3-4cee-4137-bd55-e7d62c9e5160}, !- Handle + Office WholeBuilding - Sm Office Lights, !- Name + {f23b6d4a-5c04-4ea6-bb04-6fc4c45f5db2}, !- Lights Definition Name + {629a271e-7460-4c51-87d3-d2d3125cfac1}, !- Space or SpaceType Name + , !- Schedule Name + 1, !- Fraction Replaceable + , !- Multiplier + General; !- End-Use Subcategory + +OS:ElectricEquipment:Definition, + {7b0ff6cf-6cb1-4643-bfa7-afb1ab990652}, !- Handle + Office WholeBuilding - Sm Office Elec Equip Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 6.78126356252712, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:ElectricEquipment, + {42270f41-5ab1-484a-b5ee-5e9c2e91b492}, !- Handle + Office WholeBuilding - Sm Office Elec Equip, !- Name + {7b0ff6cf-6cb1-4643-bfa7-afb1ab990652}, !- Electric Equipment Definition Name + {629a271e-7460-4c51-87d3-d2d3125cfac1}, !- Space or SpaceType Name + , !- Schedule Name + , !- Multiplier + General; !- End-Use Subcategory + +OS:DesignSpecification:OutdoorAir, + {e6dfb89d-c79f-4077-ae54-a56c9861f769}, !- Handle + Office WholeBuilding - Sm Office Ventilation, !- Name + Sum, !- Outdoor Air Method + 0, !- Outdoor Air Flow per Person {m3/s-person} + 0.0004318, !- Outdoor Air Flow per Floor Area {m3/s-m2} + 0, !- Outdoor Air Flow Rate {m3/s} + 0, !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:DefaultScheduleSet, + {9dc4e963-eaf9-4f02-9731-8aeda2294db4}, !- Handle + Office WholeBuilding - Sm Office Schedule Set, !- Name + , !- Hours of Operation Schedule Name + {e7ccc403-db4a-44c7-a102-16180f0ba854}, !- Number of People Schedule Name + {6ae7c6d5-275f-4ba7-9e4b-76a1cb8ad97e}, !- People Activity Level Schedule Name + {3e2fc2f6-24f9-4710-b4c0-210fd3bbf695}, !- Lighting Schedule Name + {8ead7c67-f361-462f-954d-b4d73a49a795}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {a360263d-aeda-4f75-bafa-3da4772922a8}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:Schedule:Ruleset, + {e7ccc403-db4a-44c7-a102-16180f0ba854}, !- Handle + OfficeSmall BLDG_OCC_SCH, !- Name + {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name + {5e77fde5-bbf8-441d-9aac-ca96bbf529c7}, !- Default Day Schedule Name + {dad63d4c-600c-4508-ae3e-c12682204df3}, !- Summer Design Day Schedule Name + {61f0e8a0-ef9b-450c-981c-96d62a892d80}; !- Winter Design Day Schedule Name + +OS:Schedule:Day, + {5e77fde5-bbf8-441d-9aac-ca96bbf529c7}, !- Handle + OfficeSmall BLDG_OCC_SCH Default, !- Name + {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 + +OS:Schedule:Day, + {61f0e8a0-ef9b-450c-981c-96d62a892d80}, !- Handle + OfficeSmall BLDG_OCC_SCH Winter Design Day, !- Name + {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 + +OS:Schedule:Day, + {dad63d4c-600c-4508-ae3e-c12682204df3}, !- Handle + OfficeSmall BLDG_OCC_SCH Summer Design Day, !- Name + {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 1; !- Value Until Time 1 + +OS:Schedule:Rule, + {f8d8be8c-489b-4bba-b728-5f33c5b793b9}, !- Handle + Schedule Rule 4, !- Name + {e7ccc403-db4a-44c7-a102-16180f0ba854}, !- Schedule Ruleset Name + 0, !- Rule Order + {404d6e07-bec4-4a35-b78d-48d15a995946}, !- Day Schedule Name + , !- Apply Sunday + Yes, !- Apply Monday + Yes, !- Apply Tuesday + Yes, !- Apply Wednesday + Yes, !- Apply Thursday + Yes, !- Apply Friday + , !- Apply Saturday + , !- Apply Holiday + DateRange, !- Date Specification Type + 1, !- Start Month + 1, !- Start Day + 12, !- End Month + 31; !- End Day + +OS:Schedule:Day, + {404d6e07-bec4-4a35-b78d-48d15a995946}, !- Handle + OfficeSmall BLDG_OCC_SCH Wkdy Day, !- Name + {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 6, !- Hour 1 + 0, !- Minute 1 + 0, !- Value Until Time 1 + 7, !- Hour 2 + 0, !- Minute 2 + 0.11, !- Value Until Time 2 + 8, !- Hour 3 + 0, !- Minute 3 + 0.21, !- Value Until Time 3 + 12, !- Hour 4 + 0, !- Minute 4 + 1, !- Value Until Time 4 + 13, !- Hour 5 + 0, !- Minute 5 + 0.53, !- Value Until Time 5 + 17, !- Hour 6 + 0, !- Minute 6 + 1, !- Value Until Time 6 + 18, !- Hour 7 + 0, !- Minute 7 + 0.32, !- Value Until Time 7 + 22, !- Hour 8 + 0, !- Minute 8 + 0.11, !- Value Until Time 8 + 23, !- Hour 9 + 0, !- Minute 9 + 0.05, !- Value Until Time 9 + 24, !- Hour 10 + 0, !- Minute 10 + 0; !- Value Until Time 10 + +OS:Schedule:Ruleset, + {6ae7c6d5-275f-4ba7-9e4b-76a1cb8ad97e}, !- Handle + OfficeSmall ACTIVITY_SCH, !- Name + {8104ed65-ad94-4bee-a008-208d5952ea9a}, !- Schedule Type Limits Name + {35693924-338f-4812-9508-bc2c2320acaa}, !- Default Day Schedule Name + {380cbff0-f2e7-4255-adcd-41598c6c24e2}, !- Summer Design Day Schedule Name + {553e287a-9d5b-40c8-abf8-f2f4a8acf6d2}; !- Winter Design Day Schedule Name + +OS:Schedule:Day, + {35693924-338f-4812-9508-bc2c2320acaa}, !- Handle + OfficeSmall ACTIVITY_SCH Default, !- Name + {8104ed65-ad94-4bee-a008-208d5952ea9a}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 120; !- Value Until Time 1 + +OS:Schedule:Day, + {553e287a-9d5b-40c8-abf8-f2f4a8acf6d2}, !- Handle + OfficeSmall ACTIVITY_SCH Winter Design Day, !- Name + {8104ed65-ad94-4bee-a008-208d5952ea9a}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 120; !- Value Until Time 1 + +OS:Schedule:Day, + {380cbff0-f2e7-4255-adcd-41598c6c24e2}, !- Handle + OfficeSmall ACTIVITY_SCH Summer Design Day, !- Name + {8104ed65-ad94-4bee-a008-208d5952ea9a}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 120; !- Value Until Time 1 + +OS:ScheduleTypeLimits, + {8104ed65-ad94-4bee-a008-208d5952ea9a}, !- Handle + ActivityLevel, !- Name + 0, !- Lower Limit Value + , !- Upper Limit Value + Continuous, !- Numeric Type + ActivityLevel; !- Unit Type + +OS:Schedule:Ruleset, + {3e2fc2f6-24f9-4710-b4c0-210fd3bbf695}, !- Handle + OfficeSmall BLDG_LIGHT_SCH_2013, !- Name + {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name + {ab38070c-332c-4bfa-9795-324d18932f1a}, !- Default Day Schedule Name + {545bd10a-e06f-4b37-87fb-097c62bc50e4}, !- Summer Design Day Schedule Name + {035b3de6-a57c-4b7d-ad65-f8313ba5b5e8}; !- Winter Design Day Schedule Name + +OS:Schedule:Day, + {ab38070c-332c-4bfa-9795-324d18932f1a}, !- Handle + OfficeSmall BLDG_LIGHT_SCH_2013 Default, !- Name + {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 5, !- Hour 1 + 0, !- Minute 1 + 0.18, !- Value Until Time 1 + 6, !- Hour 2 + 0, !- Minute 2 + 0.23, !- Value Until Time 2 + 7, !- Hour 3 + 0, !- Minute 3 + 0.178641345, !- Value Until Time 3 + 8, !- Hour 4 + 0, !- Minute 4 + 0.32621463, !- Value Until Time 4 + 12, !- Hour 5 + 0, !- Minute 5 + 0.69903135, !- Value Until Time 5 + 13, !- Hour 6 + 0, !- Minute 6 + 0.6213612, !- Value Until Time 6 + 17, !- Hour 7 + 0, !- Minute 7 + 0.69903135, !- Value Until Time 7 + 18, !- Hour 8 + 0, !- Minute 8 + 0.473787915, !- Value Until Time 8 + 20, !- Hour 9 + 0, !- Minute 9 + 0.32621463, !- Value Until Time 9 + 22, !- Hour 10 + 0, !- Minute 10 + 0.24854448, !- Value Until Time 10 + 23, !- Hour 11 + 0, !- Minute 11 + 0.178641345, !- Value Until Time 11 + 24, !- Hour 12 + 0, !- Minute 12 + 0.18; !- Value Until Time 12 + +OS:Schedule:Rule, + {e5137793-6155-4f38-b9ac-67faf4cb228c}, !- Handle + Schedule Rule 5, !- Name + {3e2fc2f6-24f9-4710-b4c0-210fd3bbf695}, !- Schedule Ruleset Name + 1, !- Rule Order + {4406b98b-31bd-4dc2-a658-13bcf3846951}, !- Day Schedule Name + , !- Apply Sunday + Yes, !- Apply Monday + Yes, !- Apply Tuesday + Yes, !- Apply Wednesday + Yes, !- Apply Thursday + Yes, !- Apply Friday + , !- Apply Saturday + , !- Apply Holiday + DateRange, !- Date Specification Type + 1, !- Start Month + 1, !- Start Day + 12, !- End Month + 31; !- End Day + +OS:Schedule:Day, + {4406b98b-31bd-4dc2-a658-13bcf3846951}, !- Handle + OfficeSmall BLDG_LIGHT_SCH_2013 Default|Wkdy Day, !- Name + {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 5, !- Hour 1 + 0, !- Minute 1 + 0.18, !- Value Until Time 1 + 6, !- Hour 2 + 0, !- Minute 2 + 0.23, !- Value Until Time 2 + 7, !- Hour 3 + 0, !- Minute 3 + 0.178641345, !- Value Until Time 3 + 8, !- Hour 4 + 0, !- Minute 4 + 0.32621463, !- Value Until Time 4 + 12, !- Hour 5 + 0, !- Minute 5 + 0.69903135, !- Value Until Time 5 + 13, !- Hour 6 + 0, !- Minute 6 + 0.6213612, !- Value Until Time 6 + 17, !- Hour 7 + 0, !- Minute 7 + 0.69903135, !- Value Until Time 7 + 18, !- Hour 8 + 0, !- Minute 8 + 0.473787915, !- Value Until Time 8 + 20, !- Hour 9 + 0, !- Minute 9 + 0.32621463, !- Value Until Time 9 + 22, !- Hour 10 + 0, !- Minute 10 + 0.24854448, !- Value Until Time 10 + 23, !- Hour 11 + 0, !- Minute 11 + 0.178641345, !- Value Until Time 11 + 24, !- Hour 12 + 0, !- Minute 12 + 0.18; !- Value Until Time 12 + +OS:Schedule:Day, + {545bd10a-e06f-4b37-87fb-097c62bc50e4}, !- Handle + OfficeSmall BLDG_LIGHT_SCH_2013 Summer Design Day, !- Name + {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 1; !- Value Until Time 1 + +OS:Schedule:Rule, + {c9c872b7-a3e2-4684-88a1-a3f527bd2637}, !- Handle + Schedule Rule 6, !- Name + {3e2fc2f6-24f9-4710-b4c0-210fd3bbf695}, !- Schedule Ruleset Name + 0, !- Rule Order + {b08a7022-e154-434e-8d52-2c9017c4d21b}, !- Day Schedule Name + Yes, !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + Yes, !- Apply Saturday + , !- Apply Holiday + DateRange, !- Date Specification Type + 1, !- Start Month + 1, !- Start Day + 12, !- End Month + 31; !- End Day + +OS:Schedule:Day, + {b08a7022-e154-434e-8d52-2c9017c4d21b}, !- Handle + OfficeSmall BLDG_LIGHT_SCH_2013 Wknd Day, !- Name + {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0.18; !- Value Until Time 1 + +OS:Schedule:Day, + {035b3de6-a57c-4b7d-ad65-f8313ba5b5e8}, !- Handle + OfficeSmall BLDG_LIGHT_SCH_2013 Winter Design Day, !- Name + {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 + +OS:Schedule:Ruleset, + {8ead7c67-f361-462f-954d-b4d73a49a795}, !- Handle + OfficeSmall BLDG_EQUIP_SCH_2013, !- Name + {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name + {c15b6451-113d-471a-baf9-619b6926d762}, !- Default Day Schedule Name + {f5a2c526-e37f-4e47-b8da-7eff487c655d}, !- Summer Design Day Schedule Name + {b108ab75-a9da-4117-881e-5f51cdbf9445}; !- Winter Design Day Schedule Name + +OS:Schedule:Day, + {c15b6451-113d-471a-baf9-619b6926d762}, !- Handle + OfficeSmall BLDG_EQUIP_SCH_2013 Default, !- Name + {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 6, !- Hour 1 + 0, !- Minute 1 + 0.4094775565, !- Value Until Time 1 + 8, !- Hour 2 + 0, !- Minute 2 + 0.4797526335, !- Value Until Time 2 + 12, !- Hour 3 + 0, !- Minute 3 + 0.959505267, !- Value Until Time 3 + 13, !- Hour 4 + 0, !- Minute 4 + 0.90193495098, !- Value Until Time 4 + 17, !- Hour 5 + 0, !- Minute 5 + 0.959505267, !- Value Until Time 5 + 18, !- Hour 6 + 0, !- Minute 6 + 0.4797526335, !- Value Until Time 6 + 23, !- Hour 7 + 0, !- Minute 7 + 0.1919010534, !- Value Until Time 7 + 24, !- Hour 8 + 0, !- Minute 8 + 0.163791022; !- Value Until Time 8 + +OS:Schedule:Rule, + {a1898d48-f090-4d81-a26e-0ab049abe955}, !- Handle + Schedule Rule 7, !- Name + {8ead7c67-f361-462f-954d-b4d73a49a795}, !- Schedule Ruleset Name + 1, !- Rule Order + {337306e3-b404-4a68-bc99-79afe05dcf30}, !- Day Schedule Name + , !- Apply Sunday + Yes, !- Apply Monday + Yes, !- Apply Tuesday + Yes, !- Apply Wednesday + Yes, !- Apply Thursday + Yes, !- Apply Friday + , !- Apply Saturday + , !- Apply Holiday + DateRange, !- Date Specification Type + 1, !- Start Month + 1, !- Start Day + 12, !- End Month + 31; !- End Day + +OS:Schedule:Day, + {337306e3-b404-4a68-bc99-79afe05dcf30}, !- Handle + OfficeSmall BLDG_EQUIP_SCH_2013 Default|Wkdy Day, !- Name + {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 6, !- Hour 1 + 0, !- Minute 1 + 0.4094775565, !- Value Until Time 1 + 8, !- Hour 2 + 0, !- Minute 2 + 0.4797526335, !- Value Until Time 2 + 12, !- Hour 3 + 0, !- Minute 3 + 0.959505267, !- Value Until Time 3 + 13, !- Hour 4 + 0, !- Minute 4 + 0.90193495098, !- Value Until Time 4 + 17, !- Hour 5 + 0, !- Minute 5 + 0.959505267, !- Value Until Time 5 + 18, !- Hour 6 + 0, !- Minute 6 + 0.4797526335, !- Value Until Time 6 + 23, !- Hour 7 + 0, !- Minute 7 + 0.1919010534, !- Value Until Time 7 + 24, !- Hour 8 + 0, !- Minute 8 + 0.163791022; !- Value Until Time 8 + +OS:Schedule:Day, + {f5a2c526-e37f-4e47-b8da-7eff487c655d}, !- Handle + OfficeSmall BLDG_EQUIP_SCH_2013 Summer Design Day, !- Name + {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 1; !- Value Until Time 1 + +OS:Schedule:Rule, + {079a9612-2149-45f3-b8fb-d21c1c73c27a}, !- Handle + Schedule Rule 8, !- Name + {8ead7c67-f361-462f-954d-b4d73a49a795}, !- Schedule Ruleset Name + 0, !- Rule Order + {45eef2c0-77a8-41a1-b042-1fbffddf69e0}, !- Day Schedule Name + Yes, !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + Yes, !- Apply Saturday + , !- Apply Holiday + DateRange, !- Date Specification Type + 1, !- Start Month + 1, !- Start Day + 12, !- End Month + 31; !- End Day + +OS:Schedule:Day, + {45eef2c0-77a8-41a1-b042-1fbffddf69e0}, !- Handle + OfficeSmall BLDG_EQUIP_SCH_2013 Wknd Day, !- Name + {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0.1637910226; !- Value Until Time 1 + +OS:Schedule:Day, + {b108ab75-a9da-4117-881e-5f51cdbf9445}, !- Handle + OfficeSmall BLDG_EQUIP_SCH_2013 Winter Design Day, !- Name + {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 + +OS:Schedule:Ruleset, + {a360263d-aeda-4f75-bafa-3da4772922a8}, !- Handle + OfficeSmall INFIL_QUARTER_ON_SCH, !- Name + {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name + {ba6a7c05-295f-4417-b227-2e3f0a7ee329}, !- Default Day Schedule Name + {707374c5-a1d0-45a4-91b7-d6ff2ed8d16e}, !- Summer Design Day Schedule Name + {d4cace85-ca92-4aeb-8260-ea9fa458c3ec}; !- Winter Design Day Schedule Name + +OS:Schedule:Day, + {ba6a7c05-295f-4417-b227-2e3f0a7ee329}, !- Handle + OfficeSmall INFIL_QUARTER_ON_SCH Default, !- Name + {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 1; !- Value Until Time 1 + +OS:Schedule:Day, + {707374c5-a1d0-45a4-91b7-d6ff2ed8d16e}, !- Handle + OfficeSmall INFIL_QUARTER_ON_SCH Summer Design Day, !- Name + {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 7, !- Hour 1 + 0, !- Minute 1 + 1, !- Value Until Time 1 + 19, !- Hour 2 + 0, !- Minute 2 + 0.25, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 1; !- Value Until Time 3 + +OS:Schedule:Rule, + {52766bae-17e7-4402-8231-b0430db6bb52}, !- Handle + Schedule Rule 9, !- Name + {a360263d-aeda-4f75-bafa-3da4772922a8}, !- Schedule Ruleset Name + 1, !- Rule Order + {fc01d6fc-d969-44d1-a67c-a9ff3e5b6cd6}, !- Day Schedule Name + , !- Apply Sunday + Yes, !- Apply Monday + Yes, !- Apply Tuesday + Yes, !- Apply Wednesday + Yes, !- Apply Thursday + Yes, !- Apply Friday + , !- Apply Saturday + , !- Apply Holiday + DateRange, !- Date Specification Type + 1, !- Start Month + 1, !- Start Day + 12, !- End Month + 31; !- End Day + +OS:Schedule:Day, + {fc01d6fc-d969-44d1-a67c-a9ff3e5b6cd6}, !- Handle + OfficeSmall INFIL_QUARTER_ON_SCH SmrDsn|Wkdy Day, !- Name + {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 7, !- Hour 1 + 0, !- Minute 1 + 1, !- Value Until Time 1 + 19, !- Hour 2 + 0, !- Minute 2 + 0.25, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 1; !- Value Until Time 3 + +OS:Schedule:Day, + {d4cace85-ca92-4aeb-8260-ea9fa458c3ec}, !- Handle + OfficeSmall INFIL_QUARTER_ON_SCH Winter Design Day, !- Name + {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 7, !- Hour 1 + 0, !- Minute 1 + 1, !- Value Until Time 1 + 18, !- Hour 2 + 0, !- Minute 2 + 0.25, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 1; !- Value Until Time 3 + +OS:Schedule:Rule, + {724f72fd-20c3-4c46-bf63-6c95bcdbae4e}, !- Handle + Schedule Rule 10, !- Name + {a360263d-aeda-4f75-bafa-3da4772922a8}, !- Schedule Ruleset Name + 0, !- Rule Order + {3a15d0a5-3713-4a26-b0e9-1769737d7390}, !- Day Schedule Name + , !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + Yes, !- Apply Saturday + , !- Apply Holiday + DateRange, !- Date Specification Type + 1, !- Start Month + 1, !- Start Day + 12, !- End Month + 31; !- End Day + +OS:Schedule:Day, + {3a15d0a5-3713-4a26-b0e9-1769737d7390}, !- Handle + OfficeSmall INFIL_QUARTER_ON_SCH WntrDsn|Sat Day, !- Name + {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 7, !- Hour 1 + 0, !- Minute 1 + 1, !- Value Until Time 1 + 18, !- Hour 2 + 0, !- Minute 2 + 0.25, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 1; !- Value Until Time 3 + +OS:ThermostatSetpoint:DualSetpoint, + {25d4bc1b-3e28-44db-a022-9e0d435e9b38}, !- Handle + Office WholeBuilding - Sm Office Thermostat, !- Name + {706f2bd2-54aa-4a93-85dc-82a98ce2b46c}, !- Heating Setpoint Temperature Schedule Name + {4636603a-6678-47b5-9691-213155abb876}; !- Cooling Setpoint Temperature Schedule Name + +OS:Schedule:Ruleset, + {706f2bd2-54aa-4a93-85dc-82a98ce2b46c}, !- Handle + OfficeSmall HTGSETP_SCH_NO_OPTIMUM, !- Name + {e92fdb7e-ac44-48e6-af6f-5961d4c07a59}, !- Schedule Type Limits Name + {31614d21-10b7-4980-9ee4-576068f2fac5}, !- Default Day Schedule Name + {0888b612-d347-4524-b9e8-455ae925676e}, !- Summer Design Day Schedule Name + {772db231-eb39-41fa-b99f-07e70a0a1dd6}; !- Winter Design Day Schedule Name + +OS:Schedule:Day, + {31614d21-10b7-4980-9ee4-576068f2fac5}, !- Handle + OfficeSmall HTGSETP_SCH_NO_OPTIMUM Default, !- Name + {e92fdb7e-ac44-48e6-af6f-5961d4c07a59}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 15.56; !- Value Until Time 1 + +OS:Schedule:Day, + {0888b612-d347-4524-b9e8-455ae925676e}, !- Handle + OfficeSmall HTGSETP_SCH_NO_OPTIMUM Summer Design Day, !- Name + {e92fdb7e-ac44-48e6-af6f-5961d4c07a59}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 15.56; !- Value Until Time 1 + +OS:Schedule:Rule, + {920ed06a-b082-4798-8224-fcac66decf11}, !- Handle + Schedule Rule 11, !- Name + {706f2bd2-54aa-4a93-85dc-82a98ce2b46c}, !- Schedule Ruleset Name + 0, !- Rule Order + {a27f0771-908c-4832-85ee-6da06dd0d7db}, !- Day Schedule Name + , !- Apply Sunday + Yes, !- Apply Monday + Yes, !- Apply Tuesday + Yes, !- Apply Wednesday + Yes, !- Apply Thursday + Yes, !- Apply Friday + , !- Apply Saturday + , !- Apply Holiday + DateRange, !- Date Specification Type + 1, !- Start Month + 1, !- Start Day + 12, !- End Month + 31; !- End Day + +OS:Schedule:Day, + {a27f0771-908c-4832-85ee-6da06dd0d7db}, !- Handle + OfficeSmall HTGSETP_SCH_NO_OPTIMUM Wkdy Day, !- Name + {e92fdb7e-ac44-48e6-af6f-5961d4c07a59}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 6, !- Hour 1 + 0, !- Minute 1 + 15.56, !- Value Until Time 1 + 19, !- Hour 2 + 0, !- Minute 2 + 21.11, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 15.56; !- Value Until Time 3 + +OS:Schedule:Day, + {772db231-eb39-41fa-b99f-07e70a0a1dd6}, !- Handle + OfficeSmall HTGSETP_SCH_NO_OPTIMUM Winter Design Day, !- Name + {e92fdb7e-ac44-48e6-af6f-5961d4c07a59}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 21.11; !- Value Until Time 1 + +OS:ScheduleTypeLimits, + {e92fdb7e-ac44-48e6-af6f-5961d4c07a59}, !- Handle + Temperature, !- Name + , !- Lower Limit Value + , !- Upper Limit Value + Continuous, !- Numeric Type + Temperature; !- Unit Type + +OS:Schedule:Ruleset, + {4636603a-6678-47b5-9691-213155abb876}, !- Handle + OfficeSmall CLGSETP_SCH_NO_OPTIMUM, !- Name + {e92fdb7e-ac44-48e6-af6f-5961d4c07a59}, !- Schedule Type Limits Name + {eed4a8a2-a1a9-43d9-9c5b-3f244a818663}, !- Default Day Schedule Name + {323fee06-642b-4b0a-91f7-f214c4706d0f}, !- Summer Design Day Schedule Name + {6785e2dd-eeda-4d98-bbf4-26357d318b29}; !- Winter Design Day Schedule Name + +OS:Schedule:Day, + {eed4a8a2-a1a9-43d9-9c5b-3f244a818663}, !- Handle + OfficeSmall CLGSETP_SCH_NO_OPTIMUM Default, !- Name + {e92fdb7e-ac44-48e6-af6f-5961d4c07a59}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 29.44; !- Value Until Time 1 + +OS:Schedule:Day, + {323fee06-642b-4b0a-91f7-f214c4706d0f}, !- Handle + OfficeSmall CLGSETP_SCH_NO_OPTIMUM Summer Design Day, !- Name + {e92fdb7e-ac44-48e6-af6f-5961d4c07a59}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 23.89; !- Value Until Time 1 + +OS:Schedule:Rule, + {79acc6aa-c212-4d8d-80e2-5cbb92befc12}, !- Handle + Schedule Rule 12, !- Name + {4636603a-6678-47b5-9691-213155abb876}, !- Schedule Ruleset Name + 0, !- Rule Order + {b3de3f91-7fad-4d80-8753-398f4596f01a}, !- Day Schedule Name + , !- Apply Sunday + Yes, !- Apply Monday + Yes, !- Apply Tuesday + Yes, !- Apply Wednesday + Yes, !- Apply Thursday + Yes, !- Apply Friday + , !- Apply Saturday + , !- Apply Holiday + DateRange, !- Date Specification Type + 1, !- Start Month + 1, !- Start Day + 12, !- End Month + 31; !- End Day + +OS:Schedule:Day, + {b3de3f91-7fad-4d80-8753-398f4596f01a}, !- Handle + OfficeSmall CLGSETP_SCH_NO_OPTIMUM Wkdy Day, !- Name + {e92fdb7e-ac44-48e6-af6f-5961d4c07a59}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 6, !- Hour 1 + 0, !- Minute 1 + 29.44, !- Value Until Time 1 + 18, !- Hour 2 + 0, !- Minute 2 + 23.89, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 29.44; !- Value Until Time 3 + +OS:Schedule:Day, + {6785e2dd-eeda-4d98-bbf4-26357d318b29}, !- Handle + OfficeSmall CLGSETP_SCH_NO_OPTIMUM Winter Design Day, !- Name + {e92fdb7e-ac44-48e6-af6f-5961d4c07a59}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 29.44; !- Value Until Time 1 + +OS:SpaceInfiltration:DesignFlowRate, + {2b6b3334-68f2-46f2-8545-78c9f21690df}, !- Handle + Perimeter_ZN_1 Infiltration, !- Name + {72459874-7e2c-4ecd-ae58-b2d96c368b31}, !- Space or SpaceType Name + {a360263d-aeda-4f75-bafa-3da4772922a8}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.000569573389606515, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {ed54b4b2-6c52-4cfa-95c5-9c2884c2fa4d}, !- Handle + Perimeter_ZN_2 Infiltration, !- Name + {0ebdaea7-c6cb-452f-b121-7bbfcb1d95b8}, !- Space or SpaceType Name + {a360263d-aeda-4f75-bafa-3da4772922a8}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.000569573389606516, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {1f7fa6b2-7e03-4397-87cc-4b435a564c0e}, !- Handle + Perimeter_ZN_3 Infiltration, !- Name + {bb97cae6-ab6e-4ca9-a862-a3e532ee5e5d}, !- Space or SpaceType Name + {a360263d-aeda-4f75-bafa-3da4772922a8}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.000569573389606516, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {a1a09f6a-2638-4476-ba70-90ff2c4c4818}, !- Handle + Perimeter_ZN_4 Infiltration, !- Name + {f9fb4430-2ed2-4cfb-bf10-1172712402a2}, !- Space or SpaceType Name + {a360263d-aeda-4f75-bafa-3da4772922a8}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.000569573389606516, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- Velocity Squared Term Coefficient + +OS:SurfaceConvectionAlgorithm:Inside, + {7a876238-be0d-4c77-bd5d-482bfe885e8a}, !- Handle + TARP; !- Algorithm + +OS:SurfaceConvectionAlgorithm:Outside, + {3ba87ecf-0049-4919-84b3-e75242187323}, !- Handle + TARP; !- Algorithm + +OS:Material:NoMass, + {8258d3ce-2d5b-4aab-a611-c03ef07500e5}, !- Handle + CP02 CARPET PAD, !- Name + VeryRough, !- Roughness + 0.21648, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.8; !- Visible Absorptance + +OS:Material, + {2b07f62b-a057-4e96-84b1-c3044d2010e2}, !- Handle + 100mm Normalweight concrete floor, !- Name + MediumSmooth, !- Roughness + 0.1016, !- Thickness {m} + 2.31, !- Conductivity {W/m-K} + 2322, !- Density {kg/m3} + 832; !- Specific Heat {J/kg-K} + +OS:Material:NoMass, + {a7924022-c277-48c4-b630-0bac890ca27e}, !- Handle + Nonres_Floor_Insulation, !- Name + MediumSmooth, !- Roughness + 2.88291975297193, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +OS:Material, + {f55c83df-b14b-4e7d-a5a7-5d3cb5773743}, !- Handle + G01 13mm gypsum board, !- Name + Smooth, !- Roughness + 0.0127, !- Thickness {m} + 0.16, !- Conductivity {W/m-K} + 800, !- Density {kg/m3} + 1090, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.5; !- Visible Absorptance + +OS:Material, + {09a9a622-4334-475e-ad85-1053aa51e6b8}, !- Handle + M10 200mm concrete block basement wall, !- Name + MediumRough, !- Roughness + 0.2032, !- Thickness {m} + 1.326, !- Conductivity {W/m-K} + 1842, !- Density {kg/m3} + 912; !- Specific Heat {J/kg-K} + +OS:DefaultConstructionSet, + {43439ea6-b207-4356-ab36-b087c1b4dd53}, !- Handle + 90.1-2013 - SmOffice - ASHRAE 169-2006-5A, !- Name + {edaf5054-c05b-463b-81ad-4e31d2955970}, !- Default Exterior Surface Constructions Name + {0413e2e5-2b47-41a6-a29d-0f19cb17c0ea}, !- Default Interior Surface Constructions Name + {e08fbe7f-5641-4af4-ae17-3fabbb5e03b0}, !- Default Ground Contact Surface Constructions Name + {654846de-dd01-4acc-8f1c-5a85ad54e00e}, !- Default Exterior SubSurface Constructions Name + {596623c9-bf89-43c6-8d68-40455cc98389}, !- Default Interior SubSurface Constructions Name + {62dc41c8-486e-41f9-9982-bbec7364489c}, !- Interior Partition Construction Name + , !- Space Shading Construction Name + , !- Building Shading Construction Name + , !- Site Shading Construction Name + ; !- Adiabatic Surface Construction Name + +OS:DefaultSurfaceConstructions, + {edaf5054-c05b-463b-81ad-4e31d2955970}, !- Handle + Default Surface Constructions 1, !- Name + {f9442173-380c-4ab1-80d3-9d6982578b4b}, !- Floor Construction Name + {1429a5d1-b368-4f38-aee7-00d91d7217cc}, !- Wall Construction Name + {a8be2a61-33e1-4109-9fed-7d561df58731}; !- Roof Ceiling Construction Name + +OS:Construction, + {f9442173-380c-4ab1-80d3-9d6982578b4b}, !- Handle + Typical Insulated Exterior Mass Floor R-19.61, !- Name + {0eb72719-6e78-4c4e-bf1e-fd7da64cb80f}, !- Surface Rendering Name + {c66f70f4-f41c-4376-9141-4e9e10d378f6}, !- Layer 1 + {b60ca716-1db7-4313-bb48-cb3db545021e}, !- Layer 2 + {ba2c7d65-d8e5-4501-8734-3f0425d019d1}; !- Layer 3 + +OS:StandardsInformation:Construction, + {481ebe91-3014-4880-be4d-a0aea8a0d847}, !- Handle + {f9442173-380c-4ab1-80d3-9d6982578b4b}, !- Construction Name + ExteriorFloor, !- Intended Surface Type + Mass; !- Standards Construction Type + +OS:Material:NoMass, + {c66f70f4-f41c-4376-9141-4e9e10d378f6}, !- Handle + Typical Insulation R-17.04, !- Name + Smooth, !- Roughness + 3.00071808532413, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +OS:Material, + {b60ca716-1db7-4313-bb48-cb3db545021e}, !- Handle + 4 in. Normalweight Concrete Floor, !- Name + MediumRough, !- Roughness + 0.1016, !- Thickness {m} + 2.31, !- Conductivity {W/m-K} + 2321.99999999999, !- Density {kg/m3} + 831.999999999997, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +OS:Material:NoMass, + {ba2c7d65-d8e5-4501-8734-3f0425d019d1}, !- Handle + Typical Carpet Pad, !- Name + Smooth, !- Roughness + 0.216479986995276, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.8; !- Visible Absorptance + +OS:Construction, + {1429a5d1-b368-4f38-aee7-00d91d7217cc}, !- Handle + Typical Insulated Wood Framed Exterior Wall R-19.61, !- Name + {9519cb8f-4106-4dfb-b8b9-5ad2c7e88617}, !- Surface Rendering Name + {d35641ab-9739-409d-b777-ed1aa61f9d24}, !- Layer 1 + {bbcd2525-b654-4ba5-a387-163a9738174b}, !- Layer 2 + {6c2e9510-8383-419e-8208-7fcc6c168a5b}, !- Layer 3 + {bbcd2525-b654-4ba5-a387-163a9738174b}; !- Layer 4 + +OS:StandardsInformation:Construction, + {2c639462-6701-4ae2-b484-8cf519376461}, !- Handle + {1429a5d1-b368-4f38-aee7-00d91d7217cc}, !- Construction Name + ExteriorWall, !- Intended Surface Type + WoodFramed; !- Standards Construction Type + +OS:Material, + {d35641ab-9739-409d-b777-ed1aa61f9d24}, !- Handle + 25mm Stucco, !- Name + Smooth, !- Roughness + 0.0254, !- Thickness {m} + 0.719999999999999, !- Conductivity {W/m-K} + 1855.99999999999, !- Density {kg/m3} + 839.999999999997, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +OS:Material, + {bbcd2525-b654-4ba5-a387-163a9738174b}, !- Handle + 5/8 in. Gypsum Board, !- Name + MediumSmooth, !- Roughness + 0.0159, !- Thickness {m} + 0.159999999999999, !- Conductivity {W/m-K} + 799.999999999999, !- Density {kg/m3} + 1090, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +OS:Material:NoMass, + {6c2e9510-8383-419e-8208-7fcc6c168a5b}, !- Handle + Typical Insulation R-17.43, !- Name + Smooth, !- Roughness + 3.06941942260806, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +OS:Construction, + {a8be2a61-33e1-4109-9fed-7d561df58731}, !- Handle + Typical Wood Joist Attic Floor R-47.62, !- Name + {cc8346ac-8b59-4ad5-b357-67214d44e4fe}, !- Surface Rendering Name + {bbcd2525-b654-4ba5-a387-163a9738174b}, !- Layer 1 + {1e677f16-8b76-45d0-b73a-5c07aabb5659}; !- Layer 2 + +OS:StandardsInformation:Construction, + {0562ae0e-dbf1-48e5-a227-9eb7c435c1b8}, !- Handle + {a8be2a61-33e1-4109-9fed-7d561df58731}, !- Construction Name + AtticFloor, !- Intended Surface Type + WoodFramed; !- Standards Construction Type + +OS:Material:NoMass, + {1e677f16-8b76-45d0-b73a-5c07aabb5659}, !- Handle + Typical Insulation R-45.98, !- Name + Smooth, !- Roughness + 8.09838632642688, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +OS:DefaultSurfaceConstructions, + {0413e2e5-2b47-41a6-a29d-0f19cb17c0ea}, !- Handle + Default Surface Constructions 2, !- Name + {c169bfac-9474-437c-8523-50c0b9a4f1cd}, !- Floor Construction Name + {4d2040a3-87f5-459a-b429-e2ac4b2437ec}, !- Wall Construction Name + {ed623cfb-e3fe-4266-ad1b-09810eb4b6ff}; !- Roof Ceiling Construction Name + +OS:Construction, + {c169bfac-9474-437c-8523-50c0b9a4f1cd}, !- Handle + Typical Interior Floor, !- Name + {e140f18b-0726-4e7c-9d09-b04c9c6e66ae}, !- Surface Rendering Name + {2b07f62b-a057-4e96-84b1-c3044d2010e2}, !- Layer 1 + {8258d3ce-2d5b-4aab-a611-c03ef07500e5}; !- Layer 2 + +OS:StandardsInformation:Construction, + {3c6c70c7-7892-4d55-9911-eb53bdb9fc4b}, !- Handle + {c169bfac-9474-437c-8523-50c0b9a4f1cd}, !- Construction Name + InteriorFloor, !- Intended Surface Type + ; !- Standards Construction Type + +OS:Construction, + {4d2040a3-87f5-459a-b429-e2ac4b2437ec}, !- Handle + Typical Interior Wall, !- Name + {d4156f49-65c8-463e-80e2-4f97d2093a61}, !- Surface Rendering Name + {f55c83df-b14b-4e7d-a5a7-5d3cb5773743}, !- Layer 1 + {f55c83df-b14b-4e7d-a5a7-5d3cb5773743}; !- Layer 2 + +OS:StandardsInformation:Construction, + {80109ace-1da7-49bf-99d1-1b1b37094217}, !- Handle + {4d2040a3-87f5-459a-b429-e2ac4b2437ec}, !- Construction Name + InteriorWall, !- Intended Surface Type + ; !- Standards Construction Type + +OS:Construction, + {ed623cfb-e3fe-4266-ad1b-09810eb4b6ff}, !- Handle + Typical Interior Ceiling, !- Name + {34b78464-26b6-4806-8090-1d7cff3d0b35}, !- Surface Rendering Name + {8258d3ce-2d5b-4aab-a611-c03ef07500e5}, !- Layer 1 + {2b07f62b-a057-4e96-84b1-c3044d2010e2}; !- Layer 2 + +OS:StandardsInformation:Construction, + {c8f4011a-be0b-4be4-ab5f-61037d343dcf}, !- Handle + {ed623cfb-e3fe-4266-ad1b-09810eb4b6ff}, !- Construction Name + InteriorCeiling, !- Intended Surface Type + ; !- Standards Construction Type + +OS:DefaultSurfaceConstructions, + {e08fbe7f-5641-4af4-ae17-3fabbb5e03b0}, !- Handle + Default Surface Constructions 3, !- Name + {59ef7eca-d79b-4f97-ba97-9468a156e2c5}, !- Floor Construction Name + {558e5152-59e5-4e9e-9e56-1f2d39be1122}, !- Wall Construction Name + ; !- Roof Ceiling Construction Name + +OS:Construction, + {59ef7eca-d79b-4f97-ba97-9468a156e2c5}, !- Handle + Typical Insulated Carpeted 8in Slab Floor, !- Name + {af9c7b95-5abc-41d3-bef8-304fc144a613}, !- Surface Rendering Name + {469c7810-0b24-41df-b22f-a2bfe1485983}, !- Layer 1 + {ba2c7d65-d8e5-4501-8734-3f0425d019d1}; !- Layer 2 + +OS:StandardsInformation:Construction, + {960859d6-4943-410a-b9f5-696a039f27c7}, !- Handle + {59ef7eca-d79b-4f97-ba97-9468a156e2c5}, !- Construction Name + GroundContactFloor, !- Intended Surface Type + Mass; !- Standards Construction Type + +OS:Material:NoMass, + {c80eed9d-fe69-4e84-8abd-97a123639c47}, !- Handle + Typical Insulation R-1.15, !- Name + Smooth, !- Roughness + 0.202509043390129, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +OS:Material, + {469c7810-0b24-41df-b22f-a2bfe1485983}, !- Handle + 8 in. Normalweight Concrete Floor, !- Name + MediumRough, !- Roughness + 0.2032, !- Thickness {m} + 2.31, !- Conductivity {W/m-K} + 2321.99999999999, !- Density {kg/m3} + 831.999999999997, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +OS:Construction, + {558e5152-59e5-4e9e-9e56-1f2d39be1122}, !- Handle + Typical Insulated Basement Mass Wall, !- Name + {5bf5a1cf-9a10-4a77-b04f-a3b1c02a3c2d}, !- Surface Rendering Name + {81c6d30e-ff52-4f2e-9eee-17ff02a15841}; !- Layer 1 + +OS:StandardsInformation:Construction, + {b4119094-d1d0-456d-91d2-16ed39732d46}, !- Handle + {558e5152-59e5-4e9e-9e56-1f2d39be1122}, !- Construction Name + GroundContactWall, !- Intended Surface Type + Mass; !- Standards Construction Type + +OS:Material, + {81c6d30e-ff52-4f2e-9eee-17ff02a15841}, !- Handle + 8 in. Concrete Block Basement Wall, !- Name + MediumRough, !- Roughness + 0.2032, !- Thickness {m} + 1.326, !- Conductivity {W/m-K} + 1841.99999999999, !- Density {kg/m3} + 911.999999999999, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +OS:DefaultSubSurfaceConstructions, + {654846de-dd01-4acc-8f1c-5a85ad54e00e}, !- Handle + Default Sub Surface Constructions 1, !- Name + {5ffe9241-9c34-4a77-83c4-b52402ae2d4f}, !- Fixed Window Construction Name + {5ffe9241-9c34-4a77-83c4-b52402ae2d4f}, !- Operable Window Construction Name + {8d23af8b-9997-4410-b1da-981606998f47}, !- Door Construction Name + {573c04ff-59e5-4cee-8639-68659201f734}, !- Glass Door Construction Name + {2d16ade9-92ed-45cf-91dc-167914d438b3}, !- Overhead Door Construction Name + {89db0e08-1cd6-4806-aba2-d90fe900273a}, !- Skylight Construction Name + {8aa13b36-63e3-4093-8bf3-129da1390385}, !- Tubular Daylight Dome Construction Name + {8aa13b36-63e3-4093-8bf3-129da1390385}; !- Tubular Daylight Diffuser Construction Name + +OS:Construction, + {5ffe9241-9c34-4a77-83c4-b52402ae2d4f}, !- Handle + U 0.48 SHGC 0.40 Dbl Ref-D Clr 6mm/13mm, !- Name + {7c3bf8f6-a386-4373-b88d-ec9f1edf9d1f}, !- Surface Rendering Name + {80af6122-eb24-441d-a5a9-55555527f240}, !- Layer 1 + {4244b4dd-5a35-467e-80fe-e38aaefc958b}, !- Layer 2 + {2fb3c495-68c6-4e2b-895b-04bad2226747}; !- Layer 3 + +OS:StandardsInformation:Construction, + {8e54a5b9-0bff-4f8e-93ac-ee976f8f7f19}, !- Handle + {5ffe9241-9c34-4a77-83c4-b52402ae2d4f}, !- Construction Name + ExteriorWindow, !- Intended Surface Type + Metal framing (all other), !- Standards Construction Type + , !- Perturbable Layer + , !- Perturbable Layer Type + , !- Other Perturbable Layer Type + , !- Construction Standard + , !- Construction Standard Source + , !- Fenestration Type + , !- Fenestration Assembly Context + , !- Fenestration Number of Panes + Metal Framing; !- Fenestration Frame Type + +OS:WindowMaterial:Glazing, + {80af6122-eb24-441d-a5a9-55555527f240}, !- Handle + REF D CLEAR 6MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.00599999999999998, !- Thickness {m} + 0.429, !- Solar Transmittance at Normal Incidence + 0.308, !- Front Side Solar Reflectance at Normal Incidence + 0.379, !- Back Side Solar Reflectance at Normal Incidence + 0.334, !- Visible Transmittance at Normal Incidence + 0.453, !- Front Side Visible Reflectance at Normal Incidence + 0.505, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.82, !- Back Side Infrared Hemispherical Emissivity + 0.9, !- Conductivity {W/m-K} + 1, !- Dirt Correction Factor for Solar and Visible Transmittance + No; !- Solar Diffusing + +OS:WindowMaterial:Gas, + {4244b4dd-5a35-467e-80fe-e38aaefc958b}, !- Handle + AIR 13MM, !- Name + Air, !- Gas Type + 0.0127; !- Thickness {m} + +OS:WindowMaterial:Glazing, + {2fb3c495-68c6-4e2b-895b-04bad2226747}, !- Handle + CLEAR 6MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.00599999999999998, !- Thickness {m} + 0.775, !- Solar Transmittance at Normal Incidence + 0.071, !- Front Side Solar Reflectance at Normal Incidence + 0.071, !- Back Side Solar Reflectance at Normal Incidence + 0.881, !- Visible Transmittance at Normal Incidence + 0.08, !- Front Side Visible Reflectance at Normal Incidence + 0.08, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.84, !- Back Side Infrared Hemispherical Emissivity + 0.9, !- Conductivity {W/m-K} + 1, !- Dirt Correction Factor for Solar and Visible Transmittance + No; !- Solar Diffusing + +OS:Construction, + {8d23af8b-9997-4410-b1da-981606998f47}, !- Handle + Typical Insulated Metal Door R-2.0, !- Name + {7f63c944-1f94-4c1f-9998-1974c22cb14c}, !- Surface Rendering Name + {1223b4ec-675d-45e9-a0dc-8fcc5bd972a6}, !- Layer 1 + {c80eed9d-fe69-4e84-8abd-97a123639c47}; !- Layer 2 + +OS:StandardsInformation:Construction, + {01e3b50e-a4f8-43f9-a194-7bf045380bcd}, !- Handle + {8d23af8b-9997-4410-b1da-981606998f47}, !- Construction Name + ExteriorDoor, !- Intended Surface Type + ; !- Standards Construction Type + +OS:Material, + {1223b4ec-675d-45e9-a0dc-8fcc5bd972a6}, !- Handle + F08 Metal surface, !- Name + Smooth, !- Roughness + 0.0008, !- Thickness {m} + 45.2800000000001, !- Conductivity {W/m-K} + 7823.99999999999, !- Density {kg/m3} + 500, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +OS:Construction, + {573c04ff-59e5-4cee-8639-68659201f734}, !- Handle + U 0.44 SHGC 0.26 Dbl Ref-B-H Clr 6mm/13mm Air, !- Name + {28cf615c-acc2-492e-8cc0-57e309e9fff8}, !- Surface Rendering Name + {e5235694-4438-407b-bd79-b363a41ba3f1}, !- Layer 1 + {4244b4dd-5a35-467e-80fe-e38aaefc958b}, !- Layer 2 + {2fb3c495-68c6-4e2b-895b-04bad2226747}; !- Layer 3 + +OS:StandardsInformation:Construction, + {56339b4f-6028-4083-a675-431f04a96128}, !- Handle + {573c04ff-59e5-4cee-8639-68659201f734}, !- Construction Name + ExteriorWindow, !- Intended Surface Type + Metal framing (all other), !- Standards Construction Type + , !- Perturbable Layer + , !- Perturbable Layer Type + , !- Other Perturbable Layer Type + , !- Construction Standard + , !- Construction Standard Source + , !- Fenestration Type + , !- Fenestration Assembly Context + , !- Fenestration Number of Panes + Metal Framing; !- Fenestration Frame Type + +OS:WindowMaterial:Glazing, + {e5235694-4438-407b-bd79-b363a41ba3f1}, !- Handle + REF B CLEAR HI 6MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.00599999999999998, !- Thickness {m} + 0.24, !- Solar Transmittance at Normal Incidence + 0.16, !- Front Side Solar Reflectance at Normal Incidence + 0.32, !- Back Side Solar Reflectance at Normal Incidence + 0.3, !- Visible Transmittance at Normal Incidence + 0.16, !- Front Side Visible Reflectance at Normal Incidence + 0.29, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.6, !- Back Side Infrared Hemispherical Emissivity + 0.9, !- Conductivity {W/m-K} + 1, !- Dirt Correction Factor for Solar and Visible Transmittance + No; !- Solar Diffusing + +OS:Construction, + {2d16ade9-92ed-45cf-91dc-167914d438b3}, !- Handle + Typical Overhead Door R-2.0, !- Name + {82043cf7-cc71-401f-899c-e9cb0ad72a46}, !- Surface Rendering Name + {44fab86f-850a-4b6a-b793-fc592eb7c473}; !- Layer 1 + +OS:StandardsInformation:Construction, + {90e54da4-2bb7-408b-bc5a-83ce31c25cfa}, !- Handle + {2d16ade9-92ed-45cf-91dc-167914d438b3}, !- Construction Name + ExteriorDoor, !- Intended Surface Type + RollUp; !- Standards Construction Type + +OS:Material:NoMass, + {44fab86f-850a-4b6a-b793-fc592eb7c473}, !- Handle + Typical Insulation R-1.15 1, !- Name + Smooth, !- Roughness + 0.202526711234652, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +OS:Construction, + {89db0e08-1cd6-4806-aba2-d90fe900273a}, !- Handle + Window_U_0.50_SHGC_0.40_Skylight_Frame_Width_0.430_in, !- Name + {885f01f5-51d3-4835-9b28-91528bd98a7b}, !- Surface Rendering Name + {82a53b69-bec0-476e-b49a-0f3afa0405dc}, !- Layer 1 + {9af2d285-0efd-4227-9d2b-c807fb4d34b6}, !- Layer 2 + {965f3366-dbc1-41f7-a251-ee341c3dff1f}; !- Layer 3 + +OS:StandardsInformation:Construction, + {3b236bca-cd72-4a1f-ae1d-94867e6fe2f8}, !- Handle + {89db0e08-1cd6-4806-aba2-d90fe900273a}, !- Construction Name + Skylight, !- Intended Surface Type + ; !- Standards Construction Type + +OS:WindowMaterial:Glazing, + {82a53b69-bec0-476e-b49a-0f3afa0405dc}, !- Handle + Glass_2052_LayerAvg, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.00837, !- Thickness {m} + 0.507767, !- Solar Transmittance at Normal Incidence + 0.05422805, !- Front Side Solar Reflectance at Normal Incidence + 0.05449309, !- Back Side Solar Reflectance at Normal Incidence + 0.586833, !- Visible Transmittance at Normal Incidence + 0.05805, !- Front Side Visible Reflectance at Normal Incidence + 0.058397, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.84, !- Back Side Infrared Hemispherical Emissivity + 0.999999999999999, !- Conductivity {W/m-K} + 1, !- Dirt Correction Factor for Solar and Visible Transmittance + No; !- Solar Diffusing + +OS:WindowMaterial:Gas, + {9af2d285-0efd-4227-9d2b-c807fb4d34b6}, !- Handle + Gap_1_W_0_0038, !- Name + Air, !- Gas Type + 0.00379999999999999; !- Thickness {m} + +OS:WindowMaterial:Glazing, + {965f3366-dbc1-41f7-a251-ee341c3dff1f}, !- Handle + Glass_2027F_LayerAvg, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.00399999999999998, !- Thickness {m} + 0.369744, !- Solar Transmittance at Normal Incidence + 0.4700695, !- Front Side Solar Reflectance at Normal Incidence + 0.340935, !- Back Side Solar Reflectance at Normal Incidence + 0.765222, !- Visible Transmittance at Normal Incidence + 0.0546, !- Front Side Visible Reflectance at Normal Incidence + 0.073741, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.03675, !- Front Side Infrared Hemispherical Emissivity + 0.84, !- Back Side Infrared Hemispherical Emissivity + 0.999999999999999, !- Conductivity {W/m-K} + 1, !- Dirt Correction Factor for Solar and Visible Transmittance + No; !- Solar Diffusing + +OS:Construction, + {8aa13b36-63e3-4093-8bf3-129da1390385}, !- Handle + Typical Interior Window, !- Name + {7a52ddc4-c19e-4f4d-9c71-22692b8d2663}, !- Surface Rendering Name + {35ce1593-a0b3-4768-8801-92a079223853}; !- Layer 1 + +OS:StandardsInformation:Construction, + {e024aca7-675b-40c8-b081-814fa533b249}, !- Handle + {8aa13b36-63e3-4093-8bf3-129da1390385}, !- Construction Name + InteriorWindow, !- Intended Surface Type + ; !- Standards Construction Type + +OS:WindowMaterial:Glazing, + {35ce1593-a0b3-4768-8801-92a079223853}, !- Handle + Clear 3mm, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.00299999999999999, !- Thickness {m} + 0.837, !- Solar Transmittance at Normal Incidence + 0.075, !- Front Side Solar Reflectance at Normal Incidence + 0.075, !- Back Side Solar Reflectance at Normal Incidence + 0.898, !- Visible Transmittance at Normal Incidence + 0.081, !- Front Side Visible Reflectance at Normal Incidence + 0.081, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.84, !- Back Side Infrared Hemispherical Emissivity + 0.9, !- Conductivity {W/m-K} + 1, !- Dirt Correction Factor for Solar and Visible Transmittance + No; !- Solar Diffusing + +OS:DefaultSubSurfaceConstructions, + {596623c9-bf89-43c6-8d68-40455cc98389}, !- Handle + Default Sub Surface Constructions 2, !- Name + {8aa13b36-63e3-4093-8bf3-129da1390385}, !- Fixed Window Construction Name + {8aa13b36-63e3-4093-8bf3-129da1390385}, !- Operable Window Construction Name + {f54222b9-2215-427e-9496-49996d4c495b}, !- Door Construction Name + , !- Glass Door Construction Name + , !- Overhead Door Construction Name + , !- Skylight Construction Name + , !- Tubular Daylight Dome Construction Name + ; !- Tubular Daylight Diffuser Construction Name + +OS:Construction, + {f54222b9-2215-427e-9496-49996d4c495b}, !- Handle + Typical Interior Door, !- Name + {46853a40-696d-4ea9-8312-54ff93c50e86}, !- Surface Rendering Name + {82ac3188-a430-4450-b370-800bea459e25}; !- Layer 1 + +OS:StandardsInformation:Construction, + {47aed312-c6d7-45d6-9852-b9a9e675e80f}, !- Handle + {f54222b9-2215-427e-9496-49996d4c495b}, !- Construction Name + InteriorDoor, !- Intended Surface Type + ; !- Standards Construction Type + +OS:Material, + {82ac3188-a430-4450-b370-800bea459e25}, !- Handle + G05 25mm wood, !- Name + MediumSmooth, !- Roughness + 0.0254, !- Thickness {m} + 0.15, !- Conductivity {W/m-K} + 608, !- Density {kg/m3} + 1630, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.5, !- Solar Absorptance + 0.5; !- Visible Absorptance + +OS:Construction, + {62dc41c8-486e-41f9-9982-bbec7364489c}, !- Handle + Typical Interior Partition, !- Name + {ce2d45f0-c2a6-4e6f-83ef-997adcdc7c74}, !- Surface Rendering Name + {82ac3188-a430-4450-b370-800bea459e25}; !- Layer 1 + +OS:StandardsInformation:Construction, + {4cdc1ccb-3d82-4618-bcb6-3b54a652873b}, !- Handle + {62dc41c8-486e-41f9-9982-bbec7364489c}, !- Construction Name + InteriorPartition, !- Intended Surface Type + ; !- Standards Construction Type + +OS:DefaultConstructionSet, + {5dbc5807-b4cd-48b8-a864-61afd371e1f2}, !- Handle + 90.1-2013 - - Attic - ASHRAE 169-2006-5A, !- Name + {21068159-8a22-4197-8b0c-9d3f4c29d196}, !- Default Exterior Surface Constructions Name + {ae30cfc2-f7cd-4c87-8f99-f8027bba74bf}, !- Default Interior Surface Constructions Name + {76043c50-86a9-4ebb-9371-3d553d65a153}, !- Default Ground Contact Surface Constructions Name + {d914df09-0548-4194-a9ba-902288ebcbaf}, !- Default Exterior SubSurface Constructions Name + {ae348522-e5f1-43df-8bc5-bc2433ffa177}, !- Default Interior SubSurface Constructions Name + , !- Interior Partition Construction Name + , !- Space Shading Construction Name + , !- Building Shading Construction Name + , !- Site Shading Construction Name + ; !- Adiabatic Surface Construction Name + +OS:DefaultSurfaceConstructions, + {21068159-8a22-4197-8b0c-9d3f4c29d196}, !- Handle + Default Surface Constructions 4, !- Name + {91adb0cb-52e3-4838-890c-5238cb88ec06}, !- Floor Construction Name + , !- Wall Construction Name + {89ac7279-fd78-4979-8f87-988693849c51}; !- Roof Ceiling Construction Name + +OS:Construction, + {91adb0cb-52e3-4838-890c-5238cb88ec06}, !- Handle + Typical Attic Soffit, !- Name + {34d874e9-b837-4a65-bdbd-a5f975bb80f9}, !- Surface Rendering Name + {3bdc8dcd-01e5-48c7-a401-7524108e3f78}; !- Layer 1 + +OS:StandardsInformation:Construction, + {4372f7ab-a3cd-4967-8566-921a37c02d84}, !- Handle + {91adb0cb-52e3-4838-890c-5238cb88ec06}, !- Construction Name + AtticWall, !- Intended Surface Type + ; !- Standards Construction Type + +OS:Material, + {3bdc8dcd-01e5-48c7-a401-7524108e3f78}, !- Handle + 5/8 in. Plywood, !- Name + Smooth, !- Roughness + 0.0159, !- Thickness {m} + 0.12, !- Conductivity {W/m-K} + 543.999999999999, !- Density {kg/m3} + 1210, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +OS:Construction, + {89ac7279-fd78-4979-8f87-988693849c51}, !- Handle + Typical Uninsulated Wood Joist Attic Roof, !- Name + {a30e7eb2-1254-49a2-b1b5-e1413f2065f3}, !- Surface Rendering Name + {18c5487d-a09a-4e64-a041-f5c3c9e81974}, !- Layer 1 + {3bdc8dcd-01e5-48c7-a401-7524108e3f78}; !- Layer 2 + +OS:StandardsInformation:Construction, + {cfd9e4a5-70c4-4434-a8b6-16bfc2bda796}, !- Handle + {89ac7279-fd78-4979-8f87-988693849c51}, !- Construction Name + AtticRoof, !- Intended Surface Type + ; !- Standards Construction Type + +OS:Material, + {18c5487d-a09a-4e64-a041-f5c3c9e81974}, !- Handle + Asphalt Shingles, !- Name + VeryRough, !- Roughness + 0.00319999999999998, !- Thickness {m} + 0.04, !- Conductivity {W/m-K} + 1120, !- Density {kg/m3} + 1260, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +OS:DefaultSurfaceConstructions, + {ae30cfc2-f7cd-4c87-8f99-f8027bba74bf}, !- Handle + Default Surface Constructions 5, !- Name + {bf9e8846-caf9-46db-ac12-350610818d66}, !- Floor Construction Name + , !- Wall Construction Name + ; !- Roof Ceiling Construction Name + +OS:Construction, + {bf9e8846-caf9-46db-ac12-350610818d66}, !- Handle + Typical Wood Joist Attic Floor R-47.62 1, !- Name + {6ccecaf3-2f76-48b3-a946-19a63151d25b}, !- Surface Rendering Name + {bbcd2525-b654-4ba5-a387-163a9738174b}, !- Layer 1 + {cd08bafc-6927-4671-bc05-967e4c35db55}; !- Layer 2 + +OS:StandardsInformation:Construction, + {dfdbab25-a7a2-407c-9aea-26e537b627c4}, !- Handle + {bf9e8846-caf9-46db-ac12-350610818d66}, !- Construction Name + AtticFloor, !- Intended Surface Type + WoodFramed; !- Standards Construction Type + +OS:Material:NoMass, + {cd08bafc-6927-4671-bc05-967e4c35db55}, !- Handle + Typical Insulation R-45.98 1, !- Name + Smooth, !- Roughness + 8.09838632642688, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +OS:DefaultSurfaceConstructions, + {76043c50-86a9-4ebb-9371-3d553d65a153}, !- Handle + Default Surface Constructions 6, !- Name + , !- Floor Construction Name + , !- Wall Construction Name + ; !- Roof Ceiling Construction Name + +OS:DefaultSubSurfaceConstructions, + {d914df09-0548-4194-a9ba-902288ebcbaf}, !- Handle + Default Sub Surface Constructions 3, !- Name + , !- Fixed Window Construction Name + , !- Operable Window Construction Name + , !- Door Construction Name + , !- Glass Door Construction Name + , !- Overhead Door Construction Name + , !- Skylight Construction Name + , !- Tubular Daylight Dome Construction Name + ; !- Tubular Daylight Diffuser Construction Name + +OS:DefaultSubSurfaceConstructions, + {ae348522-e5f1-43df-8bc5-bc2433ffa177}, !- Handle + Default Sub Surface Constructions 4, !- Name + , !- Fixed Window Construction Name + , !- Operable Window Construction Name + , !- Door Construction Name + , !- Glass Door Construction Name + , !- Overhead Door Construction Name + , !- Skylight Construction Name + , !- Tubular Daylight Dome Construction Name + ; !- Tubular Daylight Diffuser Construction Name + +OS:Material, + {9566481e-a051-48ec-b353-0db4053666d4}, !- Handle + Std Wood 6inch, !- Name + MediumSmooth, !- Roughness + 0.15, !- Thickness {m} + 0.12, !- Conductivity {W/m-K} + 540, !- Density {kg/m3} + 1210, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +OS:Construction, + {8afb0e32-b868-4aae-9748-e45e6d724ed6}, !- Handle + InteriorFurnishings, !- Name + {08dd4ddb-7106-417c-a4cc-8ae1b6a8e191}, !- Surface Rendering Name + {9566481e-a051-48ec-b353-0db4053666d4}; !- Layer 1 + +OS:InternalMass:Definition, + {ad359729-df44-4476-99bf-acd120e975be}, !- Handle + Internal Mass Definition 1, !- Name + {8afb0e32-b868-4aae-9748-e45e6d724ed6}, !- Construction Name + SurfaceArea/Area, !- Design Level Calculation Method + , !- Surface Area {m2} + 2, !- Surface Area per Space Floor Area {dimensionless} + ; !- Surface Area per Person {m2/person} + +OS:InternalMass, + {9a9f9958-acfe-4339-92d3-dad2740e57cd}, !- Handle + Perimeter_ZN_1 Mass, !- Name + {ad359729-df44-4476-99bf-acd120e975be}, !- Internal Mass Definition Name + {72459874-7e2c-4ecd-ae58-b2d96c368b31}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {248f5e3a-9908-424c-9c69-0ad01f9c1200}, !- Handle + Perimeter_ZN_2 Mass, !- Name + {ad359729-df44-4476-99bf-acd120e975be}, !- Internal Mass Definition Name + {0ebdaea7-c6cb-452f-b121-7bbfcb1d95b8}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {b49490ba-fe68-4af4-bef0-76ef95d2e727}, !- Handle + Perimeter_ZN_3 Mass, !- Name + {ad359729-df44-4476-99bf-acd120e975be}, !- Internal Mass Definition Name + {bb97cae6-ab6e-4ca9-a862-a3e532ee5e5d}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {7f28e4b3-7532-44c3-8465-a84edf3de868}, !- Handle + Perimeter_ZN_4 Mass, !- Name + {ad359729-df44-4476-99bf-acd120e975be}, !- Internal Mass Definition Name + {f9fb4430-2ed2-4cfb-bf10-1172712402a2}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {5107db3c-624f-475c-9788-9f1d93121b0b}, !- Handle + Core_ZN Mass, !- Name + {ad359729-df44-4476-99bf-acd120e975be}, !- Internal Mass Definition Name + {32844cd3-cab3-4870-bbb6-6c79a28481b7}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:ThermalZone, + {07da4a00-d5c2-41b4-9f11-98b105ebba18}, !- Handle + Attic ZN, !- Name + , !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {f2f86e6c-2741-4e12-84f8-df3a22386bb2}, !- Zone Air Inlet Port List + {01f8cb4b-431c-4de4-81c1-a3b5f915bb21}, !- Zone Air Exhaust Port List + {162173d8-56d6-46a9-a522-d513b1b783e3}, !- Zone Air Node Name + {e77865b3-da9f-4815-9c47-61652c834671}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + {246c1889-e62b-4a65-9bbe-a0c333537e0a}, !- Group Rendering Name + {c892e56c-e995-4335-ad8a-e9fef4768248}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {75462882-d73c-4ad2-b367-0e6732ffc56f}, !- Handle + Attic ZN Zone Air Node, !- Name + {162173d8-56d6-46a9-a522-d513b1b783e3}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {162173d8-56d6-46a9-a522-d513b1b783e3}, !- Handle + {3e1680f1-b898-4953-9735-e67533ec8774}, !- Name + {07da4a00-d5c2-41b4-9f11-98b105ebba18}, !- Source Object + 11, !- Outlet Port + {75462882-d73c-4ad2-b367-0e6732ffc56f}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {f2f86e6c-2741-4e12-84f8-df3a22386bb2}, !- Handle + {f1aee1b2-7c1e-40d7-b531-5b97161fbcc2}, !- Name + {07da4a00-d5c2-41b4-9f11-98b105ebba18}; !- HVAC Component + +OS:PortList, + {01f8cb4b-431c-4de4-81c1-a3b5f915bb21}, !- Handle + {8952d9c7-86c3-4c97-b664-3e0ef47fe278}, !- Name + {07da4a00-d5c2-41b4-9f11-98b105ebba18}; !- HVAC Component + +OS:PortList, + {e77865b3-da9f-4815-9c47-61652c834671}, !- Handle + {39e668dd-6569-4fbb-ab11-26c499ff2fbe}, !- Name + {07da4a00-d5c2-41b4-9f11-98b105ebba18}; !- HVAC Component + +OS:Sizing:Zone, + {9d2b0bfe-9939-4bfb-9139-8f613e14d00d}, !- Handle + {07da4a00-d5c2-41b4-9f11-98b105ebba18}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + , !- Design Zone Air Distribution Effectiveness in Cooling Mode + , !- Design Zone Air Distribution Effectiveness in Heating Mode + No, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + autosize, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + autosize; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + +OS:ZoneHVAC:EquipmentList, + {b66fd9b4-d505-42d7-9a80-8fc00e6031ea}, !- Handle + Attic ZN Zone HVAC Equipment List, !- Name + {07da4a00-d5c2-41b4-9f11-98b105ebba18}; !- Thermal Zone + +OS:ThermostatSetpoint:DualSetpoint, + {c892e56c-e995-4335-ad8a-e9fef4768248}, !- Handle + Office Attic Thermostat 1; !- Name + +OS:ThermalZone, + {28915964-e2c4-4332-a684-5091ad72d321}, !- Handle + Core_ZN ZN, !- Name + , !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {d73eaa54-329c-48e5-9af9-8ae91fe06393}, !- Zone Air Inlet Port List + {e15fea07-7acb-4f28-8d5a-265b326015a2}, !- Zone Air Exhaust Port List + {994a1b93-2160-4988-86db-2a2fa46dfe4a}, !- Zone Air Node Name + {8ecbc7fc-f7b1-48b8-8307-4767d3fab1f8}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + {3baa8fec-a42d-48fb-b854-35aac5d2f82e}, !- Group Rendering Name + {058f3966-48da-47df-a237-4d358331db5f}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {7467fbcc-3fa1-455d-96d1-974b056b19c0}, !- Handle + Core_ZN ZN Zone Air Node, !- Name + {994a1b93-2160-4988-86db-2a2fa46dfe4a}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {994a1b93-2160-4988-86db-2a2fa46dfe4a}, !- Handle + {155b3c56-aacb-424a-8585-2803f3afafed}, !- Name + {28915964-e2c4-4332-a684-5091ad72d321}, !- Source Object + 11, !- Outlet Port + {7467fbcc-3fa1-455d-96d1-974b056b19c0}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {d73eaa54-329c-48e5-9af9-8ae91fe06393}, !- Handle + {f43f69c0-e14e-4dbb-9460-0ddc066ab541}, !- Name + {28915964-e2c4-4332-a684-5091ad72d321}, !- HVAC Component + {31f407fe-6b67-4565-85ea-a72d41da5d78}; !- Port 1 + +OS:PortList, + {e15fea07-7acb-4f28-8d5a-265b326015a2}, !- Handle + {84ae3b5a-3b9c-4e2b-be38-0b7fe2fed131}, !- Name + {28915964-e2c4-4332-a684-5091ad72d321}; !- HVAC Component + +OS:PortList, + {8ecbc7fc-f7b1-48b8-8307-4767d3fab1f8}, !- Handle + {781ce7f3-9ee8-4f33-b059-db533f9af809}, !- Name + {28915964-e2c4-4332-a684-5091ad72d321}, !- HVAC Component + {014cc4de-d1f6-4893-a610-af4b6bd4e914}; !- Port 1 + +OS:Sizing:Zone, + {b79dd67a-d9fd-456c-9233-1f5a71b189f3}, !- Handle + {28915964-e2c4-4332-a684-5091ad72d321}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.7777777777778, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 50.0000000000001, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + , !- Design Zone Air Distribution Effectiveness in Cooling Mode + , !- Design Zone Air Distribution Effectiveness in Heating Mode + No, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + autosize, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + autosize; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + +OS:ZoneHVAC:EquipmentList, + {165a0622-b8c8-4ae5-b8f1-a950173cfe43}, !- Handle + Core_ZN ZN Zone HVAC Equipment List, !- Name + {28915964-e2c4-4332-a684-5091ad72d321}, !- Thermal Zone + , !- Load Distribution Scheme + {9c121e06-a74a-4bc1-842e-a0f3f81fce0c}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction 1 + ; !- Zone Equipment Sequential Heating Fraction 1 + +OS:ThermostatSetpoint:DualSetpoint, + {058f3966-48da-47df-a237-4d358331db5f}, !- Handle + Office WholeBuilding - Sm Office Thermostat 1, !- Name + {706f2bd2-54aa-4a93-85dc-82a98ce2b46c}, !- Heating Setpoint Temperature Schedule Name + {4636603a-6678-47b5-9691-213155abb876}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermalZone, + {eccf2622-9374-4edf-8caf-1981d96b5c12}, !- Handle + Perimeter_ZN_1 ZN, !- Name + , !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {2deb7de2-4a0d-408e-95d1-c7bfeed54d2a}, !- Zone Air Inlet Port List + {b7e7df1f-5f69-4a94-9119-d6611d9e2d41}, !- Zone Air Exhaust Port List + {aec10616-162f-412c-97a8-140db04c389f}, !- Zone Air Node Name + {ad152a86-a2a5-4296-b589-502e7b1efd2d}, !- Zone Return Air Port List + {29c04ddc-9800-41e2-9f13-7ef9813ebbe4}, !- Primary Daylighting Control Name + 0.2399, !- Fraction of Zone Controlled by Primary Daylighting Control + {cb15831a-9a03-4081-b8d6-2e6c345aa5f3}, !- Secondary Daylighting Control Name + 0.0302, !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + {70f53569-f093-48ea-93f1-2f7bf55290fd}, !- Group Rendering Name + {44ab086d-134e-41de-a836-694790b3468f}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {d3d9d00a-6bc1-4ada-9612-75ab4dbe6132}, !- Handle + Perimeter_ZN_1 ZN Zone Air Node, !- Name + {aec10616-162f-412c-97a8-140db04c389f}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {aec10616-162f-412c-97a8-140db04c389f}, !- Handle + {5903b8ca-33ad-4973-af8c-b077d051a05a}, !- Name + {eccf2622-9374-4edf-8caf-1981d96b5c12}, !- Source Object + 11, !- Outlet Port + {d3d9d00a-6bc1-4ada-9612-75ab4dbe6132}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {2deb7de2-4a0d-408e-95d1-c7bfeed54d2a}, !- Handle + {da19c425-0036-4b42-96ae-fe7fbf03029d}, !- Name + {eccf2622-9374-4edf-8caf-1981d96b5c12}, !- HVAC Component + {7688355c-d28d-49a5-94e4-1e0faa562dd4}; !- Port 1 + +OS:PortList, + {b7e7df1f-5f69-4a94-9119-d6611d9e2d41}, !- Handle + {712f06ab-c4c8-4945-bebf-50e26de04016}, !- Name + {eccf2622-9374-4edf-8caf-1981d96b5c12}; !- HVAC Component + +OS:PortList, + {ad152a86-a2a5-4296-b589-502e7b1efd2d}, !- Handle + {7b7c57f6-aec5-4aa7-a292-8d8bd6d6732f}, !- Name + {eccf2622-9374-4edf-8caf-1981d96b5c12}, !- HVAC Component + {b9de8eaa-7cc8-4046-bd43-56b2f5723ac7}; !- Port 1 + +OS:Sizing:Zone, + {13ab8e33-ad06-4de8-8aac-2bf87060c4f1}, !- Handle + {eccf2622-9374-4edf-8caf-1981d96b5c12}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.7777777777778, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 50.0000000000001, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + , !- Design Zone Air Distribution Effectiveness in Cooling Mode + , !- Design Zone Air Distribution Effectiveness in Heating Mode + No, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + autosize, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + autosize; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + +OS:ZoneHVAC:EquipmentList, + {36921682-81a2-4219-bcaa-a5ef0547f1e2}, !- Handle + Perimeter_ZN_1 ZN Zone HVAC Equipment List, !- Name + {eccf2622-9374-4edf-8caf-1981d96b5c12}, !- Thermal Zone + , !- Load Distribution Scheme + {18b950bb-4f7e-467b-b136-a51044e9bc6e}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction 1 + ; !- Zone Equipment Sequential Heating Fraction 1 + +OS:ThermostatSetpoint:DualSetpoint, + {44ab086d-134e-41de-a836-694790b3468f}, !- Handle + Office WholeBuilding - Sm Office Thermostat 2, !- Name + {706f2bd2-54aa-4a93-85dc-82a98ce2b46c}, !- Heating Setpoint Temperature Schedule Name + {4636603a-6678-47b5-9691-213155abb876}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermalZone, + {4e0efcce-e00c-469a-b646-c4dbfeb628cd}, !- Handle + Perimeter_ZN_2 ZN, !- Name + , !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {d6cb6915-46e1-4851-abac-235d6ef97fbc}, !- Zone Air Inlet Port List + {8609f1b6-5f6e-4e83-91cb-9da156c46b27}, !- Zone Air Exhaust Port List + {74ca4bb0-1d06-454b-a3a8-77d87dd0bfa4}, !- Zone Air Node Name + {dbf0eedf-d000-4dee-a462-4f0f9d32096f}, !- Zone Return Air Port List + {5e6e04dc-84e6-42ce-8c31-1c223002cdf9}, !- Primary Daylighting Control Name + 0.2399, !- Fraction of Zone Controlled by Primary Daylighting Control + {47d6946f-e9ad-4198-9993-e0c0cc89062d}, !- Secondary Daylighting Control Name + 0.0302, !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + {243c8142-8d16-4009-8ffd-f577e4933f94}, !- Group Rendering Name + {5e3d159d-4df9-4510-ba7b-1841f97d108f}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {63683039-10fd-4a5b-afed-958cb3aa53dd}, !- Handle + Perimeter_ZN_2 ZN Zone Air Node, !- Name + {74ca4bb0-1d06-454b-a3a8-77d87dd0bfa4}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {74ca4bb0-1d06-454b-a3a8-77d87dd0bfa4}, !- Handle + {dd1a8a9a-adb5-4627-b432-af8c93e8fd48}, !- Name + {4e0efcce-e00c-469a-b646-c4dbfeb628cd}, !- Source Object + 11, !- Outlet Port + {63683039-10fd-4a5b-afed-958cb3aa53dd}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {d6cb6915-46e1-4851-abac-235d6ef97fbc}, !- Handle + {dcb41f8c-9355-48e6-9b90-e0a75d967ae3}, !- Name + {4e0efcce-e00c-469a-b646-c4dbfeb628cd}, !- HVAC Component + {e483d5fe-47c9-461e-8f0b-cb01f35530f3}; !- Port 1 + +OS:PortList, + {8609f1b6-5f6e-4e83-91cb-9da156c46b27}, !- Handle + {63658dfd-1142-4a6f-989f-86a893b12045}, !- Name + {4e0efcce-e00c-469a-b646-c4dbfeb628cd}; !- HVAC Component + +OS:PortList, + {dbf0eedf-d000-4dee-a462-4f0f9d32096f}, !- Handle + {deac2e44-ed61-4bb6-b6b7-651090f4cef4}, !- Name + {4e0efcce-e00c-469a-b646-c4dbfeb628cd}, !- HVAC Component + {9800cc72-c39a-4296-99fb-0d26a6b3d5b9}; !- Port 1 + +OS:Sizing:Zone, + {dd315bb0-8727-4d22-a928-96c895204b75}, !- Handle + {4e0efcce-e00c-469a-b646-c4dbfeb628cd}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.7777777777778, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 50.0000000000001, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + , !- Design Zone Air Distribution Effectiveness in Cooling Mode + , !- Design Zone Air Distribution Effectiveness in Heating Mode + No, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + autosize, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + autosize; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + +OS:ZoneHVAC:EquipmentList, + {5bb78c53-e41c-4399-93ce-534414f55cb4}, !- Handle + Perimeter_ZN_2 ZN Zone HVAC Equipment List, !- Name + {4e0efcce-e00c-469a-b646-c4dbfeb628cd}, !- Thermal Zone + , !- Load Distribution Scheme + {2383fe41-6853-4ba0-8c95-0f721c92afa6}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction 1 + ; !- Zone Equipment Sequential Heating Fraction 1 + +OS:ThermostatSetpoint:DualSetpoint, + {5e3d159d-4df9-4510-ba7b-1841f97d108f}, !- Handle + Office WholeBuilding - Sm Office Thermostat 3, !- Name + {706f2bd2-54aa-4a93-85dc-82a98ce2b46c}, !- Heating Setpoint Temperature Schedule Name + {4636603a-6678-47b5-9691-213155abb876}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermalZone, + {afcd34b0-00fa-40af-a2e1-995004075d3f}, !- Handle + Perimeter_ZN_3 ZN, !- Name + , !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {7306ee17-b69f-4842-9e6a-6066149e388f}, !- Zone Air Inlet Port List + {99d771cd-7bc7-4810-a983-f89559880d00}, !- Zone Air Exhaust Port List + {5a7ea51f-e90a-4482-b73d-eaa826170f8b}, !- Zone Air Node Name + {fce25264-f646-4a33-bd2c-610a5157d5ce}, !- Zone Return Air Port List + {cc3ca2b8-f129-4cf7-97bf-65d52f85e103}, !- Primary Daylighting Control Name + 0.2399, !- Fraction of Zone Controlled by Primary Daylighting Control + {6226a1a2-28d1-4edb-b0fa-d5193545176d}, !- Secondary Daylighting Control Name + 0.0302, !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + {8099925b-bbb3-4288-82ad-ca9d72507faf}, !- Group Rendering Name + {20c60451-53d3-4681-b37d-e904d396f5d1}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {54ef281f-8cc8-4b3f-92f5-e439a97762ce}, !- Handle + Perimeter_ZN_3 ZN Zone Air Node, !- Name + {5a7ea51f-e90a-4482-b73d-eaa826170f8b}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {5a7ea51f-e90a-4482-b73d-eaa826170f8b}, !- Handle + {e5b8a42a-5438-4502-a9ae-d5d4052d6fdb}, !- Name + {afcd34b0-00fa-40af-a2e1-995004075d3f}, !- Source Object + 11, !- Outlet Port + {54ef281f-8cc8-4b3f-92f5-e439a97762ce}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {7306ee17-b69f-4842-9e6a-6066149e388f}, !- Handle + {182bb312-5575-4d9b-8c82-9025a9c0e1d9}, !- Name + {afcd34b0-00fa-40af-a2e1-995004075d3f}, !- HVAC Component + {3a84ce54-a894-4b40-a410-c931fcac8ad4}; !- Port 1 + +OS:PortList, + {99d771cd-7bc7-4810-a983-f89559880d00}, !- Handle + {352da116-ba86-4f3c-ab91-292187a0b2b7}, !- Name + {afcd34b0-00fa-40af-a2e1-995004075d3f}; !- HVAC Component + +OS:PortList, + {fce25264-f646-4a33-bd2c-610a5157d5ce}, !- Handle + {6214e10f-fbf5-4f0a-9a78-fbc17e5f7499}, !- Name + {afcd34b0-00fa-40af-a2e1-995004075d3f}, !- HVAC Component + {712c73a6-f6c7-4ad0-9a8c-3316db2d501d}; !- Port 1 + +OS:Sizing:Zone, + {5dcc36c3-5a8b-4539-8932-da6d8c5d53d8}, !- Handle + {afcd34b0-00fa-40af-a2e1-995004075d3f}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.7777777777778, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 50.0000000000001, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + , !- Design Zone Air Distribution Effectiveness in Cooling Mode + , !- Design Zone Air Distribution Effectiveness in Heating Mode + No, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + autosize, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + autosize; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + +OS:ZoneHVAC:EquipmentList, + {47b7612f-c538-4ca1-abd9-f6a66dc1db3a}, !- Handle + Perimeter_ZN_3 ZN Zone HVAC Equipment List, !- Name + {afcd34b0-00fa-40af-a2e1-995004075d3f}, !- Thermal Zone + , !- Load Distribution Scheme + {ab40a91f-e5b7-4089-8dfc-acdb012395d3}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction 1 + ; !- Zone Equipment Sequential Heating Fraction 1 + +OS:ThermostatSetpoint:DualSetpoint, + {20c60451-53d3-4681-b37d-e904d396f5d1}, !- Handle + Office WholeBuilding - Sm Office Thermostat 4, !- Name + {706f2bd2-54aa-4a93-85dc-82a98ce2b46c}, !- Heating Setpoint Temperature Schedule Name + {4636603a-6678-47b5-9691-213155abb876}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermalZone, + {5a3afc2e-d12e-4ab3-b952-581dd46d9df3}, !- Handle + Perimeter_ZN_4 ZN, !- Name + , !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {2267fd06-4370-4ce4-8b33-0658f94bcffb}, !- Zone Air Inlet Port List + {527312a8-1292-4303-95de-cfcdbdb74fc2}, !- Zone Air Exhaust Port List + {c909efb5-2a6b-4f3c-bd61-df6571d24baf}, !- Zone Air Node Name + {f1585e10-8de9-45cf-8fe9-ea11287281fd}, !- Zone Return Air Port List + {7631782d-b3aa-491a-9d3e-369c98f1e06d}, !- Primary Daylighting Control Name + 0.2399, !- Fraction of Zone Controlled by Primary Daylighting Control + {627dad3e-5081-480f-972e-fedac2af7954}, !- Secondary Daylighting Control Name + 0.0302, !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + {09fe54ee-333d-4141-b67e-950510581a11}, !- Group Rendering Name + {4e1baa59-f6f8-45ed-8c13-ca0628f9bac5}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {ef3ff3d7-e13f-4b6f-8030-ede51c9dea08}, !- Handle + Perimeter_ZN_4 ZN Zone Air Node, !- Name + {c909efb5-2a6b-4f3c-bd61-df6571d24baf}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {c909efb5-2a6b-4f3c-bd61-df6571d24baf}, !- Handle + {a74818c2-ec3d-48fa-b509-7d4322e129e3}, !- Name + {5a3afc2e-d12e-4ab3-b952-581dd46d9df3}, !- Source Object + 11, !- Outlet Port + {ef3ff3d7-e13f-4b6f-8030-ede51c9dea08}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {2267fd06-4370-4ce4-8b33-0658f94bcffb}, !- Handle + {e79761dd-c64a-40f4-9e51-d4eaae595f63}, !- Name + {5a3afc2e-d12e-4ab3-b952-581dd46d9df3}, !- HVAC Component + {17a53905-6fa9-48a7-b620-fa5aee33ec94}; !- Port 1 + +OS:PortList, + {527312a8-1292-4303-95de-cfcdbdb74fc2}, !- Handle + {41d6aba2-0b0f-4438-8ef4-d9eaee3d1872}, !- Name + {5a3afc2e-d12e-4ab3-b952-581dd46d9df3}; !- HVAC Component + +OS:PortList, + {f1585e10-8de9-45cf-8fe9-ea11287281fd}, !- Handle + {a6b5f7a0-714d-4d1f-a3bb-86e11d4a6920}, !- Name + {5a3afc2e-d12e-4ab3-b952-581dd46d9df3}, !- HVAC Component + {20fde348-4a73-4c5b-a767-83b56440c134}; !- Port 1 + +OS:Sizing:Zone, + {6e33beda-b018-452d-b415-0d7e247717f1}, !- Handle + {5a3afc2e-d12e-4ab3-b952-581dd46d9df3}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.7777777777778, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 50.0000000000001, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + , !- Design Zone Air Distribution Effectiveness in Cooling Mode + , !- Design Zone Air Distribution Effectiveness in Heating Mode + No, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + autosize, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + autosize; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + +OS:ZoneHVAC:EquipmentList, + {7d5676f8-6b34-46d4-8b16-8de13e24d868}, !- Handle + Perimeter_ZN_4 ZN Zone HVAC Equipment List, !- Name + {5a3afc2e-d12e-4ab3-b952-581dd46d9df3}, !- Thermal Zone + , !- Load Distribution Scheme + {a19e599d-fbdd-49ce-bafc-97c4d16050ef}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction 1 + ; !- Zone Equipment Sequential Heating Fraction 1 + +OS:ThermostatSetpoint:DualSetpoint, + {4e1baa59-f6f8-45ed-8c13-ca0628f9bac5}, !- Handle + Office WholeBuilding - Sm Office Thermostat 5, !- Name + {706f2bd2-54aa-4a93-85dc-82a98ce2b46c}, !- Heating Setpoint Temperature Schedule Name + {4636603a-6678-47b5-9691-213155abb876}; !- Cooling Setpoint Temperature Schedule Name + +OS:Schedule:Ruleset, + {d49fcb19-899c-4ad6-a766-4b44490b7b3c}, !- Handle + OfficeSmall HVACOperationSchd, !- Name + {48baeb6c-4b7b-4ed4-b6e9-8aec399e0994}, !- Schedule Type Limits Name + {e224512e-7feb-4809-a3cc-349ad90d7c74}, !- Default Day Schedule Name + {13bc31bb-1292-4965-8dcc-701a67822064}, !- Summer Design Day Schedule Name + {f7ceebd2-a3bd-4976-ac34-c2c68ef3a2da}; !- Winter Design Day Schedule Name + +OS:Schedule:Day, + {e224512e-7feb-4809-a3cc-349ad90d7c74}, !- Handle + OfficeSmall HVACOperationSchd Default, !- Name + {48baeb6c-4b7b-4ed4-b6e9-8aec399e0994}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 + +OS:Schedule:Day, + {f7ceebd2-a3bd-4976-ac34-c2c68ef3a2da}, !- Handle + OfficeSmall HVACOperationSchd Winter Design Day, !- Name + {48baeb6c-4b7b-4ed4-b6e9-8aec399e0994}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 + +OS:Schedule:Day, + {13bc31bb-1292-4965-8dcc-701a67822064}, !- Handle + OfficeSmall HVACOperationSchd Summer Design Day, !- Name + {48baeb6c-4b7b-4ed4-b6e9-8aec399e0994}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 6, !- Hour 1 + 0, !- Minute 1 + 0, !- Value Until Time 1 + 19, !- Hour 2 + 0, !- Minute 2 + 1, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 0; !- Value Until Time 3 + +OS:Schedule:Rule, + {1a09ca8d-276a-4321-8628-77b6301b6b4c}, !- Handle + Schedule Rule 13, !- Name + {d49fcb19-899c-4ad6-a766-4b44490b7b3c}, !- Schedule Ruleset Name + 0, !- Rule Order + {7cb9a909-a4bc-487a-9039-9c89d6e46446}, !- Day Schedule Name + , !- Apply Sunday + Yes, !- Apply Monday + Yes, !- Apply Tuesday + Yes, !- Apply Wednesday + Yes, !- Apply Thursday + Yes, !- Apply Friday + , !- Apply Saturday + , !- Apply Holiday + DateRange, !- Date Specification Type + 1, !- Start Month + 1, !- Start Day + 12, !- End Month + 31; !- End Day + +OS:Schedule:Day, + {7cb9a909-a4bc-487a-9039-9c89d6e46446}, !- Handle + OfficeSmall HVACOperationSchd SmrDsn|Wkdy Day, !- Name + {48baeb6c-4b7b-4ed4-b6e9-8aec399e0994}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 6, !- Hour 1 + 0, !- Minute 1 + 0, !- Value Until Time 1 + 19, !- Hour 2 + 0, !- Minute 2 + 1, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 0; !- Value Until Time 3 + +OS:Schedule:Ruleset, + {6fd5b25f-47a9-463a-b553-2c877a434a9d}, !- Handle + OfficeSmall MinOA_MotorizedDamper_Sched, !- Name + {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name + {204ee436-709d-44df-9671-ce79ca472acb}, !- Default Day Schedule Name + {a16cf07f-c6a1-4c89-afcf-0f4869479327}, !- Summer Design Day Schedule Name + {517d4a1d-daf0-4d8d-8bf5-5fcf503fd016}; !- Winter Design Day Schedule Name + +OS:Schedule:Day, + {204ee436-709d-44df-9671-ce79ca472acb}, !- Handle + OfficeSmall MinOA_MotorizedDamper_Sched Default, !- Name + {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 + +OS:Schedule:Day, + {517d4a1d-daf0-4d8d-8bf5-5fcf503fd016}, !- Handle + OfficeSmall MinOA_MotorizedDamper_Sched Winter Design Day, !- Name + {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 + +OS:Schedule:Day, + {a16cf07f-c6a1-4c89-afcf-0f4869479327}, !- Handle + OfficeSmall MinOA_MotorizedDamper_Sched Summer Design Day, !- Name + {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 7, !- Hour 1 + 0, !- Minute 1 + 0, !- Value Until Time 1 + 19, !- Hour 2 + 0, !- Minute 2 + 1, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 0; !- Value Until Time 3 + +OS:Schedule:Rule, + {194236ba-6ee2-4a66-b4db-00e38a134820}, !- Handle + Schedule Rule 14, !- Name + {6fd5b25f-47a9-463a-b553-2c877a434a9d}, !- Schedule Ruleset Name + 0, !- Rule Order + {49e896a1-9932-44e7-9f71-7804973dceef}, !- Day Schedule Name + , !- Apply Sunday + Yes, !- Apply Monday + Yes, !- Apply Tuesday + Yes, !- Apply Wednesday + Yes, !- Apply Thursday + Yes, !- Apply Friday + , !- Apply Saturday + , !- Apply Holiday + DateRange, !- Date Specification Type + 1, !- Start Month + 1, !- Start Day + 12, !- End Month + 31; !- End Day + +OS:Schedule:Day, + {49e896a1-9932-44e7-9f71-7804973dceef}, !- Handle + OfficeSmall MinOA_MotorizedDamper_Sched SmrDsn|Wkdy Day, !- Name + {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 7, !- Hour 1 + 0, !- Minute 1 + 0, !- Value Until Time 1 + 19, !- Hour 2 + 0, !- Minute 2 + 1, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 0; !- Value Until Time 3 + +OS:AirLoopHVAC, + {d3278b01-fd11-4dfc-b91e-81e3287f7d2f}, !- Handle + Perimeter_ZN_1 ZN PSZ-AC-2, !- Name + , !- Controller List Name + {51203011-f6d7-4f57-bba4-31174cec8925}, !- Availability Schedule + {b0d58489-edde-4d28-be94-d08c0aac8fe6}, !- Availability Manager List Name + AutoSize, !- Design Supply Air Flow Rate {m3/s} + , !- Branch List Name + , !- Connector List Name + {baeef746-5e99-4ce9-aad6-d2508d236e8a}, !- Supply Side Inlet Node Name + {bc7ed5dd-ea46-4ba6-8110-c3f7a959647b}, !- Demand Side Outlet Node Name + {b8a8b3e4-e708-48ed-ab18-00bc3b2d91dc}, !- Demand Side Inlet Node A + {ea53f009-863c-482d-8766-178089689a74}, !- Supply Side Outlet Node A + , !- Demand Side Inlet Node B + , !- Supply Side Outlet Node B + , !- Return Air Bypass Flow Temperature Setpoint Schedule Name + {eb796e67-e1d8-4d8c-85a2-e330450825d7}, !- Demand Mixer Name + {131f2e06-4b99-4e5e-9f72-6f37753027c2}, !- Demand Splitter A Name + , !- Demand Splitter B Name + ; !- Supply Splitter Name + +OS:Node, + {be3c5886-cc13-48f4-8551-a581c3d1e3ab}, !- Handle + Perimeter_ZN_1 ZN PSZ-AC-2 Supply Inlet Node, !- Name + {baeef746-5e99-4ce9-aad6-d2508d236e8a}, !- Inlet Port + {48eb1be5-650c-4008-9deb-cf499f268a92}; !- Outlet Port + +OS:Node, + {9d7a635f-0f4d-4d34-8f5c-cf7bbbe7ced1}, !- Handle + Perimeter_ZN_1 ZN PSZ-AC-2 Supply Outlet Node, !- Name + {a8ea02d4-5be3-4233-83ac-a87ea321a687}, !- Inlet Port + {ea53f009-863c-482d-8766-178089689a74}; !- Outlet Port + +OS:Connection, + {baeef746-5e99-4ce9-aad6-d2508d236e8a}, !- Handle + {a18e6d40-5716-4bb0-a5a5-e344f9b359c4}, !- Name + {d3278b01-fd11-4dfc-b91e-81e3287f7d2f}, !- Source Object + 8, !- Outlet Port + {be3c5886-cc13-48f4-8551-a581c3d1e3ab}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {ea53f009-863c-482d-8766-178089689a74}, !- Handle + {47750c02-9b8e-4b5f-8468-adc236e16b9c}, !- Name + {9d7a635f-0f4d-4d34-8f5c-cf7bbbe7ced1}, !- Source Object + 3, !- Outlet Port + {d3278b01-fd11-4dfc-b91e-81e3287f7d2f}, !- Target Object + 11; !- Inlet Port + +OS:Node, + {6d2d51b5-b3e7-4906-a7be-e26131b218b2}, !- Handle + Perimeter_ZN_1 ZN PSZ-AC-2 Demand Inlet Node, !- Name + {b8a8b3e4-e708-48ed-ab18-00bc3b2d91dc}, !- Inlet Port + {b0e7be06-aba3-4d64-8ce1-d1bab682e3ab}; !- Outlet Port + +OS:Node, + {0c9e56cd-695e-43a2-ad3f-b8d18b9a8655}, !- Handle + Perimeter_ZN_1 ZN PSZ-AC-2 Demand Outlet Node, !- Name + {a44c1dfc-935a-495c-a3f0-4048e0fff4a7}, !- Inlet Port + {bc7ed5dd-ea46-4ba6-8110-c3f7a959647b}; !- Outlet Port + +OS:Node, + {c96cfc42-ebfc-42ad-8cd0-d65edc2bffa4}, !- Handle + Perimeter_ZN_1 ZN PSZ-AC-2 Diffuser Outlet Air Node, !- Name + {aae85020-f6df-4127-b118-3bb2deda02ed}, !- Inlet Port + {7688355c-d28d-49a5-94e4-1e0faa562dd4}; !- Outlet Port + +OS:Connection, + {b8a8b3e4-e708-48ed-ab18-00bc3b2d91dc}, !- Handle + {3e573329-e109-479a-bf0c-f45b2625c1c0}, !- Name + {d3278b01-fd11-4dfc-b91e-81e3287f7d2f}, !- Source Object + 10, !- Outlet Port + {6d2d51b5-b3e7-4906-a7be-e26131b218b2}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {bc7ed5dd-ea46-4ba6-8110-c3f7a959647b}, !- Handle + {44fb3f9f-354d-4e1c-af94-5b1ba3b87c4c}, !- Name + {0c9e56cd-695e-43a2-ad3f-b8d18b9a8655}, !- Source Object + 3, !- Outlet Port + {d3278b01-fd11-4dfc-b91e-81e3287f7d2f}, !- Target Object + 9; !- Inlet Port + +OS:AirLoopHVAC:ZoneSplitter, + {131f2e06-4b99-4e5e-9f72-6f37753027c2}, !- Handle + Air Loop HVAC Zone Splitter 1, !- Name + {b0e7be06-aba3-4d64-8ce1-d1bab682e3ab}, !- Inlet Node Name + {fba7ceca-090b-4d43-83b0-9db6b4ae7e4a}; !- Outlet Node Name 1 + +OS:AirLoopHVAC:ZoneMixer, + {eb796e67-e1d8-4d8c-85a2-e330450825d7}, !- Handle + Air Loop HVAC Zone Mixer 1, !- Name + {a44c1dfc-935a-495c-a3f0-4048e0fff4a7}, !- Outlet Node Name + {e38147ac-0968-4c0d-9b81-8c135c81a02e}; !- Inlet Node Name 1 + +OS:Connection, + {b0e7be06-aba3-4d64-8ce1-d1bab682e3ab}, !- Handle + {0126ac82-7a74-4321-b007-344bd22ba7b9}, !- Name + {6d2d51b5-b3e7-4906-a7be-e26131b218b2}, !- Source Object + 3, !- Outlet Port + {131f2e06-4b99-4e5e-9f72-6f37753027c2}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {a44c1dfc-935a-495c-a3f0-4048e0fff4a7}, !- Handle + {b4f587e2-317e-4633-96d5-a21cedbfaacf}, !- Name + {eb796e67-e1d8-4d8c-85a2-e330450825d7}, !- Source Object + 2, !- Outlet Port + {0c9e56cd-695e-43a2-ad3f-b8d18b9a8655}, !- Target Object + 2; !- Inlet Port + +OS:Sizing:System, + {2f2e9bf1-23cf-40a2-bfb8-6c88e85094d9}, !- Handle + {d3278b01-fd11-4dfc-b91e-81e3287f7d2f}, !- AirLoop Name + Sensible, !- Type of Load to Size On + Autosize, !- Design Outdoor Air Flow Rate {m3/s} + 1, !- Central Heating Maximum System Air Flow Ratio + 7.22222222222229, !- Preheat Design Temperature {C} + 0.008, !- Preheat Design Humidity Ratio {kg-H2O/kg-Air} + 12.7777777777778, !- Precool Design Temperature {C} + 0.008, !- Precool Design Humidity Ratio {kg-H2O/kg-Air} + 12.7777777777778, !- Central Cooling Design Supply Air Temperature {C} + 50.0000000000001, !- Central Heating Design Supply Air Temperature {C} + Coincident, !- Sizing Option + No, !- 100% Outdoor Air in Cooling + No, !- 100% Outdoor Air in Heating + 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-Air} + 0.008, !- Central Heating Design Supply Air Humidity Ratio {kg-H2O/kg-Air} + DesignDay, !- Cooling Design Air Flow Method + 0, !- Cooling Design Air Flow Rate {m3/s} + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate {m3/s} + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction {dimensionless} + 0.0099676501, !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} + 1, !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + 3.9475456e-005, !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} + 0.0099676501, !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} + 1, !- Heating Fraction of Autosized Heating Supply Air Flow Rate + 1, !- Heating Fraction of Autosized Cooling Supply Air Flow Rate + 3.1588213e-005, !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity {W} + 234.7, !- Cooling Design Capacity Per Floor Area {W/m2} + 1, !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 157, !- Heating Design Capacity Per Floor Area {W/m2} + 1, !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +OS:Schedule:Constant, + {51203011-f6d7-4f57-bba4-31174cec8925}, !- Handle + Always On Discrete, !- Name + {48baeb6c-4b7b-4ed4-b6e9-8aec399e0994}, !- Schedule Type Limits Name + 1; !- Value + +OS:ScheduleTypeLimits, + {48baeb6c-4b7b-4ed4-b6e9-8aec399e0994}, !- Handle + OnOff, !- Name + 0, !- Lower Limit Value + 1, !- Upper Limit Value + Discrete, !- Numeric Type + Availability; !- Unit Type + +OS:AvailabilityManagerAssignmentList, + {b0d58489-edde-4d28-be94-d08c0aac8fe6}, !- Handle + Air Loop HVAC 1 AvailabilityManagerAssignmentList, !- Name + {1fa5209c-f5cc-4350-8d93-224258069c38}; !- Availability Manager Name 1 + +OS:SetpointManager:SingleZone:Reheat, + {fd5f15ee-3b0e-4649-a514-20dc1df824a5}, !- Handle + Perimeter_ZN_1 ZN Setpoint Manager SZ Reheat, !- Name + 12.7777777777778, !- Minimum Supply Air Temperature {C} + 50.0000000000001, !- Maximum Supply Air Temperature {C} + {eccf2622-9374-4edf-8caf-1981d96b5c12}, !- Control Zone Name + {9d7a635f-0f4d-4d34-8f5c-cf7bbbe7ced1}; !- Setpoint Node or NodeList Name + +OS:Fan:OnOff, + {533f2ab7-d7e3-45a1-91e6-9b732dfa5fa7}, !- Handle + Perimeter_ZN_1 ZN PSZ-AC-2 Fan, !- Name + {d49fcb19-899c-4ad6-a766-4b44490b7b3c}, !- Availability Schedule Name + 0.55575, !- Fan Total Efficiency + 622.722275, !- Pressure Rise {Pa} + autosize, !- Maximum Flow Rate {m3/s} + 0.855, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {34207ea2-c58f-4f99-a7c4-803437258097}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {4e72f5c2-0649-4490-94de-aecf9e45dd28}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {34207ea2-c58f-4f99-a7c4-803437258097}, !- Handle + Fan On Off Power Curve, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {4e72f5c2-0649-4490-94de-aecf9e45dd28}, !- Handle + Fan On Off Efficiency Curve, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:Coil:Heating:DX:SingleSpeed, + {5554c762-691e-4726-913b-2ab9a0a777bb}, !- Handle + Perimeter_ZN_1 ZN HP Htg Coil 23 Clg kBtu/hr 8.0HSPF, !- Name + {51203011-f6d7-4f57-bba4-31174cec8925}, !- Availability Schedule Name + Autosize, !- Rated Total Heating Capacity {W} + 3.3592, !- Rated COP {W/W} + Autosize, !- Rated Air Flow Rate {m3/s} + 773.3, !- Rated Supply Fan Power Per Volume Flow Rate {W/(m3/s)} + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {1bfea7f1-1095-458e-b853-eaf9b2498d5f}, !- Total Heating Capacity Function of Temperature Curve Name + {280d9688-bd63-492e-a346-6275aabe749e}, !- Total Heating Capacity Function of Flow Fraction Curve Name + {8aff4225-4594-4306-8181-1471256a4a20}, !- Energy Input Ratio Function of Temperature Curve Name + {5ce2ca36-993a-47f3-88f4-bad9af8ac9a3}, !- Energy Input Ratio Function of Flow Fraction Curve Name + {714c0395-0263-444c-a4f6-d9e78a580913}, !- Part Load Fraction Correlation Curve Name + {a3b0f2cb-17f9-4bfc-8141-e43861f2d9dd}, !- Defrost Energy Input Ratio Function of Temperature Curve Name + -12.2, !- Minimum Outdoor Dry-Bulb Temperature for Compressor Operation {C} + 1.67, !- Maximum Outdoor Dry-Bulb Temperature for Defrost Operation {C} + 50, !- Crankcase Heater Capacity {W} + 4.4, !- Maximum Outdoor Dry-Bulb Temperature for Crankcase Heater Operation {C} + ReverseCycle, !- Defrost Strategy + OnDemand, !- Defrost Control + , !- Defrost Time Period Fraction + 2000; !- Resistive Defrost Heater Capacity {W} + +OS:Curve:Biquadratic, + {a3b0f2cb-17f9-4bfc-8141-e43861f2d9dd}, !- Handle + Perimeter_ZN_1 ZN HP Htg Coil Defrost EIR Func of Temp Curve 1, !- Name + 0.297145, !- Coefficient1 Constant + 0.0430933, !- Coefficient2 x + -0.000748766, !- Coefficient3 x**2 + 0.00597727, !- Coefficient4 y + 0.000482112, !- Coefficient5 y**2 + -0.000956448, !- Coefficient6 x*y + 12.77778, !- Minimum Value of x + 23.88889, !- Maximum Value of x + 21.11111, !- Minimum Value of y + 46.11111; !- Maximum Value of y + +OS:Coil:Heating:Gas, + {7c0a306e-cc46-437c-a9ff-194fa01f6d00}, !- Handle + Perimeter_ZN_1 ZN PSZ-AC-2 Gas Backup Htg Coil, !- Name + {51203011-f6d7-4f57-bba4-31174cec8925}, !- Availability Schedule Name + 0.8, !- Gas Burner Efficiency + AutoSize, !- Nominal Capacity {W} + , !- Air Inlet Node Name + , !- Air Outlet Node Name + , !- Temperature Setpoint Node Name + 0, !- Parasitic Electric Load {W} + , !- Part Load Fraction Correlation Curve Name + 0; !- Parasitic Gas Load {W} + +OS:Coil:Cooling:DX:SingleSpeed, + {14d7e419-87a8-4173-8993-d326eccd122a}, !- Handle + Perimeter_ZN_1 ZN PSZ-AC-2 1spd DX HP Clg Coil 23kBtu/hr 14.0SEER, !- Name + {51203011-f6d7-4f57-bba4-31174cec8925}, !- Availability Schedule Name + autosize, !- Rated Total Cooling Capacity {W} + autosize, !- Rated Sensible Heat Ratio + 4.11713235489972, !- Rated COP {W/W} + autosize, !- Rated Air Flow Rate {m3/s} + 773.3, !- Rated Evaporator Fan Power Per Volume Flow Rate {W/(m3/s)} + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {e6cebddc-27fb-4158-9b04-49e64c32b2ed}, !- Total Cooling Capacity Function of Temperature Curve Name + {6708f17c-3967-4daf-89fb-e9625d394634}, !- Total Cooling Capacity Function of Flow Fraction Curve Name + {626baf5b-350e-404e-81da-48addd8de7f7}, !- Energy Input Ratio Function of Temperature Curve Name + {dfc9bddf-e7f5-4a36-93ca-5ed1d66665cb}, !- Energy Input Ratio Function of Flow Fraction Curve Name + {714c0395-0263-444c-a4f6-d9e78a580913}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + , !- Maximum Cycling Rate {cycles/hr} + , !- Latent Capacity Time Constant {s} + , !- Condenser Air Inlet Node Name + AirCooled, !- Condenser Type + 0, !- Evaporative Condenser Effectiveness {dimensionless} + Autosize, !- Evaporative Condenser Air Flow Rate {m3/s} + Autosize, !- Evaporative Condenser Pump Rated Power Consumption {W} + 0, !- Crankcase Heater Capacity {W} + 0, !- Maximum Outdoor Dry-Bulb Temperature for Crankcase Heater Operation {C} + , !- Supply Water Storage Tank Name + , !- Condensate Collection Water Storage Tank Name + 0, !- Basin Heater Capacity {W/K} + 10, !- Basin Heater Setpoint Temperature {C} + ; !- Basin Heater Operating Schedule Name + +OS:AirLoopHVAC:UnitaryHeatPump:AirToAir, + {0dc1822f-b147-435f-865d-ef4882238f57}, !- Handle + Perimeter_ZN_1 ZN PSZ-AC-2 Unitary HP, !- Name + {51203011-f6d7-4f57-bba4-31174cec8925}, !- Availability Schedule Name + {bbf954b7-05ce-4a7e-9215-50ef39fd54f4}, !- Air Inlet Node Name + {a8ea02d4-5be3-4233-83ac-a87ea321a687}, !- Air Outlet Node Name + Autosize, !- Supply Air Flow Rate During Cooling Operation {m3/s} + Autosize, !- Supply Air Flow Rate During Heating Operation {m3/s} + , !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {eccf2622-9374-4edf-8caf-1981d96b5c12}, !- Controlling Zone or Thermostat Location + {533f2ab7-d7e3-45a1-91e6-9b732dfa5fa7}, !- Supply Air Fan Name + {5554c762-691e-4726-913b-2ab9a0a777bb}, !- Heating Coil Name + {14d7e419-87a8-4173-8993-d326eccd122a}, !- Cooling Coil Name + {7c0a306e-cc46-437c-a9ff-194fa01f6d00}, !- Supplemental Heating Coil Name + Autosize, !- Maximum Supply Air Temperature from Supplemental Heater {C} + 4.44444444444446, !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + BlowThrough, !- Fan Placement + {d49fcb19-899c-4ad6-a766-4b44490b7b3c}; !- Supply Air Fan Operating Mode Schedule Name + +OS:Connection, + {a8ea02d4-5be3-4233-83ac-a87ea321a687}, !- Handle + {f5422441-f8d3-48ef-91b2-f05b0335e73f}, !- Name + {0dc1822f-b147-435f-865d-ef4882238f57}, !- Source Object + 4, !- Outlet Port + {9d7a635f-0f4d-4d34-8f5c-cf7bbbe7ced1}, !- Target Object + 2; !- Inlet Port + +OS:Controller:OutdoorAir, + {abe926bb-ab69-4174-97c2-34d66b4ccc07}, !- Handle + Perimeter_ZN_1 ZN PSZ-AC-2 OA System Controller, !- Name + , !- Relief Air Outlet Node Name + , !- Return Air Node Name + , !- Mixed Air Node Name + , !- Actuator Node Name + 0, !- Minimum Outdoor Air Flow Rate {m3/s} + Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + 28, !- Economizer Maximum Limit Dry-Bulb Temperature {C} + 64000, !- Economizer Maximum Limit Enthalpy {J/kg} + , !- Economizer Maximum Limit Dewpoint Temperature {C} + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit Dry-Bulb Temperature {C} + NoLockout, !- Lockout Type + FixedMinimum, !- Minimum Limit Type + {6fd5b25f-47a9-463a-b553-2c877a434a9d}, !- Minimum Outdoor Air Schedule Name + , !- Minimum Fraction of Outdoor Air Schedule Name + , !- Maximum Fraction of Outdoor Air Schedule Name + {6575a07f-2eaa-4442-ad64-b7f2632ae7fe}, !- Controller Mechanical Ventilation + , !- Time of Day Economizer Control Schedule Name + No, !- High Humidity Control + , !- Humidistat Control Zone Name + , !- High Humidity Outdoor Air Flow Ratio + , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio + BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type + +OS:Controller:MechanicalVentilation, + {6575a07f-2eaa-4442-ad64-b7f2632ae7fe}, !- Handle + Controller Mechanical Ventilation 1, !- Name + {51203011-f6d7-4f57-bba4-31174cec8925}, !- Availability Schedule + , !- Demand Controlled Ventilation + ZoneSum; !- System Outdoor Air Method + +OS:AirLoopHVAC:OutdoorAirSystem, + {8313823d-1198-4de3-8c3b-622b7519b781}, !- Handle + Perimeter_ZN_1 ZN PSZ-AC-2 OA System, !- Name + {abe926bb-ab69-4174-97c2-34d66b4ccc07}, !- Controller Name + , !- Outdoor Air Equipment List Name + , !- Availability Manager List Name + {9b873d15-ccab-45b5-b29e-9c8590142b98}, !- Mixed Air Node Name + {4485d71e-e696-4626-ba14-e4a05b9511fe}, !- Outdoor Air Stream Node Name + {41c47de8-7ada-4b55-87e7-b70ec998d297}, !- Relief Air Stream Node Name + {48eb1be5-650c-4008-9deb-cf499f268a92}; !- Return Air Stream Node Name + +OS:Node, + {3f2f4a16-e90d-4e46-8ce2-3f910be88dc5}, !- Handle + Perimeter_ZN_1 ZN PSZ-AC-2 Outdoor Air Node, !- Name + , !- Inlet Port + {4485d71e-e696-4626-ba14-e4a05b9511fe}; !- Outlet Port + +OS:Connection, + {4485d71e-e696-4626-ba14-e4a05b9511fe}, !- Handle + {23d82b17-070f-4a99-b4b1-3f7c9af7ac55}, !- Name + {3f2f4a16-e90d-4e46-8ce2-3f910be88dc5}, !- Source Object + 3, !- Outlet Port + {8313823d-1198-4de3-8c3b-622b7519b781}, !- Target Object + 6; !- Inlet Port + +OS:Node, + {8c3e3de6-8133-469e-8b16-2b8a43718947}, !- Handle + Perimeter_ZN_1 ZN PSZ-AC-2 Relief Air Node, !- Name + {41c47de8-7ada-4b55-87e7-b70ec998d297}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {41c47de8-7ada-4b55-87e7-b70ec998d297}, !- Handle + {ee28fc52-a006-4157-af9e-6d0a73f83720}, !- Name + {8313823d-1198-4de3-8c3b-622b7519b781}, !- Source Object + 7, !- Outlet Port + {8c3e3de6-8133-469e-8b16-2b8a43718947}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {74006b4e-a6db-4bd7-b1cf-f4f9f9611a9c}, !- Handle + Perimeter_ZN_1 ZN PSZ-AC-2 Mixed Air Node, !- Name + {9b873d15-ccab-45b5-b29e-9c8590142b98}, !- Inlet Port + {bbf954b7-05ce-4a7e-9215-50ef39fd54f4}; !- Outlet Port + +OS:Connection, + {48eb1be5-650c-4008-9deb-cf499f268a92}, !- Handle + {5cfd6cd0-94e8-435e-809b-3fef11118560}, !- Name + {be3c5886-cc13-48f4-8551-a581c3d1e3ab}, !- Source Object + 3, !- Outlet Port + {8313823d-1198-4de3-8c3b-622b7519b781}, !- Target Object + 8; !- Inlet Port + +OS:Connection, + {9b873d15-ccab-45b5-b29e-9c8590142b98}, !- Handle + {1374759c-ed86-42fa-86de-6a89cdb44dfa}, !- Name + {8313823d-1198-4de3-8c3b-622b7519b781}, !- Source Object + 5, !- Outlet Port + {74006b4e-a6db-4bd7-b1cf-f4f9f9611a9c}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {bbf954b7-05ce-4a7e-9215-50ef39fd54f4}, !- Handle + {752743f7-01ab-4fd9-b0d6-ef20b31ec68d}, !- Name + {74006b4e-a6db-4bd7-b1cf-f4f9f9611a9c}, !- Source Object + 3, !- Outlet Port + {0dc1822f-b147-435f-865d-ef4882238f57}, !- Target Object + 3; !- Inlet Port + +OS:AvailabilityManager:NightCycle, + {1fa5209c-f5cc-4350-8d93-224258069c38}, !- Handle + Availability Manager Night Cycle 1, !- Name + , !- Applicability Schedule + , !- Fan Schedule + CycleOnAny, !- Control Type + 1, !- Thermostat Tolerance {deltaC} + , !- Cycling Run Time Control Type + 1800, !- Cycling Run Time {s} + {b6df60a6-cf6d-48dd-a9c1-49c9e5be456c}, !- Control Zone or Zone List Name + {af173723-66a8-42e4-b709-89ba51d0b904}, !- Cooling Control Zone or Zone List Name + {53819454-c07f-44a5-89bc-e18f1d7328e7}, !- Heating Control Zone or Zone List Name + {b5f00678-608e-4cf5-844c-a5905bc01379}; !- Heating Zone Fans Only Zone or Zone List Name + +OS:ModelObjectList, + {b6df60a6-cf6d-48dd-a9c1-49c9e5be456c}, !- Handle + Availability Manager Night Cycle 1 Heating Zone Fans Only Zone List; !- Name + +OS:ModelObjectList, + {af173723-66a8-42e4-b709-89ba51d0b904}, !- Handle + {272d5bab-ab31-4753-aaa8-16a5b5f8144a}; !- Name + +OS:ModelObjectList, + {53819454-c07f-44a5-89bc-e18f1d7328e7}, !- Handle + {2f43fac3-805e-4e04-bcd3-662924b9376d}; !- Name + +OS:ModelObjectList, + {b5f00678-608e-4cf5-844c-a5905bc01379}, !- Handle + {8b41f098-64b2-4e0c-88e0-fd614ad14f84}; !- Name + +OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, + {18b950bb-4f7e-467b-b136-a51044e9bc6e}, !- Handle + Perimeter_ZN_1 ZN PSZ-AC-2 Diffuser, !- Name + {51203011-f6d7-4f57-bba4-31174cec8925}, !- Availability Schedule Name + {9949679b-9ef2-4b38-85ee-2ca81455d1c5}, !- Air Inlet Node Name + {aae85020-f6df-4127-b118-3bb2deda02ed}, !- Air Outlet Node Name + AutoSize; !- Maximum Air Flow Rate {m3/s} + +OS:Node, + {05ee4db1-559c-43e0-850f-c56f05d9c15c}, !- Handle + Perimeter_ZN_1 ZN Return Air Node, !- Name + {b9de8eaa-7cc8-4046-bd43-56b2f5723ac7}, !- Inlet Port + {e38147ac-0968-4c0d-9b81-8c135c81a02e}; !- Outlet Port + +OS:Connection, + {7688355c-d28d-49a5-94e4-1e0faa562dd4}, !- Handle + {75f106f6-5918-4e07-925a-c3a96af019fc}, !- Name + {c96cfc42-ebfc-42ad-8cd0-d65edc2bffa4}, !- Source Object + 3, !- Outlet Port + {2deb7de2-4a0d-408e-95d1-c7bfeed54d2a}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {b9de8eaa-7cc8-4046-bd43-56b2f5723ac7}, !- Handle + {7947db56-8327-4e41-b93a-4d5c8561ca79}, !- Name + {ad152a86-a2a5-4296-b589-502e7b1efd2d}, !- Source Object + 3, !- Outlet Port + {05ee4db1-559c-43e0-850f-c56f05d9c15c}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {e38147ac-0968-4c0d-9b81-8c135c81a02e}, !- Handle + {349dfa9c-1096-4a4b-b707-0caaf2bc8e77}, !- Name + {05ee4db1-559c-43e0-850f-c56f05d9c15c}, !- Source Object + 3, !- Outlet Port + {eb796e67-e1d8-4d8c-85a2-e330450825d7}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {eb233d66-1fff-44b4-a4bf-3349e02ab4ca}, !- Handle + Perimeter_ZN_1 ZN PSZ-AC-2 Diffuser Inlet Air Node, !- Name + {fba7ceca-090b-4d43-83b0-9db6b4ae7e4a}, !- Inlet Port + {9949679b-9ef2-4b38-85ee-2ca81455d1c5}; !- Outlet Port + +OS:Connection, + {fba7ceca-090b-4d43-83b0-9db6b4ae7e4a}, !- Handle + {ae0330c6-ea91-426e-a78c-a8544ce1fae2}, !- Name + {131f2e06-4b99-4e5e-9f72-6f37753027c2}, !- Source Object + 3, !- Outlet Port + {eb233d66-1fff-44b4-a4bf-3349e02ab4ca}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {9949679b-9ef2-4b38-85ee-2ca81455d1c5}, !- Handle + {4f3a4d10-05b2-4815-8182-1d3bff5c3779}, !- Name + {eb233d66-1fff-44b4-a4bf-3349e02ab4ca}, !- Source Object + 3, !- Outlet Port + {18b950bb-4f7e-467b-b136-a51044e9bc6e}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {aae85020-f6df-4127-b118-3bb2deda02ed}, !- Handle + {6b8eb4b7-7ccd-4637-8e04-279fc7099862}, !- Name + {18b950bb-4f7e-467b-b136-a51044e9bc6e}, !- Source Object + 4, !- Outlet Port + {c96cfc42-ebfc-42ad-8cd0-d65edc2bffa4}, !- Target Object + 2; !- Inlet Port + +OS:AirLoopHVAC, + {1f5f8333-86c5-42a7-91eb-a79a208a768e}, !- Handle + Perimeter_ZN_2 ZN PSZ-AC-3, !- Name + , !- Controller List Name + {51203011-f6d7-4f57-bba4-31174cec8925}, !- Availability Schedule + {98757b6d-f3c9-42f1-9eba-358461445113}, !- Availability Manager List Name + AutoSize, !- Design Supply Air Flow Rate {m3/s} + , !- Branch List Name + , !- Connector List Name + {ae358309-f60f-4522-bf20-260ec1ca5082}, !- Supply Side Inlet Node Name + {0999525f-8f77-4063-92d7-1eefd3274d18}, !- Demand Side Outlet Node Name + {8eb4a132-5b25-4f7b-90c6-ae4da6328a3d}, !- Demand Side Inlet Node A + {a6c2d522-238b-4ad1-b693-ed54aa05d112}, !- Supply Side Outlet Node A + , !- Demand Side Inlet Node B + , !- Supply Side Outlet Node B + , !- Return Air Bypass Flow Temperature Setpoint Schedule Name + {2763ebcf-d320-44de-8fcd-f99be196b5a6}, !- Demand Mixer Name + {95005018-eff6-436b-8327-5c42324ea477}, !- Demand Splitter A Name + , !- Demand Splitter B Name + ; !- Supply Splitter Name + +OS:Node, + {6d1eb6dc-06db-430a-864d-669b72e78124}, !- Handle + Perimeter_ZN_2 ZN PSZ-AC-3 Supply Inlet Node, !- Name + {ae358309-f60f-4522-bf20-260ec1ca5082}, !- Inlet Port + {6e1266c2-e34b-4733-a6ce-e328c865f02f}; !- Outlet Port + +OS:Node, + {c62d6114-7a46-4ab4-8917-1b539cfd45fd}, !- Handle + Perimeter_ZN_2 ZN PSZ-AC-3 Supply Outlet Node, !- Name + {4b50d120-396b-40ec-8427-e8dd4a622648}, !- Inlet Port + {a6c2d522-238b-4ad1-b693-ed54aa05d112}; !- Outlet Port + +OS:Connection, + {ae358309-f60f-4522-bf20-260ec1ca5082}, !- Handle + {a90cceff-6c8c-4ed9-a87c-c812c47fd169}, !- Name + {1f5f8333-86c5-42a7-91eb-a79a208a768e}, !- Source Object + 8, !- Outlet Port + {6d1eb6dc-06db-430a-864d-669b72e78124}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {a6c2d522-238b-4ad1-b693-ed54aa05d112}, !- Handle + {0d344e6a-9dcc-4f36-ae05-687addfbe516}, !- Name + {c62d6114-7a46-4ab4-8917-1b539cfd45fd}, !- Source Object + 3, !- Outlet Port + {1f5f8333-86c5-42a7-91eb-a79a208a768e}, !- Target Object + 11; !- Inlet Port + +OS:Node, + {c10219c2-6ae9-402c-91b2-5538a0554d4e}, !- Handle + Perimeter_ZN_2 ZN PSZ-AC-3 Demand Inlet Node, !- Name + {8eb4a132-5b25-4f7b-90c6-ae4da6328a3d}, !- Inlet Port + {f903d338-eca6-4616-b7e6-404674d60f2e}; !- Outlet Port + +OS:Node, + {c2cbab81-a577-4535-81d7-af94fd7789e0}, !- Handle + Perimeter_ZN_2 ZN PSZ-AC-3 Demand Outlet Node, !- Name + {64fae683-f612-46c2-b5c9-ba84ac8b506a}, !- Inlet Port + {0999525f-8f77-4063-92d7-1eefd3274d18}; !- Outlet Port + +OS:Node, + {4bf48fd2-2112-4f31-a0b6-2117bc85e671}, !- Handle + Perimeter_ZN_2 ZN PSZ-AC-3 Diffuser Outlet Air Node, !- Name + {9a777df6-4ebb-4f78-9b7a-8e274e70b7a2}, !- Inlet Port + {e483d5fe-47c9-461e-8f0b-cb01f35530f3}; !- Outlet Port + +OS:Connection, + {8eb4a132-5b25-4f7b-90c6-ae4da6328a3d}, !- Handle + {18e19bc5-e747-426b-a53b-383c626e0293}, !- Name + {1f5f8333-86c5-42a7-91eb-a79a208a768e}, !- Source Object + 10, !- Outlet Port + {c10219c2-6ae9-402c-91b2-5538a0554d4e}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {0999525f-8f77-4063-92d7-1eefd3274d18}, !- Handle + {750f0e12-a4c1-4348-a78c-490f56a12140}, !- Name + {c2cbab81-a577-4535-81d7-af94fd7789e0}, !- Source Object + 3, !- Outlet Port + {1f5f8333-86c5-42a7-91eb-a79a208a768e}, !- Target Object + 9; !- Inlet Port + +OS:AirLoopHVAC:ZoneSplitter, + {95005018-eff6-436b-8327-5c42324ea477}, !- Handle + Air Loop HVAC Zone Splitter 2, !- Name + {f903d338-eca6-4616-b7e6-404674d60f2e}, !- Inlet Node Name + {76b23e77-a973-40de-84fe-96763835de12}; !- Outlet Node Name 1 + +OS:AirLoopHVAC:ZoneMixer, + {2763ebcf-d320-44de-8fcd-f99be196b5a6}, !- Handle + Air Loop HVAC Zone Mixer 2, !- Name + {64fae683-f612-46c2-b5c9-ba84ac8b506a}, !- Outlet Node Name + {07d24d16-500c-4d84-868b-69bbb1b99daa}; !- Inlet Node Name 1 + +OS:Connection, + {f903d338-eca6-4616-b7e6-404674d60f2e}, !- Handle + {dc077fef-3752-45c4-9817-4f9850878a3f}, !- Name + {c10219c2-6ae9-402c-91b2-5538a0554d4e}, !- Source Object + 3, !- Outlet Port + {95005018-eff6-436b-8327-5c42324ea477}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {64fae683-f612-46c2-b5c9-ba84ac8b506a}, !- Handle + {e9459eb2-e8f9-44df-9760-a36fce9ec80f}, !- Name + {2763ebcf-d320-44de-8fcd-f99be196b5a6}, !- Source Object + 2, !- Outlet Port + {c2cbab81-a577-4535-81d7-af94fd7789e0}, !- Target Object + 2; !- Inlet Port + +OS:Sizing:System, + {d2716fba-4254-4bae-955b-716934a1fbb8}, !- Handle + {1f5f8333-86c5-42a7-91eb-a79a208a768e}, !- AirLoop Name + Sensible, !- Type of Load to Size On + Autosize, !- Design Outdoor Air Flow Rate {m3/s} + 1, !- Central Heating Maximum System Air Flow Ratio + 7.22222222222229, !- Preheat Design Temperature {C} + 0.008, !- Preheat Design Humidity Ratio {kg-H2O/kg-Air} + 12.7777777777778, !- Precool Design Temperature {C} + 0.008, !- Precool Design Humidity Ratio {kg-H2O/kg-Air} + 12.7777777777778, !- Central Cooling Design Supply Air Temperature {C} + 50.0000000000001, !- Central Heating Design Supply Air Temperature {C} + Coincident, !- Sizing Option + No, !- 100% Outdoor Air in Cooling + No, !- 100% Outdoor Air in Heating + 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-Air} + 0.008, !- Central Heating Design Supply Air Humidity Ratio {kg-H2O/kg-Air} + DesignDay, !- Cooling Design Air Flow Method + 0, !- Cooling Design Air Flow Rate {m3/s} + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate {m3/s} + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction {dimensionless} + 0.0099676501, !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} + 1, !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + 3.9475456e-005, !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} + 0.0099676501, !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} + 1, !- Heating Fraction of Autosized Heating Supply Air Flow Rate + 1, !- Heating Fraction of Autosized Cooling Supply Air Flow Rate + 3.1588213e-005, !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity {W} + 234.7, !- Cooling Design Capacity Per Floor Area {W/m2} + 1, !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 157, !- Heating Design Capacity Per Floor Area {W/m2} + 1, !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +OS:AvailabilityManagerAssignmentList, + {98757b6d-f3c9-42f1-9eba-358461445113}, !- Handle + Air Loop HVAC 1 AvailabilityManagerAssignmentList 1, !- Name + {e3ec262d-9e6d-4a6b-ab90-34107b150d5f}; !- Availability Manager Name 1 + +OS:SetpointManager:SingleZone:Reheat, + {3318e577-947a-4e2b-bdd4-039c7db61b61}, !- Handle + Perimeter_ZN_2 ZN Setpoint Manager SZ Reheat, !- Name + 12.7777777777778, !- Minimum Supply Air Temperature {C} + 50.0000000000001, !- Maximum Supply Air Temperature {C} + {4e0efcce-e00c-469a-b646-c4dbfeb628cd}, !- Control Zone Name + {c62d6114-7a46-4ab4-8917-1b539cfd45fd}; !- Setpoint Node or NodeList Name + +OS:Fan:OnOff, + {0289862a-16ae-4393-8990-ea72a250d06c}, !- Handle + Perimeter_ZN_2 ZN PSZ-AC-3 Fan, !- Name + {d49fcb19-899c-4ad6-a766-4b44490b7b3c}, !- Availability Schedule Name + 0.55575, !- Fan Total Efficiency + 622.722275, !- Pressure Rise {Pa} + autosize, !- Maximum Flow Rate {m3/s} + 0.855, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {17d58b98-80cd-418e-8028-8dab1c09b278}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {c03a3765-7369-4b06-ac93-60e23abebc92}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {17d58b98-80cd-418e-8028-8dab1c09b278}, !- Handle + Fan On Off Power Curve 1, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {c03a3765-7369-4b06-ac93-60e23abebc92}, !- Handle + Fan On Off Efficiency Curve 1, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:Coil:Heating:DX:SingleSpeed, + {bb5bda5a-67ed-4c99-a17e-d90f020fb1f7}, !- Handle + Perimeter_ZN_2 ZN HP Htg Coil 17 Clg kBtu/hr 8.0HSPF, !- Name + {51203011-f6d7-4f57-bba4-31174cec8925}, !- Availability Schedule Name + Autosize, !- Rated Total Heating Capacity {W} + 3.3592, !- Rated COP {W/W} + Autosize, !- Rated Air Flow Rate {m3/s} + 773.3, !- Rated Supply Fan Power Per Volume Flow Rate {W/(m3/s)} + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {1bfea7f1-1095-458e-b853-eaf9b2498d5f}, !- Total Heating Capacity Function of Temperature Curve Name + {280d9688-bd63-492e-a346-6275aabe749e}, !- Total Heating Capacity Function of Flow Fraction Curve Name + {8aff4225-4594-4306-8181-1471256a4a20}, !- Energy Input Ratio Function of Temperature Curve Name + {5ce2ca36-993a-47f3-88f4-bad9af8ac9a3}, !- Energy Input Ratio Function of Flow Fraction Curve Name + {714c0395-0263-444c-a4f6-d9e78a580913}, !- Part Load Fraction Correlation Curve Name + {7173ff1f-c282-4763-85fe-bd232e8adf0a}, !- Defrost Energy Input Ratio Function of Temperature Curve Name + -12.2, !- Minimum Outdoor Dry-Bulb Temperature for Compressor Operation {C} + 1.67, !- Maximum Outdoor Dry-Bulb Temperature for Defrost Operation {C} + 50, !- Crankcase Heater Capacity {W} + 4.4, !- Maximum Outdoor Dry-Bulb Temperature for Crankcase Heater Operation {C} + ReverseCycle, !- Defrost Strategy + OnDemand, !- Defrost Control + , !- Defrost Time Period Fraction + 2000; !- Resistive Defrost Heater Capacity {W} + +OS:Curve:Biquadratic, + {7173ff1f-c282-4763-85fe-bd232e8adf0a}, !- Handle + Perimeter_ZN_2 ZN HP Htg Coil Defrost EIR Func of Temp Curve 1, !- Name + 0.297145, !- Coefficient1 Constant + 0.0430933, !- Coefficient2 x + -0.000748766, !- Coefficient3 x**2 + 0.00597727, !- Coefficient4 y + 0.000482112, !- Coefficient5 y**2 + -0.000956448, !- Coefficient6 x*y + 12.77778, !- Minimum Value of x + 23.88889, !- Maximum Value of x + 21.11111, !- Minimum Value of y + 46.11111; !- Maximum Value of y + +OS:Coil:Heating:Gas, + {8f6ca639-6dfc-482e-8f8a-821edd608207}, !- Handle + Perimeter_ZN_2 ZN PSZ-AC-3 Gas Backup Htg Coil, !- Name + {51203011-f6d7-4f57-bba4-31174cec8925}, !- Availability Schedule Name + 0.8, !- Gas Burner Efficiency + AutoSize, !- Nominal Capacity {W} + , !- Air Inlet Node Name + , !- Air Outlet Node Name + , !- Temperature Setpoint Node Name + 0, !- Parasitic Electric Load {W} + , !- Part Load Fraction Correlation Curve Name + 0; !- Parasitic Gas Load {W} + +OS:Coil:Cooling:DX:SingleSpeed, + {cbc1f83a-1cdf-48a1-a43e-03d90e23f2be}, !- Handle + Perimeter_ZN_2 ZN PSZ-AC-3 1spd DX HP Clg Coil 17kBtu/hr 14.0SEER, !- Name + {51203011-f6d7-4f57-bba4-31174cec8925}, !- Availability Schedule Name + autosize, !- Rated Total Cooling Capacity {W} + autosize, !- Rated Sensible Heat Ratio + 4.11713235489972, !- Rated COP {W/W} + autosize, !- Rated Air Flow Rate {m3/s} + 773.3, !- Rated Evaporator Fan Power Per Volume Flow Rate {W/(m3/s)} + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {e6cebddc-27fb-4158-9b04-49e64c32b2ed}, !- Total Cooling Capacity Function of Temperature Curve Name + {6708f17c-3967-4daf-89fb-e9625d394634}, !- Total Cooling Capacity Function of Flow Fraction Curve Name + {626baf5b-350e-404e-81da-48addd8de7f7}, !- Energy Input Ratio Function of Temperature Curve Name + {dfc9bddf-e7f5-4a36-93ca-5ed1d66665cb}, !- Energy Input Ratio Function of Flow Fraction Curve Name + {714c0395-0263-444c-a4f6-d9e78a580913}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + , !- Maximum Cycling Rate {cycles/hr} + , !- Latent Capacity Time Constant {s} + , !- Condenser Air Inlet Node Name + AirCooled, !- Condenser Type + 0, !- Evaporative Condenser Effectiveness {dimensionless} + Autosize, !- Evaporative Condenser Air Flow Rate {m3/s} + Autosize, !- Evaporative Condenser Pump Rated Power Consumption {W} + 0, !- Crankcase Heater Capacity {W} + 0, !- Maximum Outdoor Dry-Bulb Temperature for Crankcase Heater Operation {C} + , !- Supply Water Storage Tank Name + , !- Condensate Collection Water Storage Tank Name + 0, !- Basin Heater Capacity {W/K} + 10, !- Basin Heater Setpoint Temperature {C} + ; !- Basin Heater Operating Schedule Name + +OS:AirLoopHVAC:UnitaryHeatPump:AirToAir, + {ee3cb057-ff97-4bb9-a25d-f7bff017c9ee}, !- Handle + Perimeter_ZN_2 ZN PSZ-AC-3 Unitary HP, !- Name + {51203011-f6d7-4f57-bba4-31174cec8925}, !- Availability Schedule Name + {cc2489b9-87f3-48fb-8755-0a7b8ac94ada}, !- Air Inlet Node Name + {4b50d120-396b-40ec-8427-e8dd4a622648}, !- Air Outlet Node Name + Autosize, !- Supply Air Flow Rate During Cooling Operation {m3/s} + Autosize, !- Supply Air Flow Rate During Heating Operation {m3/s} + , !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {4e0efcce-e00c-469a-b646-c4dbfeb628cd}, !- Controlling Zone or Thermostat Location + {0289862a-16ae-4393-8990-ea72a250d06c}, !- Supply Air Fan Name + {bb5bda5a-67ed-4c99-a17e-d90f020fb1f7}, !- Heating Coil Name + {cbc1f83a-1cdf-48a1-a43e-03d90e23f2be}, !- Cooling Coil Name + {8f6ca639-6dfc-482e-8f8a-821edd608207}, !- Supplemental Heating Coil Name + Autosize, !- Maximum Supply Air Temperature from Supplemental Heater {C} + 4.44444444444446, !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + BlowThrough, !- Fan Placement + {d49fcb19-899c-4ad6-a766-4b44490b7b3c}; !- Supply Air Fan Operating Mode Schedule Name + +OS:Connection, + {4b50d120-396b-40ec-8427-e8dd4a622648}, !- Handle + {28b65be7-7ce8-4b4f-bc5b-fbe2464eb883}, !- Name + {ee3cb057-ff97-4bb9-a25d-f7bff017c9ee}, !- Source Object + 4, !- Outlet Port + {c62d6114-7a46-4ab4-8917-1b539cfd45fd}, !- Target Object + 2; !- Inlet Port + +OS:Controller:OutdoorAir, + {cf51371a-c1e4-4066-aa67-f9a090e966da}, !- Handle + Perimeter_ZN_2 ZN PSZ-AC-3 OA System Controller, !- Name + , !- Relief Air Outlet Node Name + , !- Return Air Node Name + , !- Mixed Air Node Name + , !- Actuator Node Name + 0, !- Minimum Outdoor Air Flow Rate {m3/s} + Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + 28, !- Economizer Maximum Limit Dry-Bulb Temperature {C} + 64000, !- Economizer Maximum Limit Enthalpy {J/kg} + , !- Economizer Maximum Limit Dewpoint Temperature {C} + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit Dry-Bulb Temperature {C} + NoLockout, !- Lockout Type + FixedMinimum, !- Minimum Limit Type + {6fd5b25f-47a9-463a-b553-2c877a434a9d}, !- Minimum Outdoor Air Schedule Name + , !- Minimum Fraction of Outdoor Air Schedule Name + , !- Maximum Fraction of Outdoor Air Schedule Name + {2cbc40c0-f92a-4b2c-bb2e-8b75ca5df698}, !- Controller Mechanical Ventilation + , !- Time of Day Economizer Control Schedule Name + No, !- High Humidity Control + , !- Humidistat Control Zone Name + , !- High Humidity Outdoor Air Flow Ratio + , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio + BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type + +OS:Controller:MechanicalVentilation, + {2cbc40c0-f92a-4b2c-bb2e-8b75ca5df698}, !- Handle + Controller Mechanical Ventilation 2, !- Name + {51203011-f6d7-4f57-bba4-31174cec8925}, !- Availability Schedule + , !- Demand Controlled Ventilation + ZoneSum; !- System Outdoor Air Method + +OS:AirLoopHVAC:OutdoorAirSystem, + {890b74db-2775-4242-9c35-d34bb5d446c3}, !- Handle + Perimeter_ZN_2 ZN PSZ-AC-3 OA System, !- Name + {cf51371a-c1e4-4066-aa67-f9a090e966da}, !- Controller Name + , !- Outdoor Air Equipment List Name + , !- Availability Manager List Name + {bb8060df-bf1f-4a5a-9403-e316e824732c}, !- Mixed Air Node Name + {1bf53203-3c0b-4930-a117-1c53da3b0628}, !- Outdoor Air Stream Node Name + {ad4d4a12-973d-4ccb-8dd3-559304a5da31}, !- Relief Air Stream Node Name + {6e1266c2-e34b-4733-a6ce-e328c865f02f}; !- Return Air Stream Node Name + +OS:Node, + {8a0d0c3b-527e-4e5f-ad7f-5e80254c6ece}, !- Handle + Perimeter_ZN_2 ZN PSZ-AC-3 Outdoor Air Node, !- Name + , !- Inlet Port + {1bf53203-3c0b-4930-a117-1c53da3b0628}; !- Outlet Port + +OS:Connection, + {1bf53203-3c0b-4930-a117-1c53da3b0628}, !- Handle + {f1c5f0e4-034e-415a-a1a4-1e395243cca6}, !- Name + {8a0d0c3b-527e-4e5f-ad7f-5e80254c6ece}, !- Source Object + 3, !- Outlet Port + {890b74db-2775-4242-9c35-d34bb5d446c3}, !- Target Object + 6; !- Inlet Port + +OS:Node, + {bc2ec1a9-54ab-40b8-bca7-9de7332150c1}, !- Handle + Perimeter_ZN_2 ZN PSZ-AC-3 Relief Air Node, !- Name + {ad4d4a12-973d-4ccb-8dd3-559304a5da31}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {ad4d4a12-973d-4ccb-8dd3-559304a5da31}, !- Handle + {cddba4d4-20c1-4fd4-813e-dc3353970037}, !- Name + {890b74db-2775-4242-9c35-d34bb5d446c3}, !- Source Object + 7, !- Outlet Port + {bc2ec1a9-54ab-40b8-bca7-9de7332150c1}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {23df35b8-e339-47ba-bcc7-2648896bcbe5}, !- Handle + Perimeter_ZN_2 ZN PSZ-AC-3 Mixed Air Node, !- Name + {bb8060df-bf1f-4a5a-9403-e316e824732c}, !- Inlet Port + {cc2489b9-87f3-48fb-8755-0a7b8ac94ada}; !- Outlet Port + +OS:Connection, + {6e1266c2-e34b-4733-a6ce-e328c865f02f}, !- Handle + {8933361c-e9df-47b6-b412-826af85f771b}, !- Name + {6d1eb6dc-06db-430a-864d-669b72e78124}, !- Source Object + 3, !- Outlet Port + {890b74db-2775-4242-9c35-d34bb5d446c3}, !- Target Object + 8; !- Inlet Port + +OS:Connection, + {bb8060df-bf1f-4a5a-9403-e316e824732c}, !- Handle + {c25c7b3e-ba7b-4a88-98fe-77ca48384272}, !- Name + {890b74db-2775-4242-9c35-d34bb5d446c3}, !- Source Object + 5, !- Outlet Port + {23df35b8-e339-47ba-bcc7-2648896bcbe5}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {cc2489b9-87f3-48fb-8755-0a7b8ac94ada}, !- Handle + {e32c4f3e-3c02-4228-94bc-ec324df800a0}, !- Name + {23df35b8-e339-47ba-bcc7-2648896bcbe5}, !- Source Object + 3, !- Outlet Port + {ee3cb057-ff97-4bb9-a25d-f7bff017c9ee}, !- Target Object + 3; !- Inlet Port + +OS:AvailabilityManager:NightCycle, + {e3ec262d-9e6d-4a6b-ab90-34107b150d5f}, !- Handle + Availability Manager Night Cycle 2, !- Name + , !- Applicability Schedule + , !- Fan Schedule + CycleOnAny, !- Control Type + 1, !- Thermostat Tolerance {deltaC} + , !- Cycling Run Time Control Type + 1800, !- Cycling Run Time {s} + {b99f07c3-a30c-45eb-b900-c5961ceeaa12}, !- Control Zone or Zone List Name + {686e1109-2630-4471-90a3-283ce6a3a9a9}, !- Cooling Control Zone or Zone List Name + {741cf195-8cdd-4ab1-a52d-e40f3aa91027}, !- Heating Control Zone or Zone List Name + {c0476eaa-254f-4003-b346-f26b19ec8a70}; !- Heating Zone Fans Only Zone or Zone List Name + +OS:ModelObjectList, + {b99f07c3-a30c-45eb-b900-c5961ceeaa12}, !- Handle + Availability Manager Night Cycle 2 Heating Zone Fans Only Zone List; !- Name + +OS:ModelObjectList, + {686e1109-2630-4471-90a3-283ce6a3a9a9}, !- Handle + {4110b42d-b4bd-4c29-b921-1958b6fd7b75}; !- Name + +OS:ModelObjectList, + {741cf195-8cdd-4ab1-a52d-e40f3aa91027}, !- Handle + {84a524f2-e794-4ae3-ab62-043a9d1aa4f1}; !- Name + +OS:ModelObjectList, + {c0476eaa-254f-4003-b346-f26b19ec8a70}, !- Handle + {7e2c9ef9-9fcd-4e7e-b026-9358fa413fea}; !- Name + +OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, + {2383fe41-6853-4ba0-8c95-0f721c92afa6}, !- Handle + Perimeter_ZN_2 ZN PSZ-AC-3 Diffuser, !- Name + {51203011-f6d7-4f57-bba4-31174cec8925}, !- Availability Schedule Name + {37b487ff-ee3e-4907-a1ef-f2c21cb30c18}, !- Air Inlet Node Name + {9a777df6-4ebb-4f78-9b7a-8e274e70b7a2}, !- Air Outlet Node Name + AutoSize; !- Maximum Air Flow Rate {m3/s} + +OS:Node, + {a5776e75-bd30-44bc-8c74-abe8a4303185}, !- Handle + Perimeter_ZN_2 ZN Return Air Node, !- Name + {9800cc72-c39a-4296-99fb-0d26a6b3d5b9}, !- Inlet Port + {07d24d16-500c-4d84-868b-69bbb1b99daa}; !- Outlet Port + +OS:Connection, + {e483d5fe-47c9-461e-8f0b-cb01f35530f3}, !- Handle + {e8a70625-f175-4663-ac41-0bbcdca4638c}, !- Name + {4bf48fd2-2112-4f31-a0b6-2117bc85e671}, !- Source Object + 3, !- Outlet Port + {d6cb6915-46e1-4851-abac-235d6ef97fbc}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {9800cc72-c39a-4296-99fb-0d26a6b3d5b9}, !- Handle + {d7b9c658-de5c-4fc2-90fb-15e3678904e0}, !- Name + {dbf0eedf-d000-4dee-a462-4f0f9d32096f}, !- Source Object + 3, !- Outlet Port + {a5776e75-bd30-44bc-8c74-abe8a4303185}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {07d24d16-500c-4d84-868b-69bbb1b99daa}, !- Handle + {e2352ed4-95d9-4cee-83c8-8c686d94b2e9}, !- Name + {a5776e75-bd30-44bc-8c74-abe8a4303185}, !- Source Object + 3, !- Outlet Port + {2763ebcf-d320-44de-8fcd-f99be196b5a6}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {dc389caf-ca95-4d61-b7e5-3ac35e979ea2}, !- Handle + Perimeter_ZN_2 ZN PSZ-AC-3 Diffuser Inlet Air Node, !- Name + {76b23e77-a973-40de-84fe-96763835de12}, !- Inlet Port + {37b487ff-ee3e-4907-a1ef-f2c21cb30c18}; !- Outlet Port + +OS:Connection, + {76b23e77-a973-40de-84fe-96763835de12}, !- Handle + {12d70b6e-68e7-4809-8cc8-97ffa197285d}, !- Name + {95005018-eff6-436b-8327-5c42324ea477}, !- Source Object + 3, !- Outlet Port + {dc389caf-ca95-4d61-b7e5-3ac35e979ea2}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {37b487ff-ee3e-4907-a1ef-f2c21cb30c18}, !- Handle + {185477f2-4da7-4bfb-8716-4704f21b4f9a}, !- Name + {dc389caf-ca95-4d61-b7e5-3ac35e979ea2}, !- Source Object + 3, !- Outlet Port + {2383fe41-6853-4ba0-8c95-0f721c92afa6}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {9a777df6-4ebb-4f78-9b7a-8e274e70b7a2}, !- Handle + {83affba7-0853-44dc-b389-d343307713f5}, !- Name + {2383fe41-6853-4ba0-8c95-0f721c92afa6}, !- Source Object + 4, !- Outlet Port + {4bf48fd2-2112-4f31-a0b6-2117bc85e671}, !- Target Object + 2; !- Inlet Port + +OS:AirLoopHVAC, + {ac45fbf6-7c5e-4add-ad06-ba0d06741283}, !- Handle + Perimeter_ZN_3 ZN PSZ-AC-4, !- Name + , !- Controller List Name + {51203011-f6d7-4f57-bba4-31174cec8925}, !- Availability Schedule + {27ee141d-acd1-4332-ab94-6acfb62b97c8}, !- Availability Manager List Name + AutoSize, !- Design Supply Air Flow Rate {m3/s} + , !- Branch List Name + , !- Connector List Name + {cc470ff7-231f-411e-9963-a299e84a6aed}, !- Supply Side Inlet Node Name + {33de808f-abd2-4bbf-a556-d29361030b05}, !- Demand Side Outlet Node Name + {4054c22f-b3d4-43af-884f-04d2776a0d70}, !- Demand Side Inlet Node A + {7a5401a5-d05e-458e-b51f-80a9fb17aaa0}, !- Supply Side Outlet Node A + , !- Demand Side Inlet Node B + , !- Supply Side Outlet Node B + , !- Return Air Bypass Flow Temperature Setpoint Schedule Name + {2e490107-8236-4863-9269-b0cca22607f5}, !- Demand Mixer Name + {5959bc36-dcda-4866-bb80-34cee3b72166}, !- Demand Splitter A Name + , !- Demand Splitter B Name + ; !- Supply Splitter Name + +OS:Node, + {f1069a92-7630-4565-ba9c-53a3d975ef8c}, !- Handle + Perimeter_ZN_3 ZN PSZ-AC-4 Supply Inlet Node, !- Name + {cc470ff7-231f-411e-9963-a299e84a6aed}, !- Inlet Port + {f84622bf-5c97-49b0-a98a-023ba8a272f4}; !- Outlet Port + +OS:Node, + {f2f047e7-14f5-40a0-bd2b-a79a211033a2}, !- Handle + Perimeter_ZN_3 ZN PSZ-AC-4 Supply Outlet Node, !- Name + {ac6bec65-8f75-425e-9f3a-af62f033b8cc}, !- Inlet Port + {7a5401a5-d05e-458e-b51f-80a9fb17aaa0}; !- Outlet Port + +OS:Connection, + {cc470ff7-231f-411e-9963-a299e84a6aed}, !- Handle + {29adae53-7080-4238-a473-8621c58c3ddc}, !- Name + {ac45fbf6-7c5e-4add-ad06-ba0d06741283}, !- Source Object + 8, !- Outlet Port + {f1069a92-7630-4565-ba9c-53a3d975ef8c}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {7a5401a5-d05e-458e-b51f-80a9fb17aaa0}, !- Handle + {02d345c9-0cd1-42b6-93aa-d745f9905f4f}, !- Name + {f2f047e7-14f5-40a0-bd2b-a79a211033a2}, !- Source Object + 3, !- Outlet Port + {ac45fbf6-7c5e-4add-ad06-ba0d06741283}, !- Target Object + 11; !- Inlet Port + +OS:Node, + {d2ae12c1-426c-42ff-93cc-d211c241e086}, !- Handle + Perimeter_ZN_3 ZN PSZ-AC-4 Demand Inlet Node, !- Name + {4054c22f-b3d4-43af-884f-04d2776a0d70}, !- Inlet Port + {3891e8a5-5447-490d-9e94-1a25f03c8ff4}; !- Outlet Port + +OS:Node, + {8d90200a-2ac3-455c-895a-c82c4bb39dea}, !- Handle + Perimeter_ZN_3 ZN PSZ-AC-4 Demand Outlet Node, !- Name + {e1fe610d-e012-407f-81a5-8bcdad6e0c96}, !- Inlet Port + {33de808f-abd2-4bbf-a556-d29361030b05}; !- Outlet Port + +OS:Node, + {d359491d-c8f7-4fce-88db-9623ca2a6587}, !- Handle + Perimeter_ZN_3 ZN PSZ-AC-4 Diffuser Outlet Air Node, !- Name + {2cafbfc5-4153-42af-95bc-57276f700354}, !- Inlet Port + {3a84ce54-a894-4b40-a410-c931fcac8ad4}; !- Outlet Port + +OS:Connection, + {4054c22f-b3d4-43af-884f-04d2776a0d70}, !- Handle + {2e8c699c-289d-44f9-bc44-1f58cd6f2c07}, !- Name + {ac45fbf6-7c5e-4add-ad06-ba0d06741283}, !- Source Object + 10, !- Outlet Port + {d2ae12c1-426c-42ff-93cc-d211c241e086}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {33de808f-abd2-4bbf-a556-d29361030b05}, !- Handle + {ffd4b593-5e69-4efa-8f4d-e602ed88935a}, !- Name + {8d90200a-2ac3-455c-895a-c82c4bb39dea}, !- Source Object + 3, !- Outlet Port + {ac45fbf6-7c5e-4add-ad06-ba0d06741283}, !- Target Object + 9; !- Inlet Port + +OS:AirLoopHVAC:ZoneSplitter, + {5959bc36-dcda-4866-bb80-34cee3b72166}, !- Handle + Air Loop HVAC Zone Splitter 3, !- Name + {3891e8a5-5447-490d-9e94-1a25f03c8ff4}, !- Inlet Node Name + {b0c7226a-635f-4a4a-964c-b5280cd98495}; !- Outlet Node Name 1 + +OS:AirLoopHVAC:ZoneMixer, + {2e490107-8236-4863-9269-b0cca22607f5}, !- Handle + Air Loop HVAC Zone Mixer 3, !- Name + {e1fe610d-e012-407f-81a5-8bcdad6e0c96}, !- Outlet Node Name + {f4619427-1183-4dc7-8abd-5722fd66e488}; !- Inlet Node Name 1 + +OS:Connection, + {3891e8a5-5447-490d-9e94-1a25f03c8ff4}, !- Handle + {1f24457e-4e83-4ac9-a958-44d59b0bbb67}, !- Name + {d2ae12c1-426c-42ff-93cc-d211c241e086}, !- Source Object + 3, !- Outlet Port + {5959bc36-dcda-4866-bb80-34cee3b72166}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {e1fe610d-e012-407f-81a5-8bcdad6e0c96}, !- Handle + {de410ed5-bcbc-4e41-8f57-615708b83ba8}, !- Name + {2e490107-8236-4863-9269-b0cca22607f5}, !- Source Object + 2, !- Outlet Port + {8d90200a-2ac3-455c-895a-c82c4bb39dea}, !- Target Object + 2; !- Inlet Port + +OS:Sizing:System, + {f84182ee-0227-4bf7-b0b9-7359de6358d0}, !- Handle + {ac45fbf6-7c5e-4add-ad06-ba0d06741283}, !- AirLoop Name + Sensible, !- Type of Load to Size On + Autosize, !- Design Outdoor Air Flow Rate {m3/s} + 1, !- Central Heating Maximum System Air Flow Ratio + 7.22222222222229, !- Preheat Design Temperature {C} + 0.008, !- Preheat Design Humidity Ratio {kg-H2O/kg-Air} + 12.7777777777778, !- Precool Design Temperature {C} + 0.008, !- Precool Design Humidity Ratio {kg-H2O/kg-Air} + 12.7777777777778, !- Central Cooling Design Supply Air Temperature {C} + 50.0000000000001, !- Central Heating Design Supply Air Temperature {C} + Coincident, !- Sizing Option + No, !- 100% Outdoor Air in Cooling + No, !- 100% Outdoor Air in Heating + 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-Air} + 0.008, !- Central Heating Design Supply Air Humidity Ratio {kg-H2O/kg-Air} + DesignDay, !- Cooling Design Air Flow Method + 0, !- Cooling Design Air Flow Rate {m3/s} + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate {m3/s} + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction {dimensionless} + 0.0099676501, !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} + 1, !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + 3.9475456e-005, !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} + 0.0099676501, !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} + 1, !- Heating Fraction of Autosized Heating Supply Air Flow Rate + 1, !- Heating Fraction of Autosized Cooling Supply Air Flow Rate + 3.1588213e-005, !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity {W} + 234.7, !- Cooling Design Capacity Per Floor Area {W/m2} + 1, !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 157, !- Heating Design Capacity Per Floor Area {W/m2} + 1, !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +OS:AvailabilityManagerAssignmentList, + {27ee141d-acd1-4332-ab94-6acfb62b97c8}, !- Handle + Air Loop HVAC 1 AvailabilityManagerAssignmentList 2, !- Name + {ff37cdb5-ec3a-4493-a65e-3b27efb199aa}; !- Availability Manager Name 1 + +OS:SetpointManager:SingleZone:Reheat, + {06fc5959-8315-4199-a785-4a7742ac3d6c}, !- Handle + Perimeter_ZN_3 ZN Setpoint Manager SZ Reheat, !- Name + 12.7777777777778, !- Minimum Supply Air Temperature {C} + 50.0000000000001, !- Maximum Supply Air Temperature {C} + {afcd34b0-00fa-40af-a2e1-995004075d3f}, !- Control Zone Name + {f2f047e7-14f5-40a0-bd2b-a79a211033a2}; !- Setpoint Node or NodeList Name + +OS:Fan:OnOff, + {afd30c0b-79d4-4a87-a936-f358d84e91c5}, !- Handle + Perimeter_ZN_3 ZN PSZ-AC-4 Fan, !- Name + {d49fcb19-899c-4ad6-a766-4b44490b7b3c}, !- Availability Schedule Name + 0.55575, !- Fan Total Efficiency + 622.722275, !- Pressure Rise {Pa} + autosize, !- Maximum Flow Rate {m3/s} + 0.855, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {a713ee58-d24c-4f9f-9b12-b3b47fe1a19b}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {6307a962-a689-47ae-a26f-3bbb3e73cf36}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {a713ee58-d24c-4f9f-9b12-b3b47fe1a19b}, !- Handle + Fan On Off Power Curve 2, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {6307a962-a689-47ae-a26f-3bbb3e73cf36}, !- Handle + Fan On Off Efficiency Curve 2, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:Coil:Heating:DX:SingleSpeed, + {981887c6-f2be-473e-8cf3-911cf272c764}, !- Handle + Perimeter_ZN_3 ZN HP Htg Coil 20 Clg kBtu/hr 8.0HSPF, !- Name + {51203011-f6d7-4f57-bba4-31174cec8925}, !- Availability Schedule Name + Autosize, !- Rated Total Heating Capacity {W} + 3.3592, !- Rated COP {W/W} + Autosize, !- Rated Air Flow Rate {m3/s} + 773.3, !- Rated Supply Fan Power Per Volume Flow Rate {W/(m3/s)} + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {1bfea7f1-1095-458e-b853-eaf9b2498d5f}, !- Total Heating Capacity Function of Temperature Curve Name + {280d9688-bd63-492e-a346-6275aabe749e}, !- Total Heating Capacity Function of Flow Fraction Curve Name + {8aff4225-4594-4306-8181-1471256a4a20}, !- Energy Input Ratio Function of Temperature Curve Name + {5ce2ca36-993a-47f3-88f4-bad9af8ac9a3}, !- Energy Input Ratio Function of Flow Fraction Curve Name + {714c0395-0263-444c-a4f6-d9e78a580913}, !- Part Load Fraction Correlation Curve Name + {a111a42c-308a-4006-9d5d-3bdb6194720c}, !- Defrost Energy Input Ratio Function of Temperature Curve Name + -12.2, !- Minimum Outdoor Dry-Bulb Temperature for Compressor Operation {C} + 1.67, !- Maximum Outdoor Dry-Bulb Temperature for Defrost Operation {C} + 50, !- Crankcase Heater Capacity {W} + 4.4, !- Maximum Outdoor Dry-Bulb Temperature for Crankcase Heater Operation {C} + ReverseCycle, !- Defrost Strategy + OnDemand, !- Defrost Control + , !- Defrost Time Period Fraction + 2000; !- Resistive Defrost Heater Capacity {W} + +OS:Curve:Biquadratic, + {a111a42c-308a-4006-9d5d-3bdb6194720c}, !- Handle + Perimeter_ZN_3 ZN HP Htg Coil Defrost EIR Func of Temp Curve 1, !- Name + 0.297145, !- Coefficient1 Constant + 0.0430933, !- Coefficient2 x + -0.000748766, !- Coefficient3 x**2 + 0.00597727, !- Coefficient4 y + 0.000482112, !- Coefficient5 y**2 + -0.000956448, !- Coefficient6 x*y + 12.77778, !- Minimum Value of x + 23.88889, !- Maximum Value of x + 21.11111, !- Minimum Value of y + 46.11111; !- Maximum Value of y + +OS:Coil:Heating:Gas, + {edb4ccb9-9636-46dc-8118-d3d971ab8268}, !- Handle + Perimeter_ZN_3 ZN PSZ-AC-4 Gas Backup Htg Coil, !- Name + {51203011-f6d7-4f57-bba4-31174cec8925}, !- Availability Schedule Name + 0.8, !- Gas Burner Efficiency + AutoSize, !- Nominal Capacity {W} + , !- Air Inlet Node Name + , !- Air Outlet Node Name + , !- Temperature Setpoint Node Name + 0, !- Parasitic Electric Load {W} + , !- Part Load Fraction Correlation Curve Name + 0; !- Parasitic Gas Load {W} + +OS:Coil:Cooling:DX:SingleSpeed, + {09a50d2b-8fd9-4df4-9d2a-81f066f89fd7}, !- Handle + Perimeter_ZN_3 ZN PSZ-AC-4 1spd DX HP Clg Coil 20kBtu/hr 14.0SEER, !- Name + {51203011-f6d7-4f57-bba4-31174cec8925}, !- Availability Schedule Name + autosize, !- Rated Total Cooling Capacity {W} + autosize, !- Rated Sensible Heat Ratio + 4.11713235489972, !- Rated COP {W/W} + autosize, !- Rated Air Flow Rate {m3/s} + 773.3, !- Rated Evaporator Fan Power Per Volume Flow Rate {W/(m3/s)} + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {e6cebddc-27fb-4158-9b04-49e64c32b2ed}, !- Total Cooling Capacity Function of Temperature Curve Name + {6708f17c-3967-4daf-89fb-e9625d394634}, !- Total Cooling Capacity Function of Flow Fraction Curve Name + {626baf5b-350e-404e-81da-48addd8de7f7}, !- Energy Input Ratio Function of Temperature Curve Name + {dfc9bddf-e7f5-4a36-93ca-5ed1d66665cb}, !- Energy Input Ratio Function of Flow Fraction Curve Name + {714c0395-0263-444c-a4f6-d9e78a580913}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + , !- Maximum Cycling Rate {cycles/hr} + , !- Latent Capacity Time Constant {s} + , !- Condenser Air Inlet Node Name + AirCooled, !- Condenser Type + 0, !- Evaporative Condenser Effectiveness {dimensionless} + Autosize, !- Evaporative Condenser Air Flow Rate {m3/s} + Autosize, !- Evaporative Condenser Pump Rated Power Consumption {W} + 0, !- Crankcase Heater Capacity {W} + 0, !- Maximum Outdoor Dry-Bulb Temperature for Crankcase Heater Operation {C} + , !- Supply Water Storage Tank Name + , !- Condensate Collection Water Storage Tank Name + 0, !- Basin Heater Capacity {W/K} + 10, !- Basin Heater Setpoint Temperature {C} + ; !- Basin Heater Operating Schedule Name + +OS:AirLoopHVAC:UnitaryHeatPump:AirToAir, + {69d87029-8eb9-42cc-a480-aabeec377f4d}, !- Handle + Perimeter_ZN_3 ZN PSZ-AC-4 Unitary HP, !- Name + {51203011-f6d7-4f57-bba4-31174cec8925}, !- Availability Schedule Name + {4807b52c-e60a-47aa-803c-541c02eeff73}, !- Air Inlet Node Name + {ac6bec65-8f75-425e-9f3a-af62f033b8cc}, !- Air Outlet Node Name + Autosize, !- Supply Air Flow Rate During Cooling Operation {m3/s} + Autosize, !- Supply Air Flow Rate During Heating Operation {m3/s} + , !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {afcd34b0-00fa-40af-a2e1-995004075d3f}, !- Controlling Zone or Thermostat Location + {afd30c0b-79d4-4a87-a936-f358d84e91c5}, !- Supply Air Fan Name + {981887c6-f2be-473e-8cf3-911cf272c764}, !- Heating Coil Name + {09a50d2b-8fd9-4df4-9d2a-81f066f89fd7}, !- Cooling Coil Name + {edb4ccb9-9636-46dc-8118-d3d971ab8268}, !- Supplemental Heating Coil Name + Autosize, !- Maximum Supply Air Temperature from Supplemental Heater {C} + 4.44444444444446, !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + BlowThrough, !- Fan Placement + {d49fcb19-899c-4ad6-a766-4b44490b7b3c}; !- Supply Air Fan Operating Mode Schedule Name + +OS:Connection, + {ac6bec65-8f75-425e-9f3a-af62f033b8cc}, !- Handle + {8ebaa7ab-8244-409e-9d7f-28ec5f1a34eb}, !- Name + {69d87029-8eb9-42cc-a480-aabeec377f4d}, !- Source Object + 4, !- Outlet Port + {f2f047e7-14f5-40a0-bd2b-a79a211033a2}, !- Target Object + 2; !- Inlet Port + +OS:Controller:OutdoorAir, + {5e4158c9-fb0c-4729-99f7-fcac6bf37c29}, !- Handle + Perimeter_ZN_3 ZN PSZ-AC-4 OA System Controller, !- Name + , !- Relief Air Outlet Node Name + , !- Return Air Node Name + , !- Mixed Air Node Name + , !- Actuator Node Name + 0, !- Minimum Outdoor Air Flow Rate {m3/s} + Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + 28, !- Economizer Maximum Limit Dry-Bulb Temperature {C} + 64000, !- Economizer Maximum Limit Enthalpy {J/kg} + , !- Economizer Maximum Limit Dewpoint Temperature {C} + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit Dry-Bulb Temperature {C} + NoLockout, !- Lockout Type + FixedMinimum, !- Minimum Limit Type + {6fd5b25f-47a9-463a-b553-2c877a434a9d}, !- Minimum Outdoor Air Schedule Name + , !- Minimum Fraction of Outdoor Air Schedule Name + , !- Maximum Fraction of Outdoor Air Schedule Name + {1796bad4-4a8b-4fe3-a273-81022ea8f71f}, !- Controller Mechanical Ventilation + , !- Time of Day Economizer Control Schedule Name + No, !- High Humidity Control + , !- Humidistat Control Zone Name + , !- High Humidity Outdoor Air Flow Ratio + , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio + BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type + +OS:Controller:MechanicalVentilation, + {1796bad4-4a8b-4fe3-a273-81022ea8f71f}, !- Handle + Controller Mechanical Ventilation 3, !- Name + {51203011-f6d7-4f57-bba4-31174cec8925}, !- Availability Schedule + , !- Demand Controlled Ventilation + ZoneSum; !- System Outdoor Air Method + +OS:AirLoopHVAC:OutdoorAirSystem, + {47404cbb-024a-4983-81b7-b6562a0d2cc4}, !- Handle + Perimeter_ZN_3 ZN PSZ-AC-4 OA System, !- Name + {5e4158c9-fb0c-4729-99f7-fcac6bf37c29}, !- Controller Name + , !- Outdoor Air Equipment List Name + , !- Availability Manager List Name + {afab294b-e3e9-46a4-b193-f22519a632db}, !- Mixed Air Node Name + {11e3b0be-6d38-44d2-93db-50482d079db0}, !- Outdoor Air Stream Node Name + {669e109d-da50-4547-ab5a-f17d9d56795d}, !- Relief Air Stream Node Name + {f84622bf-5c97-49b0-a98a-023ba8a272f4}; !- Return Air Stream Node Name + +OS:Node, + {c19df335-6e60-40f6-baa3-cd801d92cc92}, !- Handle + Perimeter_ZN_3 ZN PSZ-AC-4 Outdoor Air Node, !- Name + , !- Inlet Port + {11e3b0be-6d38-44d2-93db-50482d079db0}; !- Outlet Port + +OS:Connection, + {11e3b0be-6d38-44d2-93db-50482d079db0}, !- Handle + {adfd1b01-e9e3-4bcb-a3a2-3c82a6acb894}, !- Name + {c19df335-6e60-40f6-baa3-cd801d92cc92}, !- Source Object + 3, !- Outlet Port + {47404cbb-024a-4983-81b7-b6562a0d2cc4}, !- Target Object + 6; !- Inlet Port + +OS:Node, + {e7e28750-399d-404a-9e98-49ca409f15e5}, !- Handle + Perimeter_ZN_3 ZN PSZ-AC-4 Relief Air Node, !- Name + {669e109d-da50-4547-ab5a-f17d9d56795d}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {669e109d-da50-4547-ab5a-f17d9d56795d}, !- Handle + {14212df6-58af-4362-bf92-542c3e648ba4}, !- Name + {47404cbb-024a-4983-81b7-b6562a0d2cc4}, !- Source Object + 7, !- Outlet Port + {e7e28750-399d-404a-9e98-49ca409f15e5}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {5cf98751-7e53-4696-855e-88af374166a3}, !- Handle + Perimeter_ZN_3 ZN PSZ-AC-4 Mixed Air Node, !- Name + {afab294b-e3e9-46a4-b193-f22519a632db}, !- Inlet Port + {4807b52c-e60a-47aa-803c-541c02eeff73}; !- Outlet Port + +OS:Connection, + {f84622bf-5c97-49b0-a98a-023ba8a272f4}, !- Handle + {bf1c1517-e3d1-4b4f-ac89-60880f68a141}, !- Name + {f1069a92-7630-4565-ba9c-53a3d975ef8c}, !- Source Object + 3, !- Outlet Port + {47404cbb-024a-4983-81b7-b6562a0d2cc4}, !- Target Object + 8; !- Inlet Port + +OS:Connection, + {afab294b-e3e9-46a4-b193-f22519a632db}, !- Handle + {9f7b3ed7-c0d6-4d4b-b9f1-7f0b1d6ef19c}, !- Name + {47404cbb-024a-4983-81b7-b6562a0d2cc4}, !- Source Object + 5, !- Outlet Port + {5cf98751-7e53-4696-855e-88af374166a3}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {4807b52c-e60a-47aa-803c-541c02eeff73}, !- Handle + {8d847753-f906-4b73-acfe-b4766b43043d}, !- Name + {5cf98751-7e53-4696-855e-88af374166a3}, !- Source Object + 3, !- Outlet Port + {69d87029-8eb9-42cc-a480-aabeec377f4d}, !- Target Object + 3; !- Inlet Port + +OS:AvailabilityManager:NightCycle, + {ff37cdb5-ec3a-4493-a65e-3b27efb199aa}, !- Handle + Availability Manager Night Cycle 3, !- Name + , !- Applicability Schedule + , !- Fan Schedule + CycleOnAny, !- Control Type + 1, !- Thermostat Tolerance {deltaC} + , !- Cycling Run Time Control Type + 1800, !- Cycling Run Time {s} + {a4c8f941-05d7-4ea8-88e1-7505c04666dc}, !- Control Zone or Zone List Name + {d6981c6f-f022-4c27-8bea-cf7dfe80a9b6}, !- Cooling Control Zone or Zone List Name + {41db7002-5b10-40ee-976e-4deac6e71b04}, !- Heating Control Zone or Zone List Name + {a7b00de4-d445-429c-801e-763723863177}; !- Heating Zone Fans Only Zone or Zone List Name + +OS:ModelObjectList, + {a4c8f941-05d7-4ea8-88e1-7505c04666dc}, !- Handle + Availability Manager Night Cycle 3 Heating Zone Fans Only Zone List; !- Name + +OS:ModelObjectList, + {d6981c6f-f022-4c27-8bea-cf7dfe80a9b6}, !- Handle + {eb35390d-accc-4308-821c-0edb91f31821}; !- Name + +OS:ModelObjectList, + {41db7002-5b10-40ee-976e-4deac6e71b04}, !- Handle + {a1269339-c118-4b5b-9854-a8cad3ae5199}; !- Name + +OS:ModelObjectList, + {a7b00de4-d445-429c-801e-763723863177}, !- Handle + {a4f0427d-6f63-48d4-8e86-fa21faf5251f}; !- Name + +OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, + {ab40a91f-e5b7-4089-8dfc-acdb012395d3}, !- Handle + Perimeter_ZN_3 ZN PSZ-AC-4 Diffuser, !- Name + {51203011-f6d7-4f57-bba4-31174cec8925}, !- Availability Schedule Name + {784378ed-7b9d-47a5-83d6-6407c2044bcf}, !- Air Inlet Node Name + {2cafbfc5-4153-42af-95bc-57276f700354}, !- Air Outlet Node Name + AutoSize; !- Maximum Air Flow Rate {m3/s} + +OS:Node, + {a6111359-9077-4c29-95b4-38bab698f22b}, !- Handle + Perimeter_ZN_3 ZN Return Air Node, !- Name + {712c73a6-f6c7-4ad0-9a8c-3316db2d501d}, !- Inlet Port + {f4619427-1183-4dc7-8abd-5722fd66e488}; !- Outlet Port + +OS:Connection, + {3a84ce54-a894-4b40-a410-c931fcac8ad4}, !- Handle + {427691b8-9a9b-48b6-a1cf-5219e7a5cc8c}, !- Name + {d359491d-c8f7-4fce-88db-9623ca2a6587}, !- Source Object + 3, !- Outlet Port + {7306ee17-b69f-4842-9e6a-6066149e388f}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {712c73a6-f6c7-4ad0-9a8c-3316db2d501d}, !- Handle + {ac68c5c3-80e7-4d1c-800b-edd94bf27d30}, !- Name + {fce25264-f646-4a33-bd2c-610a5157d5ce}, !- Source Object + 3, !- Outlet Port + {a6111359-9077-4c29-95b4-38bab698f22b}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {f4619427-1183-4dc7-8abd-5722fd66e488}, !- Handle + {05c6eddd-5573-428c-9981-221271a81733}, !- Name + {a6111359-9077-4c29-95b4-38bab698f22b}, !- Source Object + 3, !- Outlet Port + {2e490107-8236-4863-9269-b0cca22607f5}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {40977da3-82ed-482f-8469-9cca34ff2a26}, !- Handle + Perimeter_ZN_3 ZN PSZ-AC-4 Diffuser Inlet Air Node, !- Name + {b0c7226a-635f-4a4a-964c-b5280cd98495}, !- Inlet Port + {784378ed-7b9d-47a5-83d6-6407c2044bcf}; !- Outlet Port + +OS:Connection, + {b0c7226a-635f-4a4a-964c-b5280cd98495}, !- Handle + {2d309374-8a3f-4fb6-9298-04d0cbcb1eda}, !- Name + {5959bc36-dcda-4866-bb80-34cee3b72166}, !- Source Object + 3, !- Outlet Port + {40977da3-82ed-482f-8469-9cca34ff2a26}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {784378ed-7b9d-47a5-83d6-6407c2044bcf}, !- Handle + {80842bd8-ca30-4b08-819a-32e70e16a8fe}, !- Name + {40977da3-82ed-482f-8469-9cca34ff2a26}, !- Source Object + 3, !- Outlet Port + {ab40a91f-e5b7-4089-8dfc-acdb012395d3}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {2cafbfc5-4153-42af-95bc-57276f700354}, !- Handle + {2867cf64-fac8-493c-bb18-015e4b0ca348}, !- Name + {ab40a91f-e5b7-4089-8dfc-acdb012395d3}, !- Source Object + 4, !- Outlet Port + {d359491d-c8f7-4fce-88db-9623ca2a6587}, !- Target Object + 2; !- Inlet Port + +OS:AirLoopHVAC, + {4961a5e8-e5db-4410-9810-abfd278c45fe}, !- Handle + Perimeter_ZN_4 ZN PSZ-AC-5, !- Name + , !- Controller List Name + {51203011-f6d7-4f57-bba4-31174cec8925}, !- Availability Schedule + {c45e4e64-249b-4b76-8e4d-8ddefe59e859}, !- Availability Manager List Name + AutoSize, !- Design Supply Air Flow Rate {m3/s} + , !- Branch List Name + , !- Connector List Name + {c60d8bbd-9ac0-4a41-a031-6a1e28b67b14}, !- Supply Side Inlet Node Name + {c626ce72-f95a-4a6d-bdc5-195e2130ff7d}, !- Demand Side Outlet Node Name + {f2decad3-ee53-4643-b9c8-d2184fdf6058}, !- Demand Side Inlet Node A + {dcb214ad-605e-40e2-85c8-3da29d500014}, !- Supply Side Outlet Node A + , !- Demand Side Inlet Node B + , !- Supply Side Outlet Node B + , !- Return Air Bypass Flow Temperature Setpoint Schedule Name + {7d10d54a-5860-4750-a453-fcea9a9907a6}, !- Demand Mixer Name + {08041af0-abec-4cfc-b47f-b69586d346cd}, !- Demand Splitter A Name + , !- Demand Splitter B Name + ; !- Supply Splitter Name + +OS:Node, + {f67d6cb9-dbb5-4bac-bb81-0ef9873a86cc}, !- Handle + Perimeter_ZN_4 ZN PSZ-AC-5 Supply Inlet Node, !- Name + {c60d8bbd-9ac0-4a41-a031-6a1e28b67b14}, !- Inlet Port + {9b213694-9619-4fa0-b6ae-369768054a0a}; !- Outlet Port + +OS:Node, + {e94571f1-6b20-40d7-85a1-c43e8ff8899a}, !- Handle + Perimeter_ZN_4 ZN PSZ-AC-5 Supply Outlet Node, !- Name + {6ee17dc4-4731-4539-92c9-0c06cc59f8f5}, !- Inlet Port + {dcb214ad-605e-40e2-85c8-3da29d500014}; !- Outlet Port + +OS:Connection, + {c60d8bbd-9ac0-4a41-a031-6a1e28b67b14}, !- Handle + {442e219e-33ef-408e-94cf-61b83eb76dae}, !- Name + {4961a5e8-e5db-4410-9810-abfd278c45fe}, !- Source Object + 8, !- Outlet Port + {f67d6cb9-dbb5-4bac-bb81-0ef9873a86cc}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {dcb214ad-605e-40e2-85c8-3da29d500014}, !- Handle + {31f6b3d4-2e25-432f-b330-675972ba72a8}, !- Name + {e94571f1-6b20-40d7-85a1-c43e8ff8899a}, !- Source Object + 3, !- Outlet Port + {4961a5e8-e5db-4410-9810-abfd278c45fe}, !- Target Object + 11; !- Inlet Port + +OS:Node, + {5e4e6ad5-5111-4701-96ad-c4a57b5d95ff}, !- Handle + Perimeter_ZN_4 ZN PSZ-AC-5 Demand Inlet Node, !- Name + {f2decad3-ee53-4643-b9c8-d2184fdf6058}, !- Inlet Port + {718d5d4d-432d-4889-96bf-0cedc0bb7411}; !- Outlet Port + +OS:Node, + {5967feec-fc20-4ac3-9bc6-ec5473f0769f}, !- Handle + Perimeter_ZN_4 ZN PSZ-AC-5 Demand Outlet Node, !- Name + {612ecc2e-62fa-4b2e-b354-f10c411a204a}, !- Inlet Port + {c626ce72-f95a-4a6d-bdc5-195e2130ff7d}; !- Outlet Port + +OS:Node, + {f0b958f4-544e-41bd-8128-5b2aff05c027}, !- Handle + Perimeter_ZN_4 ZN PSZ-AC-5 Diffuser Outlet Air Node, !- Name + {73bddb66-14eb-47ad-8c4b-448516b955fb}, !- Inlet Port + {17a53905-6fa9-48a7-b620-fa5aee33ec94}; !- Outlet Port + +OS:Connection, + {f2decad3-ee53-4643-b9c8-d2184fdf6058}, !- Handle + {3972b40e-9db5-4be0-8650-001da31c4db3}, !- Name + {4961a5e8-e5db-4410-9810-abfd278c45fe}, !- Source Object + 10, !- Outlet Port + {5e4e6ad5-5111-4701-96ad-c4a57b5d95ff}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {c626ce72-f95a-4a6d-bdc5-195e2130ff7d}, !- Handle + {93e00bce-4030-46a1-b763-85e298638606}, !- Name + {5967feec-fc20-4ac3-9bc6-ec5473f0769f}, !- Source Object + 3, !- Outlet Port + {4961a5e8-e5db-4410-9810-abfd278c45fe}, !- Target Object + 9; !- Inlet Port + +OS:AirLoopHVAC:ZoneSplitter, + {08041af0-abec-4cfc-b47f-b69586d346cd}, !- Handle + Air Loop HVAC Zone Splitter 4, !- Name + {718d5d4d-432d-4889-96bf-0cedc0bb7411}, !- Inlet Node Name + {ae3d1dfa-ef14-477a-b45c-d486807559ce}; !- Outlet Node Name 1 + +OS:AirLoopHVAC:ZoneMixer, + {7d10d54a-5860-4750-a453-fcea9a9907a6}, !- Handle + Air Loop HVAC Zone Mixer 4, !- Name + {612ecc2e-62fa-4b2e-b354-f10c411a204a}, !- Outlet Node Name + {446fd0ad-770d-4686-812f-41b73ccc0ffa}; !- Inlet Node Name 1 + +OS:Connection, + {718d5d4d-432d-4889-96bf-0cedc0bb7411}, !- Handle + {d540263a-5710-453d-9039-e57121764429}, !- Name + {5e4e6ad5-5111-4701-96ad-c4a57b5d95ff}, !- Source Object + 3, !- Outlet Port + {08041af0-abec-4cfc-b47f-b69586d346cd}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {612ecc2e-62fa-4b2e-b354-f10c411a204a}, !- Handle + {7aa8cdea-35b0-4cc8-bf20-49268dd51a1b}, !- Name + {7d10d54a-5860-4750-a453-fcea9a9907a6}, !- Source Object + 2, !- Outlet Port + {5967feec-fc20-4ac3-9bc6-ec5473f0769f}, !- Target Object + 2; !- Inlet Port + +OS:Sizing:System, + {f44627e5-a22f-47d3-938f-dc4706b6f658}, !- Handle + {4961a5e8-e5db-4410-9810-abfd278c45fe}, !- AirLoop Name + Sensible, !- Type of Load to Size On + Autosize, !- Design Outdoor Air Flow Rate {m3/s} + 1, !- Central Heating Maximum System Air Flow Ratio + 7.22222222222229, !- Preheat Design Temperature {C} + 0.008, !- Preheat Design Humidity Ratio {kg-H2O/kg-Air} + 12.7777777777778, !- Precool Design Temperature {C} + 0.008, !- Precool Design Humidity Ratio {kg-H2O/kg-Air} + 12.7777777777778, !- Central Cooling Design Supply Air Temperature {C} + 50.0000000000001, !- Central Heating Design Supply Air Temperature {C} + Coincident, !- Sizing Option + No, !- 100% Outdoor Air in Cooling + No, !- 100% Outdoor Air in Heating + 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-Air} + 0.008, !- Central Heating Design Supply Air Humidity Ratio {kg-H2O/kg-Air} + DesignDay, !- Cooling Design Air Flow Method + 0, !- Cooling Design Air Flow Rate {m3/s} + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate {m3/s} + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction {dimensionless} + 0.0099676501, !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} + 1, !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + 3.9475456e-005, !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} + 0.0099676501, !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} + 1, !- Heating Fraction of Autosized Heating Supply Air Flow Rate + 1, !- Heating Fraction of Autosized Cooling Supply Air Flow Rate + 3.1588213e-005, !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity {W} + 234.7, !- Cooling Design Capacity Per Floor Area {W/m2} + 1, !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 157, !- Heating Design Capacity Per Floor Area {W/m2} + 1, !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +OS:AvailabilityManagerAssignmentList, + {c45e4e64-249b-4b76-8e4d-8ddefe59e859}, !- Handle + Air Loop HVAC 1 AvailabilityManagerAssignmentList 3, !- Name + {c53fbdc0-83fa-4e65-b37d-7b69e36b78a4}; !- Availability Manager Name 1 + +OS:SetpointManager:SingleZone:Reheat, + {f669576c-edc1-4f96-a935-755aa89fb779}, !- Handle + Perimeter_ZN_4 ZN Setpoint Manager SZ Reheat, !- Name + 12.7777777777778, !- Minimum Supply Air Temperature {C} + 50.0000000000001, !- Maximum Supply Air Temperature {C} + {5a3afc2e-d12e-4ab3-b952-581dd46d9df3}, !- Control Zone Name + {e94571f1-6b20-40d7-85a1-c43e8ff8899a}; !- Setpoint Node or NodeList Name + +OS:Fan:OnOff, + {93dfbd18-14d0-4653-a167-2e00b6cf89e2}, !- Handle + Perimeter_ZN_4 ZN PSZ-AC-5 Fan, !- Name + {d49fcb19-899c-4ad6-a766-4b44490b7b3c}, !- Availability Schedule Name + 0.55575, !- Fan Total Efficiency + 622.722275, !- Pressure Rise {Pa} + autosize, !- Maximum Flow Rate {m3/s} + 0.855, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {eadef28d-9080-4443-a464-29e1e5eb896d}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {77359b9e-ca06-45a6-a7df-106cc59c0ff8}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {eadef28d-9080-4443-a464-29e1e5eb896d}, !- Handle + Fan On Off Power Curve 3, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {77359b9e-ca06-45a6-a7df-106cc59c0ff8}, !- Handle + Fan On Off Efficiency Curve 3, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:Coil:Heating:DX:SingleSpeed, + {c8bd6efc-eccb-47fb-b3ea-e0969a371577}, !- Handle + Perimeter_ZN_4 ZN HP Htg Coil 20 Clg kBtu/hr 8.0HSPF, !- Name + {51203011-f6d7-4f57-bba4-31174cec8925}, !- Availability Schedule Name + Autosize, !- Rated Total Heating Capacity {W} + 3.3592, !- Rated COP {W/W} + Autosize, !- Rated Air Flow Rate {m3/s} + 773.3, !- Rated Supply Fan Power Per Volume Flow Rate {W/(m3/s)} + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {1bfea7f1-1095-458e-b853-eaf9b2498d5f}, !- Total Heating Capacity Function of Temperature Curve Name + {280d9688-bd63-492e-a346-6275aabe749e}, !- Total Heating Capacity Function of Flow Fraction Curve Name + {8aff4225-4594-4306-8181-1471256a4a20}, !- Energy Input Ratio Function of Temperature Curve Name + {5ce2ca36-993a-47f3-88f4-bad9af8ac9a3}, !- Energy Input Ratio Function of Flow Fraction Curve Name + {714c0395-0263-444c-a4f6-d9e78a580913}, !- Part Load Fraction Correlation Curve Name + {d4f4971e-9bf3-4a30-9242-1d9efd4c4359}, !- Defrost Energy Input Ratio Function of Temperature Curve Name + -12.2, !- Minimum Outdoor Dry-Bulb Temperature for Compressor Operation {C} + 1.67, !- Maximum Outdoor Dry-Bulb Temperature for Defrost Operation {C} + 50, !- Crankcase Heater Capacity {W} + 4.4, !- Maximum Outdoor Dry-Bulb Temperature for Crankcase Heater Operation {C} + ReverseCycle, !- Defrost Strategy + OnDemand, !- Defrost Control + , !- Defrost Time Period Fraction + 2000; !- Resistive Defrost Heater Capacity {W} + +OS:Curve:Biquadratic, + {d4f4971e-9bf3-4a30-9242-1d9efd4c4359}, !- Handle + Perimeter_ZN_4 ZN HP Htg Coil Defrost EIR Func of Temp Curve 1, !- Name + 0.297145, !- Coefficient1 Constant + 0.0430933, !- Coefficient2 x + -0.000748766, !- Coefficient3 x**2 + 0.00597727, !- Coefficient4 y + 0.000482112, !- Coefficient5 y**2 + -0.000956448, !- Coefficient6 x*y + 12.77778, !- Minimum Value of x + 23.88889, !- Maximum Value of x + 21.11111, !- Minimum Value of y + 46.11111; !- Maximum Value of y + +OS:Coil:Heating:Gas, + {82d0a4fa-53a5-4cef-b204-6af2adbc85c5}, !- Handle + Perimeter_ZN_4 ZN PSZ-AC-5 Gas Backup Htg Coil, !- Name + {51203011-f6d7-4f57-bba4-31174cec8925}, !- Availability Schedule Name + 0.8, !- Gas Burner Efficiency + AutoSize, !- Nominal Capacity {W} + , !- Air Inlet Node Name + , !- Air Outlet Node Name + , !- Temperature Setpoint Node Name + 0, !- Parasitic Electric Load {W} + , !- Part Load Fraction Correlation Curve Name + 0; !- Parasitic Gas Load {W} + +OS:Coil:Cooling:DX:SingleSpeed, + {c5da1e41-5c31-41d9-9976-e891c458b8af}, !- Handle + Perimeter_ZN_4 ZN PSZ-AC-5 1spd DX HP Clg Coil 20kBtu/hr 14.0SEER, !- Name + {51203011-f6d7-4f57-bba4-31174cec8925}, !- Availability Schedule Name + autosize, !- Rated Total Cooling Capacity {W} + autosize, !- Rated Sensible Heat Ratio + 4.11713235489972, !- Rated COP {W/W} + autosize, !- Rated Air Flow Rate {m3/s} + 773.3, !- Rated Evaporator Fan Power Per Volume Flow Rate {W/(m3/s)} + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {e6cebddc-27fb-4158-9b04-49e64c32b2ed}, !- Total Cooling Capacity Function of Temperature Curve Name + {6708f17c-3967-4daf-89fb-e9625d394634}, !- Total Cooling Capacity Function of Flow Fraction Curve Name + {626baf5b-350e-404e-81da-48addd8de7f7}, !- Energy Input Ratio Function of Temperature Curve Name + {dfc9bddf-e7f5-4a36-93ca-5ed1d66665cb}, !- Energy Input Ratio Function of Flow Fraction Curve Name + {714c0395-0263-444c-a4f6-d9e78a580913}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + , !- Maximum Cycling Rate {cycles/hr} + , !- Latent Capacity Time Constant {s} + , !- Condenser Air Inlet Node Name + AirCooled, !- Condenser Type + 0, !- Evaporative Condenser Effectiveness {dimensionless} + Autosize, !- Evaporative Condenser Air Flow Rate {m3/s} + Autosize, !- Evaporative Condenser Pump Rated Power Consumption {W} + 0, !- Crankcase Heater Capacity {W} + 0, !- Maximum Outdoor Dry-Bulb Temperature for Crankcase Heater Operation {C} + , !- Supply Water Storage Tank Name + , !- Condensate Collection Water Storage Tank Name + 0, !- Basin Heater Capacity {W/K} + 10, !- Basin Heater Setpoint Temperature {C} + ; !- Basin Heater Operating Schedule Name + +OS:AirLoopHVAC:UnitaryHeatPump:AirToAir, + {719ec483-0244-4377-a014-5a54b884b624}, !- Handle + Perimeter_ZN_4 ZN PSZ-AC-5 Unitary HP, !- Name + {51203011-f6d7-4f57-bba4-31174cec8925}, !- Availability Schedule Name + {2a12531e-6e1c-46fb-8dc2-eb42634870c3}, !- Air Inlet Node Name + {6ee17dc4-4731-4539-92c9-0c06cc59f8f5}, !- Air Outlet Node Name + Autosize, !- Supply Air Flow Rate During Cooling Operation {m3/s} + Autosize, !- Supply Air Flow Rate During Heating Operation {m3/s} + , !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {5a3afc2e-d12e-4ab3-b952-581dd46d9df3}, !- Controlling Zone or Thermostat Location + {93dfbd18-14d0-4653-a167-2e00b6cf89e2}, !- Supply Air Fan Name + {c8bd6efc-eccb-47fb-b3ea-e0969a371577}, !- Heating Coil Name + {c5da1e41-5c31-41d9-9976-e891c458b8af}, !- Cooling Coil Name + {82d0a4fa-53a5-4cef-b204-6af2adbc85c5}, !- Supplemental Heating Coil Name + Autosize, !- Maximum Supply Air Temperature from Supplemental Heater {C} + 4.44444444444446, !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + BlowThrough, !- Fan Placement + {d49fcb19-899c-4ad6-a766-4b44490b7b3c}; !- Supply Air Fan Operating Mode Schedule Name + +OS:Connection, + {6ee17dc4-4731-4539-92c9-0c06cc59f8f5}, !- Handle + {7ca8e20c-73b7-41e6-9873-369b75eb5b05}, !- Name + {719ec483-0244-4377-a014-5a54b884b624}, !- Source Object + 4, !- Outlet Port + {e94571f1-6b20-40d7-85a1-c43e8ff8899a}, !- Target Object + 2; !- Inlet Port + +OS:Controller:OutdoorAir, + {54fbc07f-01ca-4fe5-b82d-d91802d50374}, !- Handle + Perimeter_ZN_4 ZN PSZ-AC-5 OA System Controller, !- Name + , !- Relief Air Outlet Node Name + , !- Return Air Node Name + , !- Mixed Air Node Name + , !- Actuator Node Name + 0, !- Minimum Outdoor Air Flow Rate {m3/s} + Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + 28, !- Economizer Maximum Limit Dry-Bulb Temperature {C} + 64000, !- Economizer Maximum Limit Enthalpy {J/kg} + , !- Economizer Maximum Limit Dewpoint Temperature {C} + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit Dry-Bulb Temperature {C} + NoLockout, !- Lockout Type + FixedMinimum, !- Minimum Limit Type + {6fd5b25f-47a9-463a-b553-2c877a434a9d}, !- Minimum Outdoor Air Schedule Name + , !- Minimum Fraction of Outdoor Air Schedule Name + , !- Maximum Fraction of Outdoor Air Schedule Name + {87299834-84be-4ec1-b63f-05ab894e74a8}, !- Controller Mechanical Ventilation + , !- Time of Day Economizer Control Schedule Name + No, !- High Humidity Control + , !- Humidistat Control Zone Name + , !- High Humidity Outdoor Air Flow Ratio + , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio + BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type + +OS:Controller:MechanicalVentilation, + {87299834-84be-4ec1-b63f-05ab894e74a8}, !- Handle + Controller Mechanical Ventilation 4, !- Name + {51203011-f6d7-4f57-bba4-31174cec8925}, !- Availability Schedule + , !- Demand Controlled Ventilation + ZoneSum; !- System Outdoor Air Method + +OS:AirLoopHVAC:OutdoorAirSystem, + {25c9d3d0-2780-4797-be22-324a1d4d13ba}, !- Handle + Perimeter_ZN_4 ZN PSZ-AC-5 OA System, !- Name + {54fbc07f-01ca-4fe5-b82d-d91802d50374}, !- Controller Name + , !- Outdoor Air Equipment List Name + , !- Availability Manager List Name + {216b7f86-6488-4428-9da1-163bcd8b1b61}, !- Mixed Air Node Name + {2d1e40ad-2cd4-4885-a9fb-2adb9e4f96c0}, !- Outdoor Air Stream Node Name + {bb6316cc-581a-4534-a964-96866dfdb93c}, !- Relief Air Stream Node Name + {9b213694-9619-4fa0-b6ae-369768054a0a}; !- Return Air Stream Node Name + +OS:Node, + {d2dded37-2d66-46f5-847a-6e9dea8ce6be}, !- Handle + Perimeter_ZN_4 ZN PSZ-AC-5 Outdoor Air Node, !- Name + , !- Inlet Port + {2d1e40ad-2cd4-4885-a9fb-2adb9e4f96c0}; !- Outlet Port + +OS:Connection, + {2d1e40ad-2cd4-4885-a9fb-2adb9e4f96c0}, !- Handle + {ac21949c-967f-44a9-be2b-f50f6c245a8b}, !- Name + {d2dded37-2d66-46f5-847a-6e9dea8ce6be}, !- Source Object + 3, !- Outlet Port + {25c9d3d0-2780-4797-be22-324a1d4d13ba}, !- Target Object + 6; !- Inlet Port + +OS:Node, + {1c0db91b-5667-4745-96cf-a85df87c5e48}, !- Handle + Perimeter_ZN_4 ZN PSZ-AC-5 Relief Air Node, !- Name + {bb6316cc-581a-4534-a964-96866dfdb93c}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {bb6316cc-581a-4534-a964-96866dfdb93c}, !- Handle + {a3122364-c1bf-46b5-93e1-e3d3999209f2}, !- Name + {25c9d3d0-2780-4797-be22-324a1d4d13ba}, !- Source Object + 7, !- Outlet Port + {1c0db91b-5667-4745-96cf-a85df87c5e48}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {fc62571c-7801-445d-bb8d-f36f7047756d}, !- Handle + Perimeter_ZN_4 ZN PSZ-AC-5 Mixed Air Node, !- Name + {216b7f86-6488-4428-9da1-163bcd8b1b61}, !- Inlet Port + {2a12531e-6e1c-46fb-8dc2-eb42634870c3}; !- Outlet Port + +OS:Connection, + {9b213694-9619-4fa0-b6ae-369768054a0a}, !- Handle + {f68a6bc1-e814-4c24-9d82-3924cda6adf4}, !- Name + {f67d6cb9-dbb5-4bac-bb81-0ef9873a86cc}, !- Source Object + 3, !- Outlet Port + {25c9d3d0-2780-4797-be22-324a1d4d13ba}, !- Target Object + 8; !- Inlet Port + +OS:Connection, + {216b7f86-6488-4428-9da1-163bcd8b1b61}, !- Handle + {9ae4887a-46e2-4209-ab48-dc7b1d8bcfe2}, !- Name + {25c9d3d0-2780-4797-be22-324a1d4d13ba}, !- Source Object + 5, !- Outlet Port + {fc62571c-7801-445d-bb8d-f36f7047756d}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {2a12531e-6e1c-46fb-8dc2-eb42634870c3}, !- Handle + {c1938184-2c37-4634-8095-76ba2fae7b33}, !- Name + {fc62571c-7801-445d-bb8d-f36f7047756d}, !- Source Object + 3, !- Outlet Port + {719ec483-0244-4377-a014-5a54b884b624}, !- Target Object + 3; !- Inlet Port + +OS:AvailabilityManager:NightCycle, + {c53fbdc0-83fa-4e65-b37d-7b69e36b78a4}, !- Handle + Availability Manager Night Cycle 4, !- Name + , !- Applicability Schedule + , !- Fan Schedule + CycleOnAny, !- Control Type + 1, !- Thermostat Tolerance {deltaC} + , !- Cycling Run Time Control Type + 1800, !- Cycling Run Time {s} + {6c035a44-6799-4478-ab21-54625ba6da27}, !- Control Zone or Zone List Name + {6b728f0b-c147-4f0d-83d5-1fae4247b31e}, !- Cooling Control Zone or Zone List Name + {c67ad06e-beb0-4a29-9f4a-1604bf7c99fd}, !- Heating Control Zone or Zone List Name + {a748863f-0659-408a-b255-3ba79ce2a1de}; !- Heating Zone Fans Only Zone or Zone List Name + +OS:ModelObjectList, + {6c035a44-6799-4478-ab21-54625ba6da27}, !- Handle + Availability Manager Night Cycle 4 Heating Zone Fans Only Zone List; !- Name + +OS:ModelObjectList, + {6b728f0b-c147-4f0d-83d5-1fae4247b31e}, !- Handle + {8c402183-8d3d-4640-91d8-0ef25961df14}; !- Name + +OS:ModelObjectList, + {c67ad06e-beb0-4a29-9f4a-1604bf7c99fd}, !- Handle + {9b5f3984-8740-4dbe-94f7-91923aeb0d10}; !- Name + +OS:ModelObjectList, + {a748863f-0659-408a-b255-3ba79ce2a1de}, !- Handle + {d4653344-1dd8-43b4-8c51-308893bf964c}; !- Name + +OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, + {a19e599d-fbdd-49ce-bafc-97c4d16050ef}, !- Handle + Perimeter_ZN_4 ZN PSZ-AC-5 Diffuser, !- Name + {51203011-f6d7-4f57-bba4-31174cec8925}, !- Availability Schedule Name + {35b9ede1-81a0-4da1-b8bb-d81dc4baccb1}, !- Air Inlet Node Name + {73bddb66-14eb-47ad-8c4b-448516b955fb}, !- Air Outlet Node Name + AutoSize; !- Maximum Air Flow Rate {m3/s} + +OS:Node, + {f61d0086-0d2a-43fc-9141-80d066d96a1f}, !- Handle + Perimeter_ZN_4 ZN Return Air Node, !- Name + {20fde348-4a73-4c5b-a767-83b56440c134}, !- Inlet Port + {446fd0ad-770d-4686-812f-41b73ccc0ffa}; !- Outlet Port + +OS:Connection, + {17a53905-6fa9-48a7-b620-fa5aee33ec94}, !- Handle + {cfb73121-ce2b-4942-942c-eb65e17ce645}, !- Name + {f0b958f4-544e-41bd-8128-5b2aff05c027}, !- Source Object + 3, !- Outlet Port + {2267fd06-4370-4ce4-8b33-0658f94bcffb}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {20fde348-4a73-4c5b-a767-83b56440c134}, !- Handle + {9bc4fe19-5b8f-4190-8df6-5bd35f66e7b4}, !- Name + {f1585e10-8de9-45cf-8fe9-ea11287281fd}, !- Source Object + 3, !- Outlet Port + {f61d0086-0d2a-43fc-9141-80d066d96a1f}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {446fd0ad-770d-4686-812f-41b73ccc0ffa}, !- Handle + {ea35bf80-fb10-4e07-85a1-52275999aba7}, !- Name + {f61d0086-0d2a-43fc-9141-80d066d96a1f}, !- Source Object + 3, !- Outlet Port + {7d10d54a-5860-4750-a453-fcea9a9907a6}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {6820810d-84d2-4b41-a9c5-d9ca33891623}, !- Handle + Perimeter_ZN_4 ZN PSZ-AC-5 Diffuser Inlet Air Node, !- Name + {ae3d1dfa-ef14-477a-b45c-d486807559ce}, !- Inlet Port + {35b9ede1-81a0-4da1-b8bb-d81dc4baccb1}; !- Outlet Port + +OS:Connection, + {ae3d1dfa-ef14-477a-b45c-d486807559ce}, !- Handle + {6b5597c2-2415-49cd-a62f-fd7c549058a8}, !- Name + {08041af0-abec-4cfc-b47f-b69586d346cd}, !- Source Object + 3, !- Outlet Port + {6820810d-84d2-4b41-a9c5-d9ca33891623}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {35b9ede1-81a0-4da1-b8bb-d81dc4baccb1}, !- Handle + {8efb0185-e4d8-4e48-9659-c9a32cb71a20}, !- Name + {6820810d-84d2-4b41-a9c5-d9ca33891623}, !- Source Object + 3, !- Outlet Port + {a19e599d-fbdd-49ce-bafc-97c4d16050ef}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {73bddb66-14eb-47ad-8c4b-448516b955fb}, !- Handle + {ae663d85-ea98-40de-b376-0504c28953bc}, !- Name + {a19e599d-fbdd-49ce-bafc-97c4d16050ef}, !- Source Object + 4, !- Outlet Port + {f0b958f4-544e-41bd-8128-5b2aff05c027}, !- Target Object + 2; !- Inlet Port + +OS:AirLoopHVAC, + {3df111c7-e4a5-4079-beee-9ab23462dd52}, !- Handle + Core_ZN ZN PSZ-AC-1, !- Name + , !- Controller List Name + {51203011-f6d7-4f57-bba4-31174cec8925}, !- Availability Schedule + {e6acfac1-27d2-447c-8d1b-a9c86fc93fab}, !- Availability Manager List Name + AutoSize, !- Design Supply Air Flow Rate {m3/s} + , !- Branch List Name + , !- Connector List Name + {08de9a6c-5559-444b-9858-4ed0c9029b74}, !- Supply Side Inlet Node Name + {09837894-1829-48ae-b4d6-e11f3a2e0c90}, !- Demand Side Outlet Node Name + {92cb28d9-6faf-42da-982c-51f5a5fc4bb3}, !- Demand Side Inlet Node A + {9eaf4bc8-c560-4bed-b838-1a3d1ed021b3}, !- Supply Side Outlet Node A + , !- Demand Side Inlet Node B + , !- Supply Side Outlet Node B + , !- Return Air Bypass Flow Temperature Setpoint Schedule Name + {6afeb765-2d8b-4c14-8f83-3c3946184d15}, !- Demand Mixer Name + {05f491f1-d24d-4940-ae67-74db88ab279a}, !- Demand Splitter A Name + , !- Demand Splitter B Name + ; !- Supply Splitter Name + +OS:Node, + {692a1087-0ff7-44c0-b63e-d094f6edde4c}, !- Handle + Core_ZN ZN PSZ-AC-1 Supply Inlet Node, !- Name + {08de9a6c-5559-444b-9858-4ed0c9029b74}, !- Inlet Port + {fe8e0891-adce-4796-8495-0f8958cd50e1}; !- Outlet Port + +OS:Node, + {0f2eb9cf-9dfa-4fe4-a399-0404fbe87aae}, !- Handle + Core_ZN ZN PSZ-AC-1 Supply Outlet Node, !- Name + {a03dbe1d-8959-44f2-92ad-2e4b93b08edd}, !- Inlet Port + {9eaf4bc8-c560-4bed-b838-1a3d1ed021b3}; !- Outlet Port + +OS:Connection, + {08de9a6c-5559-444b-9858-4ed0c9029b74}, !- Handle + {bc4675f3-5378-497e-a285-5e1ce2331398}, !- Name + {3df111c7-e4a5-4079-beee-9ab23462dd52}, !- Source Object + 8, !- Outlet Port + {692a1087-0ff7-44c0-b63e-d094f6edde4c}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {9eaf4bc8-c560-4bed-b838-1a3d1ed021b3}, !- Handle + {cbc69c70-522c-4d63-a012-a45f83bd4727}, !- Name + {0f2eb9cf-9dfa-4fe4-a399-0404fbe87aae}, !- Source Object + 3, !- Outlet Port + {3df111c7-e4a5-4079-beee-9ab23462dd52}, !- Target Object + 11; !- Inlet Port + +OS:Node, + {3ffe5dbb-44ac-4a82-9b69-9385e7c39f7b}, !- Handle + Core_ZN ZN PSZ-AC-1 Demand Inlet Node, !- Name + {92cb28d9-6faf-42da-982c-51f5a5fc4bb3}, !- Inlet Port + {2f76e5b2-ab19-4eae-9589-8517181c3d94}; !- Outlet Port + +OS:Node, + {ef3e17ec-43aa-4db9-9e7e-e45d57b70c72}, !- Handle + Core_ZN ZN PSZ-AC-1 Demand Outlet Node, !- Name + {c97892ba-b803-49f0-8e25-3df879f8f701}, !- Inlet Port + {09837894-1829-48ae-b4d6-e11f3a2e0c90}; !- Outlet Port + +OS:Node, + {91668706-7873-4dee-a5ab-d5a3690efa11}, !- Handle + Core_ZN ZN PSZ-AC-1 Diffuser Outlet Air Node, !- Name + {30486f50-39e9-4e20-8b9a-50e2c1db074e}, !- Inlet Port + {31f407fe-6b67-4565-85ea-a72d41da5d78}; !- Outlet Port + +OS:Connection, + {92cb28d9-6faf-42da-982c-51f5a5fc4bb3}, !- Handle + {c079e734-a6c2-4398-b3ff-62c9c9bad148}, !- Name + {3df111c7-e4a5-4079-beee-9ab23462dd52}, !- Source Object + 10, !- Outlet Port + {3ffe5dbb-44ac-4a82-9b69-9385e7c39f7b}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {09837894-1829-48ae-b4d6-e11f3a2e0c90}, !- Handle + {e10b43f5-6ce5-4533-b23f-60dac211cb56}, !- Name + {ef3e17ec-43aa-4db9-9e7e-e45d57b70c72}, !- Source Object + 3, !- Outlet Port + {3df111c7-e4a5-4079-beee-9ab23462dd52}, !- Target Object + 9; !- Inlet Port + +OS:AirLoopHVAC:ZoneSplitter, + {05f491f1-d24d-4940-ae67-74db88ab279a}, !- Handle + Air Loop HVAC Zone Splitter 5, !- Name + {2f76e5b2-ab19-4eae-9589-8517181c3d94}, !- Inlet Node Name + {0f1355b3-782f-4e5e-b0aa-8158a65e5df0}; !- Outlet Node Name 1 + +OS:AirLoopHVAC:ZoneMixer, + {6afeb765-2d8b-4c14-8f83-3c3946184d15}, !- Handle + Air Loop HVAC Zone Mixer 5, !- Name + {c97892ba-b803-49f0-8e25-3df879f8f701}, !- Outlet Node Name + {e1b498bd-6857-4e78-89f8-f00c0018fe1e}; !- Inlet Node Name 1 + +OS:Connection, + {2f76e5b2-ab19-4eae-9589-8517181c3d94}, !- Handle + {5a401317-9710-4b5b-a6f2-e04b6a16f99b}, !- Name + {3ffe5dbb-44ac-4a82-9b69-9385e7c39f7b}, !- Source Object + 3, !- Outlet Port + {05f491f1-d24d-4940-ae67-74db88ab279a}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {c97892ba-b803-49f0-8e25-3df879f8f701}, !- Handle + {9b1814ca-c92e-49ad-a3a0-5d2086731170}, !- Name + {6afeb765-2d8b-4c14-8f83-3c3946184d15}, !- Source Object + 2, !- Outlet Port + {ef3e17ec-43aa-4db9-9e7e-e45d57b70c72}, !- Target Object + 2; !- Inlet Port + +OS:Sizing:System, + {49a5bb14-b1a6-4117-8b6b-078a9e33cc71}, !- Handle + {3df111c7-e4a5-4079-beee-9ab23462dd52}, !- AirLoop Name + Sensible, !- Type of Load to Size On + Autosize, !- Design Outdoor Air Flow Rate {m3/s} + 1, !- Central Heating Maximum System Air Flow Ratio + 7.22222222222229, !- Preheat Design Temperature {C} + 0.008, !- Preheat Design Humidity Ratio {kg-H2O/kg-Air} + 12.7777777777778, !- Precool Design Temperature {C} + 0.008, !- Precool Design Humidity Ratio {kg-H2O/kg-Air} + 12.7777777777778, !- Central Cooling Design Supply Air Temperature {C} + 50.0000000000001, !- Central Heating Design Supply Air Temperature {C} + Coincident, !- Sizing Option + No, !- 100% Outdoor Air in Cooling + No, !- 100% Outdoor Air in Heating + 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-Air} + 0.008, !- Central Heating Design Supply Air Humidity Ratio {kg-H2O/kg-Air} + DesignDay, !- Cooling Design Air Flow Method + 0, !- Cooling Design Air Flow Rate {m3/s} + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate {m3/s} + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction {dimensionless} + 0.0099676501, !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} + 1, !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + 3.9475456e-005, !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} + 0.0099676501, !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} + 1, !- Heating Fraction of Autosized Heating Supply Air Flow Rate + 1, !- Heating Fraction of Autosized Cooling Supply Air Flow Rate + 3.1588213e-005, !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity {W} + 234.7, !- Cooling Design Capacity Per Floor Area {W/m2} + 1, !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 157, !- Heating Design Capacity Per Floor Area {W/m2} + 1, !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +OS:AvailabilityManagerAssignmentList, + {e6acfac1-27d2-447c-8d1b-a9c86fc93fab}, !- Handle + Air Loop HVAC 1 AvailabilityManagerAssignmentList 4, !- Name + {bf5f0aba-e17d-4e96-89d8-b15d3e52088c}; !- Availability Manager Name 1 + +OS:SetpointManager:SingleZone:Reheat, + {b7779ec8-c4b2-46bf-8301-6d28f61e89f4}, !- Handle + Core_ZN ZN Setpoint Manager SZ Reheat, !- Name + 12.7777777777778, !- Minimum Supply Air Temperature {C} + 50.0000000000001, !- Maximum Supply Air Temperature {C} + {28915964-e2c4-4332-a684-5091ad72d321}, !- Control Zone Name + {0f2eb9cf-9dfa-4fe4-a399-0404fbe87aae}; !- Setpoint Node or NodeList Name + +OS:Fan:OnOff, + {fae230d1-2944-4e46-a37f-905af7c4fad9}, !- Handle + Core_ZN ZN PSZ-AC-1 Fan, !- Name + {d49fcb19-899c-4ad6-a766-4b44490b7b3c}, !- Availability Schedule Name + 0.55575, !- Fan Total Efficiency + 622.722275, !- Pressure Rise {Pa} + autosize, !- Maximum Flow Rate {m3/s} + 0.855, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {b72ea8cc-3a21-4873-9c70-95e4a37af0bb}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {c75271a8-35f9-4ea6-91c1-f48a794b5ffd}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {b72ea8cc-3a21-4873-9c70-95e4a37af0bb}, !- Handle + Fan On Off Power Curve 4, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {c75271a8-35f9-4ea6-91c1-f48a794b5ffd}, !- Handle + Fan On Off Efficiency Curve 4, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:Coil:Heating:DX:SingleSpeed, + {3d1363c2-9dfe-4c7f-aadb-46b5bc6cc45a}, !- Handle + Core_ZN ZN HP Htg Coil 21 Clg kBtu/hr 8.0HSPF, !- Name + {51203011-f6d7-4f57-bba4-31174cec8925}, !- Availability Schedule Name + Autosize, !- Rated Total Heating Capacity {W} + 3.3592, !- Rated COP {W/W} + Autosize, !- Rated Air Flow Rate {m3/s} + 773.3, !- Rated Supply Fan Power Per Volume Flow Rate {W/(m3/s)} + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {1bfea7f1-1095-458e-b853-eaf9b2498d5f}, !- Total Heating Capacity Function of Temperature Curve Name + {280d9688-bd63-492e-a346-6275aabe749e}, !- Total Heating Capacity Function of Flow Fraction Curve Name + {8aff4225-4594-4306-8181-1471256a4a20}, !- Energy Input Ratio Function of Temperature Curve Name + {5ce2ca36-993a-47f3-88f4-bad9af8ac9a3}, !- Energy Input Ratio Function of Flow Fraction Curve Name + {714c0395-0263-444c-a4f6-d9e78a580913}, !- Part Load Fraction Correlation Curve Name + {f39fdefe-94b1-495f-be8b-fa7f2772420d}, !- Defrost Energy Input Ratio Function of Temperature Curve Name + -12.2, !- Minimum Outdoor Dry-Bulb Temperature for Compressor Operation {C} + 1.67, !- Maximum Outdoor Dry-Bulb Temperature for Defrost Operation {C} + 50, !- Crankcase Heater Capacity {W} + 4.4, !- Maximum Outdoor Dry-Bulb Temperature for Crankcase Heater Operation {C} + ReverseCycle, !- Defrost Strategy + OnDemand, !- Defrost Control + , !- Defrost Time Period Fraction + 2000; !- Resistive Defrost Heater Capacity {W} + +OS:Curve:Biquadratic, + {f39fdefe-94b1-495f-be8b-fa7f2772420d}, !- Handle + Core_ZN ZN HP Htg Coil Defrost EIR Func of Temp Curve 1, !- Name + 0.297145, !- Coefficient1 Constant + 0.0430933, !- Coefficient2 x + -0.000748766, !- Coefficient3 x**2 + 0.00597727, !- Coefficient4 y + 0.000482112, !- Coefficient5 y**2 + -0.000956448, !- Coefficient6 x*y + 12.77778, !- Minimum Value of x + 23.88889, !- Maximum Value of x + 21.11111, !- Minimum Value of y + 46.11111; !- Maximum Value of y + +OS:Coil:Heating:Gas, + {ebcb8061-f504-4686-8192-8ca401e02f25}, !- Handle + Core_ZN ZN PSZ-AC-1 Gas Backup Htg Coil, !- Name + {51203011-f6d7-4f57-bba4-31174cec8925}, !- Availability Schedule Name + 0.8, !- Gas Burner Efficiency + AutoSize, !- Nominal Capacity {W} + , !- Air Inlet Node Name + , !- Air Outlet Node Name + , !- Temperature Setpoint Node Name + 0, !- Parasitic Electric Load {W} + , !- Part Load Fraction Correlation Curve Name + 0; !- Parasitic Gas Load {W} + +OS:Coil:Cooling:DX:SingleSpeed, + {306f9220-39df-4717-8034-2377fe37c62c}, !- Handle + Core_ZN ZN PSZ-AC-1 1spd DX HP Clg Coil 21kBtu/hr 14.0SEER, !- Name + {51203011-f6d7-4f57-bba4-31174cec8925}, !- Availability Schedule Name + autosize, !- Rated Total Cooling Capacity {W} + autosize, !- Rated Sensible Heat Ratio + 4.11713235489972, !- Rated COP {W/W} + autosize, !- Rated Air Flow Rate {m3/s} + 773.3, !- Rated Evaporator Fan Power Per Volume Flow Rate {W/(m3/s)} + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {e6cebddc-27fb-4158-9b04-49e64c32b2ed}, !- Total Cooling Capacity Function of Temperature Curve Name + {6708f17c-3967-4daf-89fb-e9625d394634}, !- Total Cooling Capacity Function of Flow Fraction Curve Name + {626baf5b-350e-404e-81da-48addd8de7f7}, !- Energy Input Ratio Function of Temperature Curve Name + {dfc9bddf-e7f5-4a36-93ca-5ed1d66665cb}, !- Energy Input Ratio Function of Flow Fraction Curve Name + {714c0395-0263-444c-a4f6-d9e78a580913}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + , !- Maximum Cycling Rate {cycles/hr} + , !- Latent Capacity Time Constant {s} + , !- Condenser Air Inlet Node Name + AirCooled, !- Condenser Type + 0, !- Evaporative Condenser Effectiveness {dimensionless} + Autosize, !- Evaporative Condenser Air Flow Rate {m3/s} + Autosize, !- Evaporative Condenser Pump Rated Power Consumption {W} + 0, !- Crankcase Heater Capacity {W} + 0, !- Maximum Outdoor Dry-Bulb Temperature for Crankcase Heater Operation {C} + , !- Supply Water Storage Tank Name + , !- Condensate Collection Water Storage Tank Name + 0, !- Basin Heater Capacity {W/K} + 10, !- Basin Heater Setpoint Temperature {C} + ; !- Basin Heater Operating Schedule Name + +OS:AirLoopHVAC:UnitaryHeatPump:AirToAir, + {8077871c-4876-4ee8-8d42-95240524c801}, !- Handle + Core_ZN ZN PSZ-AC-1 Unitary HP, !- Name + {51203011-f6d7-4f57-bba4-31174cec8925}, !- Availability Schedule Name + {17e4f42f-1605-428a-9200-7c4a8fd5b86d}, !- Air Inlet Node Name + {a03dbe1d-8959-44f2-92ad-2e4b93b08edd}, !- Air Outlet Node Name + Autosize, !- Supply Air Flow Rate During Cooling Operation {m3/s} + Autosize, !- Supply Air Flow Rate During Heating Operation {m3/s} + , !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {28915964-e2c4-4332-a684-5091ad72d321}, !- Controlling Zone or Thermostat Location + {fae230d1-2944-4e46-a37f-905af7c4fad9}, !- Supply Air Fan Name + {3d1363c2-9dfe-4c7f-aadb-46b5bc6cc45a}, !- Heating Coil Name + {306f9220-39df-4717-8034-2377fe37c62c}, !- Cooling Coil Name + {ebcb8061-f504-4686-8192-8ca401e02f25}, !- Supplemental Heating Coil Name + Autosize, !- Maximum Supply Air Temperature from Supplemental Heater {C} + 4.44444444444446, !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + BlowThrough, !- Fan Placement + {d49fcb19-899c-4ad6-a766-4b44490b7b3c}; !- Supply Air Fan Operating Mode Schedule Name + +OS:Connection, + {a03dbe1d-8959-44f2-92ad-2e4b93b08edd}, !- Handle + {bacc2f63-973f-4e42-b01e-8e57e4a2dfaf}, !- Name + {8077871c-4876-4ee8-8d42-95240524c801}, !- Source Object + 4, !- Outlet Port + {0f2eb9cf-9dfa-4fe4-a399-0404fbe87aae}, !- Target Object + 2; !- Inlet Port + +OS:Controller:OutdoorAir, + {b7a6f178-c695-4a08-8629-2cc00cabb59f}, !- Handle + Core_ZN ZN PSZ-AC-1 OA System Controller, !- Name + , !- Relief Air Outlet Node Name + , !- Return Air Node Name + , !- Mixed Air Node Name + , !- Actuator Node Name + 0, !- Minimum Outdoor Air Flow Rate {m3/s} + Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + 28, !- Economizer Maximum Limit Dry-Bulb Temperature {C} + 64000, !- Economizer Maximum Limit Enthalpy {J/kg} + , !- Economizer Maximum Limit Dewpoint Temperature {C} + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit Dry-Bulb Temperature {C} + NoLockout, !- Lockout Type + FixedMinimum, !- Minimum Limit Type + {6fd5b25f-47a9-463a-b553-2c877a434a9d}, !- Minimum Outdoor Air Schedule Name + , !- Minimum Fraction of Outdoor Air Schedule Name + , !- Maximum Fraction of Outdoor Air Schedule Name + {0c94440e-3dd7-4954-aa4d-8e04c941790f}, !- Controller Mechanical Ventilation + , !- Time of Day Economizer Control Schedule Name + No, !- High Humidity Control + , !- Humidistat Control Zone Name + , !- High Humidity Outdoor Air Flow Ratio + , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio + BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type + +OS:Controller:MechanicalVentilation, + {0c94440e-3dd7-4954-aa4d-8e04c941790f}, !- Handle + Controller Mechanical Ventilation 5, !- Name + {51203011-f6d7-4f57-bba4-31174cec8925}, !- Availability Schedule + , !- Demand Controlled Ventilation + ZoneSum; !- System Outdoor Air Method + +OS:AirLoopHVAC:OutdoorAirSystem, + {531f10aa-296a-4d71-a740-c24ba31c3dde}, !- Handle + Core_ZN ZN PSZ-AC-1 OA System, !- Name + {b7a6f178-c695-4a08-8629-2cc00cabb59f}, !- Controller Name + , !- Outdoor Air Equipment List Name + , !- Availability Manager List Name + {3f71f642-162a-47bb-adda-69a2eac09bab}, !- Mixed Air Node Name + {1e754fc7-e2a1-4ee8-83c2-44db4d8ceb57}, !- Outdoor Air Stream Node Name + {1eab5d83-5596-4526-9375-d08b210d86af}, !- Relief Air Stream Node Name + {fe8e0891-adce-4796-8495-0f8958cd50e1}; !- Return Air Stream Node Name + +OS:Node, + {67c607a2-b9a9-4f00-9049-2a5869fc796f}, !- Handle + Core_ZN ZN PSZ-AC-1 Outdoor Air Node, !- Name + , !- Inlet Port + {1e754fc7-e2a1-4ee8-83c2-44db4d8ceb57}; !- Outlet Port + +OS:Connection, + {1e754fc7-e2a1-4ee8-83c2-44db4d8ceb57}, !- Handle + {d4acc5ed-8f0d-4158-bc25-b54c8b6211cb}, !- Name + {67c607a2-b9a9-4f00-9049-2a5869fc796f}, !- Source Object + 3, !- Outlet Port + {531f10aa-296a-4d71-a740-c24ba31c3dde}, !- Target Object + 6; !- Inlet Port + +OS:Node, + {2c952732-6d10-49a5-b857-c81aa53dc500}, !- Handle + Core_ZN ZN PSZ-AC-1 Relief Air Node, !- Name + {1eab5d83-5596-4526-9375-d08b210d86af}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {1eab5d83-5596-4526-9375-d08b210d86af}, !- Handle + {308ccf07-3f80-4d7c-84c0-bb58e56b69cf}, !- Name + {531f10aa-296a-4d71-a740-c24ba31c3dde}, !- Source Object + 7, !- Outlet Port + {2c952732-6d10-49a5-b857-c81aa53dc500}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {cca60408-f52e-41ce-8db6-8bb4f7cb4aaf}, !- Handle + Core_ZN ZN PSZ-AC-1 Mixed Air Node, !- Name + {3f71f642-162a-47bb-adda-69a2eac09bab}, !- Inlet Port + {17e4f42f-1605-428a-9200-7c4a8fd5b86d}; !- Outlet Port + +OS:Connection, + {fe8e0891-adce-4796-8495-0f8958cd50e1}, !- Handle + {9aee1f76-7f31-4d74-874e-ab74a0c7e785}, !- Name + {692a1087-0ff7-44c0-b63e-d094f6edde4c}, !- Source Object + 3, !- Outlet Port + {531f10aa-296a-4d71-a740-c24ba31c3dde}, !- Target Object + 8; !- Inlet Port + +OS:Connection, + {3f71f642-162a-47bb-adda-69a2eac09bab}, !- Handle + {a812b658-65ce-4a83-a487-d64b5a7a5d06}, !- Name + {531f10aa-296a-4d71-a740-c24ba31c3dde}, !- Source Object + 5, !- Outlet Port + {cca60408-f52e-41ce-8db6-8bb4f7cb4aaf}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {17e4f42f-1605-428a-9200-7c4a8fd5b86d}, !- Handle + {1c2ae1e0-fa6d-4dce-8267-df607ac606ae}, !- Name + {cca60408-f52e-41ce-8db6-8bb4f7cb4aaf}, !- Source Object + 3, !- Outlet Port + {8077871c-4876-4ee8-8d42-95240524c801}, !- Target Object + 3; !- Inlet Port + +OS:AvailabilityManager:NightCycle, + {bf5f0aba-e17d-4e96-89d8-b15d3e52088c}, !- Handle + Availability Manager Night Cycle 5, !- Name + , !- Applicability Schedule + , !- Fan Schedule + CycleOnAny, !- Control Type + 1, !- Thermostat Tolerance {deltaC} + , !- Cycling Run Time Control Type + 1800, !- Cycling Run Time {s} + {220770a1-6dd9-4848-b94b-31b1c6f02e16}, !- Control Zone or Zone List Name + {826e4796-baee-4ba1-81f8-88ee44e3052c}, !- Cooling Control Zone or Zone List Name + {f2b62f7f-9f07-4c80-8cad-a7b09a7cb917}, !- Heating Control Zone or Zone List Name + {08221149-709b-4d0a-ad11-3ac1ee018c78}; !- Heating Zone Fans Only Zone or Zone List Name + +OS:ModelObjectList, + {220770a1-6dd9-4848-b94b-31b1c6f02e16}, !- Handle + Availability Manager Night Cycle 5 Heating Zone Fans Only Zone List; !- Name + +OS:ModelObjectList, + {826e4796-baee-4ba1-81f8-88ee44e3052c}, !- Handle + {f97aba55-4bae-4020-9344-3e8bfe23625b}; !- Name + +OS:ModelObjectList, + {f2b62f7f-9f07-4c80-8cad-a7b09a7cb917}, !- Handle + {6e9b141b-e065-4e25-930f-eca2dd9192a1}; !- Name + +OS:ModelObjectList, + {08221149-709b-4d0a-ad11-3ac1ee018c78}, !- Handle + {665198b1-1766-47b4-b096-c077430d0022}; !- Name + +OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, + {9c121e06-a74a-4bc1-842e-a0f3f81fce0c}, !- Handle + Core_ZN ZN PSZ-AC-1 Diffuser, !- Name + {51203011-f6d7-4f57-bba4-31174cec8925}, !- Availability Schedule Name + {7d61252b-e8b5-4eb0-a3ec-aa017e6e8d38}, !- Air Inlet Node Name + {30486f50-39e9-4e20-8b9a-50e2c1db074e}, !- Air Outlet Node Name + AutoSize; !- Maximum Air Flow Rate {m3/s} + +OS:Node, + {8de23077-451a-4821-b097-87fb6bf4f656}, !- Handle + Core_ZN ZN Return Air Node, !- Name + {014cc4de-d1f6-4893-a610-af4b6bd4e914}, !- Inlet Port + {e1b498bd-6857-4e78-89f8-f00c0018fe1e}; !- Outlet Port + +OS:Connection, + {31f407fe-6b67-4565-85ea-a72d41da5d78}, !- Handle + {8e260201-f050-42e1-a81b-a5451be29e92}, !- Name + {91668706-7873-4dee-a5ab-d5a3690efa11}, !- Source Object + 3, !- Outlet Port + {d73eaa54-329c-48e5-9af9-8ae91fe06393}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {014cc4de-d1f6-4893-a610-af4b6bd4e914}, !- Handle + {1ec9c05e-eec7-4d13-8d42-38487236a85b}, !- Name + {8ecbc7fc-f7b1-48b8-8307-4767d3fab1f8}, !- Source Object + 3, !- Outlet Port + {8de23077-451a-4821-b097-87fb6bf4f656}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {e1b498bd-6857-4e78-89f8-f00c0018fe1e}, !- Handle + {87f81a04-4173-4fe0-937d-d3fc40d427ec}, !- Name + {8de23077-451a-4821-b097-87fb6bf4f656}, !- Source Object + 3, !- Outlet Port + {6afeb765-2d8b-4c14-8f83-3c3946184d15}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {a9ad769c-bb7e-46da-af03-f1770755fbee}, !- Handle + Core_ZN ZN PSZ-AC-1 Diffuser Inlet Air Node, !- Name + {0f1355b3-782f-4e5e-b0aa-8158a65e5df0}, !- Inlet Port + {7d61252b-e8b5-4eb0-a3ec-aa017e6e8d38}; !- Outlet Port + +OS:Connection, + {0f1355b3-782f-4e5e-b0aa-8158a65e5df0}, !- Handle + {64cc7532-494c-45d4-ae47-98376c01cd2c}, !- Name + {05f491f1-d24d-4940-ae67-74db88ab279a}, !- Source Object + 3, !- Outlet Port + {a9ad769c-bb7e-46da-af03-f1770755fbee}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {7d61252b-e8b5-4eb0-a3ec-aa017e6e8d38}, !- Handle + {c340a48e-4ad2-4360-a4d3-9405682d35e6}, !- Name + {a9ad769c-bb7e-46da-af03-f1770755fbee}, !- Source Object + 3, !- Outlet Port + {9c121e06-a74a-4bc1-842e-a0f3f81fce0c}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {30486f50-39e9-4e20-8b9a-50e2c1db074e}, !- Handle + {160f6198-e9d0-454c-a352-259ccbb8cd05}, !- Name + {9c121e06-a74a-4bc1-842e-a0f3f81fce0c}, !- Source Object + 4, !- Outlet Port + {91668706-7873-4dee-a5ab-d5a3690efa11}, !- Target Object + 2; !- Inlet Port + +OS:SpaceInfiltration:DesignFlowRate, + {cb34cfd9-7ef9-44d9-a283-591ada3e5ea8}, !- Handle + entry door Infiltration, !- Name + {72459874-7e2c-4ecd-ae58-b2d96c368b31}, !- Space or SpaceType Name + {d171e444-3b82-402d-bddb-3c7175e66e24}, !- Schedule Name + Flow/Space, !- Design Flow Rate Calculation Method + 0.076455414, !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + , !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 1, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0; !- Velocity Squared Term Coefficient + +OS:Schedule:Ruleset, + {d171e444-3b82-402d-bddb-3c7175e66e24}, !- Handle + OfficeSmall INFIL_Door_Opening_SCH_2013, !- Name + {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name + {c626cc8a-9d1e-4ec9-b894-baa8b8482d64}, !- Default Day Schedule Name + {b6f1990f-a14f-42b0-9f69-8afd9c10b895}, !- Summer Design Day Schedule Name + {f2b68d92-8163-4ad7-80b4-23c1f89e9dc1}; !- Winter Design Day Schedule Name + +OS:Schedule:Day, + {c626cc8a-9d1e-4ec9-b894-baa8b8482d64}, !- Handle + OfficeSmall INFIL_Door_Opening_SCH_2013 Default, !- Name + {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 + +OS:Schedule:Day, + {f2b68d92-8163-4ad7-80b4-23c1f89e9dc1}, !- Handle + OfficeSmall INFIL_Door_Opening_SCH_2013 Winter Design Day, !- Name + {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 + +OS:Schedule:Day, + {b6f1990f-a14f-42b0-9f69-8afd9c10b895}, !- Handle + OfficeSmall INFIL_Door_Opening_SCH_2013 Summer Design Day, !- Name + {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 + +OS:Schedule:Rule, + {b172c4e5-92b1-41c3-9656-573b06b60734}, !- Handle + Schedule Rule 15, !- Name + {d171e444-3b82-402d-bddb-3c7175e66e24}, !- Schedule Ruleset Name + 0, !- Rule Order + {e79c26dd-e383-4e71-963c-3fff17a75544}, !- Day Schedule Name + , !- Apply Sunday + Yes, !- Apply Monday + Yes, !- Apply Tuesday + Yes, !- Apply Wednesday + Yes, !- Apply Thursday + Yes, !- Apply Friday + , !- Apply Saturday + , !- Apply Holiday + DateRange, !- Date Specification Type + 1, !- Start Month + 1, !- Start Day + 12, !- End Month + 31; !- End Day + +OS:Schedule:Day, + {e79c26dd-e383-4e71-963c-3fff17a75544}, !- Handle + OfficeSmall INFIL_Door_Opening_SCH_2013 Wkdy Day, !- Name + {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 6, !- Hour 1 + 0, !- Minute 1 + 0, !- Value Until Time 1 + 7, !- Hour 2 + 0, !- Minute 2 + 0.131, !- Value Until Time 2 + 8, !- Hour 3 + 0, !- Minute 3 + 1, !- Value Until Time 3 + 12, !- Hour 4 + 0, !- Minute 4 + 0.131, !- Value Until Time 4 + 13, !- Hour 5 + 0, !- Minute 5 + 1, !- Value Until Time 5 + 17, !- Hour 6 + 0, !- Minute 6 + 0.131, !- Value Until Time 6 + 18, !- Hour 7 + 0, !- Minute 7 + 1, !- Value Until Time 7 + 19, !- Hour 8 + 0, !- Minute 8 + 0.131, !- Value Until Time 8 + 24, !- Hour 9 + 0, !- Minute 9 + 0; !- Value Until Time 9 + +OS:SpaceInfiltration:DesignFlowRate, + {4fd04b23-9021-498e-93d4-2668abf62d33}, !- Handle + attic Infiltration, !- Name + {fb08bb0a-69e7-4942-8807-550e21855286}, !- Space or SpaceType Name + {0174d184-6663-43dd-a8b4-93fd61fb4380}, !- Schedule Name + Flow/Space, !- Design Flow Rate Calculation Method + 0.2001, !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + , !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 1, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0; !- Velocity Squared Term Coefficient + +OS:Schedule:Ruleset, + {0174d184-6663-43dd-a8b4-93fd61fb4380}, !- Handle + Always On, !- Name + {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name + {e8e625b7-565b-4639-a2b1-eee2dcc33b6d}; !- Default Day Schedule Name + +OS:Schedule:Day, + {e8e625b7-565b-4639-a2b1-eee2dcc33b6d}, !- Handle + Always On Default, !- Name + {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 1; !- Value Until Time 1 + +OS:PlantLoop, + {03eccf84-2a78-4267-a121-9c00ec2d568f}, !- Handle + Main Service Water Loop, !- Name + , !- Fluid Type + 0, !- Glycol Concentration + , !- User Defined Fluid Type + , !- Plant Equipment Operation Heating Load + , !- Plant Equipment Operation Cooling Load + , !- Primary Plant Equipment Operation Scheme + {4e98a9f7-8a0b-4c0a-af3c-f79d06121933}, !- Loop Temperature Setpoint Node Name + 60, !- Maximum Loop Temperature {C} + 10, !- Minimum Loop Temperature {C} + , !- Maximum Loop Flow Rate {m3/s} + , !- Minimum Loop Flow Rate {m3/s} + Autocalculate, !- Plant Loop Volume {m3} + {a1865fc4-e90e-439e-838c-0d215ae3ea74}, !- Plant Side Inlet Node Name + {4bbfd674-4928-46d7-88c8-7a4e36b5968f}, !- Plant Side Outlet Node Name + , !- Plant Side Branch List Name + {01e340cf-ff58-4228-89cc-3579ec73901d}, !- Demand Side Inlet Node Name + {fd4dcb3f-b5ae-4a23-aa2b-915562c150bf}, !- Demand Side Outlet Node Name + , !- Demand Side Branch List Name + , !- Demand Side Connector List Name + Optimal, !- Load Distribution Scheme + {3e955194-5633-400a-8777-06aad2a8d59a}, !- Availability Manager List Name + , !- Plant Loop Demand Calculation Scheme + , !- Common Pipe Simulation + , !- Pressure Simulation Type + , !- Plant Equipment Operation Heating Load Schedule + , !- Plant Equipment Operation Cooling Load Schedule + , !- Primary Plant Equipment Operation Scheme Schedule + , !- Component Setpoint Operation Scheme Schedule + {e6ed990a-2035-449d-b122-c4c8296fd6ba}, !- Demand Mixer Name + {9f23bee3-edc4-4b22-aaa3-2e9833b6ce3d}, !- Demand Splitter Name + {529e9895-3441-48c5-8e56-73c5d5b0fc52}, !- Supply Mixer Name + {6ed6b54f-d16b-4695-abea-b52a8ef1095b}; !- Supply Splitter Name + +OS:Sizing:Plant, + {4de3ee3e-464b-4dd9-a902-215f1e014ded}, !- Handle + {03eccf84-2a78-4267-a121-9c00ec2d568f}, !- Plant or Condenser Loop Name + Heating, !- Loop Type + 60.0000000000001, !- Design Loop Exit Temperature {C} + 5, !- Loop Design Temperature Difference {deltaC} + NonCoincident, !- Sizing Option + 1, !- Zone Timesteps in Averaging Window + None; !- Coincident Sizing Factor Mode + +OS:Node, + {0a0aec54-5573-4d11-af61-64d1b68a5f49}, !- Handle + Main Service Water Loop Supply Inlet Node, !- Name + {a1865fc4-e90e-439e-838c-0d215ae3ea74}, !- Inlet Port + {01b3a69b-638c-4d44-ba57-dbd8a996ce39}; !- Outlet Port + +OS:Node, + {4e98a9f7-8a0b-4c0a-af3c-f79d06121933}, !- Handle + Main Service Water Loop Supply Outlet Node, !- Name + {92ac48b6-4d7b-4271-aa77-68e84de8efa2}, !- Inlet Port + {4bbfd674-4928-46d7-88c8-7a4e36b5968f}; !- Outlet Port + +OS:Node, + {66db2114-5654-4abe-82a2-49d23056539b}, !- Handle + 40gal Electricity Water Heater - 40kBtu/hr 1.0 Therm Eff Supply Inlet Water Node, !- Name + {8c3b5d43-b370-4849-9b36-82c9a0f1f9c0}, !- Inlet Port + {c4dd33b8-0950-46a9-8751-237370376236}; !- Outlet Port + +OS:Connector:Mixer, + {529e9895-3441-48c5-8e56-73c5d5b0fc52}, !- Handle + Connector Mixer 1, !- Name + {b229e5ae-d096-41c3-994f-72dfe2b5e7d2}, !- Outlet Branch Name + {ef15a38e-baf9-4d95-94f4-eaeb48b5a67d}, !- Inlet Branch Name 1 + {bfedbbe9-212d-4f43-8cec-0cd85ff4e1e2}; !- Inlet Branch Name 2 + +OS:Connector:Splitter, + {6ed6b54f-d16b-4695-abea-b52a8ef1095b}, !- Handle + Connector Splitter 1, !- Name + {c4050bbb-5dcd-4e69-8eb8-f27fda947850}, !- Inlet Branch Name + {8c3b5d43-b370-4849-9b36-82c9a0f1f9c0}, !- Outlet Branch Name 1 + {7c730f0d-a9bb-49ae-bdfe-a6f5c75c53d2}; !- Outlet Branch Name 2 + +OS:Connection, + {a1865fc4-e90e-439e-838c-0d215ae3ea74}, !- Handle + {8d147142-6c6a-4ca4-a039-fec4ffadf0b0}, !- Name + {03eccf84-2a78-4267-a121-9c00ec2d568f}, !- Source Object + 14, !- Outlet Port + {0a0aec54-5573-4d11-af61-64d1b68a5f49}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {8c3b5d43-b370-4849-9b36-82c9a0f1f9c0}, !- Handle + {1ff490c5-d0c9-42ad-b7ce-07b699e4d939}, !- Name + {6ed6b54f-d16b-4695-abea-b52a8ef1095b}, !- Source Object + 3, !- Outlet Port + {66db2114-5654-4abe-82a2-49d23056539b}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {4bbfd674-4928-46d7-88c8-7a4e36b5968f}, !- Handle + {173a7579-e91d-432c-9198-6c1784585822}, !- Name + {4e98a9f7-8a0b-4c0a-af3c-f79d06121933}, !- Source Object + 3, !- Outlet Port + {03eccf84-2a78-4267-a121-9c00ec2d568f}, !- Target Object + 15; !- Inlet Port + +OS:Node, + {7b10a9fd-cf6f-43b0-9c87-476b324d7c13}, !- Handle + Main Service Water Loop Demand Inlet Node, !- Name + {01e340cf-ff58-4228-89cc-3579ec73901d}, !- Inlet Port + {3d35842b-9430-484b-ba08-cf8e61b37b5b}; !- Outlet Port + +OS:Node, + {0df2aa06-fdcb-4a1f-a9b7-1082fb7b1024}, !- Handle + Main Service Water Loop Demand Outlet Node, !- Name + {5bb528b8-3f1a-497b-b13d-025431223214}, !- Inlet Port + {fd4dcb3f-b5ae-4a23-aa2b-915562c150bf}; !- Outlet Port + +OS:Node, + {50594ea1-547a-410b-9ab0-171186f5f6a4}, !- Handle + Pipe Adiabatic 2 Inlet Water Node, !- Name + {48e8e3ff-a1c3-41a2-a432-923dc988f38f}, !- Inlet Port + {21b2337c-7b84-4efd-af94-0a8a1aaa09b9}; !- Outlet Port + +OS:Connector:Mixer, + {e6ed990a-2035-449d-b122-c4c8296fd6ba}, !- Handle + Connector Mixer 2, !- Name + {9d73560b-007a-41af-96b6-0908aea98255}, !- Outlet Branch Name + {67a3adaa-667a-4298-a91d-a620dcd10ddf}, !- Inlet Branch Name 1 + {1045cfef-dcf7-4c1e-bd6c-48eefbff4cc9}; !- Inlet Branch Name 2 + +OS:Connector:Splitter, + {9f23bee3-edc4-4b22-aaa3-2e9833b6ce3d}, !- Handle + Connector Splitter 2, !- Name + {8472e582-a486-495c-8adb-408b8d4047dc}, !- Inlet Branch Name + {48e8e3ff-a1c3-41a2-a432-923dc988f38f}, !- Outlet Branch Name 1 + {eff2f1a5-9ccb-456c-899d-d4772a3ca2f5}; !- Outlet Branch Name 2 + +OS:Connection, + {01e340cf-ff58-4228-89cc-3579ec73901d}, !- Handle + {65134da2-b927-4523-ac75-ecea64fcdb1c}, !- Name + {03eccf84-2a78-4267-a121-9c00ec2d568f}, !- Source Object + 17, !- Outlet Port + {7b10a9fd-cf6f-43b0-9c87-476b324d7c13}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {48e8e3ff-a1c3-41a2-a432-923dc988f38f}, !- Handle + {7a3b508f-2071-4976-bd29-95fa6b9f7298}, !- Name + {9f23bee3-edc4-4b22-aaa3-2e9833b6ce3d}, !- Source Object + 3, !- Outlet Port + {50594ea1-547a-410b-9ab0-171186f5f6a4}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {fd4dcb3f-b5ae-4a23-aa2b-915562c150bf}, !- Handle + {51afe520-6d3c-4bd7-b907-ef99371bcf10}, !- Name + {0df2aa06-fdcb-4a1f-a9b7-1082fb7b1024}, !- Source Object + 3, !- Outlet Port + {03eccf84-2a78-4267-a121-9c00ec2d568f}, !- Target Object + 18; !- Inlet Port + +OS:AvailabilityManagerAssignmentList, + {3e955194-5633-400a-8777-06aad2a8d59a}, !- Handle + Plant Loop 1 AvailabilityManagerAssignmentList; !- Name + +OS:ScheduleTypeLimits, + {6350e82a-2704-4431-a501-cad9c8790a16}, !- Handle + Temperature Schedule Type Limits, !- Name + 0, !- Lower Limit Value + 100, !- Upper Limit Value + Continuous, !- Numeric Type + Temperature; !- Unit Type + +OS:Schedule:Ruleset, + {e9ba8afa-f7bb-4b7e-ab3c-b7db6d1b1b66}, !- Handle + Service Water Loop Temp - 140F, !- Name + {6350e82a-2704-4431-a501-cad9c8790a16}, !- Schedule Type Limits Name + {c9d5b5b5-0846-47ff-bd50-6be8fb422088}; !- Default Day Schedule Name + +OS:Schedule:Day, + {c9d5b5b5-0846-47ff-bd50-6be8fb422088}, !- Handle + Service Water Loop Temp - 140F Default, !- Name + {6350e82a-2704-4431-a501-cad9c8790a16}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 60.0000000000001; !- Value Until Time 1 + +OS:SetpointManager:Scheduled, + {351851af-38f9-4bdf-987e-08151cb0d0ea}, !- Handle + Service hot water setpoint manager, !- Name + Temperature, !- Control Variable + {e9ba8afa-f7bb-4b7e-ab3c-b7db6d1b1b66}, !- Schedule Name + {4e98a9f7-8a0b-4c0a-af3c-f79d06121933}; !- Setpoint Node or NodeList Name + +OS:Pump:ConstantSpeed, + {ef7cdfba-df0b-49f4-8c83-7c1b8cdfb955}, !- Handle + Service Water Loop Pump, !- Name + {01b3a69b-638c-4d44-ba57-dbd8a996ce39}, !- Inlet Node Name + {26d49cc5-e716-4050-ad93-9519a0c94d43}, !- Outlet Node Name + autosize, !- Rated Flow Rate {m3/s} + 0.001, !- Rated Pump Head {Pa} + autosize, !- Rated Power Consumption {W} + 0.7, !- Motor Efficiency + 0, !- Fraction of Motor Inefficiencies to Fluid Stream + Intermittent, !- Pump Control Type + , !- Pump Flow Rate Schedule + , !- Pump Curve + , !- Impeller Diameter {m} + , !- Rotational Speed {rev/min} + , !- Zone + , !- Skin Loss Radiative Fraction + PowerPerFlowPerPressure, !- Design Power Sizing Method + 348701.1, !- Design Electric Power per Unit Flow Rate {W/(m3/s)} + 1.282051282; !- Design Shaft Power per Unit Flow Rate per Unit Head {W-s/m3-Pa} + +OS:Node, + {4f3821fe-64ec-4126-a8ba-5c350441f5ac}, !- Handle + Service Water Loop Pump Outlet Water Node, !- Name + {26d49cc5-e716-4050-ad93-9519a0c94d43}, !- Inlet Port + {c4050bbb-5dcd-4e69-8eb8-f27fda947850}; !- Outlet Port + +OS:Connection, + {01b3a69b-638c-4d44-ba57-dbd8a996ce39}, !- Handle + {176447a0-0f9d-4507-9824-389d5a00ea58}, !- Name + {0a0aec54-5573-4d11-af61-64d1b68a5f49}, !- Source Object + 3, !- Outlet Port + {ef7cdfba-df0b-49f4-8c83-7c1b8cdfb955}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {26d49cc5-e716-4050-ad93-9519a0c94d43}, !- Handle + {52980720-c910-4261-825a-40f9e48778ea}, !- Name + {ef7cdfba-df0b-49f4-8c83-7c1b8cdfb955}, !- Source Object + 3, !- Outlet Port + {4f3821fe-64ec-4126-a8ba-5c350441f5ac}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {c4050bbb-5dcd-4e69-8eb8-f27fda947850}, !- Handle + {967bddf0-38a0-4615-99c3-08a40b5a7527}, !- Name + {4f3821fe-64ec-4126-a8ba-5c350441f5ac}, !- Source Object + 3, !- Outlet Port + {6ed6b54f-d16b-4695-abea-b52a8ef1095b}, !- Target Object + 2; !- Inlet Port + +OS:WaterHeater:Mixed, + {e153f659-c9cc-4b67-8116-4f7569078780}, !- Handle + 40gal Electricity Water Heater - 40kBtu/hr 1.0 Therm Eff, !- Name + 0.151416471358794, !- Tank Volume {m3} + {e9ba8afa-f7bb-4b7e-ab3c-b7db6d1b1b66}, !- Setpoint Temperature Schedule Name + 2, !- Deadband Temperature Difference {deltaC} + 82.2222222222223, !- Maximum Temperature Limit {C} + Cycle, !- Heater Control Type + 11722.8428068889, !- Heater Maximum Capacity {W} + , !- Heater Minimum Capacity {W} + , !- Heater Ignition Minimum Flow Rate {m3/s} + , !- Heater Ignition Delay {s} + Electricity, !- Heater Fuel Type + 1, !- Heater Thermal Efficiency + , !- Part Load Factor Curve Name + 570.999158148646, !- Off Cycle Parasitic Fuel Consumption Rate {W} + Electricity, !- Off Cycle Parasitic Fuel Type + 0.8, !- Off Cycle Parasitic Heat Fraction to Tank + 570.999158148646, !- On Cycle Parasitic Fuel Consumption Rate {W} + Electricity, !- On Cycle Parasitic Fuel Type + 0, !- On Cycle Parasitic Heat Fraction to Tank + ThermalZone, !- Ambient Temperature Indicator + , !- Ambient Temperature Schedule Name + {28915964-e2c4-4332-a684-5091ad72d321}, !- Ambient Temperature Thermal Zone Name + , !- Ambient Temperature Outdoor Air Node Name + 1.205980747, !- Off Cycle Loss Coefficient to Ambient Temperature {W/K} + , !- Off Cycle Loss Fraction to Thermal Zone + 1.205980747, !- On Cycle Loss Coefficient to Ambient Temperature {W/K} + , !- On Cycle Loss Fraction to Thermal Zone + , !- Peak Use Flow Rate {m3/s} + , !- Use Flow Rate Fraction Schedule Name + , !- Cold Water Supply Temperature Schedule Name + {c4dd33b8-0950-46a9-8751-237370376236}, !- Use Side Inlet Node Name + {16d09cb4-9edf-48fa-aa29-27b2dd76ed93}, !- Use Side Outlet Node Name + 1, !- Use Side Effectiveness + , !- Source Side Inlet Node Name + , !- Source Side Outlet Node Name + 1, !- Source Side Effectiveness + autosize, !- Use Side Design Flow Rate {m3/s} + autosize, !- Source Side Design Flow Rate {m3/s} + 1.5, !- Indirect Water Heating Recovery Time {hr} + IndirectHeatPrimarySetpoint, !- Source Side Flow Control Mode + , !- Indirect Alternate Setpoint Temperature Schedule Name + General; !- End-Use Subcategory + +OS:Schedule:Day, + {5c09b822-b057-4fe3-94a1-365ff8c2923d}, !- Handle + Schedule Day 23, !- Name + {e92fdb7e-ac44-48e6-af6f-5961d4c07a59}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 22; !- Value Until Time 1 + +OS:Schedule:Day, + {0e42af06-9739-4758-8cf1-0b20b0f68c88}, !- Handle + Schedule Day 24, !- Name + {e92fdb7e-ac44-48e6-af6f-5961d4c07a59}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 60; !- Value Until Time 1 + +OS:Node, + {8c268286-420d-461a-8e91-f73bbe0193ca}, !- Handle + 40gal Electricity Water Heater - 40kBtu/hr 1.0 Therm Eff Supply Outlet Water Node, !- Name + {16d09cb4-9edf-48fa-aa29-27b2dd76ed93}, !- Inlet Port + {ef15a38e-baf9-4d95-94f4-eaeb48b5a67d}; !- Outlet Port + +OS:Connection, + {c4dd33b8-0950-46a9-8751-237370376236}, !- Handle + {f8685c48-e45e-4b23-921b-21920e635d53}, !- Name + {66db2114-5654-4abe-82a2-49d23056539b}, !- Source Object + 3, !- Outlet Port + {e153f659-c9cc-4b67-8116-4f7569078780}, !- Target Object + 31; !- Inlet Port + +OS:Connection, + {16d09cb4-9edf-48fa-aa29-27b2dd76ed93}, !- Handle + {5dbab109-2cbb-4308-8fa3-484995324abf}, !- Name + {e153f659-c9cc-4b67-8116-4f7569078780}, !- Source Object + 32, !- Outlet Port + {8c268286-420d-461a-8e91-f73bbe0193ca}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {ef15a38e-baf9-4d95-94f4-eaeb48b5a67d}, !- Handle + {7727168c-a9ae-42ae-908d-15cbd7be074c}, !- Name + {8c268286-420d-461a-8e91-f73bbe0193ca}, !- Source Object + 3, !- Outlet Port + {529e9895-3441-48c5-8e56-73c5d5b0fc52}, !- Target Object + 3; !- Inlet Port + +OS:Pipe:Adiabatic, + {b094b83b-86e1-44e7-8f94-7e84d4022a9a}, !- Handle + Pipe Adiabatic 1, !- Name + {23c826f6-8995-4ca7-a6e9-c1bbbf3f3c85}, !- Inlet Node Name + {61c390b6-85b1-42c1-afe5-3a4e02422fa3}; !- Outlet Node Name + +OS:Node, + {749cb0ee-1478-4314-97d0-801160b86bdf}, !- Handle + Pipe Adiabatic 1 Inlet Water Node, !- Name + {7c730f0d-a9bb-49ae-bdfe-a6f5c75c53d2}, !- Inlet Port + {23c826f6-8995-4ca7-a6e9-c1bbbf3f3c85}; !- Outlet Port + +OS:Connection, + {7c730f0d-a9bb-49ae-bdfe-a6f5c75c53d2}, !- Handle + {afe88c96-a919-43f5-af80-a069a7271460}, !- Name + {6ed6b54f-d16b-4695-abea-b52a8ef1095b}, !- Source Object + 4, !- Outlet Port + {749cb0ee-1478-4314-97d0-801160b86bdf}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {97bb26ec-5ff5-4b7c-becb-c68a325849c5}, !- Handle + Pipe Adiabatic 1 Outlet Water Node, !- Name + {61c390b6-85b1-42c1-afe5-3a4e02422fa3}, !- Inlet Port + {bfedbbe9-212d-4f43-8cec-0cd85ff4e1e2}; !- Outlet Port + +OS:Connection, + {23c826f6-8995-4ca7-a6e9-c1bbbf3f3c85}, !- Handle + {4d4185d6-7295-435c-a379-ca497cc1db9a}, !- Name + {749cb0ee-1478-4314-97d0-801160b86bdf}, !- Source Object + 3, !- Outlet Port + {b094b83b-86e1-44e7-8f94-7e84d4022a9a}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {61c390b6-85b1-42c1-afe5-3a4e02422fa3}, !- Handle + {7993bd1f-56d2-46e0-a073-b553e65f8193}, !- Name + {b094b83b-86e1-44e7-8f94-7e84d4022a9a}, !- Source Object + 3, !- Outlet Port + {97bb26ec-5ff5-4b7c-becb-c68a325849c5}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {bfedbbe9-212d-4f43-8cec-0cd85ff4e1e2}, !- Handle + {cc588341-3493-40be-a0b8-e31f82cfe492}, !- Name + {97bb26ec-5ff5-4b7c-becb-c68a325849c5}, !- Source Object + 3, !- Outlet Port + {529e9895-3441-48c5-8e56-73c5d5b0fc52}, !- Target Object + 4; !- Inlet Port + +OS:Pipe:Adiabatic, + {e89147eb-0b91-410f-829e-d6c403ab7e0a}, !- Handle + Pipe Adiabatic 2, !- Name + {21b2337c-7b84-4efd-af94-0a8a1aaa09b9}, !- Inlet Node Name + {5f501537-9dd0-4a9c-9074-ba05f12b263a}; !- Outlet Node Name + +OS:Node, + {0fc0308d-3557-4a01-8926-779e734f5617}, !- Handle + Pipe Adiabatic 2 Outlet Water Node, !- Name + {5f501537-9dd0-4a9c-9074-ba05f12b263a}, !- Inlet Port + {67a3adaa-667a-4298-a91d-a620dcd10ddf}; !- Outlet Port + +OS:Connection, + {21b2337c-7b84-4efd-af94-0a8a1aaa09b9}, !- Handle + {369164aa-6e80-42d5-8dc9-4e8061a7f4eb}, !- Name + {50594ea1-547a-410b-9ab0-171186f5f6a4}, !- Source Object + 3, !- Outlet Port + {e89147eb-0b91-410f-829e-d6c403ab7e0a}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {5f501537-9dd0-4a9c-9074-ba05f12b263a}, !- Handle + {57d4a8bd-4b00-4a3a-a777-12b903ba1204}, !- Name + {e89147eb-0b91-410f-829e-d6c403ab7e0a}, !- Source Object + 3, !- Outlet Port + {0fc0308d-3557-4a01-8926-779e734f5617}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {67a3adaa-667a-4298-a91d-a620dcd10ddf}, !- Handle + {9914625d-16a9-4697-b0f1-f27d6bb8c085}, !- Name + {0fc0308d-3557-4a01-8926-779e734f5617}, !- Source Object + 3, !- Outlet Port + {e6ed990a-2035-449d-b122-c4c8296fd6ba}, !- Target Object + 3; !- Inlet Port + +OS:Pipe:Adiabatic, + {b8664110-0862-40d2-83c7-b16bd92ad80c}, !- Handle + Pipe Adiabatic 3, !- Name + {07d1f9ef-9f60-4126-a0bc-02784c08450c}, !- Inlet Node Name + {92ac48b6-4d7b-4271-aa77-68e84de8efa2}; !- Outlet Node Name + +OS:Node, + {500ccff3-e373-4ebe-a741-1fa88a38f6b9}, !- Handle + Pipe Adiabatic 3 Inlet Water Node, !- Name + {b229e5ae-d096-41c3-994f-72dfe2b5e7d2}, !- Inlet Port + {07d1f9ef-9f60-4126-a0bc-02784c08450c}; !- Outlet Port + +OS:Connection, + {b229e5ae-d096-41c3-994f-72dfe2b5e7d2}, !- Handle + {146896aa-c380-4745-b179-aa2668f2b98a}, !- Name + {529e9895-3441-48c5-8e56-73c5d5b0fc52}, !- Source Object + 2, !- Outlet Port + {500ccff3-e373-4ebe-a741-1fa88a38f6b9}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {07d1f9ef-9f60-4126-a0bc-02784c08450c}, !- Handle + {e2a6721a-b7cd-4dca-85d5-06d6e826579c}, !- Name + {500ccff3-e373-4ebe-a741-1fa88a38f6b9}, !- Source Object + 3, !- Outlet Port + {b8664110-0862-40d2-83c7-b16bd92ad80c}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {92ac48b6-4d7b-4271-aa77-68e84de8efa2}, !- Handle + {a1666c77-b6ae-4653-85cb-bfbdbac6065c}, !- Name + {b8664110-0862-40d2-83c7-b16bd92ad80c}, !- Source Object + 3, !- Outlet Port + {4e98a9f7-8a0b-4c0a-af3c-f79d06121933}, !- Target Object + 2; !- Inlet Port + +OS:Pipe:Adiabatic, + {a8583a06-f068-4946-b9bc-335744deeca5}, !- Handle + Pipe Adiabatic 4, !- Name + {3d35842b-9430-484b-ba08-cf8e61b37b5b}, !- Inlet Node Name + {c5b1c918-2dfb-4de0-995c-6a5cb76f9c52}; !- Outlet Node Name + +OS:Node, + {b15cebb9-f733-4afa-b3c5-1b0cd302df3d}, !- Handle + Pipe Adiabatic 4 Outlet Water Node, !- Name + {c5b1c918-2dfb-4de0-995c-6a5cb76f9c52}, !- Inlet Port + {8472e582-a486-495c-8adb-408b8d4047dc}; !- Outlet Port + +OS:Connection, + {3d35842b-9430-484b-ba08-cf8e61b37b5b}, !- Handle + {72bb0fa4-37eb-41b6-9931-86396f73b343}, !- Name + {7b10a9fd-cf6f-43b0-9c87-476b324d7c13}, !- Source Object + 3, !- Outlet Port + {a8583a06-f068-4946-b9bc-335744deeca5}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {c5b1c918-2dfb-4de0-995c-6a5cb76f9c52}, !- Handle + {799763f0-bedd-4294-ac40-2ae611c21b04}, !- Name + {a8583a06-f068-4946-b9bc-335744deeca5}, !- Source Object + 3, !- Outlet Port + {b15cebb9-f733-4afa-b3c5-1b0cd302df3d}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {8472e582-a486-495c-8adb-408b8d4047dc}, !- Handle + {0449fb40-8574-483e-8823-c1b3114b8339}, !- Name + {b15cebb9-f733-4afa-b3c5-1b0cd302df3d}, !- Source Object + 3, !- Outlet Port + {9f23bee3-edc4-4b22-aaa3-2e9833b6ce3d}, !- Target Object + 2; !- Inlet Port + +OS:Pipe:Adiabatic, + {a5011592-888f-4dd2-81d1-e99ac43c095e}, !- Handle + Pipe Adiabatic 5, !- Name + {8561e47e-5829-439b-9f45-f11572535cda}, !- Inlet Node Name + {5bb528b8-3f1a-497b-b13d-025431223214}; !- Outlet Node Name + +OS:Node, + {87706ece-141f-4df5-8ec9-ee0c0354266b}, !- Handle + Pipe Adiabatic 5 Inlet Water Node, !- Name + {9d73560b-007a-41af-96b6-0908aea98255}, !- Inlet Port + {8561e47e-5829-439b-9f45-f11572535cda}; !- Outlet Port + +OS:Connection, + {9d73560b-007a-41af-96b6-0908aea98255}, !- Handle + {c2a96e03-1e96-432e-b7c7-9985d520863e}, !- Name + {e6ed990a-2035-449d-b122-c4c8296fd6ba}, !- Source Object + 2, !- Outlet Port + {87706ece-141f-4df5-8ec9-ee0c0354266b}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {8561e47e-5829-439b-9f45-f11572535cda}, !- Handle + {0b6f904d-6f7f-4a44-b536-4d7fdb2b1c9c}, !- Name + {87706ece-141f-4df5-8ec9-ee0c0354266b}, !- Source Object + 3, !- Outlet Port + {a5011592-888f-4dd2-81d1-e99ac43c095e}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {5bb528b8-3f1a-497b-b13d-025431223214}, !- Handle + {81ce24aa-027c-4f1d-a7f0-8309863cc84c}, !- Name + {a5011592-888f-4dd2-81d1-e99ac43c095e}, !- Source Object + 3, !- Outlet Port + {0df2aa06-fdcb-4a1f-a9b7-1082fb7b1024}, !- Target Object + 2; !- Inlet Port + +OS:WaterUse:Connections, + {f24d3a45-afa1-4c12-924f-528e5817fe81}, !- Handle + Water Use Connections 1, !- Name + {9a11b156-e859-4325-8020-204d430b4d28}, !- Inlet Node Name + {3d222629-2149-4912-affe-3c86b4fc609d}, !- Outlet Node Name + , !- Supply Water Storage Tank Name + , !- Reclamation Water Storage Tank Name + , !- Hot Water Supply Temperature Schedule Name + , !- Cold Water Supply Temperature Schedule Name + , !- Drain Water Heat Exchanger Type + , !- Drain Water Heat Exchanger Destination + , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} + {b215b732-7780-4024-a7b4-eed0c0fa8e68}; !- Water Use Equipment Name 1 + +OS:WaterUse:Equipment:Definition, + {a9cf5c25-b4d7-4e7e-b6d2-6d2bd670514d}, !- Handle + Main Service Water Use Def 0.06gal/min, !- Name + , !- End-Use Subcategory + 4.03777256956784e-006, !- Peak Flow Rate {m3/s} + {8872c722-f324-4c0b-8113-59aa45367ace}, !- Target Temperature Schedule Name + {f5abd91e-4283-4f39-9dd8-adc9d9387588}, !- Sensible Fraction Schedule Name + {76660b90-1c19-40c9-ae87-37f50e46a639}; !- Latent Fraction Schedule Name + +OS:Schedule:Ruleset, + {f5abd91e-4283-4f39-9dd8-adc9d9387588}, !- Handle + Fraction Sensible - 0.2, !- Name + {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name + {540f336c-001a-4149-b7f3-0c60ff6c2959}; !- Default Day Schedule Name + +OS:Schedule:Day, + {540f336c-001a-4149-b7f3-0c60ff6c2959}, !- Handle + Fraction Sensible - 0.2 Default, !- Name + {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0.2; !- Value Until Time 1 + +OS:Schedule:Ruleset, + {76660b90-1c19-40c9-ae87-37f50e46a639}, !- Handle + Fraction Latent - 0.05, !- Name + {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name + {2da536c0-eb27-492f-972f-f5ef79370b2b}; !- Default Day Schedule Name + +OS:Schedule:Day, + {2da536c0-eb27-492f-972f-f5ef79370b2b}, !- Handle + Fraction Latent - 0.05 Default, !- Name + {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0.05; !- Value Until Time 1 + +OS:Schedule:Ruleset, + {8872c722-f324-4c0b-8113-59aa45367ace}, !- Handle + Mixed Water At Faucet Temp - 120F, !- Name + {e92fdb7e-ac44-48e6-af6f-5961d4c07a59}, !- Schedule Type Limits Name + {c7678597-879e-494e-ae5b-d57e484483d5}; !- Default Day Schedule Name + +OS:Schedule:Day, + {c7678597-879e-494e-ae5b-d57e484483d5}, !- Handle + Mixed Water At Faucet Temp - 120F Default, !- Name + {e92fdb7e-ac44-48e6-af6f-5961d4c07a59}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 48.8888888888889; !- Value Until Time 1 + +OS:WaterUse:Equipment, + {b215b732-7780-4024-a7b4-eed0c0fa8e68}, !- Handle + Main Service Water Use 0.06gal/min, !- Name + {a9cf5c25-b4d7-4e7e-b6d2-6d2bd670514d}, !- Water Use Equipment Definition Name + , !- Space Name + {9a5250f5-5af9-49ce-8240-ee12980342b5}; !- Flow Rate Fraction Schedule Name + +OS:Schedule:Ruleset, + {9a5250f5-5af9-49ce-8240-ee12980342b5}, !- Handle + OfficeSmall BLDG_SWH_SCH, !- Name + {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name + {ceaac14d-4d5f-4be5-98e8-89c649cbf29a}, !- Default Day Schedule Name + {7df48db6-2d63-491b-82fd-9961be889658}, !- Summer Design Day Schedule Name + {bf7e6279-980c-408f-8ef3-061982748c66}; !- Winter Design Day Schedule Name + +OS:Schedule:Day, + {ceaac14d-4d5f-4be5-98e8-89c649cbf29a}, !- Handle + OfficeSmall BLDG_SWH_SCH Default, !- Name + {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 + +OS:Schedule:Day, + {bf7e6279-980c-408f-8ef3-061982748c66}, !- Handle + OfficeSmall BLDG_SWH_SCH Winter Design Day, !- Name + {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 7, !- Hour 1 + 0, !- Minute 1 + 0, !- Value Until Time 1 + 8, !- Hour 2 + 0, !- Minute 2 + 0.27, !- Value Until Time 2 + 9, !- Hour 3 + 0, !- Minute 3 + 0.55, !- Value Until Time 3 + 11, !- Hour 4 + 0, !- Minute 4 + 0.64, !- Value Until Time 4 + 12, !- Hour 5 + 0, !- Minute 5 + 0.82, !- Value Until Time 5 + 13, !- Hour 6 + 0, !- Minute 6 + 1, !- Value Until Time 6 + 14, !- Hour 7 + 0, !- Minute 7 + 0.91, !- Value Until Time 7 + 16, !- Hour 8 + 0, !- Minute 8 + 0.55, !- Value Until Time 8 + 17, !- Hour 9 + 0, !- Minute 9 + 0.73, !- Value Until Time 9 + 19, !- Hour 10 + 0, !- Minute 10 + 0.37, !- Value Until Time 10 + 20, !- Hour 11 + 0, !- Minute 11 + 0.18, !- Value Until Time 11 + 21, !- Hour 12 + 0, !- Minute 12 + 0.27, !- Value Until Time 12 + 22, !- Hour 13 + 0, !- Minute 13 + 0.09, !- Value Until Time 13 + 24, !- Hour 14 + 0, !- Minute 14 + 0; !- Value Until Time 14 + +OS:Schedule:Day, + {7df48db6-2d63-491b-82fd-9961be889658}, !- Handle + OfficeSmall BLDG_SWH_SCH Summer Design Day, !- Name + {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 7, !- Hour 1 + 0, !- Minute 1 + 0, !- Value Until Time 1 + 8, !- Hour 2 + 0, !- Minute 2 + 0.27, !- Value Until Time 2 + 9, !- Hour 3 + 0, !- Minute 3 + 0.55, !- Value Until Time 3 + 11, !- Hour 4 + 0, !- Minute 4 + 0.64, !- Value Until Time 4 + 12, !- Hour 5 + 0, !- Minute 5 + 0.82, !- Value Until Time 5 + 13, !- Hour 6 + 0, !- Minute 6 + 1, !- Value Until Time 6 + 14, !- Hour 7 + 0, !- Minute 7 + 0.91, !- Value Until Time 7 + 16, !- Hour 8 + 0, !- Minute 8 + 0.55, !- Value Until Time 8 + 17, !- Hour 9 + 0, !- Minute 9 + 0.73, !- Value Until Time 9 + 19, !- Hour 10 + 0, !- Minute 10 + 0.37, !- Value Until Time 10 + 20, !- Hour 11 + 0, !- Minute 11 + 0.18, !- Value Until Time 11 + 21, !- Hour 12 + 0, !- Minute 12 + 0.27, !- Value Until Time 12 + 22, !- Hour 13 + 0, !- Minute 13 + 0.09, !- Value Until Time 13 + 24, !- Hour 14 + 0, !- Minute 14 + 0; !- Value Until Time 14 + +OS:Schedule:Rule, + {0b448069-23b0-442d-b4c5-53cd9318427d}, !- Handle + Schedule Rule 16, !- Name + {9a5250f5-5af9-49ce-8240-ee12980342b5}, !- Schedule Ruleset Name + 0, !- Rule Order + {369091e4-572f-4aca-a17a-07f2be0d237c}, !- Day Schedule Name + , !- Apply Sunday + Yes, !- Apply Monday + Yes, !- Apply Tuesday + Yes, !- Apply Wednesday + Yes, !- Apply Thursday + Yes, !- Apply Friday + , !- Apply Saturday + , !- Apply Holiday + DateRange, !- Date Specification Type + 1, !- Start Month + 1, !- Start Day + 12, !- End Month + 31; !- End Day + +OS:Schedule:Day, + {369091e4-572f-4aca-a17a-07f2be0d237c}, !- Handle + OfficeSmall BLDG_SWH_SCH WntrDsn|SmrDsn|Wkdy Day, !- Name + {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 7, !- Hour 1 + 0, !- Minute 1 + 0, !- Value Until Time 1 + 8, !- Hour 2 + 0, !- Minute 2 + 0.27, !- Value Until Time 2 + 9, !- Hour 3 + 0, !- Minute 3 + 0.55, !- Value Until Time 3 + 11, !- Hour 4 + 0, !- Minute 4 + 0.64, !- Value Until Time 4 + 12, !- Hour 5 + 0, !- Minute 5 + 0.82, !- Value Until Time 5 + 13, !- Hour 6 + 0, !- Minute 6 + 1, !- Value Until Time 6 + 14, !- Hour 7 + 0, !- Minute 7 + 0.91, !- Value Until Time 7 + 16, !- Hour 8 + 0, !- Minute 8 + 0.55, !- Value Until Time 8 + 17, !- Hour 9 + 0, !- Minute 9 + 0.73, !- Value Until Time 9 + 19, !- Hour 10 + 0, !- Minute 10 + 0.37, !- Value Until Time 10 + 20, !- Hour 11 + 0, !- Minute 11 + 0.18, !- Value Until Time 11 + 21, !- Hour 12 + 0, !- Minute 12 + 0.27, !- Value Until Time 12 + 22, !- Hour 13 + 0, !- Minute 13 + 0.09, !- Value Until Time 13 + 24, !- Hour 14 + 0, !- Minute 14 + 0; !- Value Until Time 14 + +OS:Node, + {155eda42-a80b-418e-8609-320c15dee80f}, !- Handle + Water Use Connections 1 Inlet Water Node, !- Name + {eff2f1a5-9ccb-456c-899d-d4772a3ca2f5}, !- Inlet Port + {9a11b156-e859-4325-8020-204d430b4d28}; !- Outlet Port + +OS:Connection, + {eff2f1a5-9ccb-456c-899d-d4772a3ca2f5}, !- Handle + {6f496258-b1ff-45cf-88b0-7af839bb8bd7}, !- Name + {9f23bee3-edc4-4b22-aaa3-2e9833b6ce3d}, !- Source Object + 4, !- Outlet Port + {155eda42-a80b-418e-8609-320c15dee80f}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {c3fcef8b-7845-4fab-99c5-0c14929b0cb3}, !- Handle + Water Use Connections 1 Outlet Water Node, !- Name + {3d222629-2149-4912-affe-3c86b4fc609d}, !- Inlet Port + {1045cfef-dcf7-4c1e-bd6c-48eefbff4cc9}; !- Outlet Port + +OS:Connection, + {9a11b156-e859-4325-8020-204d430b4d28}, !- Handle + {0928c5a0-2fef-4a0c-8fd6-186920570064}, !- Name + {155eda42-a80b-418e-8609-320c15dee80f}, !- Source Object + 3, !- Outlet Port + {f24d3a45-afa1-4c12-924f-528e5817fe81}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {3d222629-2149-4912-affe-3c86b4fc609d}, !- Handle + {1e06be21-fd99-4a6e-83dc-61b00b415643}, !- Name + {f24d3a45-afa1-4c12-924f-528e5817fe81}, !- Source Object + 3, !- Outlet Port + {c3fcef8b-7845-4fab-99c5-0c14929b0cb3}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {1045cfef-dcf7-4c1e-bd6c-48eefbff4cc9}, !- Handle + {8d7f30ef-0a5e-4ae8-bfe4-fab3cbcdc407}, !- Name + {c3fcef8b-7845-4fab-99c5-0c14929b0cb3}, !- Source Object + 3, !- Outlet Port + {e6ed990a-2035-449d-b122-c4c8296fd6ba}, !- Target Object + 4; !- Inlet Port + +OS:Exterior:Lights:Definition, + {942648cb-4f8c-48ba-946b-652707d76262}, !- Handle + Occ Sensing Exterior Lights Def, !- Name + 896.07; !- Design Level {W} + +OS:Schedule:Ruleset, + {1db5eeef-c70d-40c0-84d1-21ebada7fa3b}, !- Handle + OfficeSmall Exterior_lighting_schedule_b, !- Name + {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name + {1f540397-a64b-47bb-a8fc-cd6ca8681128}, !- Default Day Schedule Name + {7a66a666-18b2-440c-89a1-a3c4979bf377}, !- Summer Design Day Schedule Name + {715470c6-7e84-4fbe-a4bd-6faaa6be7f46}; !- Winter Design Day Schedule Name + +OS:Schedule:Day, + {1f540397-a64b-47bb-a8fc-cd6ca8681128}, !- Handle + OfficeSmall Exterior_lighting_schedule_b Default, !- Name + {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 6, !- Hour 1 + 0, !- Minute 1 + 0.7, !- Value Until Time 1 + 24, !- Hour 2 + 0, !- Minute 2 + 1; !- Value Until Time 2 + +OS:Schedule:Day, + {715470c6-7e84-4fbe-a4bd-6faaa6be7f46}, !- Handle + OfficeSmall Exterior_lighting_schedule_b Winter Design Day, !- Name + {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 6, !- Hour 1 + 0, !- Minute 1 + 0.7, !- Value Until Time 1 + 24, !- Hour 2 + 0, !- Minute 2 + 1; !- Value Until Time 2 + +OS:Schedule:Day, + {7a66a666-18b2-440c-89a1-a3c4979bf377}, !- Handle + OfficeSmall Exterior_lighting_schedule_b Summer Design Day, !- Name + {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 6, !- Hour 1 + 0, !- Minute 1 + 0.7, !- Value Until Time 1 + 24, !- Hour 2 + 0, !- Minute 2 + 1; !- Value Until Time 2 + +OS:Exterior:Lights, + {0779cb69-b19a-42eb-8772-41b008199ac9}, !- Handle + Occ Sensing Exterior Lights Def, !- Name + {942648cb-4f8c-48ba-946b-652707d76262}, !- Exterior Lights Definition Name + {1db5eeef-c70d-40c0-84d1-21ebada7fa3b}, !- Schedule Name + AstronomicalClock, !- Control Option + , !- Multiplier + General; !- End-Use Subcategory + +OS:Exterior:Lights:Definition, + {b30bc3e8-d0b6-46fc-8fe2-f214a493aee3}, !- Handle + NonDimming Exterior Lights Def, !- Name + 40.54; !- Design Level {W} + +OS:Schedule:Ruleset, + {3bd545df-3396-4417-a2cb-5e5459fd8733}, !- Handle + OfficeSmall Exterior_lighting_schedule_a, !- Name + {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name + {30f18c1e-50e0-4051-9b57-134230a5367a}, !- Default Day Schedule Name + {13f23077-cbaf-42da-b3cc-e6943e63e94e}, !- Summer Design Day Schedule Name + {f7e67f7f-90b2-4cab-a588-78fc68400ee1}; !- Winter Design Day Schedule Name + +OS:Schedule:Day, + {30f18c1e-50e0-4051-9b57-134230a5367a}, !- Handle + OfficeSmall Exterior_lighting_schedule_a Default, !- Name + {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 6, !- Hour 1 + 0, !- Minute 1 + 0, !- Value Until Time 1 + 24, !- Hour 2 + 0, !- Minute 2 + 1; !- Value Until Time 2 + +OS:Schedule:Day, + {f7e67f7f-90b2-4cab-a588-78fc68400ee1}, !- Handle + OfficeSmall Exterior_lighting_schedule_a Winter Design Day, !- Name + {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 6, !- Hour 1 + 0, !- Minute 1 + 0, !- Value Until Time 1 + 24, !- Hour 2 + 0, !- Minute 2 + 1; !- Value Until Time 2 + +OS:Schedule:Day, + {13f23077-cbaf-42da-b3cc-e6943e63e94e}, !- Handle + OfficeSmall Exterior_lighting_schedule_a Summer Design Day, !- Name + {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 6, !- Hour 1 + 0, !- Minute 1 + 0, !- Value Until Time 1 + 24, !- Hour 2 + 0, !- Minute 2 + 1; !- Value Until Time 2 + +OS:Exterior:Lights, + {fc541f8d-bd79-43e6-b0a6-f7b54fabfb65}, !- Handle + NonDimming Exterior Lights Def, !- Name + {b30bc3e8-d0b6-46fc-8fe2-f214a493aee3}, !- Exterior Lights Definition Name + {3bd545df-3396-4417-a2cb-5e5459fd8733}, !- Schedule Name + AstronomicalClock, !- Control Option + , !- Multiplier + General; !- End-Use Subcategory + +OS:Site:WaterMainsTemperature, + {ece82226-8fcd-4d1e-8a33-560828d2f472}, !- Handle + Correlation, !- Calculation Method + , !- Temperature Schedule Name + 9.925, !- Annual Average Outdoor Air Temperature {C} + 28.7; !- Maximum Difference In Monthly Average Outdoor Air Temperatures {deltaC} + +OS:SizingPeriod:DesignDay, + {cbdb94b2-9c13-4a4a-9c11-2d8efeb39541}, !- Handle + Chicago Ohare Intl Ap Ann Htg 99.6% Condns DB, !- Name + -20, !- Maximum Dry-Bulb Temperature {C} + 0, !- Daily Dry-Bulb Temperature Range {deltaC} + -20, !- Humidity Indicating Conditions at Maximum Dry-Bulb + 98934, !- Barometric Pressure {Pa} + 4.9, !- Wind Speed {m/s} + 270, !- Wind Direction {deg} + 0, !- Sky Clearness + 0, !- Rain Indicator + 0, !- Snow Indicator + 21, !- Day of Month + 1, !- Month + WinterDesignDay, !- Day Type + 0, !- Daylight Saving Time Indicator + Wetbulb, !- Humidity Indicating Type + , !- Humidity Indicating Day Schedule Name + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Schedule Name + ASHRAEClearSky; !- Solar Model Indicator + +OS:SizingPeriod:DesignDay, + {da1c4574-2cbc-41b0-96bd-405a3eb8e8ee}, !- Handle + Chicago Ohare Intl Ap Ann Clg .4% Condns DB=>MWB, !- Name + 33.3, !- Maximum Dry-Bulb Temperature {C} + 10.5, !- Daily Dry-Bulb Temperature Range {deltaC} + 23.7, !- Humidity Indicating Conditions at Maximum Dry-Bulb + 98934, !- Barometric Pressure {Pa} + 5.2, !- Wind Speed {m/s} + 230, !- Wind Direction {deg} + 0, !- Sky Clearness + 0, !- Rain Indicator + 0, !- Snow Indicator + 21, !- Day of Month + 7, !- Month + SummerDesignDay, !- Day Type + 0, !- Daylight Saving Time Indicator + Wetbulb, !- Humidity Indicating Type + , !- Humidity Indicating Day Schedule Name + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Schedule Name + ASHRAETau, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + 0.455, !- ASHRAE Taub {dimensionless} + 2.05; !- ASHRAE Taud {dimensionless} + +OS:RunPeriodControl:DaylightSavingTime, + {f9c8b597-ae88-49ad-9d3b-8d5df4e4a650}, !- Handle + 2nd Sunday in March, !- Start Date + 1st Sunday in November; !- End Date + +OS:Site:GroundTemperature:BuildingSurface, + {f4bdeeb2-54df-4658-aa67-baba6cf6298d}, !- Handle + 19.91, !- January Ground Temperature {C} + 19.78, !- February Ground Temperature {C} + 19.78, !- March Ground Temperature {C} + 19.91, !- April Ground Temperature {C} + 20.1, !- May Ground Temperature {C} + 22.25, !- June Ground Temperature {C} + 22.88, !- July Ground Temperature {C} + 23.07, !- August Ground Temperature {C} + 23.13, !- September Ground Temperature {C} + 21.08, !- October Ground Temperature {C} + 20.53, !- November Ground Temperature {C} + 20.19; !- December Ground Temperature {C} + +OS:Sizing:Parameters, + {650da5ef-d294-45a3-abd9-bc2edc71a74f}, !- Handle + 1.2, !- Heating Sizing Factor + 1.2; !- Cooling Sizing Factor + +OS:ClimateZones, + {ec15d255-d3c9-40e5-b183-5800cac2bf8b}, !- Handle + , !- Active Institution + , !- Active Year + ASHRAE, !- Climate Zone Institution Name 1 + ANSI/ASHRAE Standard 169, !- Climate Zone Document Name 1 + 2006, !- Climate Zone Document Year 1 + 5A, !- Climate Zone Value 1 + CEC, !- Climate Zone Institution Name 2 + California Climate Zone Descriptions, !- Climate Zone Document Name 2 + 1995, !- Climate Zone Document Year 2 + ; !- Climate Zone Value 2 + +OS:Schedule:Day, + {5e29f1cd-a04c-4e35-bff2-1fb3311c23be}, !- Handle + Economizer Max OA Fraction 70 pct Default, !- Name + , !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0.7; !- Value Until Time 1 + +OS:Curve:Cubic, + {1bfea7f1-1095-458e-b853-eaf9b2498d5f}, !- Handle + HPACHeatCapFT, !- Name + 0.758746, !- Coefficient1 Constant + 0.027626, !- Coefficient2 x + 0.000148716, !- Coefficient3 x**2 + 3.4992e-006, !- Coefficient4 x**3 + -20, !- Minimum Value of x + 20; !- Maximum Value of x + +OS:Curve:Cubic, + {280d9688-bd63-492e-a346-6275aabe749e}, !- Handle + HPACHeatCapFFF, !- Name + 0.84, !- Coefficient1 Constant + 0.16, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0.5, !- Minimum Value of x + 1.5; !- Maximum Value of x + +OS:Curve:Cubic, + {8aff4225-4594-4306-8181-1471256a4a20}, !- Handle + HPACHeatEIRFT, !- Name + 1.19248, !- Coefficient1 Constant + -0.0300438, !- Coefficient2 x + 0.00103745, !- Coefficient3 x**2 + -2.3328e-005, !- Coefficient4 x**3 + -20, !- Minimum Value of x + 20; !- Maximum Value of x + +OS:Curve:Quadratic, + {5ce2ca36-993a-47f3-88f4-bad9af8ac9a3}, !- Handle + HPACHeatEIRFFF, !- Name + 1.3824, !- Coefficient1 Constant + -0.4336, !- Coefficient2 x + 0.0512, !- Coefficient3 x**2 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:Curve:Quadratic, + {714c0395-0263-444c-a4f6-d9e78a580913}, !- Handle + HPACCOOLPLFFPLR, !- Name + 0.85, !- Coefficient1 Constant + 0.15, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:Curve:Biquadratic, + {e6cebddc-27fb-4158-9b04-49e64c32b2ed}, !- Handle + HPACCoolCapFT, !- Name + 0.766956, !- Coefficient1 Constant + 0.0107756, !- Coefficient2 x + -4.14703e-005, !- Coefficient3 x**2 + 0.00134961, !- Coefficient4 y + -0.000261144, !- Coefficient5 y**2 + 0.000457488, !- Coefficient6 x*y + 12.77778, !- Minimum Value of x + 23.88889, !- Maximum Value of x + 21.11111, !- Minimum Value of y + 46.11111; !- Maximum Value of y + +OS:Curve:Quadratic, + {6708f17c-3967-4daf-89fb-e9625d394634}, !- Handle + HPACCoolCapFFF, !- Name + 0.8, !- Coefficient1 Constant + 0.2, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0.5, !- Minimum Value of x + 1.5; !- Maximum Value of x + +OS:Curve:Biquadratic, + {626baf5b-350e-404e-81da-48addd8de7f7}, !- Handle + HPACCOOLEIRFT, !- Name + 0.297145, !- Coefficient1 Constant + 0.0430933, !- Coefficient2 x + -0.000748766, !- Coefficient3 x**2 + 0.00597727, !- Coefficient4 y + 0.000482112, !- Coefficient5 y**2 + -0.000956448, !- Coefficient6 x*y + 12.77778, !- Minimum Value of x + 23.88889, !- Maximum Value of x + 21.11111, !- Minimum Value of y + 46.11111; !- Maximum Value of y + +OS:Curve:Quadratic, + {dfc9bddf-e7f5-4a36-93ca-5ed1d66665cb}, !- Handle + HPACCOOLEIRFFF, !- Name + 1.156, !- Coefficient1 Constant + -0.1816, !- Coefficient2 x + 0.0256, !- Coefficient3 x**2 + 0.5, !- Minimum Value of x + 1.5; !- Maximum Value of x + +OS:Daylighting:Control, + {29c04ddc-9800-41e2-9f13-7ef9813ebbe4}, !- Handle + Perimeter_ZN_1 Daylt Sensor 1, !- Name + {72459874-7e2c-4ecd-ae58-b2d96c368b31}, !- Space Name + 2.305, !- Position X-Coordinate {m} + 1.59984, !- Position Y-Coordinate {m} + 0.762, !- Position Z-Coordinate {m} + , !- Psi Rotation Around X-Axis {deg} + , !- Theta Rotation Around Y-Axis {deg} + , !- Phi Rotation Around Z-Axis {deg} + 375, !- Illuminance Setpoint {lux} + Stepped, !- Lighting Control Type + 0.3, !- Minimum Input Power Fraction for Continuous Dimming Control + 0.2, !- Minimum Light Output Fraction for Continuous Dimming Control + 3, !- Number of Stepped Control Steps + 1, !- Probability Lighting will be Reset When Needed in Manual Stepped Control + , !- Number of Daylighting Views + 22; !- Maximum Allowable Discomfort Glare Index + +OS:Daylighting:Control, + {cb15831a-9a03-4081-b8d6-2e6c345aa5f3}, !- Handle + Perimeter_ZN_1 Daylt Sensor 2, !- Name + {72459874-7e2c-4ecd-ae58-b2d96c368b31}, !- Space Name + 2.305, !- Position X-Coordinate {m} + 3.22392, !- Position Y-Coordinate {m} + 0.762, !- Position Z-Coordinate {m} + , !- Psi Rotation Around X-Axis {deg} + , !- Theta Rotation Around Y-Axis {deg} + , !- Phi Rotation Around Z-Axis {deg} + 375, !- Illuminance Setpoint {lux} + Stepped, !- Lighting Control Type + 0.3, !- Minimum Input Power Fraction for Continuous Dimming Control + 0.2, !- Minimum Light Output Fraction for Continuous Dimming Control + 3, !- Number of Stepped Control Steps + 1, !- Probability Lighting will be Reset When Needed in Manual Stepped Control + , !- Number of Daylighting Views + 22; !- Maximum Allowable Discomfort Glare Index + +OS:Daylighting:Control, + {5e6e04dc-84e6-42ce-8c31-1c223002cdf9}, !- Handle + Perimeter_ZN_2 Daylt Sensor 1, !- Name + {0ebdaea7-c6cb-452f-b121-7bbfcb1d95b8}, !- Space Name + 26.09016, !- Position X-Coordinate {m} + 2.305, !- Position Y-Coordinate {m} + 0.762, !- Position Z-Coordinate {m} + , !- Psi Rotation Around X-Axis {deg} + , !- Theta Rotation Around Y-Axis {deg} + , !- Phi Rotation Around Z-Axis {deg} + 375, !- Illuminance Setpoint {lux} + Stepped, !- Lighting Control Type + 0.3, !- Minimum Input Power Fraction for Continuous Dimming Control + 0.2, !- Minimum Light Output Fraction for Continuous Dimming Control + 3, !- Number of Stepped Control Steps + 1, !- Probability Lighting will be Reset When Needed in Manual Stepped Control + , !- Number of Daylighting Views + 22; !- Maximum Allowable Discomfort Glare Index + +OS:Daylighting:Control, + {47d6946f-e9ad-4198-9993-e0c0cc89062d}, !- Handle + Perimeter_ZN_2 Daylt Sensor 2, !- Name + {0ebdaea7-c6cb-452f-b121-7bbfcb1d95b8}, !- Space Name + 24.46608, !- Position X-Coordinate {m} + 2.305, !- Position Y-Coordinate {m} + 0.762, !- Position Z-Coordinate {m} + , !- Psi Rotation Around X-Axis {deg} + , !- Theta Rotation Around Y-Axis {deg} + , !- Phi Rotation Around Z-Axis {deg} + 375, !- Illuminance Setpoint {lux} + Stepped, !- Lighting Control Type + 0.3, !- Minimum Input Power Fraction for Continuous Dimming Control + 0.2, !- Minimum Light Output Fraction for Continuous Dimming Control + 3, !- Number of Stepped Control Steps + 1, !- Probability Lighting will be Reset When Needed in Manual Stepped Control + , !- Number of Daylighting Views + 22; !- Maximum Allowable Discomfort Glare Index + +OS:Daylighting:Control, + {cc3ca2b8-f129-4cf7-97bf-65d52f85e103}, !- Handle + Perimeter_ZN_3 Daylt Sensor 1, !- Name + {bb97cae6-ab6e-4ca9-a862-a3e532ee5e5d}, !- Space Name + 25.385, !- Position X-Coordinate {m} + 16.86016, !- Position Y-Coordinate {m} + 0.762, !- Position Z-Coordinate {m} + , !- Psi Rotation Around X-Axis {deg} + , !- Theta Rotation Around Y-Axis {deg} + , !- Phi Rotation Around Z-Axis {deg} + 375, !- Illuminance Setpoint {lux} + Stepped, !- Lighting Control Type + 0.3, !- Minimum Input Power Fraction for Continuous Dimming Control + 0.2, !- Minimum Light Output Fraction for Continuous Dimming Control + 3, !- Number of Stepped Control Steps + 1, !- Probability Lighting will be Reset When Needed in Manual Stepped Control + , !- Number of Daylighting Views + 22; !- Maximum Allowable Discomfort Glare Index + +OS:Daylighting:Control, + {6226a1a2-28d1-4edb-b0fa-d5193545176d}, !- Handle + Perimeter_ZN_3 Daylt Sensor 2, !- Name + {bb97cae6-ab6e-4ca9-a862-a3e532ee5e5d}, !- Space Name + 25.385, !- Position X-Coordinate {m} + 15.23608, !- Position Y-Coordinate {m} + 0.762, !- Position Z-Coordinate {m} + , !- Psi Rotation Around X-Axis {deg} + , !- Theta Rotation Around Y-Axis {deg} + , !- Phi Rotation Around Z-Axis {deg} + 375, !- Illuminance Setpoint {lux} + Stepped, !- Lighting Control Type + 0.3, !- Minimum Input Power Fraction for Continuous Dimming Control + 0.2, !- Minimum Light Output Fraction for Continuous Dimming Control + 3, !- Number of Stepped Control Steps + 1, !- Probability Lighting will be Reset When Needed in Manual Stepped Control + , !- Number of Daylighting Views + 22; !- Maximum Allowable Discomfort Glare Index + +OS:Daylighting:Control, + {7631782d-b3aa-491a-9d3e-369c98f1e06d}, !- Handle + Perimeter_ZN_4 Daylt Sensor 1, !- Name + {f9fb4430-2ed2-4cfb-bf10-1172712402a2}, !- Space Name + 1.59984, !- Position X-Coordinate {m} + 16.155, !- Position Y-Coordinate {m} + 0.762, !- Position Z-Coordinate {m} + , !- Psi Rotation Around X-Axis {deg} + , !- Theta Rotation Around Y-Axis {deg} + , !- Phi Rotation Around Z-Axis {deg} + 375, !- Illuminance Setpoint {lux} + Stepped, !- Lighting Control Type + 0.3, !- Minimum Input Power Fraction for Continuous Dimming Control + 0.2, !- Minimum Light Output Fraction for Continuous Dimming Control + 3, !- Number of Stepped Control Steps + 1, !- Probability Lighting will be Reset When Needed in Manual Stepped Control + , !- Number of Daylighting Views + 22; !- Maximum Allowable Discomfort Glare Index + +OS:Daylighting:Control, + {627dad3e-5081-480f-972e-fedac2af7954}, !- Handle + Perimeter_ZN_4 Daylt Sensor 2, !- Name + {f9fb4430-2ed2-4cfb-bf10-1172712402a2}, !- Space Name + 3.22392, !- Position X-Coordinate {m} + 16.155, !- Position Y-Coordinate {m} + 0.762, !- Position Z-Coordinate {m} + , !- Psi Rotation Around X-Axis {deg} + , !- Theta Rotation Around Y-Axis {deg} + , !- Phi Rotation Around Z-Axis {deg} + 375, !- Illuminance Setpoint {lux} + Stepped, !- Lighting Control Type + 0.3, !- Minimum Input Power Fraction for Continuous Dimming Control + 0.2, !- Minimum Light Output Fraction for Continuous Dimming Control + 3, !- Number of Stepped Control Steps + 1, !- Probability Lighting will be Reset When Needed in Manual Stepped Control + , !- Number of Daylighting Views + 22; !- Maximum Allowable Discomfort Glare Index + +OS:LifeCycleCost:Parameters, + {0f6f1ec3-4e42-4898-a3fd-6c650f861a2d}, !- Handle + , !- Analysis Type + , !- Discounting Convention + , !- Inflation Approach + , !- Real Discount Rate + , !- Nominal Discount Rate + , !- Inflation + , !- Base Date Month + , !- Base Date Year + , !- Service Date Month + , !- Service Date Year + ; !- Length of Study Period in Years + +OS:StandardsInformation:Material, + {4e27b039-5cb6-431c-b005-079f516d8551}, !- Handle + {8258d3ce-2d5b-4aab-a611-c03ef07500e5}; !- Material Name + +OS:StandardsInformation:Material, + {d8546bfb-09e5-4b3f-829d-39936a6cb33f}, !- Handle + {2b07f62b-a057-4e96-84b1-c3044d2010e2}; !- Material Name + +OS:StandardsInformation:Material, + {d9d92dd6-12e2-4fda-9a29-3d2e4e3c70c5}, !- Handle + {a7924022-c277-48c4-b630-0bac890ca27e}; !- Material Name + +OS:StandardsInformation:Material, + {33c06034-2723-475b-9214-52b30ca23352}, !- Handle + {f55c83df-b14b-4e7d-a5a7-5d3cb5773743}; !- Material Name + +OS:StandardsInformation:Material, + {bcfaa4c4-f983-4a99-8e1c-054c2d17429e}, !- Handle + {09a9a622-4334-475e-ad85-1053aa51e6b8}; !- Material Name + +OS:StandardsInformation:Material, + {f7b1027d-4bc3-40f5-ab4e-1f0244bd1c50}, !- Handle + {c66f70f4-f41c-4376-9141-4e9e10d378f6}; !- Material Name + +OS:StandardsInformation:Material, + {0898faf4-9eae-4020-88d5-b335c5246795}, !- Handle + {b60ca716-1db7-4313-bb48-cb3db545021e}; !- Material Name + +OS:StandardsInformation:Material, + {e7603d68-3bac-49f3-8b7d-1fa4789dd941}, !- Handle + {ba2c7d65-d8e5-4501-8734-3f0425d019d1}; !- Material Name + +OS:StandardsInformation:Material, + {a36fab02-e469-4575-948c-1f2216487563}, !- Handle + {d35641ab-9739-409d-b777-ed1aa61f9d24}; !- Material Name + +OS:StandardsInformation:Material, + {cfd8f5e6-b5b0-49d7-bb7b-e62baea58c14}, !- Handle + {bbcd2525-b654-4ba5-a387-163a9738174b}; !- Material Name + +OS:StandardsInformation:Material, + {1b5256d6-f7ca-4e95-80ee-b0363d71e76b}, !- Handle + {6c2e9510-8383-419e-8208-7fcc6c168a5b}; !- Material Name + +OS:StandardsInformation:Material, + {47e13670-92ab-4379-8664-d146c026ed9b}, !- Handle + {1e677f16-8b76-45d0-b73a-5c07aabb5659}; !- Material Name + +OS:StandardsInformation:Material, + {53b57b23-caa4-40e0-86e5-2c2bc8249e71}, !- Handle + {c80eed9d-fe69-4e84-8abd-97a123639c47}; !- Material Name + +OS:StandardsInformation:Material, + {8027dc98-fa22-42e4-bb29-48eb4e45f0f6}, !- Handle + {469c7810-0b24-41df-b22f-a2bfe1485983}; !- Material Name + +OS:StandardsInformation:Material, + {5204a25a-a0a9-4c67-9a87-58b7c55432aa}, !- Handle + {81c6d30e-ff52-4f2e-9eee-17ff02a15841}; !- Material Name + +OS:StandardsInformation:Material, + {d52a1211-d6c8-422a-b47e-15c3b2d5774a}, !- Handle + {80af6122-eb24-441d-a5a9-55555527f240}; !- Material Name + +OS:StandardsInformation:Material, + {dc3d05bb-2b5c-45ae-af81-0a5386d86af2}, !- Handle + {4244b4dd-5a35-467e-80fe-e38aaefc958b}; !- Material Name + +OS:StandardsInformation:Material, + {9c0c8e6f-3a95-4ac1-9a9a-898148637dc3}, !- Handle + {2fb3c495-68c6-4e2b-895b-04bad2226747}; !- Material Name + +OS:StandardsInformation:Material, + {7cc0d03d-4cb3-4b49-a366-a8ebcfbb4710}, !- Handle + {1223b4ec-675d-45e9-a0dc-8fcc5bd972a6}; !- Material Name + +OS:StandardsInformation:Material, + {755cbc7c-e061-4d62-8363-5a421a7c9c3a}, !- Handle + {e5235694-4438-407b-bd79-b363a41ba3f1}; !- Material Name + +OS:StandardsInformation:Material, + {03dcef3a-95c3-430f-86b1-208c11cedd3e}, !- Handle + {44fab86f-850a-4b6a-b793-fc592eb7c473}; !- Material Name + +OS:StandardsInformation:Material, + {3ad33f44-38a7-4836-be4b-879c1ad7d624}, !- Handle + {82a53b69-bec0-476e-b49a-0f3afa0405dc}; !- Material Name + +OS:StandardsInformation:Material, + {04642e7b-e215-4e06-baa9-00093227f3bb}, !- Handle + {9af2d285-0efd-4227-9d2b-c807fb4d34b6}; !- Material Name + +OS:StandardsInformation:Material, + {23309384-4984-4cd3-b1e0-8da23b0c840a}, !- Handle + {965f3366-dbc1-41f7-a251-ee341c3dff1f}; !- Material Name + +OS:StandardsInformation:Material, + {5a5febf2-f3d1-4af8-89bf-55870505710d}, !- Handle + {35ce1593-a0b3-4768-8801-92a079223853}; !- Material Name + +OS:StandardsInformation:Material, + {0ca04c2c-59ff-48a3-ab56-c1354f23cac4}, !- Handle + {82ac3188-a430-4450-b370-800bea459e25}; !- Material Name + +OS:StandardsInformation:Material, + {a1721d7d-b3c8-44d5-b68c-9b8ac4c030a8}, !- Handle + {3bdc8dcd-01e5-48c7-a401-7524108e3f78}; !- Material Name + +OS:StandardsInformation:Material, + {130f5381-118e-4e7d-92b4-622ff9f50c79}, !- Handle + {18c5487d-a09a-4e64-a041-f5c3c9e81974}; !- Material Name + +OS:StandardsInformation:Material, + {83014c1e-0005-4491-bad2-b397f44f9351}, !- Handle + {cd08bafc-6927-4671-bc05-967e4c35db55}; !- Material Name + +OS:StandardsInformation:Material, + {030760bf-fa29-430c-bdb2-6c88c7f5d4c6}, !- Handle + {9566481e-a051-48ec-b353-0db4053666d4}; !- Material Name + +OS:StandardsInformation:Construction, + {c9e53b39-2efe-4326-85c0-88b88cdd42f2}, !- Handle + {8afb0e32-b868-4aae-9748-e45e6d724ed6}; !- Construction Name + +OS:WeatherFile, + {7fb34c18-923e-4ec7-9eb1-7b1e5713ccb8}, !- Handle + Chicago Ohare Intl Ap, !- City + IL, !- State Province Region + USA, !- Country + TMY3, !- Data Source + 725300, !- WMO Number + 41.98, !- Latitude {deg} + -87.92, !- Longitude {deg} + -6, !- Time Zone {hr} + 201, !- Elevation {m} + file:///private/var/folders/ry/9qrp5ths0g13dj7j20c3c_x93s6z2r/T/OpenStudioApp.T35332/resources/files/USA_IL_Chicago-OHare.Intl.AP.725300_TMY3.epw, !- Url + C254B53F; !- Checksum + +OS:Rendering:Color, + {246c1889-e62b-4a65-9bbe-a0c333537e0a}, !- Handle + Rendering Color 1, !- Name + 95, !- Rendering Red Value + 158, !- Rendering Green Value + 160; !- Rendering Blue Value + +OS:Rendering:Color, + {3baa8fec-a42d-48fb-b854-35aac5d2f82e}, !- Handle + Rendering Color 2, !- Name + 65, !- Rendering Red Value + 105, !- Rendering Green Value + 225; !- Rendering Blue Value + +OS:Rendering:Color, + {70f53569-f093-48ea-93f1-2f7bf55290fd}, !- Handle + Rendering Color 3, !- Name + 119, !- Rendering Red Value + 136, !- Rendering Green Value + 153; !- Rendering Blue Value + +OS:Rendering:Color, + {243c8142-8d16-4009-8ffd-f577e4933f94}, !- Handle + Rendering Color 4, !- Name + 128, !- Rendering Red Value + 0, !- Rendering Green Value + 128; !- Rendering Blue Value + +OS:Rendering:Color, + {8099925b-bbb3-4288-82ad-ca9d72507faf}, !- Handle + Rendering Color 5, !- Name + 0, !- Rendering Red Value + 128, !- Rendering Green Value + 0; !- Rendering Blue Value + +OS:Rendering:Color, + {09fe54ee-333d-4141-b67e-950510581a11}, !- Handle + Rendering Color 6, !- Name + 255, !- Rendering Red Value + 20, !- Rendering Green Value + 147; !- Rendering Blue Value + +OS:RadianceParameters, + {f52af564-7472-4bca-a7e7-e95194391563}, !- Handle + 1, !- Accumulated Rays per Record + 0, !- Direct Threshold + 1, !- Direct Certainty + 1, !- Direct Jitter + 1, !- Direct Pretest + 6, !- Ambient Bounces VMX + 2, !- Ambient Bounces DMX + 4050, !- Ambient Divisions VMX + 512, !- Ambient Divisions DMX + 256, !- Ambient Supersamples + 0.001, !- Limit Weight VMX + 0.001, !- Limit Weight DMX + 500, !- Klems Sampling Density + 146; !- Sky Discretization Resolution + +OS:ProgramControl, + {620e1734-e322-4133-ae08-24e9a0fbd0ad}; !- Handle + +OS:OutputControl:ReportingTolerances, + {812399d7-e60a-4eaf-97e4-222fdfab3762}; !- Handle + +OS:ZoneAirHeatBalanceAlgorithm, + {cbb11039-c273-42cf-8019-1f61a1ae15af}, !- Handle + ThirdOrderBackwardDifference; !- Algorithm + +OS:ZoneAirContaminantBalance, + {e20e6be8-f0b7-460f-a9b0-dcab23160a65}; !- Handle + +OS:ZoneCapacitanceMultiplier:ResearchSpecial, + {5b3ef084-5d47-4408-9cf4-68f1156b7145}, !- Handle + , !- Temperature Capacity Multiplier + , !- Humidity Capacity Multiplier + ; !- Carbon Dioxide Capacity Multiplier + +OS:Rendering:Color, + {08dd4ddb-7106-417c-a4cc-8ae1b6a8e191}, !- Handle + Rendering Color 7, !- Name + 188, !- Rendering Red Value + 143, !- Rendering Green Value + 143; !- Rendering Blue Value + +OS:Rendering:Color, + {6ccecaf3-2f76-48b3-a946-19a63151d25b}, !- Handle + Rendering Color 8, !- Name + 176, !- Rendering Red Value + 224, !- Rendering Green Value + 230; !- Rendering Blue Value + +OS:Rendering:Color, + {a30e7eb2-1254-49a2-b1b5-e1413f2065f3}, !- Handle + Rendering Color 9, !- Name + 255, !- Rendering Red Value + 69, !- Rendering Green Value + 0; !- Rendering Blue Value + +OS:Rendering:Color, + {34d874e9-b837-4a65-bdbd-a5f975bb80f9}, !- Handle + Rendering Color 10, !- Name + 255, !- Rendering Red Value + 0, !- Rendering Green Value + 255; !- Rendering Blue Value + +OS:Rendering:Color, + {ce2d45f0-c2a6-4e6f-83ef-997adcdc7c74}, !- Handle + Rendering Color 11, !- Name + 175, !- Rendering Red Value + 238, !- Rendering Green Value + 238; !- Rendering Blue Value + +OS:Rendering:Color, + {46853a40-696d-4ea9-8312-54ff93c50e86}, !- Handle + Rendering Color 12, !- Name + 255, !- Rendering Red Value + 218, !- Rendering Green Value + 185; !- Rendering Blue Value + +OS:Rendering:Color, + {7a52ddc4-c19e-4f4d-9c71-22692b8d2663}, !- Handle + Rendering Color 13, !- Name + 192, !- Rendering Red Value + 192, !- Rendering Green Value + 192; !- Rendering Blue Value + +OS:Rendering:Color, + {885f01f5-51d3-4835-9b28-91528bd98a7b}, !- Handle + Rendering Color 14, !- Name + 176, !- Rendering Red Value + 196, !- Rendering Green Value + 222; !- Rendering Blue Value + +OS:Rendering:Color, + {82043cf7-cc71-401f-899c-e9cb0ad72a46}, !- Handle + Rendering Color 15, !- Name + 85, !- Rendering Red Value + 107, !- Rendering Green Value + 47; !- Rendering Blue Value + +OS:Rendering:Color, + {28cf615c-acc2-492e-8cc0-57e309e9fff8}, !- Handle + Rendering Color 16, !- Name + 135, !- Rendering Red Value + 206, !- Rendering Green Value + 250; !- Rendering Blue Value + +OS:Rendering:Color, + {7f63c944-1f94-4c1f-9998-1974c22cb14c}, !- Handle + Rendering Color 17, !- Name + 255, !- Rendering Red Value + 165, !- Rendering Green Value + 0; !- Rendering Blue Value + +OS:Rendering:Color, + {7c3bf8f6-a386-4373-b88d-ec9f1edf9d1f}, !- Handle + Rendering Color 18, !- Name + 220, !- Rendering Red Value + 20, !- Rendering Green Value + 60; !- Rendering Blue Value + +OS:Rendering:Color, + {5bf5a1cf-9a10-4a77-b04f-a3b1c02a3c2d}, !- Handle + Rendering Color 19, !- Name + 216, !- Rendering Red Value + 191, !- Rendering Green Value + 216; !- Rendering Blue Value + +OS:Rendering:Color, + {af9c7b95-5abc-41d3-bef8-304fc144a613}, !- Handle + Rendering Color 20, !- Name + 72, !- Rendering Red Value + 61, !- Rendering Green Value + 139; !- Rendering Blue Value + +OS:Rendering:Color, + {34b78464-26b6-4806-8090-1d7cff3d0b35}, !- Handle + Rendering Color 21, !- Name + 255, !- Rendering Red Value + 140, !- Rendering Green Value + 0; !- Rendering Blue Value + +OS:Rendering:Color, + {d4156f49-65c8-463e-80e2-4f97d2093a61}, !- Handle + Rendering Color 22, !- Name + 255, !- Rendering Red Value + 245, !- Rendering Green Value + 238; !- Rendering Blue Value + +OS:Rendering:Color, + {e140f18b-0726-4e7c-9d09-b04c9c6e66ae}, !- Handle + Rendering Color 23, !- Name + 139, !- Rendering Red Value + 0, !- Rendering Green Value + 139; !- Rendering Blue Value + +OS:Rendering:Color, + {cc8346ac-8b59-4ad5-b357-67214d44e4fe}, !- Handle + Rendering Color 24, !- Name + 255, !- Rendering Red Value + 255, !- Rendering Green Value + 224; !- Rendering Blue Value + +OS:Rendering:Color, + {9519cb8f-4106-4dfb-b8b9-5ad2c7e88617}, !- Handle + Rendering Color 25, !- Name + 220, !- Rendering Red Value + 220, !- Rendering Green Value + 220; !- Rendering Blue Value + +OS:Rendering:Color, + {0eb72719-6e78-4c4e-bf1e-fd7da64cb80f}, !- Handle + Rendering Color 26, !- Name + 188, !- Rendering Red Value + 143, !- Rendering Green Value + 143; !- Rendering Blue Value + +OS:Rendering:Color, + {edf75d60-088c-496a-87da-556d74439047}, !- Handle + Rendering Color 27, !- Name + 255, !- Rendering Red Value + 248, !- Rendering Green Value + 220; !- Rendering Blue Value + +OS:Output:EnergyManagementSystem, + {7aee727b-90d9-40de-bc90-48326f434c64}, !- Handle + Output Energy Management System 1, !- Name + Verbose, !- Actuator Availability Dictionary Reporting + None, !- Internal Variable Availability Dictionary Reporting + None; !- EMS Runtime Language Debug Output Level + +OS:Output:Variable, + {4c499353-92b9-42df-b609-6e6a40c766ca}, !- Handle + Perimeter_ZN_4 ZN_Zone Mean Air Temperature, !- Name + Perimeter_ZN_4 ZN, !- Key Value + Zone Mean Air Temperature, !- Variable Name + timestep, !- Reporting Frequency + , !- Schedule Name + True; !- Export To BCVTB + +OS:Output:Variable, + {c564b63d-1ab4-4f02-a69b-0971c2dee702}, !- Handle + Perimeter_ZN_4 ZN_Zone Mean Radiant Temperature, !- Name + Perimeter_ZN_4 ZN, !- Key Value + Zone Mean Radiant Temperature, !- Variable Name + timestep, !- Reporting Frequency + , !- Schedule Name + True; !- Export To BCVTB + +OS:Output:Variable, + {25c2898c-277f-493d-b711-c05c19792f06}, !- Handle + Perimeter_ZN_4 ZN_Zone Air System Sensible Heating Rate, !- Name + Perimeter_ZN_4 ZN, !- Key Value + Zone Air System Sensible Heating Rate, !- Variable Name + timestep, !- Reporting Frequency + , !- Schedule Name + True; !- Export To BCVTB + +OS:Output:Variable, + {d5d04d3e-3195-4288-bc84-dbddd46717ca}, !- Handle + Perimeter_ZN_4 ZN_Zone Air System Sensible Cooling Rate, !- Name + Perimeter_ZN_4 ZN, !- Key Value + Zone Air System Sensible Cooling Rate, !- Variable Name + timestep, !- Reporting Frequency + , !- Schedule Name + True; !- Export To BCVTB + +OS:Output:Variable, + {a91d87ae-775e-4fce-a435-02e4b0b3408d}, !- Handle + Perimeter_ZN_2 ZN_Zone Mean Air Temperature, !- Name + Perimeter_ZN_2 ZN, !- Key Value + Zone Mean Air Temperature, !- Variable Name + timestep, !- Reporting Frequency + , !- Schedule Name + True; !- Export To BCVTB + +OS:Output:Variable, + {889ded85-c421-41ee-bfcf-c8f1a201de3b}, !- Handle + Perimeter_ZN_2 ZN_Zone Mean Radiant Temperature, !- Name + Perimeter_ZN_2 ZN, !- Key Value + Zone Mean Radiant Temperature, !- Variable Name + timestep, !- Reporting Frequency + , !- Schedule Name + True; !- Export To BCVTB + +OS:Output:Variable, + {ad894711-dd6d-4494-84df-5a2eb342a67f}, !- Handle + Perimeter_ZN_2 ZN_Zone Air System Sensible Heating Rate, !- Name + Perimeter_ZN_2 ZN, !- Key Value + Zone Air System Sensible Heating Rate, !- Variable Name + timestep, !- Reporting Frequency + , !- Schedule Name + True; !- Export To BCVTB + +OS:Output:Variable, + {dd80f838-c648-4c0a-9c71-9e2199a60c2a}, !- Handle + Perimeter_ZN_2 ZN_Zone Air System Sensible Cooling Rate, !- Name + Perimeter_ZN_2 ZN, !- Key Value + Zone Air System Sensible Cooling Rate, !- Variable Name + timestep, !- Reporting Frequency + , !- Schedule Name + True; !- Export To BCVTB + +OS:Output:Variable, + {a7d7aec1-0e10-4c52-95e3-38b5c1949aa5}, !- Handle + Perimeter_ZN_3 ZN_Zone Mean Air Temperature, !- Name + Perimeter_ZN_3 ZN, !- Key Value + Zone Mean Air Temperature, !- Variable Name + timestep, !- Reporting Frequency + , !- Schedule Name + True; !- Export To BCVTB + +OS:Output:Variable, + {4c38fb67-3ff7-4a17-81d5-30e0f604bb9c}, !- Handle + Perimeter_ZN_3 ZN_Zone Mean Radiant Temperature, !- Name + Perimeter_ZN_3 ZN, !- Key Value + Zone Mean Radiant Temperature, !- Variable Name + timestep, !- Reporting Frequency + , !- Schedule Name + True; !- Export To BCVTB + +OS:Output:Variable, + {0f3ce572-141b-40c9-834b-83c76c69e5d3}, !- Handle + Perimeter_ZN_3 ZN_Zone Air System Sensible Heating Rate, !- Name + Perimeter_ZN_3 ZN, !- Key Value + Zone Air System Sensible Heating Rate, !- Variable Name + timestep, !- Reporting Frequency + , !- Schedule Name + True; !- Export To BCVTB + +OS:Output:Variable, + {3f9e0363-d479-4fa8-adf1-05f98bea7957}, !- Handle + Perimeter_ZN_3 ZN_Zone Air System Sensible Cooling Rate, !- Name + Perimeter_ZN_3 ZN, !- Key Value + Zone Air System Sensible Cooling Rate, !- Variable Name + timestep, !- Reporting Frequency + , !- Schedule Name + True; !- Export To BCVTB + +OS:Output:Variable, + {bb45f742-3851-4b62-9a5e-7ddc18316965}, !- Handle + Perimeter_ZN_1 ZN_Zone Mean Air Temperature, !- Name + Perimeter_ZN_1 ZN, !- Key Value + Zone Mean Air Temperature, !- Variable Name + timestep, !- Reporting Frequency + , !- Schedule Name + True; !- Export To BCVTB + +OS:Output:Variable, + {07cc6a2a-6cda-48c7-b29c-38d790bc7c1f}, !- Handle + Perimeter_ZN_1 ZN_Zone Mean Radiant Temperature, !- Name + Perimeter_ZN_1 ZN, !- Key Value + Zone Mean Radiant Temperature, !- Variable Name + timestep, !- Reporting Frequency + , !- Schedule Name + True; !- Export To BCVTB + +OS:Output:Variable, + {79b5986d-85e2-480e-aff9-00a47946a577}, !- Handle + Perimeter_ZN_1 ZN_Zone Air System Sensible Heating Rate, !- Name + Perimeter_ZN_1 ZN, !- Key Value + Zone Air System Sensible Heating Rate, !- Variable Name + timestep, !- Reporting Frequency + , !- Schedule Name + True; !- Export To BCVTB + +OS:Output:Variable, + {48b7054e-1800-4b8b-b202-739e050db745}, !- Handle + Perimeter_ZN_1 ZN_Zone Air System Sensible Cooling Rate, !- Name + Perimeter_ZN_1 ZN, !- Key Value + Zone Air System Sensible Cooling Rate, !- Variable Name + timestep, !- Reporting Frequency + , !- Schedule Name + True; !- Export To BCVTB + +OS:Output:Variable, + {d5b99d54-ac30-4c57-aa11-fd3b537e231b}, !- Handle + Core_ZN ZN_Zone Mean Air Temperature, !- Name + Core_ZN ZN, !- Key Value + Zone Mean Air Temperature, !- Variable Name + timestep, !- Reporting Frequency + , !- Schedule Name + True; !- Export To BCVTB + +OS:Output:Variable, + {7ac0a84f-5aff-4022-9a55-9a7b24fb6cc7}, !- Handle + Core_ZN ZN_Zone Mean Radiant Temperature, !- Name + Core_ZN ZN, !- Key Value + Zone Mean Radiant Temperature, !- Variable Name + timestep, !- Reporting Frequency + , !- Schedule Name + True; !- Export To BCVTB + +OS:Output:Variable, + {bcd2185d-8829-4958-a883-83e464674150}, !- Handle + Core_ZN ZN_Zone Air System Sensible Heating Rate, !- Name + Core_ZN ZN, !- Key Value + Zone Air System Sensible Heating Rate, !- Variable Name + timestep, !- Reporting Frequency + , !- Schedule Name + True; !- Export To BCVTB + +OS:Output:Variable, + {bff551c7-463d-47e3-8b9f-f9f904aad8c9}, !- Handle + Core_ZN ZN_Zone Air System Sensible Cooling Rate, !- Name + Core_ZN ZN, !- Key Value + Zone Air System Sensible Cooling Rate, !- Variable Name + timestep, !- Reporting Frequency + , !- Schedule Name + True; !- Export To BCVTB diff --git a/tests/api/models/small_office/weather/USA_OH_Dayton-Wright.Patterson.AFB.745700_TMY3.epw b/tests/api/models/small_office/weather/USA_OH_Dayton-Wright.Patterson.AFB.745700_TMY3.epw new file mode 100644 index 00000000..5f5def8a --- /dev/null +++ b/tests/api/models/small_office/weather/USA_OH_Dayton-Wright.Patterson.AFB.745700_TMY3.epw @@ -0,0 +1,8768 @@ +LOCATION,Dayton Wright Patterson Afb,OH,USA,TMY3,745700,39.83,-84.05,-5.0,250.0 +DESIGN CONDITIONS,1,Climate Design Data 2009 ASHRAE Handbook,,Heating,1,-17,-13,-20.3,0.6,-16.2,-17,0.9,-12.4,11.9,-1.5,10.8,0.2,3.3,260,Cooling,7,11,33,23.6,31.8,23.1,30.2,22.3,25.3,30.6,24.4,29.5,23.6,28.3,3.9,240,23.8,19.2,28.1,22.8,18.1,27.1,22.2,17.4,26.5,78.4,30.5,74.8,29.2,71.6,28.5,701,Extremes,9.6,8.4,7.5,28.5,-20.9,35.1,4.4,1.7,-24.1,36.3,-26.7,37.3,-29.2,38.2,-32.4,39.4 +TYPICAL/EXTREME PERIODS,6,Summer - Week Nearest Max Temperature For Period,Extreme,6/15,6/21,Summer - Week Nearest Average Temperature For Period,Typical,8/24,8/30,Winter - Week Nearest Min Temperature For Period,Extreme,1/27,2/ 2,Winter - Week Nearest Average Temperature For Period,Typical,2/10,2/16,Autumn - Week Nearest Average Temperature For Period,Typical,10/13,10/19,Spring - Week Nearest Average Temperature For Period,Typical,3/29,4/ 4 +GROUND TEMPERATURES,3,.5,,,,4.41,0.55,-0.50,0.41,5.63,11.47,16.97,20.95,22.11,20.24,15.74,10.06,2,,,,7.89,4.27,2.54,2.48,5.24,9.23,13.53,17.22,19.12,18.77,16.23,12.32,4,,,,10.16,7.35,5.62,5.09,6.10,8.43,11.32,14.16,16.07,16.53,15.43,13.15 +HOLIDAYS/DAYLIGHT SAVINGS,No,0,0,0 +COMMENTS 1,Custom/User Format -- WMO#745700; NREL TMY Data Set (2008); Period of Record 1973-2005 (Generally) +COMMENTS 2, -- Ground temps produced with a standard soil diffusivity of 2.3225760E-03 {m**2/day} +DATA PERIODS,1,1,Data,Sunday, 1/ 1,12/31 +2005,1,1,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,12.0,100,99500,0,0,326,0,0,0,0,0,0,0,240,2.1,10,5,4.8,120,9,999999999,200,0.0850,0,88,0.180,999.0,99.0 +2005,1,1,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,11.0,94,99600,0,0,325,0,0,0,0,0,0,0,260,1.0,10,5,4.8,90,9,999999999,200,0.0850,0,88,0.180,999.0,99.0 +2005,1,1,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,11.0,100,99600,0,0,320,0,0,0,0,0,0,0,0,0.0,10,5,0.8,60,9,999999999,200,0.0850,0,88,0.180,999.0,99.0 +2005,1,1,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,11.0,100,99600,0,0,320,0,0,0,0,0,0,0,0,0.0,10,5,1.2,60,9,999999999,200,0.0850,0,88,0.180,999.0,99.0 +2005,1,1,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,10.0,94,99600,0,0,319,0,0,0,0,0,0,0,0,0.0,10,5,1.2,90,9,999999999,200,0.0850,0,88,0.180,999.0,99.0 +2005,1,1,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,10.0,100,99700,0,0,314,0,0,0,0,0,0,0,0,0.0,10,5,0.4,60,9,999999999,200,0.0850,0,88,0.180,999.0,99.0 +2005,1,1,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,10.0,100,99800,0,0,314,0,0,0,0,0,0,0,0,0.0,10,5,0.8,60,9,999999999,200,0.0850,0,88,0.180,999.0,99.0 +2005,1,1,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,9.0,93,99800,0,12,313,0,0,0,0,0,0,0,50,1.0,10,5,0.4,60,9,999999999,209,0.0850,0,88,0.180,999.0,99.0 +2005,1,1,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,9.0,100,99900,113,1415,309,0,0,0,0,0,0,0,330,1.0,10,5,0.4,60,9,999999999,229,0.0850,0,88,0.180,999.0,99.0 +2005,1,1,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,9.0,100,100000,322,1415,309,201,327,126,20567,26059,14595,2690,40,2.1,10,5,0.8,60,9,999999999,240,0.0850,0,88,0.180,999.0,99.0 +2005,1,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,9.0,100,100000,489,1415,309,94,0,94,10859,0,10859,3798,40,2.6,10,5,1.4,90,9,999999999,250,0.0850,0,88,0.180,999.0,99.0 +2005,1,1,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,9.0,100,100000,599,1415,309,416,535,189,42519,51730,20523,3899,50,2.1,10,5,1.6,60,9,999999999,250,0.0850,0,88,0.180,999.0,99.0 +2005,1,1,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.0,9.0,100,99900,644,1415,309,73,0,73,8876,0,8876,3408,80,2.6,10,5,2.8,90,9,999999999,259,0.0850,0,88,0.180,0.0,6.0 +2005,1,1,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,9.0,100,99800,621,1415,309,433,549,191,44399,53519,20787,3966,70,2.1,10,5,3.2,90,9,999999999,270,0.0850,0,88,0.180,999.0,99.0 +2005,1,1,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,9.0,100,99800,533,1415,309,157,29,146,17224,2765,16178,4069,80,2.1,10,5,1.6,60,9,999999999,270,0.0850,0,88,0.180,999.0,99.0 +2005,1,1,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,8.0,100,99900,384,1415,304,88,0,88,9953,0,9953,3247,100,2.6,10,5,0.6,60,9,999999999,279,0.0850,0,88,0.180,999.0,99.0 +2005,1,1,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,8.0,100,99900,186,1415,304,88,217,60,9179,12634,7506,1179,80,1.5,10,5,0.6,60,9,999999999,279,0.0850,0,88,0.180,999.0,99.0 +2005,1,1,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,8.0,100,99900,13,483,304,0,0,0,0,0,0,0,80,1.5,10,5,1.4,60,9,999999999,279,0.0850,0,88,0.180,999.0,99.0 +2005,1,1,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,8.0,100,99900,0,0,304,0,0,0,0,0,0,0,0,0.0,10,5,1.8,60,9,999999999,279,0.0850,0,88,0.180,999.0,99.0 +2005,1,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,8.0,100,99900,0,0,304,0,0,0,0,0,0,0,340,1.0,10,5,1.8,60,9,999999999,279,0.0850,0,88,0.180,999.0,99.0 +2005,1,1,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,8.0,100,99900,0,0,304,0,0,0,0,0,0,0,320,1.0,10,5,0.8,60,9,999999999,290,0.0850,0,88,0.180,999.0,99.0 +2005,1,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,8.0,100,99900,0,0,304,0,0,0,0,0,0,0,280,1.0,10,5,0.4,60,9,999999999,290,0.0850,0,88,0.180,999.0,99.0 +2005,1,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,9.0,100,99800,0,0,309,0,0,0,0,0,0,0,250,0.5,10,5,2.4,60,9,999999999,279,0.0850,0,88,0.180,999.0,99.0 +2005,1,1,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,10.0,100,99800,0,0,314,0,0,0,0,0,0,0,210,0.5,10,5,4.0,180,9,999999999,270,0.0850,0,88,0.180,999.0,99.0 +2005,1,2,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,10.0,100,99700,0,0,317,0,0,0,0,0,0,0,170,1.0,9,6,4.8,2400,9,999999999,270,0.0850,0,88,0.180,1.0,6.0 +2005,1,2,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,10.0,100,99700,0,0,317,0,0,0,0,0,0,0,180,1.0,9,6,4.8,2400,9,999999999,259,0.0850,0,88,0.180,999.0,99.0 +2005,1,2,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,10.0,100,99700,0,0,317,0,0,0,0,0,0,0,190,1.0,9,6,4.8,2400,9,999999999,259,0.0850,0,88,0.180,999.0,99.0 +2005,1,2,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,10.0,100,99600,0,0,317,0,0,0,0,0,0,0,150,2.1,9,6,11.3,3000,9,999999999,259,0.0850,0,88,0.180,999.0,99.0 +2005,1,2,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,10.0,100,99600,0,0,317,0,0,0,0,0,0,0,180,1.0,9,6,11.3,3000,9,999999999,250,0.0850,0,88,0.180,999.0,99.0 +2005,1,2,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,12.0,100,99600,0,0,355,0,0,0,0,0,0,0,200,2.6,10,10,11.3,3000,9,999999999,240,0.0850,0,88,0.180,999.0,99.0 +2005,1,2,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,12.0,100,99600,0,0,355,0,0,0,0,0,0,0,190,2.6,10,10,11.3,3000,9,999999999,229,0.0850,0,88,0.180,999.0,99.0 +2005,1,2,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,12.0,100,99700,0,12,328,0,0,0,0,0,0,0,210,2.6,9,6,11.3,3000,9,999999999,250,0.0850,0,88,0.180,999.0,99.0 +2005,1,2,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,13.0,100,99700,113,1415,334,0,0,0,0,0,0,0,200,3.6,9,6,11.3,2400,9,999999999,259,0.0850,0,88,0.180,999.0,99.0 +2005,1,2,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,14.0,100,99700,323,1415,340,201,327,126,20600,26100,14600,2690,210,4.1,9,6,11.3,2400,9,999999999,279,0.0850,0,88,0.180,999.0,99.0 +2005,1,2,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,14.0,100,99700,490,1415,367,87,0,87,10100,0,10100,3580,190,4.6,10,10,9.7,300,9,999999999,270,0.0850,0,88,0.180,999.0,99.0 +2005,1,2,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,14.0,100,99600,600,1415,367,69,0,69,8400,0,8400,3170,210,4.6,10,10,11.3,240,9,999999999,270,0.0850,0,88,0.180,999.0,99.0 +2005,1,2,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.0,14.0,100,99500,646,1415,367,455,553,201,46600,54300,21700,4230,200,5.1,10,10,8.0,210,9,999999999,270,0.0850,0,88,0.180,1.0,6.0 +2005,1,2,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,14.0,100,99500,624,1415,367,181,54,158,20000,5300,17700,4690,220,4.1,10,10,4.8,180,9,999999999,270,0.0850,0,88,0.180,999.0,99.0 +2005,1,2,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,14.1,14.0,99,99500,536,1415,368,56,0,56,6800,0,6800,2540,220,4.4,10,10,4.8,195,9,999999999,270,0.0850,0,88,0.180,999.0,99.0 +2005,1,2,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.0,14.0,100,99500,387,1415,367,238,424,121,24000,36100,14100,2330,220,4.6,10,10,6.4,210,9,999999999,270,0.0850,0,88,0.180,0.0,3.0 +2005,1,2,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,14.0,100,99500,190,1415,367,93,404,39,9500,25800,6000,680,240,2.6,10,10,6.4,210,9,999999999,270,0.0850,0,88,0.180,999.0,99.0 +2005,1,2,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,14.0,100,99600,14,507,367,0,0,0,0,0,0,0,220,4.6,10,10,6.4,120,9,999999999,270,0.0850,0,88,0.180,999.0,99.0 +2005,1,2,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.0,14.0,100,99600,0,0,367,0,0,0,0,0,0,0,220,3.6,10,10,4.0,120,9,999999999,270,0.0850,0,88,0.180,0.0,6.0 +2005,1,2,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,15.0,100,99600,0,0,373,0,0,0,0,0,0,0,230,4.1,10,10,8.0,180,9,999999999,279,0.0850,0,88,0.180,999.0,99.0 +2005,1,2,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,15.0,100,99600,0,0,373,0,0,0,0,0,0,0,230,3.6,10,10,8.0,180,9,999999999,279,0.0850,0,88,0.180,999.0,99.0 +2005,1,2,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,15.0,100,99700,0,0,373,0,0,0,0,0,0,0,230,3.6,10,10,8.0,180,9,999999999,290,0.0850,0,88,0.180,999.0,99.0 +2005,1,2,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,15.0,100,99700,0,0,373,0,0,0,0,0,0,0,220,4.1,10,10,3.2,180,9,999999999,290,0.0850,0,88,0.180,999.0,99.0 +2005,1,2,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,15.0,100,99700,0,0,373,0,0,0,0,0,0,0,220,3.1,10,10,3.2,180,9,999999999,290,0.0850,0,88,0.180,999.0,99.0 +2005,1,3,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,15.0,100,99600,0,0,373,0,0,0,0,0,0,0,220,3.1,10,10,3.2,120,9,999999999,290,0.0850,0,88,0.180,1.0,6.0 +2005,1,3,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,15.0,100,99500,0,0,373,0,0,0,0,0,0,0,210,3.1,10,10,2.0,120,9,999999999,300,0.0850,0,88,0.180,999.0,99.0 +2005,1,3,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,14.0,100,99500,0,0,367,0,0,0,0,0,0,0,280,2.6,10,10,2.4,120,9,999999999,309,0.0850,0,88,0.180,999.0,99.0 +2005,1,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.0,14.0,100,99500,0,0,367,0,0,0,0,0,0,0,180,2.1,10,10,3.2,270,9,999999999,329,0.0850,0,88,0.180,15.0,3.0 +2005,1,3,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,14.0,100,99400,0,0,367,0,0,0,0,0,0,0,160,2.1,10,10,4.8,330,9,999999999,329,0.0850,0,88,0.180,999.0,99.0 +2005,1,3,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,14.0,100,99400,0,0,367,0,0,0,0,0,0,0,200,2.6,10,10,4.8,360,9,999999999,329,0.0850,0,88,0.180,999.0,99.0 +2005,1,3,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.0,14.0,100,99400,0,0,367,0,0,0,0,0,0,0,140,0.5,10,10,4.8,360,9,999999999,329,0.0850,0,88,0.180,22.0,6.0 +2005,1,3,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,14.0,100,99300,0,12,367,0,0,0,0,0,0,0,190,4.6,10,10,6.4,300,9,999999999,320,0.0850,0,88,0.180,999.0,99.0 +2005,1,3,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,15.0,100,99300,113,1415,373,0,0,0,0,0,0,0,230,7.2,10,10,4.8,360,9,999999999,320,0.0850,0,88,0.180,999.0,99.0 +2005,1,3,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,15.0,100,99400,323,1415,373,201,327,126,20600,26100,14600,2690,220,3.6,10,10,6.4,360,9,999999999,309,0.0850,0,88,0.180,7.0,3.0 +2005,1,3,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,15.0,100,99400,491,1415,373,201,124,158,21700,11800,17600,3610,220,3.6,10,10,6.4,540,9,999999999,300,0.0850,0,88,0.180,999.0,99.0 +2005,1,3,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,15.0,100,99200,602,1415,373,69,0,69,8400,0,8400,3170,210,4.1,10,10,2.0,390,9,999999999,300,0.0850,0,88,0.180,999.0,99.0 +2005,1,3,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,15.0,100,99100,648,1415,373,73,0,73,8900,0,8900,3410,220,4.1,10,10,11.3,330,9,999999999,290,0.0850,0,88,0.180,9.0,6.0 +2005,1,3,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,14.0,100,99000,626,1415,367,70,0,70,8500,0,8500,3250,220,4.1,10,10,11.3,300,9,999999999,300,0.0850,0,88,0.180,999.0,99.0 +2005,1,3,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,14.0,100,98900,539,1415,367,84,0,84,9900,0,9900,3610,210,4.6,10,10,11.3,300,9,999999999,320,0.0850,0,88,0.180,999.0,99.0 +2005,1,3,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,15.0,100,98800,390,1415,373,238,425,120,24100,36300,14100,2310,220,7.2,10,10,6.4,300,9,999999999,329,0.0850,0,88,0.180,2.0,3.0 +2005,1,3,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,15.0,100,98900,193,1415,373,94,400,39,9500,25800,6000,680,220,8.2,10,10,11.3,300,9,999999999,329,0.0850,0,88,0.180,999.0,99.0 +2005,1,3,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,15.0,100,98900,15,531,373,0,0,0,0,0,0,0,230,6.7,10,10,6.4,300,9,999999999,329,0.0850,0,88,0.180,999.0,99.0 +2005,1,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,15.0,100,98900,0,0,373,0,0,0,0,0,0,0,220,7.2,10,10,11.3,300,9,999999999,329,0.0850,0,88,0.180,4.0,6.0 +2005,1,3,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,14.0,100,98900,0,0,367,0,0,0,0,0,0,0,220,6.7,10,10,11.3,300,9,999999999,329,0.0850,0,88,0.180,999.0,99.0 +2005,1,3,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,14.0,100,98900,0,0,367,0,0,0,0,0,0,0,230,6.2,10,10,11.3,210,9,999999999,340,0.0850,0,88,0.180,999.0,99.0 +2005,1,3,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.0,14.0,100,98900,0,0,367,0,0,0,0,0,0,0,230,5.7,10,10,11.3,210,9,999999999,340,0.0850,0,88,0.180,3.0,3.0 +2005,1,3,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,14.0,100,99000,0,0,367,0,0,0,0,0,0,0,260,5.1,10,10,4.8,210,9,999999999,320,0.0850,0,88,0.180,999.0,99.0 +2005,1,3,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,7.0,100,99000,0,0,325,0,0,0,0,0,0,0,360,2.1,10,10,4.8,150,9,999999999,290,0.0850,0,88,0.180,999.0,99.0 +2005,1,4,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.0,6.0,100,99100,0,0,319,0,0,0,0,0,0,0,340,3.1,10,10,3.2,120,9,999999999,270,0.0850,0,88,0.180,1.0,6.0 +2005,1,4,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,5.0,100,99100,0,0,314,0,0,0,0,0,0,0,350,2.6,10,10,6.4,180,9,999999999,259,0.0850,0,88,0.180,999.0,99.0 +2005,1,4,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,5.0,100,99200,0,0,314,0,0,0,0,0,0,0,350,3.6,10,10,6.4,150,9,999999999,250,0.0850,0,88,0.180,999.0,99.0 +2005,1,4,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,5.0,100,99200,0,0,314,0,0,0,0,0,0,0,10,4.1,10,10,6.4,150,9,999999999,250,0.0850,0,88,0.180,0.0,3.0 +2005,1,4,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,4.0,100,99300,0,0,308,0,0,0,0,0,0,0,20,2.1,10,10,4.8,120,9,999999999,240,0.0850,0,88,0.180,999.0,99.0 +2005,1,4,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,4.0,100,99300,0,0,308,0,0,0,0,0,0,0,50,3.1,10,10,4.8,150,9,999999999,229,0.0850,0,88,0.180,999.0,99.0 +2005,1,4,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.0,4.0,100,99300,0,0,308,0,0,0,0,0,0,0,50,3.1,10,10,4.8,150,9,999999999,220,0.0850,0,88,0.180,0.0,6.0 +2005,1,4,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,4.0,100,99400,0,12,308,0,0,0,0,0,0,0,30,2.6,10,10,4.8,150,9,999999999,220,0.0850,0,88,0.180,999.0,99.0 +2005,1,4,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,4.0,100,99400,113,1415,308,0,0,0,0,0,0,0,60,2.6,10,10,6.4,150,9,999999999,220,0.0850,0,88,0.180,999.0,99.0 +2005,1,4,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,5.0,100,99400,324,1415,314,201,536,77,20100,42400,10400,1310,60,2.6,10,10,4.8,150,9,999999999,220,0.0850,0,88,0.180,999.0,99.0 +2005,1,4,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,6.0,100,99500,492,1415,319,328,700,84,34100,64300,11600,1610,80,1.5,10,10,6.4,150,9,999999999,220,0.0850,0,88,0.180,999.0,99.0 +2005,1,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,6.0,100,99500,603,1415,319,416,766,88,43900,74100,12100,1800,30,2.1,10,10,6.4,150,9,999999999,229,0.0850,0,88,0.180,999.0,99.0 +2005,1,4,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,6.0,100,99400,650,1415,319,455,668,147,46600,63900,17000,2850,20,1.5,10,10,6.4,150,9,999999999,229,0.0850,0,88,0.180,999.0,99.0 +2005,1,4,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,6.0,100,99300,629,1415,319,299,209,205,32300,21000,22900,4930,40,2.6,10,10,6.4,150,9,999999999,240,0.0850,0,88,0.180,999.0,99.0 +2005,1,4,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,7.0,100,99200,542,1415,325,157,18,150,17700,1300,17200,5600,90,2.1,10,10,6.4,210,9,999999999,250,0.0850,0,88,0.180,999.0,99.0 +2005,1,4,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,7.0,100,99300,394,1415,325,104,11,101,11700,600,11500,3620,50,1.5,10,10,6.4,210,9,999999999,259,0.0850,0,88,0.180,999.0,99.0 +2005,1,4,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,7.0,100,99300,197,1415,325,94,229,62,9700,13800,7800,1220,60,3.1,10,10,4.8,180,9,999999999,259,0.0850,0,88,0.180,999.0,99.0 +2005,1,4,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,6.0,100,99300,17,554,319,0,0,0,0,0,0,0,90,2.6,10,10,4.8,150,9,999999999,270,0.0850,0,88,0.180,999.0,99.0 +2005,1,4,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,6.0,100,99300,0,0,319,0,0,0,0,0,0,0,50,2.6,10,10,3.2,120,9,999999999,279,0.0850,0,88,0.180,999.0,99.0 +2005,1,4,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,6.0,100,99200,0,0,319,0,0,0,0,0,0,0,50,3.1,10,10,4.8,120,9,999999999,290,0.0850,0,88,0.180,999.0,99.0 +2005,1,4,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,6.0,100,99100,0,0,319,0,0,0,0,0,0,0,70,3.1,10,10,3.2,120,9,999999999,300,0.0850,0,88,0.180,999.0,99.0 +2005,1,4,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.0,6.0,100,99100,0,0,319,0,0,0,0,0,0,0,60,1.5,10,10,3.2,120,9,999999999,320,0.0850,0,88,0.180,2.0,3.0 +2005,1,4,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,6.0,100,99000,0,0,319,0,0,0,0,0,0,0,40,1.5,10,10,3.2,120,9,999999999,309,0.0850,0,88,0.180,999.0,99.0 +2005,1,4,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,6.0,100,98900,0,0,319,0,0,0,0,0,0,0,30,2.6,10,10,3.2,120,9,999999999,309,0.0850,0,88,0.180,999.0,99.0 +2005,1,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.0,6.0,100,98800,0,0,319,0,0,0,0,0,0,0,40,3.6,10,10,6.4,120,9,999999999,309,0.0850,0,88,0.180,7.0,6.0 +2005,1,5,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,5.0,100,98800,0,0,314,0,0,0,0,0,0,0,30,3.6,10,10,3.2,120,9,999999999,320,0.0850,0,88,0.180,999.0,99.0 +2005,1,5,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,5.0,100,98700,0,0,314,0,0,0,0,0,0,0,90,3.6,10,10,3.2,240,9,999999999,320,0.0850,0,88,0.180,999.0,99.0 +2005,1,5,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.0,4.0,100,98800,0,0,308,0,0,0,0,0,0,0,30,3.1,10,10,3.2,150,9,999999999,329,0.0850,0,88,0.180,2.0,3.0 +2005,1,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,4.0,100,98700,0,0,308,0,0,0,0,0,0,0,50,4.1,10,10,3.2,240,9,999999999,320,0.0850,0,88,0.180,999.0,99.0 +2005,1,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,3.0,100,98700,0,0,303,0,0,0,0,0,0,0,40,4.6,10,10,3.2,120,9,999999999,320,0.0850,0,88,0.180,999.0,99.0 +2005,1,5,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.0,2.0,100,98800,0,0,297,0,0,0,0,0,0,0,40,5.1,10,10,4.0,180,9,999999999,320,0.0850,0,88,0.180,11.0,6.0 +2005,1,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,2.0,100,98800,0,12,297,0,0,0,0,0,0,0,50,4.6,10,10,4.8,270,9,999999999,309,0.0850,0,88,0.180,999.0,99.0 +2005,1,5,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,2.0,100,98800,113,1415,297,0,0,0,0,0,0,0,60,7.2,10,10,4.8,270,9,999999999,309,0.0850,0,88,0.180,999.0,99.0 +2005,1,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.0,2.0,100,98800,324,1415,297,100,26,94,10900,2200,10400,2330,60,5.1,10,10,4.8,270,9,999999999,300,0.0850,0,88,0.180,7.0,3.0 +2005,1,5,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,2.0,100,98800,493,1415,297,54,0,54,6500,0,6500,2390,60,5.1,10,10,6.4,360,9,999999999,300,0.0850,0,88,0.180,999.0,99.0 +2005,1,5,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,2.0,100,98800,605,1415,297,69,0,69,8400,0,8400,3180,60,4.1,10,10,4.8,360,9,999999999,309,0.0850,0,88,0.180,999.0,99.0 +2005,1,5,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.0,2.0,100,98600,653,1415,297,388,307,246,40600,31200,26100,5760,90,5.1,10,10,4.8,360,9,999999999,309,0.0850,0,88,0.180,16.0,6.0 +2005,1,5,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,2.0,100,98500,632,1415,297,70,0,70,8500,0,8500,3260,80,4.6,10,10,4.8,300,9,999999999,309,0.0850,0,88,0.180,999.0,99.0 +2005,1,5,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,2.0,100,98300,545,1415,297,62,0,62,7500,0,7500,2790,70,5.1,10,10,3.2,300,9,999999999,309,0.0850,0,88,0.180,999.0,99.0 +2005,1,5,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,2.0,100,98300,397,1415,297,42,0,42,5100,0,5100,1800,80,4.6,10,10,2.4,300,9,999999999,320,0.0850,0,88,0.180,999.0,99.0 +2005,1,5,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,2.0,100,98300,200,1415,297,99,246,64,9900,15400,7800,1200,40,4.6,10,10,6.4,240,9,999999999,320,0.0850,0,88,0.180,999.0,99.0 +2005,1,5,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,2.0,100,98200,18,578,297,0,0,0,0,0,0,0,110,8.7,10,10,8.0,77777,9,999999999,320,0.0850,0,88,0.180,999.0,99.0 +2005,1,5,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.0,2.0,100,98100,0,0,297,0,0,0,0,0,0,0,50,5.1,10,10,4.8,240,9,999999999,320,0.0850,0,88,0.180,14.0,6.0 +2005,1,5,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,2.0,100,98000,0,0,297,0,0,0,0,0,0,0,90,4.1,10,10,4.8,240,9,999999999,320,0.0850,0,88,0.180,999.0,99.0 +2005,1,5,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,1.0,100,98000,0,0,292,0,0,0,0,0,0,0,50,3.6,10,10,9.7,240,9,999999999,320,0.0850,0,88,0.180,999.0,99.0 +2005,1,5,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.0,2.0,100,98000,0,0,297,0,0,0,0,0,0,0,70,3.1,10,10,6.4,240,9,999999999,329,0.0850,0,88,0.180,8.0,3.0 +2005,1,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,1.0,100,97900,0,0,292,0,0,0,0,0,0,0,40,3.6,10,10,11.3,240,9,999999999,320,0.0850,0,88,0.180,999.0,99.0 +2005,1,5,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,1.0,100,97900,0,0,292,0,0,0,0,0,0,0,40,3.1,10,10,9.7,240,9,999999999,309,0.0850,0,88,0.180,999.0,99.0 +2005,1,6,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.0,2.0,100,97700,0,0,297,0,0,0,0,0,0,0,60,3.6,10,10,9.7,210,9,999999999,309,0.0850,0,88,0.180,14.0,6.0 +2005,1,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,2.0,100,97600,0,0,297,0,0,0,0,0,0,0,50,3.1,10,10,9.7,240,9,999999999,309,0.0850,0,88,0.180,999.0,99.0 +2005,1,6,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,1.0,100,97600,0,0,292,0,0,0,0,0,0,0,40,2.1,10,10,9.7,240,9,999999999,309,0.0850,0,88,0.180,999.0,99.0 +2005,1,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.0,1.0,100,97600,0,0,292,0,0,0,0,0,0,0,10,2.1,10,10,9.7,180,9,999999999,309,0.0850,0,88,0.180,6.0,3.0 +2005,1,6,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,1.0,100,97600,0,0,292,0,0,0,0,0,0,0,30,1.5,10,10,6.4,240,9,999999999,290,0.0850,0,88,0.180,999.0,99.0 +2005,1,6,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,2.0,100,97400,0,0,297,0,0,0,0,0,0,0,110,1.0,10,10,6.4,180,9,999999999,279,0.0850,0,88,0.180,999.0,99.0 +2005,1,6,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.0,2.0,100,97400,0,0,297,0,0,0,0,0,0,0,160,1.0,10,10,9.7,120,9,999999999,259,0.0850,0,88,0.180,11.0,6.0 +2005,1,6,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,3.0,100,97500,0,12,303,0,0,0,0,0,0,0,230,4.1,10,10,9.7,120,9,999999999,229,0.0850,0,88,0.180,999.0,99.0 +2005,1,6,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,3.0,100,97700,113,1415,303,0,0,0,0,0,0,0,270,6.7,10,10,11.3,150,9,999999999,200,0.0850,0,88,0.180,999.0,99.0 +2005,1,6,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,3.0,100,97800,325,1415,303,31,0,31,3700,0,3700,1310,260,6.2,10,10,11.3,300,9,999999999,170,0.0850,0,88,0.180,999.0,99.0 +2005,1,6,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,3.0,100,97900,495,1415,303,134,19,127,15100,1300,14600,4760,260,6.2,10,10,11.3,360,9,999999999,150,0.0850,0,88,0.180,999.0,99.0 +2005,1,6,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,3.0,100,97900,607,1415,303,423,589,169,43800,57300,19100,3440,270,7.2,10,10,11.3,360,9,999999999,139,0.0850,0,88,0.180,999.0,99.0 +2005,1,6,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.0,1.0,93,98000,655,1415,296,437,662,129,45100,64000,15400,2580,260,8.7,10,10,11.3,360,9,999999999,120,0.0850,0,88,0.180,0.0,6.0 +2005,1,6,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,1.0,93,98000,635,1415,296,445,555,195,45700,54300,21200,4080,270,6.2,10,10,11.3,360,9,999999999,120,0.0850,0,88,0.180,999.0,99.0 +2005,1,6,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,0.0,87,98100,548,1415,295,62,0,62,7500,0,7500,2800,270,5.1,10,10,11.3,360,9,999999999,110,0.0850,0,88,0.180,999.0,99.0 +2005,1,6,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,0.0,93,98200,401,1415,291,250,437,125,25300,37700,14500,2420,270,4.6,10,10,11.3,300,9,999999999,110,0.0850,0,88,0.180,999.0,99.0 +2005,1,6,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-1.0,86,98300,204,1415,290,100,409,41,10200,27100,6300,720,270,6.7,10,10,11.3,450,9,999999999,100,0.0850,0,88,0.180,999.0,99.0 +2005,1,6,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-2.0,85,98500,19,601,285,0,0,0,0,0,0,0,270,6.7,10,10,11.3,900,9,999999999,89,0.0850,0,88,0.180,999.0,99.0 +2005,1,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-2.0,85,98600,0,0,285,0,0,0,0,0,0,0,260,5.1,10,10,11.3,900,9,999999999,80,0.0850,0,88,0.180,999.0,99.0 +2005,1,6,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-3.0,85,98600,0,0,279,0,0,0,0,0,0,0,260,4.1,10,10,11.3,450,9,999999999,69,0.0850,0,88,0.180,999.0,99.0 +2005,1,6,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-3.0,85,98700,0,0,279,0,0,0,0,0,0,0,260,4.1,10,10,11.3,450,9,999999999,69,0.0850,0,88,0.180,999.0,99.0 +2005,1,6,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-3.0,85,98800,0,0,279,0,0,0,0,0,0,0,250,4.1,10,10,11.3,450,9,999999999,69,0.0850,0,88,0.180,999.0,99.0 +2005,1,6,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-3.0,85,98900,0,0,279,0,0,0,0,0,0,0,250,4.6,10,10,11.3,450,9,999999999,69,0.0850,0,88,0.180,999.0,99.0 +2005,1,6,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-3.0,85,99100,0,0,279,0,0,0,0,0,0,0,260,2.1,10,10,11.3,450,9,999999999,60,0.0850,0,88,0.180,999.0,99.0 +2005,1,7,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-4.0,85,99100,0,0,274,0,0,0,0,0,0,0,250,3.6,10,10,11.3,660,9,999999999,60,0.0850,0,88,0.180,999.0,99.0 +2005,1,7,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-4.0,85,99100,0,0,274,0,0,0,0,0,0,0,250,3.6,10,10,11.3,600,9,999999999,69,0.0850,0,88,0.180,999.0,99.0 +2005,1,7,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-4.0,85,99200,0,0,274,0,0,0,0,0,0,0,290,2.1,10,10,11.3,600,9,999999999,69,0.0850,0,88,0.180,999.0,99.0 +2005,1,7,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-5.0,78,99200,0,0,273,0,0,0,0,0,0,0,260,1.0,10,10,11.3,660,9,999999999,69,0.0850,0,88,0.180,999.0,99.0 +2005,1,7,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-5.0,84,99100,0,0,269,0,0,0,0,0,0,0,60,1.0,10,10,11.3,660,9,999999999,69,0.0850,0,88,0.180,999.0,99.0 +2005,1,7,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-4.0,85,99200,0,0,274,0,0,0,0,0,0,0,150,2.1,10,10,11.3,600,9,999999999,69,0.0850,0,88,0.180,999.0,99.0 +2005,1,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-4.0,85,99300,0,0,274,0,0,0,0,0,0,0,190,1.5,10,10,11.3,600,9,999999999,69,0.0850,0,88,0.180,999.0,99.0 +2005,1,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-4.0,85,99300,0,12,274,0,0,0,0,0,0,0,139,1.3,10,10,14.5,600,9,999999999,80,0.0850,0,88,0.180,999.0,99.0 +2005,1,7,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-4.0,78,99400,114,1415,278,0,0,0,0,0,0,0,120,1.0,10,10,11.3,600,9,999999999,80,0.0850,0,88,0.180,999.0,99.0 +2005,1,7,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-3.0,85,99400,326,1415,279,208,575,75,21000,45700,10400,1290,120,1.0,10,10,11.3,600,9,999999999,89,0.0850,0,88,0.180,999.0,99.0 +2005,1,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,0.1,-2.5,81,99400,496,1415,285,335,718,82,34800,66200,11500,1580,150,2.6,10,10,11.3,600,9,999999999,89,0.0850,0,88,0.180,999.0,99.0 +2005,1,7,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-2.0,79,99400,609,1415,289,423,772,89,43300,73600,11500,1690,180,4.1,10,10,11.3,600,9,999999999,89,0.0850,0,88,0.180,999.0,99.0 +2005,1,7,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-1.0,86,99200,658,1415,290,461,794,90,47600,76800,11700,1800,160,3.1,10,10,11.3,600,9,999999999,100,0.0850,0,88,0.180,999.0,99.0 +2005,1,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,0.0,87,99200,638,1415,295,446,668,143,45600,63800,16700,2760,200,2.6,10,10,11.3,600,9,999999999,110,0.0850,0,88,0.180,999.0,99.0 +2005,1,7,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,0.0,87,99200,552,1415,295,286,283,176,30200,27700,19300,3790,190,2.6,10,10,11.3,600,9,999999999,120,0.0850,0,88,0.180,999.0,99.0 +2005,1,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,0.0,87,99200,405,1415,295,146,86,121,16000,7800,13700,3100,110,2.6,10,10,11.3,600,9,999999999,120,0.0850,0,88,0.180,999.0,99.0 +2005,1,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,0.0,87,99200,208,1415,295,63,58,54,6800,3900,6200,1140,150,3.1,10,10,11.3,600,9,999999999,139,0.0850,0,88,0.180,999.0,99.0 +2005,1,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,0.0,87,99200,21,625,295,0,0,0,0,0,0,0,120,1.5,10,10,11.3,600,9,999999999,150,0.0850,0,88,0.180,999.0,99.0 +2005,1,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,1.0,93,99100,0,0,296,0,0,0,0,0,0,0,120,1.5,10,10,11.3,600,9,999999999,160,0.0850,0,88,0.180,999.0,99.0 +2005,1,7,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,1.0,93,99000,0,0,296,0,0,0,0,0,0,0,140,2.1,10,10,11.3,660,9,999999999,170,0.0850,0,88,0.180,999.0,99.0 +2005,1,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,1.0,93,99000,0,0,296,0,0,0,0,0,0,0,140,1.0,10,10,11.3,750,9,999999999,170,0.0850,0,88,0.180,999.0,99.0 +2005,1,7,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,2.0,100,98900,0,0,297,0,0,0,0,0,0,0,140,2.6,10,10,11.3,750,9,999999999,179,0.0850,0,88,0.180,999.0,99.0 +2005,1,7,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,2.0,100,98800,0,0,297,0,0,0,0,0,0,0,110,2.6,10,10,11.3,750,9,999999999,189,0.0850,0,88,0.180,999.0,99.0 +2005,1,7,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,3.0,100,98600,0,0,303,0,0,0,0,0,0,0,70,2.6,10,10,11.3,300,9,999999999,200,0.0850,0,88,0.180,999.0,99.0 +2005,1,8,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.0,3.0,100,98500,0,0,303,0,0,0,0,0,0,0,60,1.5,10,10,11.3,300,9,999999999,209,0.0850,0,88,0.180,0.0,6.0 +2005,1,8,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,3.0,100,98200,0,0,303,0,0,0,0,0,0,0,50,2.6,10,10,3.2,150,9,999999999,209,0.0850,0,88,0.180,999.0,99.0 +2005,1,8,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,2.0,100,98400,0,0,297,0,0,0,0,0,0,0,30,5.7,10,10,6.4,150,9,999999999,209,0.0850,0,88,0.180,999.0,99.0 +2005,1,8,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.0,2.0,100,98400,0,0,297,0,0,0,0,0,0,0,320,4.1,10,10,6.4,150,9,999999999,209,0.0850,0,88,0.180,9.0,3.0 +2005,1,8,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,1.0,100,98400,0,0,292,0,0,0,0,0,0,0,340,3.6,10,10,8.0,150,9,999999999,179,0.0850,0,88,0.180,999.0,99.0 +2005,1,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,1.0,100,98700,0,0,292,0,0,0,0,0,0,0,320,3.6,10,10,4.8,150,9,999999999,160,0.0850,0,88,0.180,999.0,99.0 +2005,1,8,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.0,1.0,100,98900,0,0,292,0,0,0,0,0,0,0,300,4.6,10,10,11.3,300,9,999999999,129,0.0850,0,88,0.180,11.0,6.0 +2005,1,8,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,0.0,100,99000,0,12,287,0,0,0,0,0,0,0,320,3.6,10,10,11.3,300,9,999999999,120,0.0850,0,88,0.180,999.0,99.0 +2005,1,8,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,0.0,100,99200,115,1415,287,0,0,0,0,0,0,0,290,2.6,10,10,6.4,300,9,999999999,110,0.0850,0,88,0.180,999.0,99.0 +2005,1,8,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,1.0,100,99400,328,1415,292,208,340,129,21300,27300,14900,2760,280,4.1,10,10,6.4,300,9,999999999,100,0.0850,0,88,0.180,999.0,99.0 +2005,1,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,1.0,100,99300,498,1415,292,208,130,162,22400,12400,18100,3710,290,3.1,10,10,6.4,300,9,999999999,110,0.0850,0,88,0.180,999.0,99.0 +2005,1,8,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,0.0,93,99600,612,1415,291,423,529,193,43200,51400,20900,4000,330,2.6,10,10,8.0,300,9,999999999,110,0.0850,0,88,0.180,999.0,99.0 +2005,1,8,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,1.0,93,99600,661,1415,296,91,0,91,10900,0,10900,4170,260,2.6,10,10,9.7,360,9,999999999,110,0.0850,0,88,0.180,999.0,99.0 +2005,1,8,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,1.0,93,99600,641,1415,296,147,0,147,16900,0,16900,6060,260,2.6,10,10,11.3,360,9,999999999,110,0.0850,0,88,0.180,999.0,99.0 +2005,1,8,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,1.0,93,99600,556,1415,296,253,195,176,27400,19100,19900,4110,280,1.5,10,10,11.3,360,9,999999999,110,0.0850,0,88,0.180,999.0,99.0 +2005,1,8,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,1.0,93,99700,409,1415,296,141,81,118,15500,7300,13400,3050,290,2.1,10,10,11.3,360,9,999999999,110,0.0850,0,88,0.180,999.0,99.0 +2005,1,8,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,1.0,93,99800,212,1415,296,106,253,67,10900,16000,8500,1320,290,1.5,10,10,11.3,360,9,999999999,100,0.0850,0,88,0.180,999.0,99.0 +2005,1,8,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,1.0,93,99800,23,648,296,0,0,0,0,0,0,0,280,1.5,10,10,11.3,450,9,999999999,89,0.0850,0,88,0.180,999.0,99.0 +2005,1,8,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,0.0,93,99800,0,0,291,0,0,0,0,0,0,0,290,1.5,10,10,11.3,450,9,999999999,80,0.0850,0,88,0.180,999.0,99.0 +2005,1,8,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,1.0,100,99900,0,0,292,0,0,0,0,0,0,0,270,1.0,10,10,11.3,600,9,999999999,80,0.0850,0,88,0.180,999.0,99.0 +2005,1,8,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,0.0,93,99900,0,0,291,0,0,0,0,0,0,0,300,1.0,10,10,11.3,600,9,999999999,89,0.0850,0,88,0.180,999.0,99.0 +2005,1,8,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,0.0,93,99800,0,0,291,0,0,0,0,0,0,0,330,0.5,10,10,11.3,600,9,999999999,100,0.0850,0,88,0.180,999.0,99.0 +2005,1,8,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,0.0,93,99800,0,0,291,0,0,0,0,0,0,0,0,0.0,10,10,11.3,600,9,999999999,100,0.0850,0,88,0.180,999.0,99.0 +2005,1,8,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,0.0,93,99800,0,0,291,0,0,0,0,0,0,0,0,0.0,10,10,11.3,600,9,999999999,100,0.0850,0,88,0.180,999.0,99.0 +2005,1,9,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,0.0,93,99800,0,0,291,0,0,0,0,0,0,0,0,0.0,10,10,11.3,600,9,999999999,100,0.0850,0,88,0.180,999.0,99.0 +2005,1,9,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,1.0,100,99800,0,0,292,0,0,0,0,0,0,0,0,0.0,10,10,11.3,600,9,999999999,110,0.0850,0,88,0.180,999.0,99.0 +2005,1,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,1.0,100,99800,0,0,292,0,0,0,0,0,0,0,100,0.5,10,10,11.3,540,9,999999999,110,0.0850,0,88,0.180,999.0,99.0 +2005,1,9,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,1.0,100,99700,0,0,292,0,0,0,0,0,0,0,160,1.0,10,10,11.3,540,9,999999999,110,0.0850,0,88,0.180,999.0,99.0 +2005,1,9,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,1.0,93,99700,0,0,296,0,0,0,0,0,0,0,180,1.0,10,10,11.3,540,9,999999999,120,0.0850,0,88,0.180,999.0,99.0 +2005,1,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,1.0,93,99600,0,0,296,0,0,0,0,0,0,0,200,2.6,10,10,11.3,540,9,999999999,120,0.0850,0,88,0.180,999.0,99.0 +2005,1,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,1.0,93,99600,0,0,296,0,0,0,0,0,0,0,200,2.6,10,10,11.3,540,9,999999999,120,0.0850,0,88,0.180,999.0,99.0 +2005,1,9,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,1.0,93,99700,0,12,296,0,0,0,0,0,0,0,200,3.6,10,10,11.3,540,9,999999999,120,0.0850,0,88,0.180,999.0,99.0 +2005,1,9,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,1.0,87,99600,115,1415,301,0,0,0,0,0,0,0,190,3.1,10,10,11.3,600,9,999999999,129,0.0850,0,88,0.180,999.0,99.0 +2005,1,9,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,2.0,87,99600,329,1415,306,208,372,121,21400,30000,14400,2540,210,5.1,10,10,11.3,600,9,999999999,129,0.0850,0,88,0.180,999.0,99.0 +2005,1,9,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,2.0,87,99600,500,1415,291,274,378,140,28200,35000,15800,2740,200,4.1,9,8,11.3,600,9,999999999,129,0.0850,0,88,0.180,999.0,99.0 +2005,1,9,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,2.0,81,99400,614,1415,291,429,656,143,43700,62100,16600,2700,190,5.7,9,7,11.3,600,9,999999999,129,0.0850,0,88,0.180,999.0,99.0 +2005,1,9,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,3.0,81,99300,664,1415,301,468,800,91,48300,77400,11800,1820,200,4.6,9,8,11.3,7500,9,999999999,129,0.0850,0,88,0.180,999.0,99.0 +2005,1,9,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,3.0,71,99200,645,1415,305,452,800,86,46800,77200,11500,1730,210,4.1,9,7,11.3,7500,9,999999999,129,0.0850,0,88,0.180,999.0,99.0 +2005,1,9,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,2.0,66,99100,559,1415,297,377,631,126,38400,58700,15000,2330,190,4.1,5,5,11.3,77777,9,999999999,139,0.0850,0,88,0.180,999.0,99.0 +2005,1,9,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,3.0,66,99000,413,1415,303,167,138,127,18100,12400,14500,2830,190,3.6,5,5,11.3,77777,9,999999999,139,0.0850,0,88,0.180,999.0,99.0 +2005,1,9,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,3.0,71,99000,216,1415,310,68,64,58,7400,4400,6700,1230,170,3.6,9,8,11.3,7500,9,999999999,139,0.0850,0,88,0.180,999.0,99.0 +2005,1,9,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,3.0,81,98900,24,672,290,0,0,0,0,0,0,0,170,3.6,5,5,11.3,77777,9,999999999,150,0.0850,0,88,0.180,999.0,99.0 +2005,1,9,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,3.0,81,98800,0,0,274,0,0,0,0,0,0,0,160,2.6,0,0,11.3,77777,9,999999999,150,0.0850,0,88,0.180,999.0,99.0 +2005,1,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,3.0,87,98700,0,0,270,0,0,0,0,0,0,0,160,1.5,0,0,11.3,77777,9,999999999,150,0.0850,0,88,0.180,999.0,99.0 +2005,1,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,3.0,87,98700,0,0,270,0,0,0,0,0,0,0,210,1.5,0,0,11.3,77777,9,999999999,150,0.0850,0,88,0.180,999.0,99.0 +2005,1,9,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,4.0,81,98700,0,0,279,0,0,0,0,0,0,0,220,3.1,0,0,11.3,77777,9,999999999,150,0.0850,0,88,0.180,999.0,99.0 +2005,1,9,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,4.0,81,98800,0,0,279,0,0,0,0,0,0,0,240,3.6,0,0,11.3,77777,9,999999999,150,0.0850,0,88,0.180,999.0,99.0 +2005,1,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,4.0,93,98700,0,0,287,0,0,0,0,0,0,0,220,2.1,5,5,11.3,77777,9,999999999,150,0.0850,0,88,0.180,999.0,99.0 +2005,1,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,3.0,100,98800,0,0,294,0,0,0,0,0,0,0,240,2.6,9,9,11.3,7500,9,999999999,150,0.0850,0,88,0.180,999.0,99.0 +2005,1,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,5.0,93,98800,0,0,318,0,0,0,0,0,0,0,240,3.1,10,10,11.3,750,9,999999999,139,0.0850,0,88,0.180,999.0,99.0 +2005,1,10,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,5.0,87,98900,0,0,323,0,0,0,0,0,0,0,260,5.1,10,10,11.3,750,9,999999999,129,0.0850,0,88,0.180,999.0,99.0 +2005,1,10,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,5.0,87,99000,0,0,323,0,0,0,0,0,0,0,270,5.1,10,10,11.3,600,9,999999999,120,0.0850,0,88,0.180,999.0,99.0 +2005,1,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,5.0,93,99000,0,0,318,0,0,0,0,0,0,0,280,4.6,10,10,11.3,450,9,999999999,110,0.0850,0,88,0.180,999.0,99.0 +2005,1,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,4.0,87,99100,0,0,317,0,0,0,0,0,0,0,300,4.1,10,10,11.3,360,9,999999999,100,0.0850,0,88,0.180,999.0,99.0 +2005,1,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,3.0,100,99200,0,0,303,0,0,0,0,0,0,0,330,5.7,10,10,11.3,300,9,999999999,89,0.0850,0,88,0.180,999.0,99.0 +2005,1,10,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,2.0,100,99300,0,35,297,0,0,0,0,0,0,0,320,4.1,10,10,11.3,270,9,999999999,89,0.0850,0,88,0.180,999.0,99.0 +2005,1,10,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,1.0,93,99400,117,1415,296,0,0,0,0,0,0,0,320,4.1,10,10,11.3,300,9,999999999,100,0.0850,0,88,0.180,999.0,99.0 +2005,1,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.0,2.0,93,99500,330,1415,302,131,85,111,14300,7300,12600,2650,310,3.6,10,10,11.3,300,9,999999999,110,0.0850,0,88,0.180,0.0,3.0 +2005,1,10,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,1.0,87,99500,502,1415,301,221,111,181,24100,10600,20300,4630,330,4.1,10,10,11.3,300,9,999999999,120,0.0850,0,88,0.180,999.0,99.0 +2005,1,10,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,2.0,93,99500,617,1415,302,278,122,224,30400,12000,25100,6080,300,3.1,10,10,11.3,450,9,999999999,129,0.0850,0,88,0.180,999.0,99.0 +2005,1,10,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.0,1.0,87,99400,667,1415,301,304,120,247,33300,12000,27600,6860,300,1.0,10,10,11.3,450,9,999999999,129,0.0850,0,88,0.180,0.0,6.0 +2005,1,10,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,2.0,87,99300,648,1415,306,293,125,236,32200,12400,26400,6520,250,1.5,10,10,11.3,390,9,999999999,139,0.0850,0,88,0.180,999.0,99.0 +2005,1,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,2.0,87,99300,563,1415,306,248,118,200,27100,11500,22500,5310,220,0.5,10,10,11.3,390,9,999999999,139,0.0850,0,88,0.180,999.0,99.0 +2005,1,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,3.0,87,99300,417,1415,311,168,98,139,18400,9000,15700,3480,230,1.5,10,10,11.3,450,9,999999999,139,0.0850,0,88,0.180,999.0,99.0 +2005,1,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,3.0,93,99200,220,1415,307,73,64,63,7900,4500,7200,1340,0,0.0,10,10,11.3,450,9,999999999,139,0.0850,0,88,0.180,999.0,99.0 +2005,1,10,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,3.0,93,99200,26,696,307,0,0,0,0,0,0,0,40,1.5,10,10,11.3,450,9,999999999,139,0.0850,0,88,0.180,999.0,99.0 +2005,1,10,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,3.0,93,99200,0,0,307,0,0,0,0,0,0,0,70,1.5,10,10,11.3,450,9,999999999,139,0.0850,0,88,0.180,999.0,99.0 +2005,1,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,3.0,93,99200,0,0,307,0,0,0,0,0,0,0,70,1.0,10,10,11.3,750,9,999999999,150,0.0850,0,88,0.180,999.0,99.0 +2005,1,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,4.0,93,99100,0,0,313,0,0,0,0,0,0,0,100,1.0,10,10,11.3,660,9,999999999,150,0.0850,0,88,0.180,999.0,99.0 +2005,1,10,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,4.0,93,99100,0,0,313,0,0,0,0,0,0,0,130,3.1,10,10,11.3,600,9,999999999,160,0.0850,0,88,0.180,999.0,99.0 +2005,1,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,4.0,93,99000,0,0,313,0,0,0,0,0,0,0,110,3.1,10,10,11.3,600,9,999999999,170,0.0850,0,88,0.180,999.0,99.0 +2005,1,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,4.0,93,99000,0,0,313,0,0,0,0,0,0,0,110,3.1,10,10,11.3,540,9,999999999,189,0.0850,0,88,0.180,999.0,99.0 +2005,1,11,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,4.0,93,98900,0,0,313,0,0,0,0,0,0,0,110,3.1,10,10,11.3,540,9,999999999,200,0.0860,0,88,0.180,999.0,99.0 +2005,1,11,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,5.0,100,98800,0,0,314,0,0,0,0,0,0,0,130,3.1,10,10,11.3,450,9,999999999,220,0.0860,0,88,0.180,999.0,99.0 +2005,1,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,5.0,100,98700,0,0,314,0,0,0,0,0,0,0,120,2.6,10,10,11.3,450,9,999999999,240,0.0860,0,88,0.180,999.0,99.0 +2005,1,11,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,5.0,100,98700,0,0,314,0,0,0,0,0,0,0,80,2.6,10,10,6.4,240,9,999999999,259,0.0860,0,88,0.180,1.0,3.0 +2005,1,11,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,5.0,100,98500,0,0,314,0,0,0,0,0,0,0,110,2.6,10,10,4.0,180,9,999999999,270,0.0860,0,88,0.180,999.0,99.0 +2005,1,11,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,5.0,100,98500,0,0,314,0,0,0,0,0,0,0,130,2.6,10,10,3.2,180,9,999999999,279,0.0860,0,88,0.180,999.0,99.0 +2005,1,11,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.0,6.0,100,98400,0,0,319,0,0,0,0,0,0,0,130,2.1,10,10,2.4,120,9,999999999,279,0.0860,0,88,0.180,2.0,6.0 +2005,1,11,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,5.0,100,98400,0,35,314,0,0,0,0,0,0,0,40,3.1,10,10,1.6,120,9,999999999,290,0.0860,0,88,0.180,999.0,99.0 +2005,1,11,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,6.0,100,98400,118,1414,319,0,0,0,0,0,0,0,70,1.0,10,10,1.6,120,9,999999999,290,0.0860,0,88,0.180,999.0,99.0 +2005,1,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.0,6.0,100,98500,332,1414,319,131,85,111,14300,7300,12600,2660,50,1.0,10,10,2.4,120,9,999999999,300,0.0860,0,88,0.180,2.0,3.0 +2005,1,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,6.1,6.0,99,98400,504,1414,320,221,105,183,24100,10000,20500,4670,20,1.8,10,10,2.4,120,9,999999999,290,0.0860,0,88,0.180,999.0,99.0 +2005,1,11,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,6.0,100,98400,619,1414,319,284,128,228,31100,12600,25600,6180,360,2.6,10,10,3.2,120,9,999999999,290,0.0860,0,88,0.180,999.0,99.0 +2005,1,11,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.0,7.0,100,98200,670,1414,325,310,132,247,33300,13300,27000,6050,70,2.1,10,10,3.2,120,9,999999999,290,0.0860,0,88,0.180,6.0,6.0 +2005,1,11,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,8.0,100,98200,652,1414,331,299,131,239,32200,13200,26100,5810,130,1.0,10,10,3.2,210,9,999999999,300,0.0860,0,88,0.180,999.0,99.0 +2005,1,11,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,10.0,100,98200,567,1414,343,248,118,200,27100,11500,22500,5330,110,1.0,10,10,8.0,1050,9,999999999,300,0.0860,0,88,0.180,999.0,99.0 +2005,1,11,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,10.0,100,98200,421,1414,343,173,104,142,18600,9400,15800,3170,0,0.0,10,10,11.3,300,9,999999999,309,0.0860,0,88,0.180,14.0,3.0 +2005,1,11,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,10.0,100,98200,225,1414,343,73,64,63,7900,4500,7200,1340,350,1.5,10,10,4.8,300,9,999999999,309,0.0860,0,88,0.180,999.0,99.0 +2005,1,11,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,9.0,100,98200,28,719,337,0,0,0,0,0,0,0,350,2.1,10,10,3.2,180,9,999999999,309,0.0860,0,88,0.180,999.0,99.0 +2005,1,11,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.0,11.0,100,98200,0,0,349,0,0,0,0,0,0,0,160,1.5,10,10,4.0,450,9,999999999,309,0.0860,0,88,0.180,19.0,6.0 +2005,1,11,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,10.0,94,98200,0,0,347,0,0,0,0,0,0,0,150,1.5,10,10,4.8,360,9,999999999,309,0.0860,0,88,0.180,999.0,99.0 +2005,1,11,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,12.0,100,98200,0,0,355,0,0,0,0,0,0,0,140,2.6,10,10,4.8,450,9,999999999,300,0.0860,0,88,0.180,999.0,99.0 +2005,1,11,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,12.0,100,98200,0,0,355,0,0,0,0,0,0,0,190,1.0,10,10,9.7,210,9,999999999,300,0.0860,0,88,0.180,999.0,99.0 +2005,1,11,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,12.0,100,98200,0,0,355,0,0,0,0,0,0,0,0,0.0,10,10,9.7,240,9,999999999,279,0.0860,0,88,0.180,999.0,99.0 +2005,1,11,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,15.0,100,98200,0,0,373,0,0,0,0,0,0,0,220,5.7,10,10,11.3,420,9,999999999,270,0.0860,0,88,0.180,999.0,99.0 +2005,1,12,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.0,16.0,100,98200,0,0,380,0,0,0,0,0,0,0,220,4.6,10,10,11.3,360,9,999999999,250,0.0860,0,88,0.180,10.0,6.0 +2005,1,12,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,16.0,100,98200,0,0,380,0,0,0,0,0,0,0,220,5.1,10,10,11.3,390,9,999999999,259,0.0860,0,88,0.180,999.0,99.0 +2005,1,12,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,16.0,100,98200,0,0,380,0,0,0,0,0,0,0,220,3.6,10,10,11.3,450,9,999999999,259,0.0860,0,88,0.180,999.0,99.0 +2005,1,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.0,16.0,100,98100,0,0,380,0,0,0,0,0,0,0,200,5.1,10,10,6.4,630,9,999999999,270,0.0860,0,88,0.180,0.0,3.0 +2005,1,12,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,15.0,100,98100,0,0,373,0,0,0,0,0,0,0,200,3.6,10,10,11.3,750,9,999999999,270,0.0860,0,88,0.180,999.0,99.0 +2005,1,12,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,15.0,94,98100,0,0,379,0,0,0,0,0,0,0,280,4.1,10,10,11.3,570,9,999999999,279,0.0860,0,88,0.180,999.0,99.0 +2005,1,12,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.0,16.0,100,98100,0,0,380,0,0,0,0,0,0,0,200,5.7,10,10,11.3,540,9,999999999,279,0.0860,0,88,0.180,12.0,6.0 +2005,1,12,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,16.0,100,98100,0,35,380,0,0,0,0,0,0,0,200,6.2,10,10,11.3,630,9,999999999,270,0.0860,0,88,0.180,999.0,99.0 +2005,1,12,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,16.0,100,98200,119,1414,380,0,0,0,0,0,0,0,200,6.7,10,10,11.3,480,9,999999999,259,0.0860,0,88,0.180,999.0,99.0 +2005,1,12,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,17.0,100,98200,334,1414,386,138,85,118,15100,7400,13300,2780,200,5.1,10,10,11.3,600,9,999999999,250,0.0860,0,88,0.180,999.0,99.0 +2005,1,12,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,17.0,94,98300,506,1414,392,221,105,183,24100,10000,20500,4690,210,6.2,10,10,11.3,600,9,999999999,250,0.0860,0,88,0.180,999.0,99.0 +2005,1,12,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,17.0,94,98300,622,1414,392,284,128,228,30600,12800,24900,5470,210,6.2,10,10,11.3,600,9,999999999,250,0.0860,0,88,0.180,999.0,99.0 +2005,1,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,16.0,88,98200,673,1414,390,310,126,249,33900,12600,27900,6950,210,7.7,10,10,11.3,750,9,999999999,250,0.0860,0,88,0.180,999.0,99.0 +2005,1,12,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,15.0,83,98100,656,1414,355,300,125,241,32800,12400,27000,6670,210,7.7,9,4,11.3,1200,9,999999999,259,0.0860,0,88,0.180,999.0,99.0 +2005,1,12,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,15.0,78,98100,571,1414,360,254,124,203,27200,12200,22300,4770,200,7.7,9,4,11.3,1200,9,999999999,259,0.0860,0,88,0.180,999.0,99.0 +2005,1,12,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,15.0,83,98100,426,1414,355,174,98,144,19000,9000,16300,3600,200,8.2,9,4,11.3,1200,9,999999999,270,0.0860,0,88,0.180,999.0,99.0 +2005,1,12,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,15.0,83,98200,229,1414,389,78,75,66,8500,5300,7600,1400,210,6.2,10,10,11.3,1200,9,999999999,259,0.0860,0,88,0.180,999.0,99.0 +2005,1,12,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,14.0,82,98100,30,743,383,0,0,0,0,0,0,0,200,7.2,10,10,11.3,1200,9,999999999,250,0.0860,0,88,0.180,999.0,99.0 +2005,1,12,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,14.0,82,98200,0,0,383,0,0,0,0,0,0,0,200,7.2,10,10,11.3,1800,9,999999999,240,0.0860,0,88,0.180,999.0,99.0 +2005,1,12,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,14.0,82,98100,0,0,383,0,0,0,0,0,0,0,200,7.2,10,10,11.3,1800,9,999999999,229,0.0860,0,88,0.180,999.0,99.0 +2005,1,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,14.0,82,98100,0,0,383,0,0,0,0,0,0,0,200,6.7,10,10,11.3,2400,9,999999999,229,0.0860,0,88,0.180,999.0,99.0 +2005,1,12,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,13.0,77,98100,0,0,381,0,0,0,0,0,0,0,200,7.7,10,10,11.3,2400,9,999999999,220,0.0860,0,88,0.180,999.0,99.0 +2005,1,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,13.0,77,98100,0,0,381,0,0,0,0,0,0,0,210,7.2,10,10,11.3,2400,9,999999999,229,0.0860,0,88,0.180,999.0,99.0 +2005,1,12,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,12.0,72,98000,0,0,380,0,0,0,0,0,0,0,190,5.7,10,10,11.3,2400,9,999999999,240,0.0860,0,88,0.180,999.0,99.0 +2005,1,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,12.0,77,97900,0,0,344,0,0,0,0,0,0,0,180,6.2,5,5,11.3,77777,9,999999999,250,0.0860,0,88,0.180,999.0,99.0 +2005,1,13,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,12.0,72,97900,0,0,370,0,0,0,0,0,0,0,190,6.2,9,9,11.3,2700,9,999999999,259,0.0860,0,88,0.180,999.0,99.0 +2005,1,13,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,12.0,72,97900,0,0,370,0,0,0,0,0,0,0,180,5.7,9,9,11.3,2700,9,999999999,279,0.0860,0,88,0.180,999.0,99.0 +2005,1,13,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,13.0,88,97800,0,0,371,0,0,0,0,0,0,0,190,6.2,10,10,9.7,1500,9,999999999,290,0.0860,0,88,0.180,1.0,3.0 +2005,1,13,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,13.0,88,97800,0,0,361,0,0,0,0,0,0,0,170,7.2,9,9,11.3,2400,9,999999999,259,0.0860,0,88,0.180,999.0,99.0 +2005,1,13,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,12.0,82,97500,0,0,340,0,0,0,0,0,0,0,180,6.7,5,5,11.3,77777,9,999999999,240,0.0860,0,88,0.180,999.0,99.0 +2005,1,13,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.0,11.0,72,97500,0,0,363,0,0,0,0,0,0,0,190,7.2,9,9,11.3,7500,9,999999999,209,0.0860,0,88,0.180,1.0,6.0 +2005,1,13,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,11.0,64,97500,0,59,374,0,0,0,0,0,0,0,190,9.8,9,9,11.3,2400,9,999999999,229,0.0860,0,88,0.180,999.0,99.0 +2005,1,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,11.0,64,97400,120,1414,374,0,0,0,0,0,0,0,200,10.3,9,9,11.3,7500,9,999999999,250,0.0860,0,88,0.180,999.0,99.0 +2005,1,13,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,12.0,68,97500,336,1414,385,138,85,118,15100,7400,13300,2790,190,10.3,10,10,11.3,1410,9,999999999,270,0.0860,0,88,0.180,999.0,99.0 +2005,1,13,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,12.0,64,97400,509,1414,391,221,105,183,24200,10000,20500,4700,200,9.8,10,10,11.3,1230,9,999999999,279,0.0860,0,88,0.180,999.0,99.0 +2005,1,13,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,13.0,68,97300,625,1414,392,284,128,227,30500,12800,24900,5460,190,8.7,10,10,11.3,900,9,999999999,290,0.0860,0,88,0.180,999.0,99.0 +2005,1,13,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.0,14.0,100,97200,677,1414,367,310,126,249,33900,12600,27900,6970,280,6.7,10,10,6.4,330,9,999999999,300,0.0860,0,88,0.180,0.0,6.0 +2005,1,13,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,14.0,100,97400,660,1414,367,300,125,241,32800,12500,27000,6700,230,4.6,10,10,9.7,870,9,999999999,290,0.0860,0,88,0.180,999.0,99.0 +2005,1,13,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,14.0,100,97400,576,1414,367,254,118,206,27800,11500,23100,5490,230,5.1,10,10,9.7,360,9,999999999,279,0.0860,0,88,0.180,999.0,99.0 +2005,1,13,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.0,14.0,100,97500,430,1414,367,174,98,144,19000,9000,16300,3620,230,5.1,10,10,8.0,360,9,999999999,270,0.0860,0,88,0.180,5.0,3.0 +2005,1,13,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,13.0,100,97500,234,1414,361,79,70,67,8500,5000,7700,1430,210,4.6,10,10,4.8,360,9,999999999,270,0.0860,0,88,0.180,999.0,99.0 +2005,1,13,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,13.0,100,97600,33,766,361,0,0,0,0,0,0,0,230,5.1,10,10,4.8,360,9,999999999,279,0.0860,0,88,0.180,999.0,99.0 +2005,1,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,5.0,100,97800,0,0,314,0,0,0,0,0,0,0,350,7.2,10,10,8.0,600,9,999999999,290,0.0860,0,88,0.180,15.0,6.0 +2005,1,13,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,4.0,100,97900,0,0,308,0,0,0,0,0,0,0,340,6.2,10,10,9.7,750,9,999999999,250,0.0860,0,88,0.180,999.0,99.0 +2005,1,13,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,2.0,100,98200,0,0,297,0,0,0,0,0,0,0,350,7.7,10,10,9.7,360,9,999999999,209,0.0860,0,88,0.180,999.0,99.0 +2005,1,13,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.0,2.0,100,98300,0,0,297,0,0,0,0,0,0,0,340,7.2,10,10,11.3,360,9,999999999,179,0.0860,0,88,0.180,5.0,3.0 +2005,1,13,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,2.0,100,98600,0,0,297,0,0,0,0,0,0,0,330,5.1,10,10,11.3,360,9,999999999,150,0.0860,0,88,0.180,999.0,99.0 +2005,1,13,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,2.0,100,98600,0,0,297,0,0,0,0,0,0,0,340,3.6,10,10,11.3,750,9,999999999,129,0.0860,0,88,0.180,999.0,99.0 +2005,1,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.0,1.0,93,98800,0,0,296,0,0,0,0,0,0,0,320,6.2,10,10,11.3,450,9,999999999,100,0.0860,0,88,0.180,5.0,6.0 +2005,1,14,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,0.0,87,98900,0,0,295,0,0,0,0,0,0,0,320,5.7,10,10,11.3,450,9,999999999,89,0.0860,0,88,0.180,999.0,99.0 +2005,1,14,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-1.0,86,99100,0,0,290,0,0,0,0,0,0,0,320,5.7,10,10,11.3,690,9,999999999,69,0.0860,0,88,0.180,999.0,99.0 +2005,1,14,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-2.0,85,99200,0,0,285,0,0,0,0,0,0,0,330,5.1,10,10,11.3,780,9,999999999,50,0.0860,0,88,0.180,999.0,99.0 +2005,1,14,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-3.0,78,99300,0,0,284,0,0,0,0,0,0,0,310,5.7,10,10,11.3,720,9,999999999,50,0.0860,0,88,0.180,999.0,99.0 +2005,1,14,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-3.0,78,99500,0,0,284,0,0,0,0,0,0,0,310,6.2,10,10,11.3,720,9,999999999,50,0.0860,0,88,0.180,999.0,99.0 +2005,1,14,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.0,-4.0,78,99600,0,0,278,0,0,0,0,0,0,0,330,5.7,10,10,11.3,660,9,999999999,50,0.0860,0,88,0.180,21.0,24.0 +2005,1,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-5.0,78,99700,0,59,253,0,0,0,0,0,0,0,310,4.6,9,6,11.3,720,9,999999999,50,0.0860,0,88,0.180,999.0,99.0 +2005,1,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-5.0,78,99900,122,1414,253,0,0,0,0,0,0,0,340,5.1,9,6,11.3,720,9,999999999,50,0.0860,0,88,0.180,999.0,99.0 +2005,1,14,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-6.0,71,100000,338,1414,252,138,85,118,15100,7400,13300,2800,320,4.6,9,6,11.3,750,9,999999999,40,0.0860,0,88,0.180,999.0,99.0 +2005,1,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-6.0,71,100200,512,1414,252,227,111,187,24900,10600,21000,4790,330,4.6,9,6,11.3,750,9,999999999,40,0.0860,0,88,0.180,999.0,99.0 +2005,1,14,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-6.0,71,100100,629,1414,252,284,122,230,31100,12100,25800,6280,350,4.6,9,6,11.3,840,9,999999999,40,0.0860,0,88,0.180,999.0,99.0 +2005,1,14,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-6.0,66,100100,680,1414,252,316,132,252,34000,13400,27500,6210,340,5.7,5,4,11.3,77777,9,999999999,40,0.0860,0,88,0.180,999.0,99.0 +2005,1,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-7.0,65,100100,664,1414,247,306,131,244,32900,13200,26700,5960,310,3.6,5,4,11.3,77777,9,999999999,40,0.0860,0,88,0.180,999.0,99.0 +2005,1,14,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-7.0,65,100200,580,1414,247,260,130,206,27900,12800,22600,4860,320,3.6,5,4,11.3,77777,9,999999999,40,0.0860,0,88,0.180,999.0,99.0 +2005,1,14,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-7.0,65,100100,435,1414,247,179,104,147,19300,9500,16300,3300,310,3.6,5,4,11.3,77777,9,999999999,50,0.0860,0,88,0.180,999.0,99.0 +2005,1,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-7.0,71,100300,238,1414,244,79,64,68,8500,4600,7700,1450,320,4.1,5,4,11.3,77777,9,999999999,50,0.0860,0,88,0.180,999.0,99.0 +2005,1,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.0,-7.0,77,100400,35,790,233,0,0,0,0,0,0,0,330,3.6,3,1,11.3,77777,9,999999999,50,0.0860,0,88,0.180,999.0,99.0 +2005,1,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.0,-8.0,77,100400,0,0,224,0,0,0,0,0,0,0,310,2.6,0,0,11.3,77777,9,999999999,50,0.0860,0,88,0.180,999.0,99.0 +2005,1,14,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.0,-7.0,84,100500,0,0,225,0,0,0,0,0,0,0,330,2.1,0,0,11.3,77777,9,999999999,50,0.0860,0,88,0.180,999.0,99.0 +2005,1,14,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-7.0,-8.0,92,100500,0,0,217,0,0,0,0,0,0,0,360,2.1,0,0,11.3,77777,9,999999999,50,0.0860,0,88,0.180,999.0,99.0 +2005,1,14,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.0,-7.0,84,100600,0,0,225,0,0,0,0,0,0,0,360,2.6,0,0,11.3,77777,9,999999999,50,0.0860,0,88,0.180,999.0,99.0 +2005,1,14,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.0,-7.0,92,100600,0,0,222,0,0,0,0,0,0,0,10,2.6,0,0,11.3,77777,9,999999999,60,0.0860,0,88,0.180,999.0,99.0 +2005,1,14,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.0,-7.0,92,100600,0,0,226,0,0,0,0,0,0,0,360,2.6,3,1,11.3,77777,9,999999999,60,0.0860,0,88,0.180,999.0,99.0 +2005,1,15,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.0,-7.0,92,100600,0,0,231,0,0,0,0,0,0,0,350,2.6,3,3,11.3,77777,9,999999999,60,0.0860,0,88,0.180,999.0,99.0 +2005,1,15,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.0,-7.0,92,100600,0,0,229,0,0,0,0,0,0,0,20,3.1,2,2,11.3,77777,9,999999999,60,0.0860,0,88,0.180,999.0,99.0 +2005,1,15,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.0,-8.0,84,100700,0,0,230,0,0,0,0,0,0,0,360,2.6,3,3,11.3,77777,9,999999999,60,0.0860,0,88,0.180,999.0,99.0 +2005,1,15,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.0,-8.0,84,100700,0,0,228,0,0,0,0,0,0,0,10,1.5,2,2,11.3,77777,9,999999999,60,0.0860,0,88,0.180,999.0,99.0 +2005,1,15,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-7.0,-8.0,92,100800,0,0,239,0,0,0,0,0,0,0,340,2.1,9,8,11.3,2100,9,999999999,60,0.0860,0,88,0.180,999.0,99.0 +2005,1,15,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-7.0,-8.0,92,100800,0,0,230,0,0,0,0,0,0,0,350,3.1,5,5,11.3,77777,9,999999999,60,0.0860,0,88,0.180,999.0,99.0 +2005,1,15,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-7.0,-8.0,92,100900,0,0,230,0,0,0,0,0,0,0,360,2.1,5,5,11.3,77777,9,999999999,60,0.0860,0,88,0.180,999.0,99.0 +2005,1,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-7.0,-8.0,92,100900,0,59,235,0,0,0,0,0,0,0,350,3.1,9,7,11.3,1800,9,999999999,69,0.0860,0,88,0.180,999.0,99.0 +2005,1,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.0,-8.0,84,100800,124,1414,242,0,0,0,0,0,0,0,70,3.6,9,8,11.3,1800,9,999999999,69,0.0860,0,88,0.180,999.0,99.0 +2005,1,15,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.0,-8.0,77,100900,340,1414,259,138,78,119,15100,6800,13400,2820,50,1.5,10,10,11.3,1800,9,999999999,80,0.0860,0,88,0.180,999.0,99.0 +2005,1,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.0,-8.0,77,101000,515,1414,246,227,111,187,24900,10600,21000,4800,100,1.5,9,8,11.3,1800,9,999999999,80,0.0860,0,88,0.180,999.0,99.0 +2005,1,15,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.0,-7.0,77,100900,632,1414,247,290,128,233,31800,12700,26100,6360,160,1.0,9,7,11.3,1800,9,999999999,80,0.0860,0,88,0.180,999.0,99.0 +2005,1,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-8.0,65,100800,684,1414,254,316,126,255,34600,12600,28500,7150,200,1.5,9,8,11.3,1800,9,999999999,80,0.0860,0,88,0.180,999.0,99.0 +2005,1,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-7.0,71,100800,668,1414,251,306,125,246,33400,12500,27500,6850,230,2.1,9,7,11.3,1800,9,999999999,80,0.0860,0,88,0.180,999.0,99.0 +2005,1,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-7.0,65,100700,584,1414,258,260,124,208,27900,12200,22800,4920,270,1.5,9,8,11.3,1800,9,999999999,80,0.0860,0,88,0.180,999.0,99.0 +2005,1,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-7.0,65,100700,439,1414,254,180,98,149,19600,9100,16800,3750,310,2.6,9,7,11.3,7500,9,999999999,80,0.0860,0,88,0.180,999.0,99.0 +2005,1,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-7.0,71,100700,243,1414,255,84,75,71,9100,5500,8100,1510,360,4.1,9,8,11.3,2700,9,999999999,80,0.0860,0,88,0.180,999.0,99.0 +2005,1,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-7.0,71,100700,37,813,267,0,0,0,0,0,0,0,350,3.6,10,10,11.3,2700,9,999999999,80,0.0860,0,88,0.180,999.0,99.0 +2005,1,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.0,-7.0,77,100800,0,0,263,0,0,0,0,0,0,0,360,2.6,10,10,11.3,1800,9,999999999,69,0.0860,0,88,0.180,999.0,99.0 +2005,1,15,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.0,-7.0,77,100700,0,0,263,0,0,0,0,0,0,0,360,3.6,10,10,11.3,1800,9,999999999,80,0.0860,0,88,0.180,999.0,99.0 +2005,1,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.0,-7.0,77,100700,0,0,263,0,0,0,0,0,0,0,360,3.6,10,10,11.3,1800,9,999999999,80,0.0860,0,88,0.180,999.0,99.0 +2005,1,15,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.0,-9.0,65,100600,0,0,261,0,0,0,0,0,0,0,40,3.6,10,10,11.3,2700,9,999999999,80,0.0860,0,88,0.180,999.0,99.0 +2005,1,15,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.0,-9.0,65,100600,0,0,261,0,0,0,0,0,0,0,10,2.6,10,10,11.3,1800,9,999999999,80,0.0860,0,88,0.180,999.0,99.0 +2005,1,15,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.0,-7.0,77,100600,0,0,263,0,0,0,0,0,0,0,10,3.1,10,10,9.7,960,9,999999999,80,0.0860,0,88,0.180,999.0,99.0 +2005,1,16,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.0,-6.0,92,100500,0,0,260,0,0,0,0,0,0,0,30,4.6,10,10,9.7,990,9,999999999,80,0.0860,0,88,0.180,0.0,6.0 +2005,1,16,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.0,-6.0,100,100500,0,0,257,0,0,0,0,0,0,0,40,3.1,10,10,9.7,720,9,999999999,80,0.0860,0,88,0.180,999.0,99.0 +2005,1,16,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.0,-6.0,100,100400,0,0,257,0,0,0,0,0,0,0,50,4.1,10,10,4.8,720,9,999999999,80,0.0860,0,88,0.180,999.0,99.0 +2005,1,16,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.0,-6.0,100,100400,0,0,257,0,0,0,0,0,0,0,50,4.1,10,10,4.8,540,9,999999999,80,0.0860,0,88,0.180,0.0,3.0 +2005,1,16,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.0,-6.0,100,100300,0,0,257,0,0,0,0,0,0,0,30,4.1,10,10,4.8,450,9,999999999,80,0.0860,0,88,0.180,999.0,99.0 +2005,1,16,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-7.0,-7.0,100,100300,0,0,252,0,0,0,0,0,0,0,10,4.6,10,10,4.8,510,9,999999999,80,0.0860,0,88,0.180,999.0,99.0 +2005,1,16,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-7.0,-7.0,100,100200,0,0,252,0,0,0,0,0,0,0,20,5.1,10,10,3.2,450,9,999999999,69,0.0860,0,88,0.180,0.0,6.0 +2005,1,16,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-7.0,-7.0,100,100200,0,82,252,0,0,0,0,0,0,0,10,3.6,10,10,3.2,720,9,999999999,69,0.0860,0,88,0.180,999.0,99.0 +2005,1,16,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-7.0,-7.0,100,100200,126,1414,252,0,0,0,0,0,0,0,10,4.6,10,10,2.4,450,9,999999999,69,0.0860,0,88,0.180,999.0,99.0 +2005,1,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-8.0,-8.0,100,100200,343,1414,247,138,78,119,15100,6800,13400,2830,360,4.1,10,10,2.8,450,9,999999999,69,0.0860,0,88,0.180,0.0,3.0 +2005,1,16,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-8.0,-8.0,100,100200,517,1414,247,227,105,189,24900,10100,21200,4860,360,5.7,10,10,2.8,450,9,999999999,60,0.0860,0,88,0.180,999.0,99.0 +2005,1,16,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-7.0,-8.0,92,100200,635,1414,244,290,128,233,31800,12700,26100,6380,360,6.2,9,9,4.4,450,9,999999999,60,0.0860,0,88,0.180,999.0,99.0 +2005,1,16,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-7.0,-8.0,92,100100,688,1414,244,316,126,254,34600,12600,28400,7150,360,6.2,9,9,11.3,750,9,999999999,50,0.0860,0,88,0.180,0.0,6.0 +2005,1,16,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.0,-9.0,77,100100,672,1414,247,306,125,246,33500,12500,27500,6880,360,6.7,9,9,11.3,600,9,999999999,50,0.0860,0,88,0.180,999.0,99.0 +2005,1,16,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-7.0,-9.0,84,100100,589,1414,243,260,118,211,28500,11600,23700,5670,340,6.7,9,9,11.3,600,9,999999999,50,0.0860,0,88,0.180,999.0,99.0 +2005,1,16,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-7.0,-10.0,77,100100,444,1414,242,185,116,149,20000,10700,16600,3350,340,4.1,9,9,11.3,600,9,999999999,40,0.0860,0,88,0.180,0.0,3.0 +2005,1,16,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-8.0,-10.0,84,100200,247,1414,239,84,70,72,9100,5100,8200,1540,340,4.6,9,9,11.3,450,9,999999999,40,0.0860,0,88,0.180,999.0,99.0 +2005,1,16,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-9.0,-11.0,84,100300,40,836,234,3,30,3,500,1400,500,60,350,4.1,9,9,11.3,450,9,999999999,40,0.0860,0,88,0.180,999.0,99.0 +2005,1,16,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-9.0,-12.0,77,100300,0,0,233,0,0,0,0,0,0,0,320,3.6,9,9,11.3,960,9,999999999,30,0.0860,0,88,0.180,0.0,6.0 +2005,1,16,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-9.0,-12.0,77,100400,0,0,233,0,0,0,0,0,0,0,320,3.6,9,9,11.3,960,9,999999999,30,0.0860,0,88,0.180,999.0,99.0 +2005,1,16,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-10.0,-13.0,76,100400,0,0,229,0,0,0,0,0,0,0,340,3.1,9,9,11.3,960,9,999999999,30,0.0860,0,88,0.180,999.0,99.0 +2005,1,16,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-10.0,-12.0,84,100500,0,0,230,0,0,0,0,0,0,0,320,2.6,9,9,11.3,960,9,999999999,20,0.0860,0,88,0.180,999.0,99.0 +2005,1,16,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-10.0,-12.0,84,100500,0,0,230,0,0,0,0,0,0,0,320,3.6,9,9,11.3,960,9,999999999,20,0.0860,0,88,0.180,999.0,99.0 +2005,1,16,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-12.0,-12.0,100,100500,0,0,210,0,0,0,0,0,0,0,300,2.6,5,5,11.3,77777,9,999999999,20,0.0860,0,88,0.180,999.0,99.0 +2005,1,17,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-13.0,-13.0,100,100500,0,0,203,0,0,0,0,0,0,0,300,3.1,5,3,11.3,77777,9,999999999,20,0.0870,0,88,0.180,999.0,99.0 +2005,1,17,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-13.0,-13.0,100,100500,0,0,201,0,0,0,0,0,0,0,290,2.6,5,2,11.3,77777,9,999999999,20,0.0870,0,88,0.180,999.0,99.0 +2005,1,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-14.0,-14.0,100,100500,0,0,191,0,0,0,0,0,0,0,280,2.6,0,0,11.3,77777,9,999999999,20,0.0870,0,88,0.180,999.0,99.0 +2005,1,17,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-14.0,-15.0,91,100500,0,0,190,0,0,0,0,0,0,0,290,3.6,0,0,11.3,77777,9,999999999,20,0.0870,0,88,0.180,999.0,99.0 +2005,1,17,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-15.0,-15.0,100,100500,0,0,187,0,0,0,0,0,0,0,270,2.6,0,0,11.3,77777,9,999999999,20,0.0870,0,88,0.180,999.0,99.0 +2005,1,17,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-15.0,-16.0,91,100500,0,0,187,0,0,0,0,0,0,0,270,3.1,0,0,11.3,77777,9,999999999,20,0.0870,0,88,0.180,999.0,99.0 +2005,1,17,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-15.0,-15.0,100,100500,0,0,187,0,0,0,0,0,0,0,280,3.1,0,0,11.3,77777,9,999999999,20,0.0870,0,88,0.180,0.0,24.0 +2005,1,17,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-17.0,-17.0,100,100500,0,82,180,0,0,0,0,0,0,0,280,1.5,0,0,11.3,77777,9,999999999,20,0.0870,0,88,0.180,999.0,99.0 +2005,1,17,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-15.0,-15.0,100,100600,128,1414,187,0,0,0,0,0,0,0,220,1.5,0,0,11.3,77777,9,999999999,20,0.0870,0,88,0.180,999.0,99.0 +2005,1,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-13.0,-15.0,83,100600,346,1414,193,191,325,111,19900,26900,13300,2260,300,3.1,0,0,11.3,77777,9,999999999,20,0.0870,0,88,0.180,999.0,99.0 +2005,1,17,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-12.0,-14.0,83,100600,521,1414,197,194,80,164,21200,7600,18400,4400,320,3.6,0,0,11.3,77777,9,999999999,20,0.0870,0,88,0.180,999.0,99.0 +2005,1,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-10.0,-14.0,70,100600,639,1414,207,442,589,174,45900,57900,19600,3590,310,4.1,2,1,11.3,77777,9,999999999,20,0.0870,0,88,0.180,999.0,99.0 +2005,1,17,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-10.0,-14.0,70,100500,692,1414,207,492,813,93,51000,79200,12100,1900,310,5.1,3,1,11.3,77777,9,999999999,20,0.0870,0,88,0.180,999.0,99.0 +2005,1,17,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-9.0,-14.0,64,100500,677,1414,210,476,621,178,49800,61700,20100,3730,310,6.7,2,1,11.3,77777,9,999999999,20,0.0870,0,88,0.180,999.0,99.0 +2005,1,17,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-9.0,-14.0,64,100500,594,1414,210,164,41,147,18100,4000,16400,4310,310,6.2,3,1,11.3,77777,9,999999999,20,0.0870,0,88,0.180,999.0,99.0 +2005,1,17,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-10.0,-16.0,58,100500,449,1414,205,286,515,122,29500,46300,14700,2340,300,6.2,2,1,11.3,77777,9,999999999,20,0.0870,0,88,0.180,999.0,99.0 +2005,1,17,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-11.0,-15.0,70,100600,252,1414,203,134,493,46,13800,36000,7300,830,280,5.7,3,1,11.3,77777,9,999999999,20,0.0870,0,88,0.180,999.0,99.0 +2005,1,17,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-11.0,-15.0,70,100600,43,860,203,5,68,3,800,3700,600,80,290,5.1,2,1,11.3,77777,9,999999999,20,0.0870,0,88,0.180,999.0,99.0 +2005,1,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-12.0,-14.0,83,100700,0,0,201,0,0,0,0,0,0,0,280,4.6,3,1,11.3,77777,9,999999999,20,0.0870,0,88,0.180,999.0,99.0 +2005,1,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-12.0,-14.0,83,100800,0,0,197,0,0,0,0,0,0,0,290,3.6,0,0,11.3,77777,9,999999999,20,0.0870,0,88,0.180,999.0,99.0 +2005,1,17,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-13.0,-14.0,91,100800,0,0,194,0,0,0,0,0,0,0,290,3.1,0,0,11.3,77777,9,999999999,20,0.0870,0,88,0.180,999.0,99.0 +2005,1,17,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-13.0,-15.0,83,100800,0,0,193,0,0,0,0,0,0,0,310,3.1,0,0,11.3,77777,9,999999999,20,0.0870,0,88,0.180,999.0,99.0 +2005,1,17,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-14.0,-15.0,91,100800,0,0,194,0,0,0,0,0,0,0,310,2.6,3,1,11.3,77777,9,999999999,20,0.0870,0,88,0.180,999.0,99.0 +2005,1,17,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-14.0,-15.0,91,100800,0,0,194,0,0,0,0,0,0,0,320,3.1,2,1,11.3,77777,9,999999999,20,0.0870,0,88,0.180,999.0,99.0 +2005,1,18,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-15.0,-15.0,100,100900,0,0,193,0,0,0,0,0,0,0,320,2.1,2,2,11.3,77777,9,999999999,20,0.0870,0,88,0.180,999.0,99.0 +2005,1,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-15.0,-15.0,100,100900,0,0,187,0,0,0,0,0,0,0,330,2.6,0,0,11.3,77777,9,999999999,20,0.0870,0,88,0.180,999.0,99.0 +2005,1,18,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-16.0,-16.0,100,100900,0,0,184,0,0,0,0,0,0,0,330,2.6,0,0,11.3,77777,9,999999999,20,0.0870,0,88,0.180,999.0,99.0 +2005,1,18,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-16.0,-16.0,100,100900,0,0,192,0,0,0,0,0,0,0,320,1.5,3,3,11.3,77777,9,999999999,20,0.0870,0,88,0.180,999.0,99.0 +2005,1,18,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-17.0,-17.0,100,100900,0,0,186,0,0,0,0,0,0,0,340,1.0,2,2,11.3,77777,9,999999999,20,0.0870,0,88,0.180,999.0,99.0 +2005,1,18,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-17.0,-17.0,100,100900,0,0,188,0,0,0,0,0,0,0,0,0.0,3,3,11.3,77777,9,999999999,20,0.0870,0,88,0.180,999.0,99.0 +2005,1,18,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-18.0,-18.0,100,100900,0,0,182,0,0,0,0,0,0,0,70,1.5,2,2,11.3,77777,9,999999999,20,0.0870,0,88,0.180,999.0,99.0 +2005,1,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-18.0,-18.0,100,101000,0,106,187,0,0,0,0,0,0,0,70,0.5,5,5,11.3,77777,9,999999999,20,0.0870,0,88,0.180,999.0,99.0 +2005,1,18,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-16.0,-17.0,91,101100,130,1413,194,0,0,0,0,0,0,0,120,1.0,5,5,11.3,77777,9,999999999,20,0.0870,0,88,0.180,999.0,99.0 +2005,1,18,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-15.0,-16.0,91,101100,348,1413,198,221,578,78,22400,47100,10700,1360,0,0.0,5,5,11.3,77777,9,999999999,20,0.0870,0,88,0.180,999.0,99.0 +2005,1,18,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-12.0,-15.0,76,101100,524,1413,203,347,692,89,36000,64600,12000,1720,0,0.0,2,2,11.3,77777,9,999999999,40,0.0870,0,88,0.180,999.0,99.0 +2005,1,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-11.0,-16.0,63,101000,643,1413,207,454,802,88,46900,77300,11600,1750,170,2.1,3,3,11.3,77777,9,999999999,60,0.0870,0,88,0.180,999.0,99.0 +2005,1,18,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-10.0,-16.0,58,100900,696,1413,213,499,825,91,51900,80500,12000,1890,190,3.1,5,5,11.3,77777,9,999999999,80,0.0870,0,88,0.180,999.0,99.0 +2005,1,18,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-9.0,-15.0,58,100700,681,1413,218,482,812,89,50100,79000,11800,1840,180,4.6,5,5,11.3,77777,9,999999999,80,0.0870,0,88,0.180,999.0,99.0 +2005,1,18,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-9.0,-15.0,58,100600,598,1413,230,407,763,83,41900,72700,11000,1620,160,4.1,9,9,11.3,7500,9,999999999,69,0.0870,0,88,0.180,999.0,99.0 +2005,1,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-8.0,-14.0,58,100600,454,1413,222,292,695,68,30600,62900,10300,1310,210,3.6,5,5,11.3,77777,9,999999999,69,0.0870,0,88,0.180,999.0,99.0 +2005,1,18,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-9.0,-15.0,58,100400,257,1413,212,139,516,45,14300,38100,7300,810,160,3.6,2,2,11.3,77777,9,999999999,60,0.0870,0,88,0.180,999.0,99.0 +2005,1,18,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-10.0,-15.0,64,100300,45,883,214,6,108,4,1100,6200,700,140,160,3.1,5,5,11.3,77777,9,999999999,50,0.0870,0,88,0.180,999.0,99.0 +2005,1,18,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-10.0,-14.0,70,100300,0,0,228,0,0,0,0,0,0,0,170,2.1,9,9,11.3,7500,9,999999999,40,0.0870,0,88,0.180,999.0,99.0 +2005,1,18,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-10.0,-13.0,76,100100,0,0,235,0,0,0,0,0,0,0,160,3.1,10,10,11.3,7500,9,999999999,50,0.0870,0,88,0.180,999.0,99.0 +2005,1,18,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-9.0,-13.0,70,100000,0,0,239,0,0,0,0,0,0,0,170,4.1,10,10,11.3,7500,9,999999999,50,0.0870,0,88,0.180,999.0,99.0 +2005,1,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-8.0,-12.0,70,99800,0,0,243,0,0,0,0,0,0,0,170,3.6,10,10,11.3,4800,9,999999999,60,0.0870,0,88,0.180,999.0,99.0 +2005,1,18,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-7.0,-12.0,64,99600,0,0,247,0,0,0,0,0,0,0,180,4.6,10,10,11.3,2400,9,999999999,69,0.0870,0,88,0.180,999.0,99.0 +2005,1,18,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-7.0,-12.0,64,99400,0,0,247,0,0,0,0,0,0,0,190,5.1,10,10,11.3,2400,9,999999999,80,0.0870,0,88,0.180,999.0,99.0 +2005,1,19,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.0,-12.0,59,99200,0,0,244,0,0,0,0,0,0,0,180,6.2,10,9,11.3,1500,9,999999999,100,0.0870,0,88,0.180,999.0,99.0 +2005,1,19,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.0,-10.0,65,99100,0,0,250,0,0,0,0,0,0,0,210,5.7,10,9,11.3,1500,9,999999999,100,0.0870,0,88,0.180,999.0,99.0 +2005,1,19,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.0,-8.0,77,99000,0,0,251,0,0,0,0,0,0,0,230,8.2,10,9,4.8,900,9,999999999,110,0.0870,0,88,0.180,999.0,99.0 +2005,1,19,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.0,-6.0,100,98800,0,0,250,0,0,0,0,0,0,0,210,6.7,10,9,3.2,900,9,999999999,120,0.0870,0,88,0.180,0.0,3.0 +2005,1,19,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.0,-5.0,100,98700,0,0,254,0,0,0,0,0,0,0,210,7.7,10,9,4.8,810,9,999999999,120,0.0870,0,88,0.180,999.0,99.0 +2005,1,19,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.0,-5.0,92,98600,0,0,258,0,0,0,0,0,0,0,220,8.7,10,9,4.8,810,9,999999999,129,0.0870,0,88,0.180,999.0,99.0 +2005,1,19,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.0,-5.0,92,98500,0,0,258,0,0,0,0,0,0,0,220,7.7,10,9,6.4,690,9,999999999,129,0.0870,0,88,0.180,0.0,6.0 +2005,1,19,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-5.0,78,98500,1,106,266,0,0,0,0,0,0,0,230,8.2,10,9,11.3,900,9,999999999,129,0.0870,0,88,0.180,999.0,99.0 +2005,1,19,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-4.0,85,98500,132,1413,267,32,0,32,3600,0,3600,1050,240,7.7,10,9,9.7,900,9,999999999,120,0.0870,0,88,0.180,999.0,99.0 +2005,1,19,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.0,-3.0,85,98500,351,1413,272,91,0,91,10200,0,10200,3180,230,7.2,10,9,11.3,750,9,999999999,120,0.0870,0,88,0.180,0.0,3.0 +2005,1,19,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-2.0,85,98500,527,1413,277,60,0,60,7200,0,7200,2680,250,8.2,10,9,11.3,750,9,999999999,110,0.0870,0,88,0.180,999.0,99.0 +2005,1,19,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-2.0,79,98500,647,1413,281,82,0,82,9900,0,9900,3780,260,6.7,10,9,11.3,600,9,999999999,110,0.0870,0,88,0.180,999.0,99.0 +2005,1,19,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.0,-1.0,86,98500,701,1413,282,79,0,79,9600,0,9600,3760,260,6.2,10,9,11.3,600,9,999999999,110,0.0870,0,88,0.180,0.0,6.0 +2005,1,19,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,1.0,100,98500,686,1413,284,77,0,77,9400,0,9400,3650,260,4.6,10,9,8.0,360,9,999999999,100,0.0870,0,88,0.180,999.0,99.0 +2005,1,19,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,1.0,100,98500,603,1413,284,68,0,68,8300,0,8300,3130,270,5.1,10,9,4.8,360,9,999999999,100,0.0870,0,88,0.180,999.0,99.0 +2005,1,19,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,1.0,100,98600,459,1413,284,85,0,85,9800,0,9800,3420,280,4.6,10,9,3.2,360,9,999999999,100,0.0870,0,88,0.180,999.0,99.0 +2005,1,19,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,1.0,100,98600,262,1413,284,72,33,66,7900,2600,7400,1640,260,3.1,10,9,3.2,210,9,999999999,89,0.0870,0,88,0.180,999.0,99.0 +2005,1,19,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,1.0,100,98700,48,930,284,7,52,6,1000,2400,800,120,280,3.6,10,9,4.8,270,9,999999999,80,0.0870,0,88,0.180,999.0,99.0 +2005,1,19,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,0.0,100,98800,0,0,279,0,0,0,0,0,0,0,320,2.6,10,9,11.3,600,9,999999999,69,0.0870,0,88,0.180,0.0,6.0 +2005,1,19,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,0.0,100,98800,0,0,279,0,0,0,0,0,0,0,320,2.6,10,9,11.3,600,9,999999999,69,0.0870,0,88,0.180,999.0,99.0 +2005,1,19,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,0.0,100,98900,0,0,279,0,0,0,0,0,0,0,320,2.6,10,9,11.3,600,9,999999999,69,0.0870,0,88,0.180,999.0,99.0 +2005,1,19,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-2.0,92,98900,0,0,273,0,0,0,0,0,0,0,340,3.6,10,9,11.3,480,9,999999999,60,0.0870,0,88,0.180,999.0,99.0 +2005,1,19,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-2.0,92,98900,0,0,273,0,0,0,0,0,0,0,340,2.1,10,9,11.3,480,9,999999999,69,0.0870,0,88,0.180,999.0,99.0 +2005,1,19,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-2.0,100,99000,0,0,269,0,0,0,0,0,0,0,320,3.1,10,9,11.3,300,9,999999999,69,0.0870,0,88,0.180,999.0,99.0 +2005,1,20,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-3.0,92,98900,0,0,275,0,0,0,0,0,0,0,310,2.6,10,10,11.3,450,9,999999999,69,0.0870,0,88,0.180,999.0,99.0 +2005,1,20,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-3.0,92,98900,0,0,275,0,0,0,0,0,0,0,330,2.6,10,10,11.3,480,9,999999999,80,0.0870,0,88,0.180,999.0,99.0 +2005,1,20,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-3.0,92,98800,0,0,275,0,0,0,0,0,0,0,40,1.0,10,10,11.3,720,9,999999999,80,0.0870,0,88,0.180,999.0,99.0 +2005,1,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-4.0,85,98900,0,0,274,0,0,0,0,0,0,0,350,3.1,10,10,11.3,750,9,999999999,80,0.0870,0,88,0.180,999.0,99.0 +2005,1,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-4.0,92,98900,0,0,270,0,0,0,0,0,0,0,20,2.6,10,10,11.3,540,9,999999999,100,0.0870,0,88,0.180,999.0,99.0 +2005,1,20,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-5.0,84,98800,0,0,269,0,0,0,0,0,0,0,360,2.6,10,10,11.3,570,9,999999999,110,0.0870,0,88,0.180,999.0,99.0 +2005,1,20,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.0,-5.0,92,98800,0,0,265,0,0,0,0,0,0,0,60,1.5,10,10,6.4,540,9,999999999,120,0.0870,0,88,0.180,0.0,6.0 +2005,1,20,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.0,-5.0,100,98800,1,130,261,0,0,0,0,0,0,0,50,1.0,10,10,2.4,750,9,999999999,120,0.0870,0,88,0.180,999.0,99.0 +2005,1,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.0,-4.0,100,98800,135,1413,266,47,0,47,5100,0,5100,1320,60,1.5,10,10,2.4,600,9,999999999,129,0.0870,0,88,0.180,999.0,99.0 +2005,1,20,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.0,-4.0,100,98800,354,1413,266,68,0,68,7800,0,7800,2590,100,1.5,10,10,2.4,600,9,999999999,129,0.0870,0,88,0.180,0.0,3.0 +2005,1,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.0,-4.0,100,98800,531,1413,266,73,0,73,8700,0,8700,3190,90,2.6,10,10,1.6,450,9,999999999,129,0.0870,0,88,0.180,999.0,99.0 +2005,1,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.0,-4.0,100,98700,651,1413,266,126,0,126,14700,0,14700,5420,70,2.6,10,10,1.2,450,9,999999999,129,0.0870,0,88,0.180,999.0,99.0 +2005,1,20,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.0,-4.0,100,98600,705,1413,266,97,0,97,11700,0,11700,4510,90,2.1,10,10,0.8,300,9,999999999,129,0.0870,0,88,0.180,2.0,6.0 +2005,1,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.0,-4.0,100,98600,691,1413,266,94,0,94,11300,0,11300,4360,80,3.1,10,10,0.8,270,9,999999999,129,0.0870,0,88,0.180,999.0,99.0 +2005,1,20,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-3.0,100,98500,608,1413,271,125,0,125,14500,0,14500,5220,110,2.6,10,10,0.8,270,9,999999999,139,0.0870,0,88,0.180,999.0,99.0 +2005,1,20,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.0,-3.0,100,98500,464,1413,271,160,70,137,17500,6500,15400,3630,90,2.6,10,10,1.2,360,9,999999999,139,0.0870,0,88,0.180,1.0,3.0 +2005,1,20,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-3.0,100,98400,267,1413,271,41,0,41,4800,0,4800,1580,70,3.6,10,10,2.0,240,9,999999999,139,0.0870,0,88,0.180,999.0,99.0 +2005,1,20,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.0,-4.0,100,98500,51,954,266,8,41,7,1100,1600,1000,120,70,4.1,10,10,1.2,330,9,999999999,129,0.0870,0,88,0.180,999.0,99.0 +2005,1,20,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.0,-4.0,100,98500,0,0,266,0,0,0,0,0,0,0,50,3.6,10,10,1.6,330,9,999999999,129,0.0870,0,88,0.180,2.0,6.0 +2005,1,20,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.0,-5.0,100,98600,0,0,261,0,0,0,0,0,0,0,50,3.1,10,10,1.6,210,9,999999999,129,0.0870,0,88,0.180,999.0,99.0 +2005,1,20,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.0,-5.0,100,98600,0,0,261,0,0,0,0,0,0,0,50,4.6,10,10,1.4,210,9,999999999,120,0.0870,0,88,0.180,999.0,99.0 +2005,1,20,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.0,-5.0,100,98600,0,0,261,0,0,0,0,0,0,0,50,4.1,10,10,2.0,450,9,999999999,120,0.0870,0,88,0.180,1.0,3.0 +2005,1,20,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.0,-5.0,100,98700,0,0,261,0,0,0,0,0,0,0,50,4.6,10,10,3.2,450,9,999999999,110,0.0870,0,88,0.180,999.0,99.0 +2005,1,20,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-7.0,-7.0,100,98600,0,0,231,0,0,0,0,0,0,0,50,4.1,5,5,11.3,77777,9,999999999,100,0.0870,0,88,0.180,999.0,99.0 +2005,1,21,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-7.0,-7.0,100,98700,0,0,252,0,0,0,0,0,0,0,50,5.1,10,10,11.3,2100,9,999999999,89,0.0880,0,88,0.180,1.0,6.0 +2005,1,21,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-8.0,-9.0,92,98700,0,0,220,0,0,0,0,0,0,0,50,5.7,2,2,11.3,77777,9,999999999,80,0.0880,0,88,0.180,999.0,99.0 +2005,1,21,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-9.0,-10.0,92,98800,0,0,218,0,0,0,0,0,0,0,40,4.1,3,3,11.3,77777,9,999999999,80,0.0880,0,88,0.180,999.0,99.0 +2005,1,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-9.0,-10.0,92,98800,0,0,216,0,0,0,0,0,0,0,50,4.6,2,2,11.3,77777,9,999999999,69,0.0880,0,88,0.180,999.0,99.0 +2005,1,21,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-10.0,-11.0,91,98800,0,0,214,0,0,0,0,0,0,0,50,3.6,3,3,11.3,77777,9,999999999,60,0.0880,0,88,0.180,999.0,99.0 +2005,1,21,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-10.0,-11.0,91,98900,0,0,212,0,0,0,0,0,0,0,40,4.1,2,2,11.3,77777,9,999999999,60,0.0880,0,88,0.180,999.0,99.0 +2005,1,21,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-11.0,-12.0,91,99000,0,0,210,0,0,0,0,0,0,0,50,4.1,3,3,11.3,77777,9,999999999,50,0.0880,0,88,0.180,6.0,24.0 +2005,1,21,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-12.0,-13.0,91,99100,1,129,209,0,0,0,0,0,0,0,60,3.1,5,5,11.3,77777,9,999999999,50,0.0880,0,88,0.180,999.0,99.0 +2005,1,21,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-11.0,-12.0,91,99200,138,1413,214,61,79,54,6500,4200,6100,1130,50,3.6,5,5,11.3,77777,9,999999999,50,0.0880,0,88,0.180,999.0,99.0 +2005,1,21,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-8.0,-11.0,77,99300,357,1413,219,197,324,114,20500,27200,13500,2320,60,3.6,2,2,11.3,77777,9,999999999,50,0.0880,0,88,0.180,999.0,99.0 +2005,1,21,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-7.0,-11.0,70,99400,534,1413,224,220,111,178,24100,10700,20100,4740,80,7.2,3,3,11.3,77777,9,999999999,50,0.0880,0,88,0.180,999.0,99.0 +2005,1,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-7.0,-11.0,70,99300,655,1413,222,246,61,218,27000,6000,24200,6200,100,5.7,2,2,11.3,77777,9,999999999,60,0.0880,0,88,0.180,999.0,99.0 +2005,1,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.0,-11.0,64,99300,710,1413,228,237,24,225,26700,2100,25700,8590,90,5.1,3,3,11.3,77777,9,999999999,60,0.0880,0,88,0.180,999.0,99.0 +2005,1,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.0,-11.0,64,99200,695,1413,225,236,24,224,26500,2100,25500,8450,90,3.6,2,2,11.3,77777,9,999999999,80,0.0880,0,88,0.180,999.0,99.0 +2005,1,21,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.0,-11.0,64,99200,613,1413,231,227,71,196,24900,7000,21800,5500,90,3.1,5,5,11.3,77777,9,999999999,89,0.0880,0,88,0.180,999.0,99.0 +2005,1,21,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.0,-12.0,59,99100,469,1413,244,213,197,148,23100,18500,16900,3360,90,5.1,9,9,11.3,7500,9,999999999,110,0.0880,0,88,0.180,999.0,99.0 +2005,1,21,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-7.0,-12.0,64,99100,272,1413,240,133,361,63,13800,26600,8700,1150,70,4.1,9,9,11.3,7500,9,999999999,100,0.0880,0,88,0.180,999.0,99.0 +2005,1,21,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-9.0,-12.0,77,99100,55,977,233,10,114,7,1500,6200,1100,170,90,3.1,9,9,11.3,7500,9,999999999,80,0.0880,0,88,0.180,999.0,99.0 +2005,1,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-10.0,-13.0,76,99100,0,0,229,0,0,0,0,0,0,0,70,2.6,9,9,11.3,7500,9,999999999,69,0.0880,0,88,0.180,999.0,99.0 +2005,1,21,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-9.0,-12.0,77,99000,0,0,233,0,0,0,0,0,0,0,90,2.6,9,9,11.3,7500,9,999999999,80,0.0880,0,88,0.180,999.0,99.0 +2005,1,21,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-8.0,-12.0,70,98900,0,0,237,0,0,0,0,0,0,0,90,2.6,9,9,11.3,7500,9,999999999,89,0.0880,0,88,0.180,999.0,99.0 +2005,1,21,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-7.0,-12.0,64,98700,0,0,247,0,0,0,0,0,0,0,100,4.6,10,10,11.3,2700,9,999999999,89,0.0880,0,88,0.180,999.0,99.0 +2005,1,21,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-7.0,-12.0,64,98600,0,0,247,0,0,0,0,0,0,0,110,3.6,10,10,11.3,1200,9,999999999,100,0.0880,0,88,0.180,999.0,99.0 +2005,1,21,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-8.0,-9.0,92,98500,0,0,246,0,0,0,0,0,0,0,120,4.1,10,10,8.0,450,9,999999999,110,0.0880,0,88,0.180,999.0,99.0 +2005,1,22,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-8.0,-9.0,92,98200,0,0,246,0,0,0,0,0,0,0,110,5.1,10,10,11.3,1800,9,999999999,120,0.0880,0,88,0.180,0.0,6.0 +2005,1,22,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-8.0,-10.0,84,98000,0,0,245,0,0,0,0,0,0,0,130,4.6,10,10,11.3,1800,9,999999999,129,0.0880,0,88,0.180,999.0,99.0 +2005,1,22,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-7.0,-10.0,77,97900,0,0,249,0,0,0,0,0,0,0,110,2.6,10,10,11.3,600,9,999999999,150,0.0880,0,88,0.180,999.0,99.0 +2005,1,22,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-7.0,-10.0,77,97700,0,0,249,0,0,0,0,0,0,0,130,5.1,10,10,11.3,540,9,999999999,160,0.0880,0,88,0.180,999.0,99.0 +2005,1,22,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.0,-9.0,77,97400,0,0,254,0,0,0,0,0,0,0,140,3.6,10,10,11.3,540,9,999999999,160,0.0880,0,88,0.180,999.0,99.0 +2005,1,22,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-5.4,-6.9,88,97300,0,0,258,0,0,0,0,0,0,0,180,2.3,10,10,11.3,450,9,999999999,160,0.0880,0,88,0.180,999.0,99.0 +2005,1,22,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.0,-5.0,100,97100,0,0,261,0,0,0,0,0,0,0,220,1.0,10,10,6.4,360,9,999999999,160,0.0880,0,88,0.180,1.0,6.0 +2005,1,22,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.0,-4.0,100,97100,1,153,266,0,0,0,0,0,0,0,230,2.1,10,10,4.8,360,9,999999999,150,0.0880,0,88,0.180,999.0,99.0 +2005,1,22,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-3.0,100,97100,140,1412,271,15,0,15,1800,0,1800,580,260,5.7,10,10,4.8,240,9,999999999,139,0.0880,0,88,0.180,999.0,99.0 +2005,1,22,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.0,-2.0,100,97200,361,1412,276,38,0,38,4600,0,4600,1610,270,5.7,10,10,9.7,360,9,999999999,120,0.0880,0,88,0.180,0.0,3.0 +2005,1,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-3.0,92,97200,538,1412,275,260,241,168,27400,23500,18400,3590,280,7.2,10,10,9.7,360,9,999999999,110,0.0880,0,88,0.180,999.0,99.0 +2005,1,22,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-5.0,78,97400,659,1412,273,88,0,88,10600,0,10600,4050,300,6.7,10,10,9.7,360,9,999999999,100,0.0880,0,88,0.180,999.0,99.0 +2005,1,22,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.0,-5.0,78,97500,714,1412,273,85,0,85,10300,0,10300,4040,300,5.7,10,10,9.7,600,9,999999999,89,0.0880,0,88,0.180,0.0,6.0 +2005,1,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.0,-7.0,84,97500,700,1412,260,100,0,100,12000,0,12000,4620,310,6.7,10,10,4.8,600,9,999999999,80,0.0880,0,88,0.180,999.0,99.0 +2005,1,22,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-7.0,-9.0,84,97600,618,1412,250,113,0,113,13200,0,13200,4860,330,6.2,10,10,8.0,720,9,999999999,69,0.0880,0,88,0.180,999.0,99.0 +2005,1,22,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-7.0,-9.0,84,97800,474,1412,250,150,46,134,16400,4300,14900,3600,320,4.6,10,10,3.2,720,9,999999999,60,0.0880,0,88,0.180,0.0,3.0 +2005,1,22,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-8.0,-9.0,92,98000,277,1412,246,101,121,77,10900,9400,9100,1660,330,4.6,10,10,3.2,750,9,999999999,50,0.0880,0,88,0.180,999.0,99.0 +2005,1,22,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-9.0,-9.0,100,98200,58,1000,243,8,14,7,900,600,900,140,340,5.1,10,10,2.4,750,9,999999999,50,0.0880,0,88,0.180,999.0,99.0 +2005,1,22,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-9.0,-10.0,92,98400,0,0,242,0,0,0,0,0,0,0,340,5.1,10,10,3.2,750,9,999999999,40,0.0880,0,88,0.180,0.0,6.0 +2005,1,22,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-8.0,-9.0,92,98500,0,0,246,0,0,0,0,0,0,0,340,6.2,10,10,4.0,750,9,999999999,40,0.0880,0,88,0.180,999.0,99.0 +2005,1,22,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-9.0,-10.0,92,98700,0,0,235,0,0,0,0,0,0,0,350,6.2,9,9,11.3,900,9,999999999,40,0.0880,0,88,0.180,999.0,99.0 +2005,1,22,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-9.0,-10.0,92,98800,0,0,242,0,0,0,0,0,0,0,360,9.3,10,10,4.8,900,9,999999999,40,0.0880,0,88,0.180,0.0,3.0 +2005,1,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-11.0,-11.0,100,98900,0,0,227,0,0,0,0,0,0,0,330,5.1,9,9,11.3,900,9,999999999,40,0.0880,0,88,0.180,999.0,99.0 +2005,1,22,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-11.0,-12.0,91,99000,0,0,214,0,0,0,0,0,0,0,350,9.3,5,5,11.3,77777,9,999999999,40,0.0880,0,88,0.180,999.0,99.0 +2005,1,23,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-12.0,-14.0,83,99200,0,0,207,0,0,0,0,0,0,0,330,6.7,5,4,11.3,77777,9,999999999,40,0.0880,0,88,0.180,0.0,6.0 +2005,1,23,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-13.0,-15.0,83,99200,0,0,203,0,0,0,0,0,0,0,340,6.7,5,4,11.3,77777,9,999999999,40,0.0880,0,88,0.180,999.0,99.0 +2005,1,23,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-13.0,-15.0,83,99300,0,0,197,0,0,0,0,0,0,0,340,5.1,3,1,11.3,77777,9,999999999,30,0.0880,0,88,0.180,999.0,99.0 +2005,1,23,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-14.0,-16.0,83,99400,0,0,193,0,0,0,0,0,0,0,340,4.6,2,1,11.3,77777,9,999999999,30,0.0880,0,88,0.180,999.0,99.0 +2005,1,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-15.0,-16.0,91,99400,0,0,190,0,0,0,0,0,0,0,340,4.1,3,1,11.3,77777,9,999999999,30,0.0880,0,88,0.180,999.0,99.0 +2005,1,23,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-15.0,-16.0,91,99500,0,0,190,0,0,0,0,0,0,0,340,4.1,2,1,11.3,77777,9,999999999,20,0.0880,0,88,0.180,999.0,99.0 +2005,1,23,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-16.0,-17.0,91,99600,0,0,186,0,0,0,0,0,0,0,340,4.1,3,1,11.3,77777,9,999999999,20,0.0880,0,88,0.180,1.0,24.0 +2005,1,23,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-16.0,-17.0,91,99700,1,177,186,0,0,0,0,0,0,0,340,3.6,2,1,11.3,77777,9,999999999,30,0.0880,0,88,0.180,999.0,99.0 +2005,1,23,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-16.0,-17.0,91,99800,143,1412,186,59,26,56,6400,1700,6200,1170,350,5.1,3,1,11.3,77777,9,999999999,30,0.0880,0,88,0.180,999.0,99.0 +2005,1,23,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-14.0,-16.0,83,99900,364,1412,189,143,97,118,15400,8400,13200,2600,350,5.1,0,0,11.3,77777,9,999999999,40,0.0880,0,88,0.180,999.0,99.0 +2005,1,23,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-14.0,-16.0,83,100000,542,1412,189,180,25,170,20000,1900,19300,6060,350,4.1,0,0,11.3,77777,9,999999999,40,0.0880,0,88,0.180,999.0,99.0 +2005,1,23,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-13.0,-16.0,76,100000,663,1412,192,221,24,209,24800,2000,23800,7850,350,3.6,0,0,11.3,77777,9,999999999,40,0.0880,0,88,0.180,999.0,99.0 +2005,1,23,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-13.0,-15.0,83,100000,719,1412,193,219,12,213,24900,1000,24300,8380,330,4.1,0,0,11.3,77777,9,999999999,40,0.0880,0,88,0.180,999.0,99.0 +2005,1,23,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-12.0,-15.0,76,99900,705,1412,196,259,60,229,28400,6000,25400,6740,300,3.1,0,0,11.3,77777,9,999999999,40,0.0880,0,88,0.180,999.0,99.0 +2005,1,23,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-12.0,-15.0,76,99900,624,1412,196,261,118,209,28300,11800,23000,5020,300,2.1,0,0,11.3,77777,9,999999999,40,0.0880,0,88,0.180,999.0,99.0 +2005,1,23,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-11.0,-15.0,70,99900,479,1412,199,235,273,142,24800,25700,16000,2940,340,2.1,0,0,11.3,77777,9,999999999,40,0.0880,0,88,0.180,999.0,99.0 +2005,1,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-11.0,-15.0,70,99900,282,1412,199,102,115,78,11000,9000,9200,1680,340,2.1,0,0,11.3,77777,9,999999999,40,0.0880,0,88,0.180,999.0,99.0 +2005,1,23,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-12.0,-15.0,76,100000,61,1024,196,14,77,11,1800,3100,1600,190,330,2.1,0,0,11.3,77777,9,999999999,30,0.0880,0,88,0.180,999.0,99.0 +2005,1,23,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-13.0,-15.0,83,100000,0,0,193,0,0,0,0,0,0,0,290,1.5,0,0,11.3,77777,9,999999999,20,0.0880,0,88,0.180,999.0,99.0 +2005,1,23,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-14.0,-15.0,91,99900,0,0,190,0,0,0,0,0,0,0,270,1.5,0,0,11.3,77777,9,999999999,30,0.0880,0,88,0.180,999.0,99.0 +2005,1,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-15.0,-15.0,100,99900,0,0,187,0,0,0,0,0,0,0,240,1.0,0,0,11.3,77777,9,999999999,30,0.0880,0,88,0.180,999.0,99.0 +2005,1,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-17.0,-17.0,100,99900,0,0,180,0,0,0,0,0,0,0,0,0.0,0,0,11.3,77777,9,999999999,30,0.0880,0,88,0.180,999.0,99.0 +2005,1,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-17.0,-17.0,100,99800,0,0,189,0,0,0,0,0,0,0,0,0.0,5,4,11.3,77777,9,999999999,30,0.0880,0,88,0.180,999.0,99.0 +2005,1,23,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-19.0,-19.0,100,99700,0,0,176,0,0,0,0,0,0,0,210,0.5,2,1,11.3,77777,9,999999999,30,0.0880,0,88,0.180,999.0,99.0 +2005,1,24,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-17.0,-17.0,100,99700,0,0,180,0,0,0,0,0,0,0,170,0.5,0,0,11.3,77777,9,999999999,40,0.0890,0,88,0.180,999.0,99.0 +2005,1,24,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-18.0,-18.0,100,99600,0,0,184,0,0,0,0,0,0,0,140,0.5,3,3,11.3,77777,9,999999999,40,0.0890,0,88,0.180,999.0,99.0 +2005,1,24,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-17.0,-17.0,100,99600,0,0,191,0,0,0,0,0,0,0,100,0.5,5,5,11.3,77777,9,999999999,50,0.0890,0,88,0.180,999.0,99.0 +2005,1,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-16.0,-16.0,100,99400,0,0,206,0,0,0,0,0,0,0,150,2.1,9,9,11.3,7500,9,999999999,50,0.0890,0,88,0.180,999.0,99.0 +2005,1,24,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-15.0,-15.0,100,99400,0,0,198,0,0,0,0,0,0,0,180,3.1,5,5,11.3,77777,9,999999999,50,0.0890,0,88,0.180,999.0,99.0 +2005,1,24,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-13.0,-14.0,91,99300,0,0,224,0,0,0,0,0,0,0,190,4.1,10,10,11.3,2400,9,999999999,60,0.0890,0,88,0.180,999.0,99.0 +2005,1,24,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-12.0,-14.0,83,99200,0,0,227,0,0,0,0,0,0,0,180,4.1,10,10,11.3,2400,9,999999999,60,0.0890,0,88,0.180,999.0,99.0 +2005,1,24,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-9.0,-12.0,77,99200,2,176,240,0,0,0,0,0,0,0,210,5.1,10,10,11.3,2400,9,999999999,69,0.0890,0,88,0.180,999.0,99.0 +2005,1,24,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-8.0,-12.0,70,99100,147,1412,243,86,204,65,8700,10000,7700,1380,210,6.2,10,10,11.3,2100,9,999999999,80,0.0890,0,88,0.180,999.0,99.0 +2005,1,24,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-7.0,-11.0,70,99000,368,1412,248,211,297,133,21800,25200,15200,2810,220,6.7,10,10,11.3,2100,9,999999999,89,0.0890,0,88,0.180,999.0,99.0 +2005,1,24,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.0,-10.0,65,98900,546,1412,250,60,0,60,7300,0,7300,2720,220,5.7,9,9,11.3,2100,9,999999999,89,0.0890,0,88,0.180,999.0,99.0 +2005,1,24,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.0,-9.0,65,98800,668,1412,254,372,243,256,39900,24500,28200,6270,230,6.7,9,9,11.3,2700,9,999999999,100,0.0890,0,88,0.180,999.0,99.0 +2005,1,24,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-8.0,65,98600,724,1412,259,128,0,128,15100,0,15100,5760,240,6.2,9,9,11.3,3000,9,999999999,100,0.0890,0,88,0.180,999.0,99.0 +2005,1,24,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-7.0,65,98500,711,1412,264,342,203,239,37000,20800,26500,5970,230,5.1,9,9,11.3,3600,9,999999999,110,0.0890,0,88,0.180,999.0,99.0 +2005,1,24,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-7.0,55,98400,629,1412,272,415,598,147,43800,58700,17500,2960,250,7.2,9,9,11.3,3600,9,999999999,110,0.0890,0,88,0.180,999.0,99.0 +2005,1,24,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-6.0,60,98400,485,1412,273,300,634,81,31100,58100,11100,1550,260,5.1,9,9,11.3,3600,9,999999999,120,0.0890,0,88,0.180,999.0,99.0 +2005,1,24,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-6.0,56,98400,288,1412,261,158,528,50,16300,40800,7900,910,270,5.1,5,5,11.3,77777,9,999999999,110,0.0890,0,88,0.180,999.0,99.0 +2005,1,24,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-6.0,66,98500,65,1047,254,16,149,10,2100,7200,1600,190,280,2.6,5,5,11.3,77777,9,999999999,100,0.0890,0,88,0.180,999.0,99.0 +2005,1,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-6.0,66,98600,0,0,269,0,0,0,0,0,0,0,270,2.6,9,9,11.3,3600,9,999999999,89,0.0890,0,88,0.180,999.0,99.0 +2005,1,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-6.0,77,98600,0,0,261,0,0,0,0,0,0,0,220,3.6,9,9,11.3,2400,9,999999999,89,0.0890,0,88,0.180,999.0,99.0 +2005,1,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-6.0,71,98600,0,0,265,0,0,0,0,0,0,0,210,1.5,9,9,11.3,2400,9,999999999,89,0.0890,0,88,0.180,999.0,99.0 +2005,1,24,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.0,-6.0,92,98600,0,0,253,0,0,0,0,0,0,0,230,1.5,9,9,11.3,2400,9,999999999,89,0.0890,0,88,0.180,999.0,99.0 +2005,1,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.0,-6.0,100,98600,0,0,250,0,0,0,0,0,0,0,240,1.0,9,9,11.3,3000,9,999999999,89,0.0890,0,88,0.180,999.0,99.0 +2005,1,24,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-7.0,-7.0,100,98600,0,0,231,0,0,0,0,0,0,0,0,0.0,5,5,11.3,77777,9,999999999,100,0.0890,0,88,0.180,999.0,99.0 +2005,1,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-8.0,-8.0,100,98500,0,0,235,0,0,0,0,0,0,0,100,1.0,9,8,11.3,7500,9,999999999,100,0.0890,0,88,0.180,999.0,99.0 +2005,1,25,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-8.0,-8.0,100,98500,0,0,221,0,0,0,0,0,0,0,0,0.0,2,2,11.3,77777,9,999999999,100,0.0890,0,88,0.180,999.0,99.0 +2005,1,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-11.0,-11.0,100,98400,0,0,202,0,0,0,0,0,0,0,0,0.0,0,0,11.3,77777,9,999999999,110,0.0890,0,88,0.180,999.0,99.0 +2005,1,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-11.0,-11.0,100,98400,0,0,209,0,0,0,0,0,0,0,0,0.0,2,2,11.3,77777,9,999999999,110,0.0890,0,88,0.180,999.0,99.0 +2005,1,25,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-10.0,-10.0,100,98400,0,0,227,0,0,0,0,0,0,0,0,0.0,9,8,11.3,3600,9,999999999,110,0.0890,0,88,0.180,999.0,99.0 +2005,1,25,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-9.0,-9.0,100,98300,0,0,243,0,0,0,0,0,0,0,30,1.0,10,10,11.3,3600,9,999999999,110,0.0890,0,88,0.180,999.0,99.0 +2005,1,25,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-8.0,-8.0,100,98300,0,0,235,0,0,0,0,0,0,0,60,1.0,9,8,11.3,3600,9,999999999,110,0.0890,0,88,0.180,999.0,99.0 +2005,1,25,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.0,-6.0,100,98300,2,200,240,0,0,0,0,0,0,0,140,1.0,9,7,11.3,3600,9,999999999,110,0.0890,0,88,0.180,999.0,99.0 +2005,1,25,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.0,-6.0,92,98400,150,1411,248,42,0,42,4600,0,4600,1310,160,1.5,9,8,11.3,3000,9,999999999,120,0.0890,0,88,0.180,999.0,99.0 +2005,1,25,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-5.0,84,98400,372,1411,252,38,0,38,4600,0,4600,1620,170,1.5,9,7,11.3,3000,9,999999999,120,0.0890,0,88,0.180,999.0,99.0 +2005,1,25,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-5.0,71,98300,551,1411,264,273,173,205,29200,16800,22600,4790,160,2.1,9,8,11.3,3000,9,999999999,129,0.0890,0,88,0.180,999.0,99.0 +2005,1,25,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,-4.0,58,98200,672,1411,264,479,686,151,49100,66100,17500,2970,190,3.6,2,2,11.3,77777,9,999999999,129,0.0890,0,88,0.180,999.0,99.0 +2005,1,25,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-2.0,64,98100,729,1411,273,523,825,96,54400,80900,12500,2020,210,3.6,3,3,11.3,77777,9,999999999,129,0.0890,0,88,0.180,999.0,99.0 +2005,1,25,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-2.0,59,97900,716,1411,274,513,831,90,53600,81500,12100,1920,210,5.7,2,2,11.3,77777,9,999999999,129,0.0890,0,88,0.180,999.0,99.0 +2005,1,25,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-2.0,59,97800,634,1411,277,443,799,83,46000,77100,11200,1680,210,5.1,3,3,11.3,77777,9,999999999,139,0.0890,0,88,0.180,999.0,99.0 +2005,1,25,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,-1.0,60,97800,490,1411,279,317,698,73,33200,64500,10700,1430,220,2.6,2,2,11.3,77777,9,999999999,139,0.0890,0,88,0.180,999.0,99.0 +2005,1,25,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,-1.0,60,97700,293,1411,282,163,541,51,16900,42100,8100,930,210,3.6,3,3,11.3,77777,9,999999999,139,0.0890,0,88,0.180,999.0,99.0 +2005,1,25,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-1.0,64,97600,69,1094,275,17,160,10,2200,9000,1600,230,200,2.6,2,2,11.3,77777,9,999999999,139,0.0890,0,88,0.180,999.0,99.0 +2005,1,25,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-2.0,64,97600,0,0,273,0,0,0,0,0,0,0,190,3.1,3,3,11.3,77777,9,999999999,139,0.0890,0,88,0.180,999.0,99.0 +2005,1,25,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-2.0,64,97500,0,0,270,0,0,0,0,0,0,0,190,3.1,2,2,11.3,77777,9,999999999,139,0.0890,0,88,0.180,999.0,99.0 +2005,1,25,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-1.0,69,97400,0,0,274,0,0,0,0,0,0,0,190,3.1,3,3,11.3,77777,9,999999999,150,0.0890,0,88,0.180,999.0,99.0 +2005,1,25,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,0.0,70,97300,0,0,283,0,0,0,0,0,0,0,220,5.7,5,5,11.3,77777,9,999999999,160,0.0890,0,88,0.180,999.0,99.0 +2005,1,25,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,0.0,70,97300,0,0,283,0,0,0,0,0,0,0,250,5.7,5,5,11.3,77777,9,999999999,160,0.0890,0,88,0.180,999.0,99.0 +2005,1,25,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,0.0,70,97300,0,0,289,0,0,0,0,0,0,0,240,4.6,9,7,11.3,7500,9,999999999,160,0.0890,0,88,0.180,999.0,99.0 +2005,1,26,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,1.0,75,97200,0,0,301,0,0,0,0,0,0,0,230,4.1,9,9,11.3,3000,9,999999999,160,0.0890,0,88,0.180,999.0,99.0 +2005,1,26,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,1.0,81,97200,0,0,296,0,0,0,0,0,0,0,220,2.6,9,9,11.3,7500,9,999999999,160,0.0890,0,88,0.180,999.0,99.0 +2005,1,26,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,0.0,81,97100,0,0,291,0,0,0,0,0,0,0,190,1.5,9,9,11.3,7500,9,999999999,150,0.0890,0,88,0.180,999.0,99.0 +2005,1,26,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,0.0,75,97200,0,0,279,0,0,0,0,0,0,0,200,1.0,5,5,11.3,77777,9,999999999,139,0.0890,0,88,0.180,999.0,99.0 +2005,1,26,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-1.0,80,97200,0,0,270,0,0,0,0,0,0,0,220,1.0,5,5,11.3,77777,9,999999999,139,0.0890,0,88,0.180,999.0,99.0 +2005,1,26,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,1.0,87,97300,0,0,301,0,0,0,0,0,0,0,300,2.6,10,10,11.3,600,9,999999999,129,0.0890,0,88,0.180,999.0,99.0 +2005,1,26,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,1.0,87,97400,0,0,301,0,0,0,0,0,0,0,320,3.1,10,10,11.3,540,9,999999999,120,0.0890,0,88,0.180,999.0,99.0 +2005,1,26,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,1.0,93,97600,3,223,296,0,0,0,0,0,0,0,250,3.1,10,10,11.3,540,9,999999999,120,0.0890,0,88,0.180,999.0,99.0 +2005,1,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,1.0,93,97700,153,1411,296,41,0,41,4500,0,4500,1300,350,4.6,10,10,8.0,480,9,999999999,120,0.0890,0,88,0.180,999.0,99.0 +2005,1,26,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,2.0,1.1,94,97800,376,1411,296,135,64,118,14800,5700,13300,2940,350,4.1,10,10,8.0,435,9,999999999,110,0.0890,0,88,0.180,999.0,99.0 +2005,1,26,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,1.0,93,98000,555,1411,296,60,0,60,7300,0,7300,2730,340,3.6,10,10,6.4,390,9,999999999,110,0.0890,0,88,0.180,999.0,99.0 +2005,1,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,1.0,93,98100,677,1411,296,76,0,76,9300,0,9300,3600,360,4.1,10,10,6.4,450,9,999999999,100,0.0890,0,88,0.180,999.0,99.0 +2005,1,26,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,0.0,87,98100,734,1411,295,109,0,109,13100,0,13100,5070,340,4.1,10,10,9.7,480,9,999999999,89,0.0890,0,88,0.180,999.0,99.0 +2005,1,26,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,1.0,100,98200,721,1411,292,83,0,83,10100,0,10100,3970,360,4.1,10,10,6.4,480,9,999999999,89,0.0890,0,88,0.180,999.0,99.0 +2005,1,26,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,0.0,93,98300,640,1411,291,74,0,74,9000,0,9000,3440,360,4.6,10,10,6.4,480,9,999999999,89,0.0890,0,88,0.180,999.0,99.0 +2005,1,26,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.0,0.0,93,98400,495,1411,291,113,0,113,12900,0,12900,4390,360,4.6,10,10,6.4,450,9,999999999,89,0.0890,0,88,0.180,0.0,3.0 +2005,1,26,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-1.0,92,98500,298,1411,286,136,249,83,14300,19200,10200,1610,20,5.7,10,10,6.4,450,9,999999999,89,0.0890,0,88,0.180,999.0,99.0 +2005,1,26,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-3.0,92,98700,72,1117,275,16,101,12,2000,5000,1700,230,10,6.2,10,10,8.0,450,9,999999999,89,0.0890,0,88,0.180,999.0,99.0 +2005,1,26,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.0,-4.0,92,98800,0,0,270,0,0,0,0,0,0,0,10,6.7,10,10,11.3,600,9,999999999,89,0.0890,0,88,0.180,0.0,6.0 +2005,1,26,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.0,-5.0,92,99000,0,0,265,0,0,0,0,0,0,0,20,5.7,10,10,8.0,600,9,999999999,80,0.0890,0,88,0.180,999.0,99.0 +2005,1,26,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.0,-6.0,92,99100,0,0,260,0,0,0,0,0,0,0,40,6.2,10,10,11.3,1800,9,999999999,69,0.0890,0,88,0.180,999.0,99.0 +2005,1,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.0,-6.0,92,99200,0,0,260,0,0,0,0,0,0,0,30,4.1,10,10,11.3,1200,9,999999999,60,0.0890,0,88,0.180,0.0,3.0 +2005,1,26,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-7.0,-9.0,84,99300,0,0,243,0,0,0,0,0,0,0,50,6.7,9,9,11.3,600,9,999999999,60,0.0890,0,88,0.180,999.0,99.0 +2005,1,26,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-8.0,-9.0,92,99400,0,0,223,0,0,0,0,0,0,0,40,5.1,3,3,11.3,77777,9,999999999,50,0.0890,0,88,0.180,999.0,99.0 +2005,1,27,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-9.0,-10.0,92,99500,0,0,222,0,0,0,0,0,0,0,30,4.6,5,5,11.3,77777,9,999999999,40,0.0900,0,88,0.180,0.0,6.0 +2005,1,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-9.0,-10.0,92,99500,0,0,222,0,0,0,0,0,0,0,50,3.1,5,5,11.3,77777,9,999999999,40,0.0900,0,88,0.180,999.0,99.0 +2005,1,27,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-10.0,-11.0,91,99600,0,0,214,0,0,0,0,0,0,0,20,4.1,3,3,11.3,77777,9,999999999,40,0.0900,0,88,0.180,999.0,99.0 +2005,1,27,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-10.0,-12.0,84,99700,0,0,211,0,0,0,0,0,0,0,20,3.6,2,2,11.3,77777,9,999999999,40,0.0900,0,88,0.180,999.0,99.0 +2005,1,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-11.0,-12.0,91,99800,0,0,210,0,0,0,0,0,0,0,10,4.1,3,3,11.3,77777,9,999999999,30,0.0900,0,88,0.180,999.0,99.0 +2005,1,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-12.0,-13.0,91,99900,0,0,204,0,0,0,0,0,0,0,20,4.1,2,2,11.3,77777,9,999999999,30,0.0900,0,88,0.180,999.0,99.0 +2005,1,27,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-13.0,-13.0,100,100000,0,0,203,0,0,0,0,0,0,0,30,5.1,3,3,11.3,77777,9,999999999,20,0.0900,0,88,0.180,999.0,99.0 +2005,1,27,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-13.0,-13.0,100,100000,3,223,195,0,0,0,0,0,0,0,40,3.6,0,0,11.3,77777,9,999999999,20,0.0900,0,88,0.180,999.0,99.0 +2005,1,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-12.0,-14.0,83,100200,157,1411,197,94,307,60,9300,16600,7400,1160,40,4.1,0,0,11.3,77777,9,999999999,20,0.0900,0,88,0.180,999.0,99.0 +2005,1,27,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-10.0,-13.0,76,100300,380,1411,204,246,625,78,25200,52800,10900,1390,40,4.6,0,0,11.3,77777,9,999999999,20,0.0900,0,88,0.180,999.0,99.0 +2005,1,27,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-9.0,-13.0,70,100400,559,1411,207,385,752,86,40400,71500,11900,1720,50,4.6,0,0,11.3,77777,9,999999999,20,0.0900,0,88,0.180,999.0,99.0 +2005,1,27,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-9.0,-14.0,64,100400,682,1411,206,485,807,93,50100,78400,12100,1880,30,3.6,0,0,11.3,77777,9,999999999,20,0.0900,0,88,0.180,999.0,99.0 +2005,1,27,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-8.0,-13.0,64,100400,739,1411,210,535,837,95,55800,82300,12500,2030,20,3.6,0,0,11.3,77777,9,999999999,20,0.0900,0,88,0.180,999.0,99.0 +2005,1,27,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-8.0,-15.0,53,100400,726,1411,208,519,825,93,54200,81000,12300,1980,20,3.6,0,0,11.3,77777,9,999999999,30,0.0900,0,88,0.180,999.0,99.0 +2005,1,27,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-7.0,-15.0,49,100400,645,1411,221,450,794,85,46600,76700,11400,1730,20,3.6,3,3,11.3,77777,9,999999999,30,0.0900,0,88,0.180,999.0,99.0 +2005,1,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.0,-14.0,49,100500,501,1411,223,328,716,73,34500,66600,10700,1440,30,3.6,2,2,11.3,77777,9,999999999,30,0.0900,0,88,0.180,999.0,99.0 +2005,1,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-7.0,-14.0,54,100600,304,1411,225,174,565,52,18000,44600,8300,950,50,4.1,5,5,11.3,77777,9,999999999,30,0.0900,0,88,0.180,999.0,99.0 +2005,1,27,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-9.0,-13.0,70,100600,76,1140,219,22,175,13,2700,8700,2100,250,50,4.1,5,5,11.3,77777,9,999999999,20,0.0900,0,88,0.180,999.0,99.0 +2005,1,27,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-10.0,-13.0,76,100500,0,0,213,0,0,0,0,0,0,0,40,3.6,3,3,11.3,77777,9,999999999,20,0.0900,0,88,0.180,999.0,99.0 +2005,1,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-11.0,-13.0,84,100600,0,0,207,0,0,0,0,0,0,0,60,3.6,2,2,11.3,77777,9,999999999,20,0.0900,0,88,0.180,999.0,99.0 +2005,1,27,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-12.0,-14.0,83,100600,0,0,205,0,0,0,0,0,0,0,60,2.6,3,3,11.3,77777,9,999999999,20,0.0900,0,88,0.180,999.0,99.0 +2005,1,27,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-13.0,-14.0,91,100600,0,0,194,0,0,0,0,0,0,0,40,2.6,0,0,11.3,77777,9,999999999,20,0.0900,0,88,0.180,999.0,99.0 +2005,1,27,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-13.0,-14.0,91,100600,0,0,194,0,0,0,0,0,0,0,50,2.6,0,0,11.3,77777,9,999999999,20,0.0900,0,88,0.180,999.0,99.0 +2005,1,27,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-13.0,-14.0,91,100700,0,0,194,0,0,0,0,0,0,0,50,2.1,0,0,11.3,77777,9,999999999,20,0.0900,0,88,0.180,999.0,99.0 +2005,1,28,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-13.0,-14.0,91,100600,0,0,194,0,0,0,0,0,0,0,40,2.1,0,0,11.3,77777,9,999999999,20,0.0900,0,88,0.180,999.0,99.0 +2005,1,28,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-14.0,-14.0,100,100600,0,0,191,0,0,0,0,0,0,0,40,2.6,0,0,11.3,77777,9,999999999,20,0.0900,0,88,0.180,999.0,99.0 +2005,1,28,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-14.0,-15.0,91,100600,0,0,190,0,0,0,0,0,0,0,40,2.6,0,0,11.3,77777,9,999999999,20,0.0900,0,88,0.180,999.0,99.0 +2005,1,28,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-13.0,-14.0,91,100600,0,0,194,0,0,0,0,0,0,0,70,1.0,0,0,11.3,77777,9,999999999,20,0.0900,0,88,0.180,999.0,99.0 +2005,1,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-12.0,-14.0,83,100600,0,0,197,0,0,0,0,0,0,0,70,2.6,0,0,11.3,77777,9,999999999,20,0.0900,0,88,0.180,999.0,99.0 +2005,1,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-12.0,-14.0,83,100600,0,0,205,0,0,0,0,0,0,0,80,4.1,3,3,11.3,77777,9,999999999,20,0.0900,0,88,0.180,999.0,99.0 +2005,1,28,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-12.0,-14.0,83,100700,0,0,203,0,0,0,0,0,0,0,90,3.6,2,2,11.3,77777,9,999999999,20,0.0900,0,88,0.180,999.0,99.0 +2005,1,28,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-12.0,-14.0,83,100700,4,247,209,0,0,0,0,0,0,0,100,2.1,5,5,11.3,77777,9,999999999,20,0.0900,0,88,0.180,999.0,99.0 +2005,1,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-11.0,-14.0,76,100700,161,1410,224,92,279,60,9100,15300,7300,1150,100,3.1,9,9,11.3,7500,9,999999999,30,0.0900,0,88,0.180,999.0,99.0 +2005,1,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-9.0,-13.0,70,100700,384,1410,232,246,611,79,25100,51800,10900,1410,100,5.1,9,9,11.3,7500,9,999999999,30,0.0900,0,88,0.180,999.0,99.0 +2005,1,28,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-7.0,-13.0,59,100700,564,1410,239,385,740,88,40300,70500,12000,1760,110,5.7,9,9,11.3,7500,9,999999999,30,0.0900,0,88,0.180,999.0,99.0 +2005,1,28,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.0,-12.0,54,100600,687,1410,248,491,813,93,50800,79100,12100,1890,110,4.1,9,9,11.3,7500,9,999999999,30,0.0900,0,88,0.180,999.0,99.0 +2005,1,28,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.0,-12.0,50,100500,744,1410,258,541,843,95,56500,83000,12600,2040,110,4.6,10,10,11.3,7500,9,999999999,30,0.0900,0,88,0.180,999.0,99.0 +2005,1,28,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-12.0,46,100500,732,1410,262,525,831,92,54900,81700,12300,1980,110,3.6,10,10,11.3,7500,9,999999999,30,0.0900,0,88,0.180,999.0,99.0 +2005,1,28,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-11.0,50,100400,651,1410,263,455,800,85,47300,77400,11400,1740,100,4.6,10,10,11.3,7500,9,999999999,30,0.0900,0,88,0.180,999.0,99.0 +2005,1,28,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-11.0,50,100300,506,1410,263,334,728,71,34200,67400,9900,1360,110,3.1,10,10,11.3,7500,9,999999999,40,0.0900,0,88,0.180,999.0,99.0 +2005,1,28,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-10.0,55,100300,309,1410,264,175,555,53,18100,44200,8300,970,90,3.1,10,10,11.3,7500,9,999999999,30,0.0900,0,88,0.180,999.0,99.0 +2005,1,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-9.0,60,100200,80,1164,265,25,202,14,3000,10100,2300,260,80,3.1,10,10,11.3,7500,9,999999999,30,0.0900,0,88,0.180,999.0,99.0 +2005,1,28,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-10.0,55,100200,0,0,264,0,0,0,0,0,0,0,80,3.1,10,10,11.3,7500,9,999999999,30,0.0900,0,88,0.180,999.0,99.0 +2005,1,28,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-10.0,55,100100,0,0,264,0,0,0,0,0,0,0,90,3.6,10,10,11.3,7500,9,999999999,40,0.0900,0,88,0.180,999.0,99.0 +2005,1,28,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-10.0,55,100100,0,0,264,0,0,0,0,0,0,0,80,2.6,10,10,11.3,7500,9,999999999,40,0.0900,0,88,0.180,999.0,99.0 +2005,1,28,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-10.0,55,100000,0,0,264,0,0,0,0,0,0,0,120,2.1,10,10,11.3,4500,9,999999999,50,0.0900,0,88,0.180,999.0,99.0 +2005,1,28,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-11.0,50,99900,0,0,263,0,0,0,0,0,0,0,110,3.1,10,10,11.3,4500,9,999999999,50,0.0900,0,88,0.180,999.0,99.0 +2005,1,28,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-10.0,55,99900,0,0,264,0,0,0,0,0,0,0,100,2.1,10,10,11.3,4500,9,999999999,50,0.0900,0,88,0.180,999.0,99.0 +2005,1,29,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-10.0,55,99800,0,0,264,0,0,0,0,0,0,0,80,1.5,10,10,11.3,4500,9,999999999,50,0.0910,0,88,0.180,999.0,99.0 +2005,1,29,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-10.0,55,99700,0,0,264,0,0,0,0,0,0,0,120,1.0,10,10,11.3,4500,9,999999999,60,0.0910,0,88,0.180,999.0,99.0 +2005,1,29,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-10.0,55,99600,0,0,264,0,0,0,0,0,0,0,120,1.0,10,10,11.3,4500,9,999999999,69,0.0910,0,88,0.180,999.0,99.0 +2005,1,29,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-8.0,60,99600,0,0,270,0,0,0,0,0,0,0,90,1.5,10,10,11.3,4500,9,999999999,80,0.0910,0,88,0.180,999.0,99.0 +2005,1,29,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-8.0,60,99500,0,0,270,0,0,0,0,0,0,0,100,2.6,10,10,11.3,3300,9,999999999,100,0.0910,0,88,0.180,999.0,99.0 +2005,1,29,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-8.0,60,99500,0,0,270,0,0,0,0,0,0,0,70,1.0,10,10,11.3,3000,9,999999999,110,0.0910,0,88,0.180,999.0,99.0 +2005,1,29,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-8.0,55,99500,0,0,274,0,0,0,0,0,0,0,100,1.5,10,10,11.3,2400,9,999999999,120,0.0910,0,88,0.180,999.0,99.0 +2005,1,29,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-8.0,55,99500,4,270,274,0,0,0,0,0,0,0,130,1.5,10,10,11.3,2700,9,999999999,129,0.0910,0,88,0.180,999.0,99.0 +2005,1,29,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-8.0,55,99400,164,1410,274,77,73,69,8200,4300,7700,1450,150,1.5,10,10,11.3,1350,9,999999999,150,0.0910,0,88,0.180,999.0,99.0 +2005,1,29,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.0,-5.0,71,99400,388,1410,277,74,0,74,8500,0,8500,2870,160,2.6,10,10,11.3,750,9,999999999,160,0.0910,0,88,0.180,0.0,3.0 +2005,1,29,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-3.0,85,99400,569,1410,279,199,62,174,21800,6000,19400,4830,170,1.0,10,10,11.3,360,9,999999999,170,0.0910,0,88,0.180,999.0,99.0 +2005,1,29,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-2.0,92,99300,692,1410,280,82,0,82,10000,0,10000,3880,170,2.1,10,10,6.4,360,9,999999999,170,0.0910,0,88,0.180,999.0,99.0 +2005,1,29,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.0,-1.0,100,99200,750,1410,281,85,0,85,10400,0,10400,4110,170,2.1,10,10,4.8,360,9,999999999,170,0.0910,0,88,0.180,1.0,6.0 +2005,1,29,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-1.0,100,99100,737,1410,281,89,0,89,10800,0,10800,4260,160,1.5,10,10,6.4,210,9,999999999,170,0.0910,0,88,0.180,999.0,99.0 +2005,1,29,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,0.0,100,99000,656,1410,287,74,0,74,9000,0,9000,3470,140,1.5,10,10,8.0,150,9,999999999,170,0.0910,0,88,0.180,999.0,99.0 +2005,1,29,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,0.0,100,99000,512,1410,287,92,0,92,10700,0,10700,3810,110,1.5,10,10,6.4,150,9,999999999,170,0.0910,0,88,0.180,0.0,3.0 +2005,1,29,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,0.0,100,99000,315,1410,287,152,289,87,16000,22900,10800,1700,110,1.5,10,10,3.2,180,9,999999999,170,0.0910,0,88,0.180,999.0,99.0 +2005,1,29,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,0.0,100,99000,85,1187,287,26,140,18,3100,6100,2600,310,110,1.5,10,10,3.2,150,9,999999999,160,0.0910,0,88,0.180,999.0,99.0 +2005,1,29,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,0.0,100,98900,0,0,287,0,0,0,0,0,0,0,90,1.0,10,10,3.2,150,9,999999999,160,0.0910,0,88,0.180,1.0,6.0 +2005,1,29,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,0.0,100,98900,0,0,287,0,0,0,0,0,0,0,100,1.0,10,10,3.2,150,9,999999999,160,0.0910,0,88,0.180,999.0,99.0 +2005,1,29,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-1.0,100,98900,0,0,281,0,0,0,0,0,0,0,80,1.0,10,10,3.2,150,9,999999999,150,0.0910,0,88,0.180,999.0,99.0 +2005,1,29,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,0.0,100,98900,0,0,287,0,0,0,0,0,0,0,30,1.0,10,10,3.2,150,9,999999999,150,0.0910,0,88,0.180,0.0,3.0 +2005,1,29,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-1.0,100,98900,0,0,281,0,0,0,0,0,0,0,30,1.0,10,10,3.2,150,9,999999999,150,0.0910,0,88,0.180,999.0,99.0 +2005,1,29,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-1.0,100,98900,0,0,281,0,0,0,0,0,0,0,20,0.5,10,10,3.2,150,9,999999999,139,0.0910,0,88,0.180,999.0,99.0 +2005,1,30,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.0,-1.0,100,98800,0,0,281,0,0,0,0,0,0,0,0,0.0,10,10,4.0,180,9,999999999,139,0.0910,0,88,0.180,0.0,6.0 +2005,1,30,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-1.0,100,98900,0,0,281,0,0,0,0,0,0,0,360,2.1,10,10,3.2,180,9,999999999,139,0.0910,0,88,0.180,999.0,99.0 +2005,1,30,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-1.0,100,98900,0,0,281,0,0,0,0,0,0,0,350,1.5,10,10,4.0,150,9,999999999,139,0.0910,0,88,0.180,999.0,99.0 +2005,1,30,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.0,-1.0,100,98800,0,0,281,0,0,0,0,0,0,0,360,2.6,10,10,4.0,150,9,999999999,139,0.0910,0,88,0.180,0.0,3.0 +2005,1,30,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-1.0,100,98900,0,0,281,0,0,0,0,0,0,0,360,2.6,10,10,6.4,150,9,999999999,139,0.0910,0,88,0.180,999.0,99.0 +2005,1,30,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-1.0,100,98900,0,0,281,0,0,0,0,0,0,0,10,3.1,10,10,6.4,150,9,999999999,139,0.0910,0,88,0.180,999.0,99.0 +2005,1,30,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.0,-1.0,100,98900,0,0,281,0,0,0,0,0,0,0,20,3.1,10,10,6.4,180,9,999999999,139,0.0910,0,88,0.180,0.0,6.0 +2005,1,30,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-1.0,100,99000,5,294,281,0,0,0,0,0,0,0,360,2.1,10,10,4.8,210,9,999999999,129,0.0910,0,88,0.180,999.0,99.0 +2005,1,30,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-1.0,100,99100,168,1410,281,50,0,50,5500,0,5500,1530,20,2.6,10,10,4.8,210,9,999999999,129,0.0910,0,88,0.180,999.0,99.0 +2005,1,30,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-1.0,100,99100,393,1410,281,44,0,44,5300,0,5300,1870,40,2.6,10,10,6.4,360,9,999999999,120,0.0910,0,88,0.180,999.0,99.0 +2005,1,30,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-1.0,92,99200,574,1410,286,245,148,185,26600,14600,20600,4360,40,2.6,10,10,6.4,360,9,999999999,120,0.0910,0,88,0.180,999.0,99.0 +2005,1,30,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-1.0,86,99200,697,1410,290,497,625,187,51900,62400,20900,3980,30,2.1,10,10,6.4,360,9,999999999,120,0.0910,0,88,0.180,999.0,99.0 +2005,1,30,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-1.0,86,99100,755,1410,290,547,656,195,57600,66300,21900,4300,10,2.1,10,10,8.0,900,9,999999999,110,0.0910,0,88,0.180,999.0,99.0 +2005,1,30,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-1.0,86,99100,743,1410,282,218,60,187,24100,6000,20900,5930,30,3.1,9,9,9.7,900,9,999999999,110,0.0910,0,88,0.180,999.0,99.0 +2005,1,30,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-2.0,73,99100,662,1410,285,467,628,171,48900,62200,19600,3550,30,2.1,9,9,9.7,3000,9,999999999,110,0.0910,0,88,0.180,999.0,99.0 +2005,1,30,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-2.0,79,99200,518,1410,281,340,723,73,34800,67200,10000,1390,350,4.1,9,9,11.3,7500,9,999999999,110,0.0910,0,88,0.180,999.0,99.0 +2005,1,30,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-3.0,72,99200,320,1410,280,186,423,89,19000,33500,11300,1670,340,3.1,9,9,11.3,7500,9,999999999,89,0.0910,0,88,0.180,999.0,99.0 +2005,1,30,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-4.0,78,99200,89,1233,271,17,34,15,2000,1400,1800,250,360,2.6,9,9,11.3,7500,9,999999999,80,0.0910,0,88,0.180,999.0,99.0 +2005,1,30,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-5.0,84,99300,0,0,262,0,0,0,0,0,0,0,350,3.1,9,9,11.3,7500,9,999999999,60,0.0910,0,88,0.180,999.0,99.0 +2005,1,30,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.0,-6.0,84,99300,0,0,257,0,0,0,0,0,0,0,10,1.0,9,9,11.3,7500,9,999999999,60,0.0910,0,88,0.180,999.0,99.0 +2005,1,30,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.0,-7.0,84,99300,0,0,238,0,0,0,0,0,0,0,10,0.5,5,5,11.3,77777,9,999999999,60,0.0910,0,88,0.180,999.0,99.0 +2005,1,30,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.0,-7.0,92,99400,0,0,235,0,0,0,0,0,0,0,10,1.0,5,5,11.3,77777,9,999999999,50,0.0910,0,88,0.180,999.0,99.0 +2005,1,30,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-7.0,-7.0,100,99300,0,0,225,0,0,0,0,0,0,0,360,0.5,2,2,11.3,77777,9,999999999,50,0.0910,0,88,0.180,999.0,99.0 +2005,1,30,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-8.0,-8.0,100,99300,0,0,223,0,0,0,0,0,0,0,360,1.5,3,3,11.3,77777,9,999999999,50,0.0910,0,88,0.180,999.0,99.0 +2005,1,31,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-10.0,-10.0,100,99300,0,0,215,0,0,0,0,0,0,0,0,0.0,3,3,11.3,77777,9,999999999,50,0.0910,0,88,0.180,999.0,99.0 +2005,1,31,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-10.0,-10.0,100,99300,0,0,206,0,0,0,0,0,0,0,60,1.0,0,0,6.4,77777,9,999999999,50,0.0910,0,88,0.180,999.0,99.0 +2005,1,31,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-11.0,-11.0,100,99300,0,0,202,0,0,0,0,0,0,0,10,0.5,0,0,6.4,77777,9,999999999,50,0.0910,0,88,0.180,999.0,99.0 +2005,1,31,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-10.0,-10.0,100,99400,0,0,206,0,0,0,0,0,0,0,30,1.0,0,0,6.4,77777,9,999999999,50,0.0910,0,88,0.180,999.0,99.0 +2005,1,31,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-9.0,-9.0,100,99400,0,0,236,0,0,0,0,0,0,0,30,1.0,9,9,1.4,90,9,999999999,50,0.0910,0,88,0.180,999.0,99.0 +2005,1,31,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-9.0,-9.0,100,99500,0,0,243,0,0,0,0,0,0,0,0,0.0,10,10,1.2,60,9,999999999,50,0.0910,0,88,0.180,999.0,99.0 +2005,1,31,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-8.0,-8.0,100,99600,0,0,247,0,0,0,0,0,0,0,360,0.5,10,10,0.8,60,9,999999999,50,0.0910,0,88,0.180,999.0,99.0 +2005,1,31,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-8.0,-8.0,100,99600,6,317,240,0,0,0,0,0,0,0,350,2.1,9,9,0.2,15,9,999999999,50,0.0910,0,88,0.180,999.0,99.0 +2005,1,31,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-7.0,-7.0,100,99600,172,1409,252,49,0,49,5400,0,5400,1530,40,1.0,10,10,0.2,77777,9,999999999,50,0.0910,0,88,0.180,999.0,99.0 +2005,1,31,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-7.0,-7.0,100,99700,397,1409,252,155,70,135,16900,6300,15100,3330,330,1.0,10,10,0.4,60,9,999999999,60,0.0910,0,88,0.180,999.0,99.0 +2005,1,31,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-7.0,-7.0,100,99700,578,1409,252,245,105,202,26900,10300,22600,5440,0,0.0,10,10,1.2,90,9,999999999,60,0.0910,0,88,0.180,999.0,99.0 +2005,1,31,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.0,-5.0,100,99600,702,1409,261,239,36,221,26200,3600,24400,6550,360,1.0,10,10,3.2,3000,9,999999999,69,0.0910,0,88,0.180,999.0,99.0 +2005,1,31,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.0,-4.0,100,99600,760,1409,266,353,169,262,38300,17400,28900,6730,360,1.0,10,10,4.8,7500,9,999999999,69,0.0910,0,88,0.180,999.0,99.0 +2005,1,31,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-4.0,85,99600,749,1409,274,484,502,216,50200,50600,23300,4800,360,2.1,10,10,6.4,7500,9,999999999,80,0.0910,0,88,0.180,999.0,99.0 +2005,1,31,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-3.0,85,99500,668,1409,272,222,119,166,24600,12200,18800,4060,360,2.1,9,9,6.4,7500,9,999999999,80,0.0910,0,88,0.180,999.0,99.0 +2005,1,31,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-3.0,78,99500,523,1409,284,346,554,139,35800,52100,16400,2720,360,2.1,10,10,11.3,3600,9,999999999,89,0.0910,0,88,0.180,999.0,99.0 +2005,1,31,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-3.0,78,99500,326,1409,284,172,452,68,17600,36200,9200,1200,10,3.1,10,10,11.3,7500,9,999999999,89,0.0910,0,88,0.180,999.0,99.0 +2005,1,31,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-3.0,92,99600,94,1257,275,26,123,18,3000,5600,2600,310,10,2.1,10,10,8.0,7500,9,999999999,89,0.0910,0,88,0.180,999.0,99.0 +2005,1,31,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-3.1,-3.6,96,99600,0,0,257,0,0,0,0,0,0,0,10,1.8,8,8,8.0,14750,9,999999999,89,0.0910,0,88,0.180,999.0,99.0 +2005,1,31,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.0,-4.0,100,99600,0,0,245,0,0,0,0,0,0,0,360,1.5,5,5,8.0,77777,9,999999999,89,0.0910,0,88,0.180,999.0,99.0 +2005,1,31,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.0,-5.0,100,99600,0,0,240,0,0,0,0,0,0,0,360,1.5,5,5,8.0,77777,9,999999999,89,0.0910,0,88,0.180,999.0,99.0 +2005,1,31,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.5,-7.0,100,99600,0,0,247,0,0,0,0,0,0,0,360,1.5,9,9,8.0,3000,9,999999999,89,0.0910,0,88,0.180,999.0,99.0 +2005,1,31,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-8.1,-9.0,100,99600,0,0,239,0,0,0,0,0,0,0,360,1.5,9,9,8.0,900,9,999999999,89,0.0910,0,88,0.180,999.0,99.0 +2005,1,31,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-9.7,-11.1,100,99600,0,0,238,0,0,0,0,0,0,0,360,1.5,10,10,8.0,900,9,999999999,89,0.0910,0,88,0.180,999.0,99.0 +1996,2,1,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-11.3,-13.2,73,99100,0,0,206,0,0,0,0,0,0,0,20,1.5,2,2,11.3,77777,9,999999999,69,0.0920,0,88,0.180,0.0,6.0 +1996,2,1,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-12.9,-15.3,81,99000,0,0,202,0,0,0,0,0,0,0,30,1.5,3,3,11.3,77777,9,999999999,69,0.0920,0,88,0.180,999.0,99.0 +1996,2,1,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-14.5,-17.3,77,99000,0,0,210,0,0,0,0,0,0,0,300,1.5,9,9,11.3,77777,9,999999999,69,0.0920,0,88,0.180,999.0,99.0 +1996,2,1,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-16.2,-19.5,73,99000,0,0,203,0,0,0,0,0,0,0,110,1.5,9,9,11.3,77777,9,999999999,69,0.0920,0,88,0.180,999.0,99.0 +1996,2,1,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-16.2,-19.5,73,99000,0,0,203,0,0,0,0,0,0,0,110,1.5,9,9,11.3,77777,9,999999999,69,0.0920,0,88,0.180,999.0,99.0 +1996,2,1,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-16.2,-19.5,73,99000,0,0,203,0,0,0,0,0,0,0,70,1.5,9,9,11.3,77777,9,999999999,69,0.0920,0,88,0.180,999.0,99.0 +1996,2,1,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-15.6,-18.9,73,99100,0,0,205,0,0,0,0,0,0,0,40,2.0,9,9,11.3,77777,9,999999999,69,0.0920,0,88,0.180,0.0,6.0 +1996,2,1,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-15.0,-18.9,69,99100,6,317,213,0,0,0,0,0,0,0,10,1.0,10,10,9.7,3600,9,999999999,69,0.0920,0,88,0.180,999.0,99.0 +1996,2,1,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-14.5,-18.4,69,99100,173,1409,215,37,0,37,4200,0,4200,1270,60,1.5,10,10,9.7,3600,9,999999999,69,0.0920,0,88,0.180,999.0,99.0 +1996,2,1,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-13.9,-18.4,66,99100,398,1409,217,77,0,77,8800,0,8800,2990,120,1.5,10,10,9.7,3600,9,999999999,69,0.0920,0,88,0.180,999.0,99.0 +1996,2,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-12.8,-17.8,63,99100,579,1409,221,129,0,129,14800,0,14800,5230,210,2.0,10,10,9.7,3600,9,999999999,69,0.0920,0,88,0.180,999.0,99.0 +1996,2,1,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-11.7,-17.8,57,99100,703,1409,225,169,0,169,19500,0,19500,7060,220,2.0,10,10,9.7,3600,9,999999999,69,0.0920,0,88,0.180,999.0,99.0 +1996,2,1,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-10.0,-17.3,51,99100,761,1409,231,188,0,188,21700,0,21700,7960,240,3.6,10,10,11.3,3600,9,999999999,69,0.0920,0,88,0.180,0.0,6.0 +1996,2,1,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-10.0,-15.6,60,99000,750,1409,233,147,0,147,17300,0,17300,6550,230,5.6,10,10,6.4,2100,9,999999999,69,0.0920,0,88,0.180,999.0,99.0 +1996,2,1,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-10.0,-14.5,67,99000,669,1409,234,126,0,126,14800,0,14800,5500,250,3.6,10,10,6.4,2100,9,999999999,69,0.0920,0,88,0.180,999.0,99.0 +1996,2,1,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-10.0,-13.4,74,99000,524,1409,235,90,0,90,10500,0,10500,3780,240,3.6,10,10,4.8,2100,9,999999999,69,0.0920,0,88,0.180,999.0,99.0 +1996,2,1,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-10.0,-13.4,74,99100,327,1409,228,81,39,71,8800,3300,8000,1880,250,3.0,9,9,8.0,1800,9,999999999,69,0.0920,0,88,0.180,999.0,99.0 +1996,2,1,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-10.6,-13.4,78,99100,94,1256,233,16,0,16,1900,0,1900,590,230,3.6,10,10,8.0,1800,9,999999999,69,0.0920,0,88,0.180,999.0,99.0 +1996,2,1,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-11.7,-13.9,82,99100,0,0,222,0,0,0,0,0,0,0,230,2.5,9,9,11.3,600,9,999999999,69,0.0920,0,88,0.180,999.0,99.0 +1996,2,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-10.0,-13.4,74,99100,0,0,235,0,0,0,0,0,0,0,260,4.1,10,10,11.3,3000,9,999999999,69,0.0920,0,88,0.180,999.0,99.0 +1996,2,1,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-10.0,-13.4,74,99200,0,0,235,0,0,0,0,0,0,0,270,5.6,10,10,11.3,3000,9,999999999,69,0.0920,0,88,0.180,999.0,99.0 +1996,2,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-10.0,-13.9,70,99200,0,0,234,0,0,0,0,0,0,0,280,5.6,10,10,11.3,3000,9,999999999,69,0.0920,0,88,0.180,999.0,99.0 +1996,2,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-10.6,-14.5,70,99300,0,0,232,0,0,0,0,0,0,0,280,5.1,10,10,11.3,3000,9,999999999,69,0.0920,0,88,0.180,999.0,99.0 +1996,2,1,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-10.0,-14.5,67,99300,0,0,234,0,0,0,0,0,0,0,290,5.1,10,10,11.3,3000,9,999999999,69,0.0920,0,88,0.180,999.0,99.0 +1996,2,2,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-10.6,-15.6,63,99300,0,0,231,0,0,0,0,0,0,0,310,7.2,10,10,11.3,3600,9,999999999,69,0.0920,0,88,0.180,999.0,99.0 +1996,2,2,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-11.2,-15.6,67,99300,0,0,229,0,0,0,0,0,0,0,290,5.1,10,10,11.3,3600,9,999999999,80,0.0920,0,88,0.180,999.0,99.0 +1996,2,2,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-11.7,-17.3,60,99400,0,0,225,0,0,0,0,0,0,0,330,5.1,10,10,11.3,3600,9,999999999,80,0.0920,0,88,0.180,999.0,99.0 +1996,2,2,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-12.8,-17.3,66,99400,0,0,222,0,0,0,0,0,0,0,330,5.1,10,10,11.3,6000,9,999999999,80,0.0920,0,88,0.180,999.0,99.0 +1996,2,2,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-13.4,-18.9,60,99500,0,0,218,0,0,0,0,0,0,0,330,4.6,10,10,11.3,6000,9,999999999,80,0.0920,0,88,0.180,999.0,99.0 +1996,2,2,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-14.5,-19.5,63,99500,0,0,214,0,0,0,0,0,0,0,340,5.1,10,10,11.3,6000,9,999999999,80,0.0920,0,88,0.180,999.0,99.0 +1996,2,2,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-15.0,-18.9,69,99600,0,0,213,0,0,0,0,0,0,0,350,3.0,10,10,11.3,6000,9,999999999,80,0.0920,0,88,0.180,0.0,6.0 +1996,2,2,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-15.0,-18.9,69,99700,7,340,213,0,0,0,0,0,0,0,340,4.1,10,10,11.3,6000,9,999999999,80,0.0920,0,88,0.180,999.0,99.0 +1996,2,2,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-15.0,-19.5,66,99700,177,1408,206,34,34,30,3800,2200,3600,630,10,4.6,9,9,11.3,3000,9,999999999,69,0.0920,0,88,0.180,999.0,99.0 +1996,2,2,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-15.0,-19.5,66,99700,403,1408,206,88,42,76,9700,3700,8600,2130,360,5.6,9,9,11.3,3000,9,999999999,69,0.0920,0,88,0.180,999.0,99.0 +1996,2,2,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-14.5,-19.5,63,99800,584,1408,208,212,67,183,23100,6500,20400,5090,10,7.2,9,9,11.3,3000,9,999999999,69,0.0920,0,88,0.180,999.0,99.0 +1996,2,2,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-13.9,-20.0,56,99800,709,1408,215,147,0,147,17100,0,17100,6380,20,4.1,10,10,11.3,3000,9,999999999,69,0.0920,0,88,0.180,999.0,99.0 +1996,2,2,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-13.4,-19.5,57,99600,767,1408,218,162,0,162,18900,0,18900,7140,360,5.1,10,10,11.3,3000,9,999999999,69,0.0920,0,88,0.180,0.0,6.0 +1996,2,2,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-13.9,-19.5,59,99600,755,1408,216,159,0,159,18600,0,18600,6990,360,5.6,10,10,11.3,3000,9,999999999,69,0.0920,0,88,0.180,999.0,99.0 +1996,2,2,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-13.4,-20.0,54,99500,674,1408,217,173,0,173,19800,0,19800,7010,360,5.1,10,10,11.3,3600,9,999999999,60,0.0920,0,88,0.180,999.0,99.0 +1996,2,2,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-13.9,-19.5,59,99500,530,1408,216,128,0,128,14600,0,14600,4980,10,5.1,10,10,11.3,3300,9,999999999,60,0.0920,0,88,0.180,999.0,99.0 +1996,2,2,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-14.5,-20.0,60,99500,332,1408,213,69,0,69,7800,0,7800,2560,360,5.1,10,10,11.3,3900,9,999999999,60,0.0920,0,88,0.180,999.0,99.0 +1996,2,2,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-14.5,-19.5,63,99600,99,1279,214,18,0,18,2100,0,2100,650,350,5.6,10,10,11.3,6000,9,999999999,60,0.0920,0,88,0.180,999.0,99.0 +1996,2,2,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-15.0,-19.5,66,99600,0,0,212,0,0,0,0,0,0,0,350,5.6,10,10,11.3,6000,9,999999999,60,0.0920,0,88,0.180,0.0,6.0 +1996,2,2,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-15.0,-18.9,69,99500,0,0,213,0,0,0,0,0,0,0,360,5.6,10,10,11.3,6000,9,999999999,60,0.0920,0,88,0.180,999.0,99.0 +1996,2,2,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-15.0,-18.4,73,99600,0,0,213,0,0,0,0,0,0,0,360,5.1,10,10,11.3,6000,9,999999999,50,0.0920,0,88,0.180,999.0,99.0 +1996,2,2,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-15.6,-20.0,66,99600,0,0,210,0,0,0,0,0,0,0,10,5.1,10,10,11.3,6000,9,999999999,50,0.0920,0,88,0.180,999.0,99.0 +1996,2,2,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-16.2,-20.6,66,99500,0,0,202,0,0,0,0,0,0,0,10,6.1,9,9,11.3,6000,9,999999999,50,0.0920,0,88,0.180,999.0,99.0 +1996,2,2,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-16.7,-20.6,69,99500,0,0,178,0,0,0,0,0,0,0,10,5.1,0,0,11.3,77777,9,999999999,50,0.0920,0,88,0.180,999.0,99.0 +1996,2,3,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-17.3,-20.6,73,99500,0,0,177,0,0,0,0,0,0,0,10,4.6,0,0,11.3,77777,9,999999999,50,0.0930,0,88,0.180,0.0,6.0 +1996,2,3,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-17.8,-20.6,77,99600,0,0,175,0,0,0,0,0,0,0,10,5.1,0,0,11.3,77777,9,999999999,40,0.0930,0,88,0.180,999.0,99.0 +1996,2,3,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-17.8,-20.0,81,99600,0,0,176,0,0,0,0,0,0,0,10,4.1,0,0,11.3,77777,9,999999999,40,0.0930,0,88,0.180,999.0,99.0 +1996,2,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-17.8,-20.0,81,99600,0,0,197,0,0,0,0,0,0,0,20,5.6,9,9,11.3,77777,9,999999999,40,0.0930,0,88,0.180,999.0,99.0 +1996,2,3,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-17.8,-21.2,72,99600,0,0,181,0,0,0,0,0,0,0,20,4.1,2,2,11.3,77777,9,999999999,40,0.0930,0,88,0.180,999.0,99.0 +1996,2,3,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-18.4,-21.7,73,99700,0,0,180,0,0,0,0,0,0,0,360,5.1,3,3,11.3,77777,9,999999999,40,0.0930,0,88,0.180,999.0,99.0 +1996,2,3,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-18.9,-21.7,76,99700,0,0,177,0,0,0,0,0,0,0,360,4.6,2,2,11.3,77777,9,999999999,40,0.0930,0,88,0.180,0.0,6.0 +1996,2,3,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-19.5,-21.7,81,99800,8,364,177,0,1,0,0,0,0,0,50,4.1,3,3,11.3,77777,9,999999999,40,0.0930,0,88,0.180,999.0,99.0 +1996,2,3,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-18.4,-21.2,76,99800,182,1408,179,65,152,45,6800,8800,5700,830,10,5.6,2,2,11.3,77777,9,999999999,40,0.0930,0,88,0.180,999.0,99.0 +1996,2,3,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-17.3,-21.2,69,99900,407,1408,184,175,320,83,18700,28000,10500,1520,40,4.6,3,3,11.3,77777,9,999999999,40,0.0930,0,88,0.180,999.0,99.0 +1996,2,3,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-16.2,-20.6,66,99900,589,1408,186,374,479,173,38500,46300,19100,3520,30,3.6,2,2,11.3,77777,9,999999999,30,0.0930,0,88,0.180,999.0,99.0 +1996,2,3,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-14.5,-20.0,60,99900,714,1408,208,222,66,188,24400,6500,21000,5820,350,5.6,9,9,11.3,3000,9,999999999,30,0.0930,0,88,0.180,999.0,99.0 +1996,2,3,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-14.5,-20.6,56,99800,773,1408,207,370,199,261,40200,20600,28900,6750,350,6.6,9,9,11.3,3000,9,999999999,30,0.0930,0,88,0.180,999.0,99.0 +1996,2,3,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-14.5,-20.0,60,99800,761,1408,208,365,73,326,40000,7400,36000,9190,20,6.1,9,9,11.3,3000,9,999999999,30,0.0930,0,88,0.180,999.0,99.0 +1996,2,3,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-15.0,-20.6,59,99700,680,1408,205,295,66,263,32300,6600,29100,7290,350,3.0,9,9,11.3,6000,9,999999999,30,0.0930,0,88,0.180,999.0,99.0 +1996,2,3,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-14.5,-20.6,56,99800,536,1408,207,203,44,186,22200,4200,20600,4910,10,5.6,9,9,11.3,6000,9,999999999,30,0.0930,0,88,0.180,999.0,99.0 +1996,2,3,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-15.0,-20.6,59,99800,338,1408,205,70,28,64,7800,2400,7200,1740,30,4.1,9,9,11.3,6000,9,999999999,30,0.0930,0,88,0.180,999.0,99.0 +1996,2,3,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-15.0,-20.6,59,99800,104,1302,205,24,3,23,2600,0,2600,800,320,4.1,9,9,11.3,6000,9,999999999,30,0.0930,0,88,0.180,999.0,99.0 +1996,2,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-16.2,-20.0,70,99900,0,0,202,0,0,0,0,0,0,0,340,3.0,9,9,11.3,6000,9,999999999,30,0.0930,0,88,0.180,999.0,99.0 +1996,2,3,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-16.7,-20.0,73,99900,0,0,186,0,0,0,0,0,0,0,310,2.0,3,3,11.3,77777,9,999999999,30,0.0930,0,88,0.180,999.0,99.0 +1996,2,3,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-17.3,-20.0,77,99900,0,0,183,0,0,0,0,0,0,0,300,2.0,2,2,11.3,77777,9,999999999,30,0.0930,0,88,0.180,999.0,99.0 +1996,2,3,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-17.3,-19.5,81,100000,0,0,185,0,0,0,0,0,0,0,310,3.0,3,3,11.3,77777,9,999999999,30,0.0930,0,88,0.180,999.0,99.0 +1996,2,3,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-17.3,-21.2,69,100000,0,0,198,0,0,0,0,0,0,0,310,4.1,9,9,11.3,77777,9,999999999,30,0.0930,0,88,0.180,999.0,99.0 +1996,2,3,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-17.8,-21.7,69,100000,0,0,182,0,0,0,0,0,0,0,290,3.6,3,3,11.3,77777,9,999999999,30,0.0930,0,88,0.180,999.0,99.0 +1996,2,4,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-18.4,-22.3,69,100000,0,0,180,0,0,0,0,0,0,0,320,4.1,3,3,11.3,77777,9,999999999,30,0.0930,0,88,0.180,999.0,99.0 +1996,2,4,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-18.9,-22.3,72,99900,0,0,177,0,0,0,0,0,0,0,320,3.0,2,2,11.3,77777,9,999999999,30,0.0930,0,88,0.180,999.0,99.0 +1996,2,4,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-19.5,-22.8,73,100000,0,0,169,0,0,0,0,0,0,0,310,2.0,0,0,11.3,77777,9,999999999,30,0.0930,0,88,0.180,999.0,99.0 +1996,2,4,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-20.0,-22.8,76,100000,0,0,173,0,0,0,0,0,0,0,320,2.5,2,2,11.3,77777,9,999999999,30,0.0930,0,88,0.180,999.0,99.0 +1996,2,4,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-20.6,-22.8,81,100000,0,0,173,0,0,0,0,0,0,0,300,2.0,3,3,11.3,77777,9,999999999,30,0.0930,0,88,0.180,999.0,99.0 +1996,2,4,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-20.6,-23.4,76,100100,0,0,166,0,0,0,0,0,0,0,320,2.0,0,0,11.3,77777,9,999999999,30,0.0930,0,88,0.180,999.0,99.0 +1996,2,4,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-21.2,-23.4,81,100100,0,0,164,0,0,0,0,0,0,0,320,3.0,0,0,16.1,77777,9,999999999,20,0.0930,0,88,0.180,0.0,6.0 +1996,2,4,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-21.2,-23.9,77,100200,9,387,169,1,18,1,0,0,0,0,310,2.5,2,2,16.1,77777,9,999999999,30,0.0930,0,88,0.180,999.0,99.0 +1996,2,4,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-19.5,-22.8,73,100200,186,1408,169,85,384,34,8700,24600,5400,610,320,3.6,0,0,16.1,77777,9,999999999,30,0.0930,0,88,0.180,999.0,99.0 +1996,2,4,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-18.4,-22.3,69,100300,412,1408,172,255,677,57,26200,59900,8600,1090,350,2.5,0,0,16.1,77777,9,999999999,30,0.0930,0,88,0.180,999.0,99.0 +1996,2,4,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-16.2,-21.7,59,100400,595,1408,187,343,525,121,36800,51100,15100,2370,310,3.0,3,3,16.1,77777,9,999999999,30,0.0930,0,88,0.180,999.0,99.0 +1996,2,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-16.2,-22.3,56,100400,720,1408,184,487,752,102,51800,74900,13400,2240,270,3.6,2,2,16.1,77777,9,999999999,30,0.0930,0,88,0.180,999.0,99.0 +1996,2,4,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-13.9,-21.7,48,100400,778,1408,193,419,552,113,44500,55400,13800,2580,290,5.6,3,3,16.1,77777,9,999999999,30,0.0930,0,88,0.180,0.0,6.0 +1996,2,4,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-14.5,-21.7,51,100300,767,1408,190,542,771,121,57300,77000,15100,2710,260,5.6,2,2,16.1,77777,9,999999999,30,0.0930,0,88,0.180,999.0,99.0 +1996,2,4,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-14.5,-21.2,53,100300,686,1408,192,456,695,117,47800,68200,14400,2450,250,4.6,3,3,16.1,77777,9,999999999,30,0.0930,0,88,0.180,999.0,99.0 +1996,2,4,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-12.8,-21.2,45,100300,542,1408,195,346,640,100,35900,60000,12700,1920,280,5.1,2,2,16.1,77777,9,999999999,30,0.0930,0,88,0.180,999.0,99.0 +1996,2,4,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-14.4,-21.1,53,100300,343,1408,192,185,481,68,19000,39400,9300,1220,260,5.1,3,3,16.0,77777,9,999999999,30,0.0930,0,88,0.180,999.0,99.0 +1996,2,4,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-15.6,-21.2,59,100400,109,1349,187,37,191,22,3900,10000,3100,400,260,6.1,2,2,16.1,77777,9,999999999,30,0.0930,0,88,0.180,999.0,99.0 +1996,2,4,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-16.2,-21.2,62,100400,0,0,187,0,0,0,0,0,0,0,260,5.1,3,3,16.1,77777,9,999999999,30,0.0930,0,88,0.180,0.0,6.0 +1996,2,4,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-17.3,-21.2,69,100400,0,0,176,0,0,0,0,0,0,0,270,6.1,0,0,16.1,77777,9,999999999,30,0.0930,0,88,0.180,999.0,99.0 +1996,2,4,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-18.4,-21.2,76,100400,0,0,173,0,0,0,0,0,0,0,250,3.6,0,0,16.1,77777,9,999999999,30,0.0930,0,88,0.180,999.0,99.0 +1996,2,4,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-18.4,-21.7,73,100400,0,0,173,0,0,0,0,0,0,0,250,3.6,0,0,16.1,77777,9,999999999,30,0.0930,0,88,0.180,999.0,99.0 +1996,2,4,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-19.5,-21.7,81,100300,0,0,170,0,0,0,0,0,0,0,240,3.0,0,0,16.1,77777,9,999999999,30,0.0930,0,88,0.180,999.0,99.0 +1996,2,4,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-18.9,-21.2,80,100300,0,0,172,0,0,0,0,0,0,0,220,3.6,0,0,16.1,77777,9,999999999,30,0.0930,0,88,0.180,999.0,99.0 +1996,2,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-18.4,-21.2,76,100200,0,0,173,0,0,0,0,0,0,0,200,3.6,0,0,16.1,77777,9,999999999,30,0.0940,0,88,0.180,0.0,6.0 +1996,2,5,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-18.4,-21.7,73,100200,0,0,173,0,0,0,0,0,0,0,200,4.1,0,0,16.1,77777,9,999999999,30,0.0940,0,88,0.180,999.0,99.0 +1996,2,5,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-17.8,-21.2,72,100200,0,0,175,0,0,0,0,0,0,0,230,5.1,0,0,16.1,77777,9,999999999,30,0.0940,0,88,0.180,999.0,99.0 +1996,2,5,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-18.4,-21.2,76,100100,0,0,173,0,0,0,0,0,0,0,200,4.6,0,0,16.1,77777,9,999999999,30,0.0940,0,88,0.180,999.0,99.0 +1996,2,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-18.4,-21.2,76,100100,0,0,173,0,0,0,0,0,0,0,210,4.6,0,0,16.1,77777,9,999999999,30,0.0940,0,88,0.180,999.0,99.0 +1996,2,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-17.8,-20.6,77,100100,0,0,179,0,0,0,0,0,0,0,200,5.6,3,1,16.1,77777,9,999999999,30,0.0940,0,88,0.180,999.0,99.0 +1996,2,5,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-17.8,-20.6,77,100000,0,0,186,0,0,0,0,0,0,0,180,5.6,9,5,16.1,77777,9,999999999,30,0.0940,0,88,0.180,0.0,6.0 +1996,2,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-17.3,-20.0,77,100000,10,410,188,1,1,1,0,0,0,0,200,6.6,9,5,16.1,77777,9,999999999,30,0.0940,0,88,0.180,999.0,99.0 +1996,2,5,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-15.6,-19.5,69,99900,191,1407,210,35,0,35,4000,0,4000,1260,190,8.2,10,10,16.1,7500,9,999999999,40,0.0940,0,88,0.180,999.0,99.0 +1996,2,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-13.9,-18.4,66,99900,418,1407,217,88,0,88,10000,0,10000,3380,210,10.2,10,10,16.1,4200,9,999999999,40,0.0940,0,88,0.180,999.0,99.0 +1996,2,5,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-11.7,-17.8,57,99800,600,1407,206,300,120,249,32800,11900,27800,6440,210,9.3,9,5,16.0,7500,9,999999999,40,0.0940,0,88,0.180,999.0,99.0 +1996,2,5,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-9.5,-17.3,49,99800,725,1407,214,428,384,230,45600,40000,24900,5360,210,10.8,9,5,16.1,77777,9,999999999,40,0.0940,0,88,0.180,999.0,99.0 +1996,2,5,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-7.8,-16.7,45,99700,784,1407,220,506,499,227,52600,50600,24300,5190,230,10.8,9,5,16.1,77777,9,999999999,40,0.0940,0,88,0.180,0.0,6.0 +1996,2,5,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.2,-15.6,43,99600,773,1407,218,498,689,119,52700,69000,14700,2690,240,10.8,3,1,16.1,77777,9,999999999,40,0.0940,0,88,0.180,999.0,99.0 +1996,2,5,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.6,-14.5,45,99600,692,1407,250,172,0,172,19800,0,19800,7090,240,8.2,10,10,16.1,3300,9,999999999,50,0.0940,0,88,0.180,999.0,99.0 +1996,2,5,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.6,-14.5,45,99600,547,1407,250,101,0,101,11800,0,11800,4230,270,7.7,10,10,16.1,1200,9,999999999,50,0.0940,0,88,0.180,999.0,99.0 +1996,2,5,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.6,-13.9,48,99700,349,1407,230,162,276,94,17200,23000,11500,1840,270,7.2,9,5,16.1,1200,9,999999999,50,0.0940,0,88,0.180,999.0,99.0 +1996,2,5,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.6,-13.4,50,99700,114,1372,230,32,54,28,3600,2800,3400,580,250,6.1,9,5,16.1,1200,9,999999999,50,0.0940,0,88,0.180,999.0,99.0 +1996,2,5,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.2,-12.3,58,99800,0,0,229,0,0,0,0,0,0,0,250,6.1,9,5,16.1,1200,9,999999999,50,0.0940,0,88,0.180,0.0,6.0 +1996,2,5,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-8.4,-12.8,68,99800,0,0,213,0,0,0,0,0,0,0,260,3.6,3,1,16.1,77777,9,999999999,50,0.0940,0,88,0.180,999.0,99.0 +1996,2,5,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-9.5,-13.4,70,99900,0,0,209,0,0,0,0,0,0,0,230,3.6,2,1,16.1,77777,9,999999999,50,0.0940,0,88,0.180,999.0,99.0 +1996,2,5,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-9.5,-12.8,74,99900,0,0,206,0,0,0,0,0,0,0,240,2.0,0,0,16.1,77777,9,999999999,60,0.0940,0,88,0.180,999.0,99.0 +1996,2,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-10.0,-13.4,74,99900,0,0,204,0,0,0,0,0,0,0,190,2.5,0,0,16.1,77777,9,999999999,60,0.0940,0,88,0.180,999.0,99.0 +1996,2,5,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-10.0,-13.4,74,99900,0,0,204,0,0,0,0,0,0,0,210,4.1,0,0,16.1,77777,9,999999999,60,0.0940,0,88,0.180,999.0,99.0 +1996,2,6,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-11.2,-14.5,74,99900,0,0,199,0,0,0,0,0,0,0,200,2.0,0,0,16.1,77777,9,999999999,60,0.0940,0,88,0.180,0.0,6.0 +1996,2,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-9.5,-12.8,74,99900,0,0,206,0,0,0,0,0,0,0,140,2.0,0,0,16.1,77777,9,999999999,60,0.0940,0,88,0.180,999.0,99.0 +1996,2,6,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-11.7,-13.9,82,99900,0,0,198,0,0,0,0,0,0,0,110,1.5,0,0,16.1,77777,9,999999999,60,0.0940,0,88,0.180,999.0,99.0 +1996,2,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-12.3,-14.5,82,99900,0,0,196,0,0,0,0,0,0,0,70,2.0,0,0,16.1,77777,9,999999999,60,0.0940,0,88,0.180,999.0,99.0 +1996,2,6,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-12.3,-13.9,86,99900,0,0,196,0,0,0,0,0,0,0,120,1.0,0,0,16.1,77777,9,999999999,69,0.0940,0,88,0.180,999.0,99.0 +1996,2,6,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-13.9,-15.0,90,99900,0,0,191,0,0,0,0,0,0,0,0,0.0,0,0,16.1,77777,9,999999999,69,0.0940,0,88,0.180,999.0,99.0 +1996,2,6,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-13.9,-15.0,90,99900,0,0,191,0,0,0,0,0,0,0,60,1.5,0,0,16.1,77777,9,999999999,69,0.0940,0,88,0.180,0.0,6.0 +1996,2,6,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-13.4,-15.0,86,100000,11,434,198,1,11,1,0,0,0,0,30,1.5,2,2,9.7,77777,9,999999999,69,0.0940,0,88,0.180,999.0,99.0 +1996,2,6,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-10.0,-12.8,78,100100,196,1407,213,94,270,56,9500,16800,7200,1040,150,2.5,3,3,8.0,77777,9,999999999,69,0.0940,0,88,0.180,999.0,99.0 +1996,2,6,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.7,-11.2,67,100200,423,1407,223,221,493,73,22900,43500,9800,1370,190,4.1,2,2,8.0,77777,9,999999999,69,0.0940,0,88,0.180,999.0,99.0 +1996,2,6,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.9,-10.6,56,100100,606,1407,235,383,648,104,40000,62300,13100,2080,180,5.1,3,3,8.0,77777,9,999999999,69,0.0940,0,88,0.180,999.0,99.0 +1996,2,6,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.2,-10.6,45,100200,731,1407,242,478,730,98,49700,71600,12400,2050,180,6.6,2,2,8.0,77777,9,999999999,69,0.0940,0,88,0.180,999.0,99.0 +1996,2,6,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-10.6,42,100100,790,1407,247,539,741,123,57200,74300,15300,2820,200,6.6,3,3,8.0,77777,9,999999999,69,0.0940,0,88,0.180,0.0,6.0 +1996,2,6,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.1,-10.6,37,100000,779,1407,251,520,684,141,54500,68000,16700,3130,210,5.6,2,2,11.3,77777,9,999999999,80,0.0940,0,88,0.180,999.0,99.0 +1996,2,6,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.6,-10.6,36,100000,698,1407,255,460,610,157,49000,61100,18600,3280,210,7.7,3,3,11.3,77777,9,999999999,80,0.0940,0,88,0.180,999.0,99.0 +1996,2,6,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.1,-10.0,39,99800,553,1407,273,178,52,158,19600,5000,17600,4420,200,7.7,9,9,11.3,77777,9,999999999,80,0.0940,0,88,0.180,999.0,99.0 +1996,2,6,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-10.0,43,99800,355,1407,269,89,46,78,9800,4000,8800,2090,210,6.1,9,9,11.3,77777,9,999999999,80,0.0940,0,88,0.180,999.0,99.0 +1996,2,6,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-0.6,-9.5,47,99800,119,1395,267,24,12,23,2600,700,2600,580,190,4.6,9,9,11.3,77777,9,999999999,80,0.0940,0,88,0.180,999.0,99.0 +1996,2,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.2,-8.9,52,99700,0,0,265,0,0,0,0,0,0,0,170,5.1,9,9,11.3,77777,9,999999999,80,0.0940,0,88,0.180,0.0,6.0 +1996,2,6,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.7,-8.9,54,99700,0,0,263,0,0,0,0,0,0,0,190,5.1,9,9,11.3,77777,9,999999999,80,0.0940,0,88,0.180,999.0,99.0 +1996,2,6,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.7,-10.0,49,99500,0,0,262,0,0,0,0,0,0,0,200,8.7,9,9,11.3,7500,9,999999999,80,0.0940,0,88,0.180,999.0,99.0 +1996,2,6,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.3,-10.6,49,99500,0,0,259,0,0,0,0,0,0,0,190,8.2,9,9,11.3,7500,9,999999999,80,0.0940,0,88,0.180,999.0,99.0 +1996,2,6,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.3,-10.0,51,99400,0,0,260,0,0,0,0,0,0,0,190,6.1,9,9,11.3,7500,9,999999999,89,0.0940,0,88,0.180,999.0,99.0 +1996,2,6,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.3,-10.0,51,99300,0,0,260,0,0,0,0,0,0,0,200,7.2,9,9,11.3,7500,9,999999999,89,0.0940,0,88,0.180,999.0,99.0 +1996,2,7,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.8,-9.5,56,99300,0,0,266,0,0,0,0,0,0,0,200,6.1,10,10,11.3,7500,9,999999999,89,0.0950,0,88,0.180,0.0,6.0 +1996,2,7,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.8,-9.5,56,99200,0,0,258,0,0,0,0,0,0,0,190,6.1,9,9,11.3,7500,9,999999999,89,0.0950,0,88,0.180,999.0,99.0 +1996,2,7,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.3,-8.4,59,99100,0,0,261,0,0,0,0,0,0,0,200,6.6,9,9,11.3,7500,9,999999999,89,0.0950,0,88,0.180,999.0,99.0 +1996,2,7,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.7,-8.4,56,99000,0,0,271,0,0,0,0,0,0,0,200,6.1,10,10,11.3,7500,9,999999999,89,0.0950,0,88,0.180,999.0,99.0 +1996,2,7,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-0.6,-7.3,57,99000,0,0,277,0,0,0,0,0,0,0,200,8.7,10,10,11.3,3300,9,999999999,89,0.0950,0,88,0.180,999.0,99.0 +1996,2,7,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-5.6,62,98900,0,0,281,0,0,0,0,0,0,0,200,8.2,10,10,11.3,450,9,999999999,89,0.0950,0,88,0.180,999.0,99.0 +1996,2,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.5,-3.9,70,98800,0,0,285,0,0,0,0,0,0,0,200,8.7,10,10,11.3,450,9,999999999,89,0.0950,0,88,0.180,0.0,6.0 +1996,2,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.1,-3.4,70,98800,12,457,288,1,0,1,0,0,0,0,190,8.7,10,10,11.3,450,9,999999999,100,0.0950,0,88,0.180,999.0,99.0 +1996,2,7,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.1,-2.8,73,98700,201,1406,288,31,0,31,3600,0,3600,1160,200,8.2,10,10,11.3,450,9,999999999,100,0.0950,0,88,0.180,999.0,99.0 +1996,2,7,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.6,-2.3,74,98700,428,1406,291,81,0,81,9300,0,9300,3210,210,10.8,10,10,11.3,450,9,999999999,100,0.0950,0,88,0.180,999.0,99.0 +1996,2,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.2,-1.2,77,98600,611,1406,295,126,0,126,14600,0,14600,5280,220,8.2,10,10,8.0,450,9,999999999,100,0.0950,0,88,0.180,999.0,99.0 +1996,2,7,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.3,-1.2,71,98600,737,1406,299,157,0,157,18300,0,18300,6840,220,12.3,10,10,9.7,450,9,999999999,100,0.0950,0,88,0.180,999.0,99.0 +1996,2,7,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.8,0.0,76,98500,796,1406,303,144,0,144,17100,0,17100,6620,220,12.3,10,10,9.7,390,9,999999999,110,0.0950,0,88,0.180,0.0,6.0 +1996,2,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.8,0.5,79,98500,785,1406,303,142,0,142,16800,0,16800,6510,230,9.2,10,10,8.0,330,9,999999999,110,0.0950,0,88,0.180,999.0,99.0 +1996,2,7,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.8,1.1,83,98400,704,1406,304,125,0,125,14800,0,14800,5590,230,7.2,10,10,6.4,300,9,999999999,110,0.0950,0,88,0.180,999.0,99.0 +1996,2,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.8,1.1,83,98400,559,1406,304,95,0,95,11100,0,11100,4060,220,8.7,10,10,4.8,300,9,999999999,110,0.0950,0,88,0.180,999.0,99.0 +1996,2,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.8,1.6,86,98300,360,1406,305,55,0,55,6400,0,6400,2210,220,8.7,10,10,3.2,240,9,999999999,120,0.0950,0,88,0.180,999.0,99.0 +1996,2,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.8,2.2,89,98300,124,1406,305,14,0,14,1700,0,1700,530,220,6.1,10,10,2.4,210,9,999999999,120,0.0950,0,88,0.180,999.0,99.0 +1996,2,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.8,2.2,89,98400,0,12,305,0,0,0,0,0,0,0,210,7.2,10,10,2.8,180,9,999999999,120,0.0950,0,88,0.180,0.0,6.0 +1996,2,7,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.8,2.2,89,98400,0,0,305,0,0,0,0,0,0,0,210,5.6,10,10,2.8,180,9,999999999,120,0.0950,0,88,0.180,999.0,99.0 +1996,2,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.4,2.7,89,98300,0,0,308,0,0,0,0,0,0,0,190,7.2,10,10,4.8,180,9,999999999,129,0.0950,0,88,0.180,999.0,99.0 +1996,2,7,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.4,2.7,89,98300,0,0,308,0,0,0,0,0,0,0,210,10.2,10,10,8.0,180,9,999999999,129,0.0950,0,88,0.180,999.0,99.0 +1996,2,7,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.4,2.7,89,98200,0,0,308,0,0,0,0,0,0,0,210,7.2,10,10,4.8,180,9,999999999,129,0.0950,0,88,0.180,999.0,99.0 +1996,2,7,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.4,2.7,89,98300,0,0,308,0,0,0,0,0,0,0,210,7.7,10,10,8.0,180,9,999999999,129,0.0950,0,88,0.180,999.0,99.0 +1996,2,8,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.4,2.7,89,98300,0,0,308,0,0,0,0,0,0,0,220,7.2,10,10,11.3,180,9,999999999,129,0.0950,0,88,0.180,999.0,99.0 +1996,2,8,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,3.3,89,98200,0,0,312,0,0,0,0,0,0,0,220,8.2,10,10,11.3,180,9,999999999,139,0.0950,0,88,0.180,999.0,99.0 +1996,2,8,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,3.3,89,98100,0,0,312,0,0,0,0,0,0,0,220,7.2,10,10,11.3,180,9,999999999,139,0.0950,0,88,0.180,999.0,99.0 +1996,2,8,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,3.3,89,98000,0,0,312,0,0,0,0,0,0,0,220,8.7,10,10,11.3,180,9,999999999,139,0.0950,0,88,0.180,999.0,99.0 +1996,2,8,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.5,3.8,89,98000,0,0,315,0,0,0,0,0,0,0,220,7.2,10,10,8.0,180,9,999999999,139,0.0950,0,88,0.180,999.0,99.0 +1996,2,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.5,3.8,89,97900,0,0,315,0,0,0,0,0,0,0,220,8.7,10,10,8.0,180,9,999999999,150,0.0950,0,88,0.180,999.0,99.0 +1996,2,8,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.5,3.8,89,97800,0,0,315,0,0,0,0,0,0,0,210,8.7,10,10,11.3,180,9,999999999,150,0.0950,0,88,0.180,999.0,99.0 +1996,2,8,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.1,3.9,86,97800,14,480,317,1,0,1,0,0,0,0,210,9.3,10,10,11.2,330,9,999999999,150,0.0950,0,88,0.180,999.0,99.0 +1996,2,8,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.2,5.0,86,97700,206,1406,324,29,0,29,3400,0,3400,1100,220,8.2,10,10,11.3,360,9,999999999,139,0.0950,0,88,0.180,999.0,99.0 +1996,2,8,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.2,5.0,86,97700,433,1406,324,73,0,73,8500,0,8500,2970,220,9.2,10,10,11.3,390,9,999999999,139,0.0950,0,88,0.180,999.0,99.0 +1996,2,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.7,5.0,83,97600,617,1406,326,110,0,110,12900,0,12900,4760,220,9.2,10,10,9.7,360,9,999999999,139,0.0950,0,88,0.180,999.0,99.0 +1996,2,8,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.3,6.1,86,97600,743,1406,330,136,0,136,16100,0,16100,6130,220,8.2,10,10,4.8,300,9,999999999,139,0.0950,0,88,0.180,999.0,99.0 +1996,2,8,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,6.6,89,97500,802,1406,331,148,0,148,17500,0,17500,6800,230,6.1,10,10,4.8,300,9,999999999,129,0.0950,0,88,0.180,2.0,6.0 +1996,2,8,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.8,6.6,86,97500,791,1406,333,146,0,146,17300,0,17300,6680,260,5.6,10,10,3.2,240,9,999999999,129,0.0950,0,88,0.180,999.0,99.0 +1996,2,8,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.3,6.1,86,97300,710,1406,301,447,596,146,46300,58200,16800,3010,220,10.2,9,4,11.3,600,9,999999999,129,0.0950,0,88,0.180,999.0,99.0 +1996,2,8,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,5.0,74,97300,565,1406,304,338,435,163,34900,41700,18100,3280,260,8.2,9,4,16.1,3900,9,999999999,129,0.0950,0,88,0.180,4.0,6.0 +1996,2,8,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,5.5,74,97400,366,1406,307,201,403,96,20800,33800,11900,1800,260,7.7,9,4,16.1,930,9,999999999,120,0.0950,0,88,0.180,999.0,99.0 +1996,2,8,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.4,5.0,74,97500,129,1406,304,45,141,32,4600,6900,4000,580,260,8.7,9,4,11.3,1200,9,999999999,120,0.0950,0,88,0.180,999.0,99.0 +1996,2,8,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.8,5.0,77,97600,0,35,302,0,1,0,0,0,0,0,260,7.2,9,4,11.3,1230,9,999999999,120,0.0950,0,88,0.180,4.0,6.0 +1996,2,8,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.3,4.4,76,97600,0,0,328,0,0,0,0,0,0,0,280,5.1,10,10,11.3,540,9,999999999,120,0.0950,0,88,0.180,999.0,99.0 +1996,2,8,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.7,2.7,71,97700,0,0,323,0,0,0,0,0,0,0,300,5.6,10,10,11.3,600,9,999999999,120,0.0950,0,88,0.180,999.0,99.0 +1996,2,8,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.5,1.1,73,97800,0,0,312,0,0,0,0,0,0,0,300,5.1,10,10,11.3,810,9,999999999,110,0.0950,0,88,0.180,999.0,99.0 +1996,2,8,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.5,0.5,70,97800,0,0,311,0,0,0,0,0,0,0,320,4.6,10,10,11.3,810,9,999999999,110,0.0950,0,88,0.180,999.0,99.0 +1996,2,8,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,0.5,73,97900,0,0,309,0,0,0,0,0,0,0,290,3.6,10,10,11.3,810,9,999999999,110,0.0950,0,88,0.180,999.0,99.0 +1996,2,9,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,0.5,76,97900,0,0,306,0,0,0,0,0,0,0,280,4.1,10,10,11.3,750,9,999999999,110,0.0960,0,88,0.180,0.0,6.0 +1996,2,9,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.8,0.5,79,97900,0,0,303,0,0,0,0,0,0,0,260,4.1,10,10,11.3,750,9,999999999,100,0.0960,0,88,0.180,999.0,99.0 +1996,2,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.3,0.0,79,97900,0,0,274,0,0,0,0,0,0,0,280,3.6,9,4,11.3,750,9,999999999,100,0.0960,0,88,0.180,999.0,99.0 +1996,2,9,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.3,0.0,79,97900,0,0,301,0,0,0,0,0,0,0,290,4.1,10,10,11.3,450,9,999999999,100,0.0960,0,88,0.180,999.0,99.0 +1996,2,9,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.7,0.0,82,98000,0,0,298,0,0,0,0,0,0,0,290,3.6,10,10,11.3,450,9,999999999,100,0.0960,0,88,0.180,999.0,99.0 +1996,2,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.7,0.0,82,98000,0,0,298,0,0,0,0,0,0,0,270,5.1,10,10,11.3,330,9,999999999,89,0.0960,0,88,0.180,999.0,99.0 +1996,2,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-0.6,81,98100,0,0,295,0,0,0,0,0,0,0,290,4.6,10,10,11.3,240,9,999999999,89,0.0960,0,88,0.180,0.0,6.0 +1996,2,9,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.6,-1.2,81,98200,16,504,292,1,0,1,0,0,0,0,280,3.6,10,10,6.4,240,9,999999999,100,0.0960,0,88,0.180,999.0,99.0 +1996,2,9,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.6,-1.2,81,98300,211,1405,292,30,0,30,3500,0,3500,1140,280,4.1,10,10,6.4,270,9,999999999,100,0.0960,0,88,0.180,999.0,99.0 +1996,2,9,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.2,-1.2,77,98300,439,1405,295,74,0,74,8600,0,8600,3020,270,5.6,10,10,6.4,360,9,999999999,100,0.0960,0,88,0.180,999.0,99.0 +1996,2,9,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.3,-0.6,75,98400,623,1405,300,133,0,133,15400,0,15400,5550,270,5.1,10,10,6.4,450,9,999999999,100,0.0960,0,88,0.180,999.0,99.0 +1996,2,9,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.8,-0.6,73,98400,748,1405,275,416,438,183,44100,44300,20400,4000,260,4.6,9,4,6.4,450,9,999999999,110,0.0960,0,88,0.180,999.0,99.0 +1996,2,9,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,0.0,70,98400,808,1405,281,502,567,175,53900,57900,20500,3970,260,6.1,9,4,8.0,450,9,999999999,110,0.0960,0,88,0.180,0.0,6.0 +1996,2,9,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,0.0,70,98400,797,1405,281,566,656,193,60100,66800,22000,4380,270,5.6,9,4,8.0,600,9,999999999,110,0.0960,0,88,0.180,999.0,99.0 +1996,2,9,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.2,0.0,60,98400,716,1405,290,502,695,147,51900,68000,17200,3040,270,5.1,9,4,11.2,660,9,999999999,120,0.0960,0,88,0.180,999.0,99.0 +1996,2,9,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.2,0.5,62,98400,571,1405,290,220,335,83,24300,32500,11000,1560,270,6.1,9,4,11.3,7500,9,999999999,120,0.0960,0,88,0.180,999.0,99.0 +1996,2,9,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.1,-0.6,62,98400,372,1405,285,170,293,92,17600,24700,11100,1710,270,4.6,9,4,11.3,77777,9,999999999,120,0.0960,0,88,0.180,999.0,99.0 +1996,2,9,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.4,-1.2,66,98400,134,1405,277,52,94,43,5400,4400,5000,830,270,3.6,9,4,11.3,77777,9,999999999,129,0.0960,0,88,0.180,999.0,99.0 +1996,2,9,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-0.6,70,98400,0,82,278,0,2,0,0,0,0,0,160,1.5,9,4,11.3,77777,9,999999999,129,0.0960,0,88,0.180,0.0,6.0 +1996,2,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.1,-2.3,76,98400,0,0,255,0,0,0,0,0,0,0,0,0.0,3,1,11.3,77777,9,999999999,129,0.0960,0,88,0.180,999.0,99.0 +1996,2,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.5,-1.7,84,98400,0,0,253,0,0,0,0,0,0,0,140,2.0,2,1,11.3,77777,9,999999999,129,0.0960,0,88,0.180,999.0,99.0 +1996,2,9,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-0.6,-3.4,79,98300,0,0,248,0,0,0,0,0,0,0,140,1.5,3,1,11.3,77777,9,999999999,139,0.0960,0,88,0.180,999.0,99.0 +1996,2,9,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-2.3,83,98300,0,0,251,0,0,0,0,0,0,0,120,1.0,2,1,11.3,77777,9,999999999,139,0.0960,0,88,0.180,999.0,99.0 +1996,2,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-0.6,-2.8,83,98300,0,0,248,0,0,0,0,0,0,0,120,1.0,3,1,9.7,77777,9,999999999,139,0.0960,0,88,0.180,999.0,99.0 +1996,2,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-1.2,84,98200,0,0,262,0,0,0,0,0,0,0,160,2.0,3,3,9.7,77777,9,999999999,150,0.0960,0,88,0.180,0.0,6.0 +1996,2,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.6,-1.7,77,98200,0,0,284,0,0,0,0,0,0,0,130,2.5,9,9,11.3,3300,9,999999999,150,0.0960,0,88,0.180,999.0,99.0 +1996,2,10,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.6,-1.7,77,98100,0,0,292,0,0,0,0,0,0,0,190,3.0,10,10,11.3,3300,9,999999999,150,0.0960,0,88,0.180,999.0,99.0 +1996,2,10,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.7,-1.7,72,98000,0,0,296,0,0,0,0,0,0,0,170,4.6,10,10,11.3,3300,9,999999999,160,0.0960,0,88,0.180,999.0,99.0 +1996,2,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.2,-1.7,74,98000,0,0,294,0,0,0,0,0,0,0,170,5.6,10,10,11.3,4500,9,999999999,160,0.0960,0,88,0.180,999.0,99.0 +1996,2,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.2,-2.3,71,97900,0,0,285,0,0,0,0,0,0,0,160,4.6,9,9,11.3,4500,9,999999999,160,0.0960,0,88,0.180,999.0,99.0 +1996,2,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-2.3,71,97900,0,0,265,0,0,0,0,0,0,0,170,4.6,3,3,11.3,77777,9,999999999,160,0.0960,0,88,0.180,0.0,6.0 +1996,2,10,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.7,-1.7,72,97900,17,527,288,3,0,3,0,0,0,0,170,4.1,9,9,11.3,77777,9,999999999,160,0.0960,0,88,0.180,999.0,99.0 +1996,2,10,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.5,-0.6,64,97800,216,1405,301,47,44,40,5200,3100,4700,850,200,6.1,9,9,11.3,77777,9,999999999,160,0.0960,0,88,0.180,999.0,99.0 +1996,2,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.2,0.5,62,97800,444,1405,310,76,35,64,8300,3200,7300,1890,210,8.7,9,9,11.3,77777,9,999999999,160,0.0960,0,88,0.180,999.0,99.0 +1996,2,10,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.4,3.3,66,97700,628,1405,323,240,64,211,26300,6300,23400,5920,220,8.7,9,9,11.3,7500,9,999999999,160,0.0960,0,88,0.180,999.0,99.0 +1996,2,10,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.7,6.1,64,97600,754,1405,341,246,74,206,27100,7400,23100,6490,220,8.2,9,9,11.3,7500,9,999999999,160,0.0960,0,88,0.180,999.0,99.0 +1996,2,10,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.8,7.7,67,97500,814,1405,349,331,141,248,36100,14700,27500,6580,200,7.7,9,9,11.3,7500,9,999999999,150,0.0960,0,88,0.180,0.0,6.0 +1996,2,10,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,7.7,62,97300,803,1405,355,294,83,246,32300,8400,27500,7790,220,10.2,9,9,11.3,4500,9,999999999,150,0.0960,0,88,0.180,999.0,99.0 +1996,2,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,8.8,62,97200,722,1405,372,179,0,179,20600,0,20600,7470,220,12.8,10,10,11.3,7500,9,999999999,150,0.0960,0,88,0.180,999.0,99.0 +1996,2,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,8.8,56,97100,577,1405,380,133,0,133,15200,0,15200,5350,220,10.8,10,10,16.1,7500,9,999999999,150,0.0960,0,88,0.180,999.0,99.0 +1996,2,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,9.4,58,97200,378,1405,381,59,0,59,6900,0,6900,2380,240,11.8,10,10,11.3,1140,9,999999999,150,0.0960,0,88,0.180,999.0,99.0 +1996,2,10,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,8.3,56,97200,140,1405,366,36,58,30,3900,3200,3600,630,270,10.2,9,9,11.3,1140,9,999999999,150,0.0960,0,88,0.180,999.0,99.0 +1996,2,10,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,8.3,67,97300,1,105,352,0,0,0,0,0,0,0,250,7.7,9,9,11.3,960,9,999999999,139,0.0960,0,88,0.180,0.0,6.0 +1996,2,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.8,8.3,69,97300,0,0,359,0,0,0,0,0,0,0,260,8.2,10,10,11.3,3900,9,999999999,139,0.0960,0,88,0.180,999.0,99.0 +1996,2,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.6,5.5,66,97400,0,0,312,0,0,0,0,0,0,0,280,8.2,3,3,11.3,77777,9,999999999,139,0.0960,0,88,0.180,999.0,99.0 +1996,2,10,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.8,1.6,61,97500,0,0,318,0,0,0,0,0,0,0,300,10.2,9,9,16.1,900,9,999999999,139,0.0960,0,88,0.180,999.0,99.0 +1996,2,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.1,-1.2,59,97600,0,0,303,0,0,0,0,0,0,0,290,10.2,9,9,16.1,1200,9,999999999,139,0.0960,0,88,0.180,999.0,99.0 +1996,2,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.5,-2.3,56,97600,0,0,299,0,0,0,0,0,0,0,280,9.7,9,9,16.1,1200,9,999999999,139,0.0960,0,88,0.180,999.0,99.0 +1996,2,11,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-5.6,46,97500,0,0,268,0,0,0,0,0,0,0,280,10.2,2,2,16.1,77777,9,999999999,139,0.0970,0,88,0.180,0.0,6.0 +1996,2,11,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.8,-5.6,48,97500,0,0,289,0,0,0,0,0,0,0,260,8.7,9,9,16.1,4500,9,999999999,129,0.0970,0,88,0.180,999.0,99.0 +1996,2,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.8,-5.6,48,97500,0,0,289,0,0,0,0,0,0,0,260,8.7,9,9,16.1,1200,9,999999999,129,0.0970,0,88,0.180,999.0,99.0 +1996,2,11,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.3,-5.6,49,97400,0,0,287,0,0,0,0,0,0,0,260,9.7,9,9,16.1,1200,9,999999999,129,0.0970,0,88,0.180,999.0,99.0 +1996,2,11,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.3,-3.9,57,97400,0,0,297,0,0,0,0,0,0,0,260,8.7,10,10,16.1,960,9,999999999,129,0.0970,0,88,0.180,999.0,99.0 +1996,2,11,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.7,-3.4,62,97400,0,0,295,0,0,0,0,0,0,0,270,9.2,10,10,16.1,900,9,999999999,129,0.0970,0,88,0.180,999.0,99.0 +1996,2,11,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.3,-3.9,57,97500,0,0,297,0,0,0,0,0,0,0,270,8.7,10,10,16.1,810,9,999999999,129,0.0970,0,88,0.180,999.0,99.0 +1996,2,11,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.2,-4.5,59,97500,19,573,291,2,0,2,0,0,0,0,280,10.8,10,10,16.1,810,9,999999999,120,0.0970,0,88,0.180,999.0,99.0 +1996,2,11,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.2,-4.5,59,97500,222,1404,291,34,0,34,3900,0,3900,1280,280,11.3,10,10,16.1,810,9,999999999,120,0.0970,0,88,0.180,999.0,99.0 +1996,2,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.6,-4.5,61,97500,450,1404,289,85,0,85,9800,0,9800,3400,280,9.7,10,10,11.3,810,9,999999999,120,0.0970,0,88,0.180,999.0,99.0 +1996,2,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.2,-4.5,59,97600,634,1404,291,131,0,131,15200,0,15200,5540,270,11.8,10,10,11.3,810,9,999999999,110,0.0970,0,88,0.180,999.0,99.0 +1996,2,11,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.2,-3.4,64,97600,761,1404,292,162,0,162,18900,0,18900,7130,270,11.8,10,10,8.0,600,9,999999999,110,0.0970,0,88,0.180,999.0,99.0 +1996,2,11,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.6,-4.5,61,97600,820,1404,289,177,0,177,20700,0,20700,7920,280,11.8,10,10,11.3,600,9,999999999,110,0.0970,0,88,0.180,999.0,99.0 +1996,2,11,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.1,-3.4,70,97700,809,1404,288,174,0,174,20400,0,20400,7760,280,7.2,10,10,3.2,600,9,999999999,110,0.0970,0,88,0.180,999.0,99.0 +1996,2,11,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.6,-4.5,61,97700,728,1404,281,165,62,132,18100,6100,15000,4360,280,11.3,9,9,11.3,600,9,999999999,100,0.0970,0,88,0.180,999.0,99.0 +1996,2,11,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-3.4,75,97800,583,1404,283,118,0,118,13700,0,13700,4910,300,7.7,10,10,8.0,450,9,999999999,100,0.0970,0,88,0.180,4.0,6.0 +1996,2,11,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-5.6,62,97900,383,1404,281,69,0,69,8000,0,8000,2710,310,8.5,10,10,9.7,750,9,999999999,100,0.0970,0,88,0.180,999.0,99.0 +1996,2,11,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.5,-6.7,55,98000,145,1404,274,26,17,24,2800,1100,2700,610,310,9.2,9,9,11.3,870,9,999999999,89,0.0970,0,88,0.180,999.0,99.0 +1996,2,11,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-6.7,60,98200,1,129,270,0,1,0,0,0,0,0,320,6.6,9,9,11.3,840,9,999999999,89,0.0970,0,88,0.180,4.0,6.0 +1996,2,11,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-0.6,-6.2,62,98300,0,0,270,0,0,0,0,0,0,0,310,8.7,9,9,11.3,840,9,999999999,89,0.0970,0,88,0.180,999.0,99.0 +1996,2,11,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-0.6,-8.9,49,98300,0,0,267,0,0,0,0,0,0,0,340,7.2,9,9,11.3,840,9,999999999,89,0.0970,0,88,0.180,999.0,99.0 +1996,2,11,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.2,-6.7,63,98400,0,0,275,0,0,0,0,0,0,0,330,5.1,10,10,9.7,1050,9,999999999,80,0.0970,0,88,0.180,999.0,99.0 +1996,2,11,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.7,-7.8,59,98400,0,0,272,0,0,0,0,0,0,0,320,7.2,10,10,9.7,1050,9,999999999,80,0.0970,0,88,0.180,999.0,99.0 +1996,2,11,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.7,-10.0,49,98400,0,0,269,0,0,0,0,0,0,0,350,6.1,10,10,9.7,1050,9,999999999,80,0.0970,0,88,0.180,999.0,99.0 +1996,2,12,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.8,-9.5,56,98500,0,0,266,0,0,0,0,0,0,0,340,5.1,10,10,9.7,1050,9,999999999,69,0.0970,0,88,0.180,0.0,6.0 +1996,2,12,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.4,-9.5,59,98500,0,0,263,0,0,0,0,0,0,0,340,5.6,10,10,9.7,1050,9,999999999,69,0.0970,0,88,0.180,999.0,99.0 +1996,2,12,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.9,-10.0,59,98500,0,0,261,0,0,0,0,0,0,0,350,5.1,10,10,9.7,1050,9,999999999,69,0.0970,0,88,0.180,999.0,99.0 +1996,2,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.9,-5.6,86,98500,0,0,265,0,0,0,0,0,0,0,330,7.7,10,10,9.7,1050,9,999999999,60,0.0970,0,88,0.180,999.0,99.0 +1996,2,12,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.9,-10.0,59,98500,0,0,261,0,0,0,0,0,0,0,350,6.1,10,10,9.7,1050,9,999999999,60,0.0970,0,88,0.180,999.0,99.0 +1996,2,12,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.0,-11.2,58,98500,0,0,255,0,0,0,0,0,0,0,340,6.1,10,10,9.7,1050,9,999999999,60,0.0970,0,88,0.180,999.0,99.0 +1996,2,12,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.0,-11.2,58,98600,0,0,255,0,0,0,0,0,0,0,340,4.6,10,10,11.3,1050,9,999999999,60,0.0970,0,88,0.180,999.0,99.0 +1996,2,12,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.6,-11.7,59,98700,21,597,237,8,10,7,0,0,0,0,350,4.1,9,7,11.3,1050,9,999999999,60,0.0970,0,88,0.180,999.0,99.0 +1996,2,12,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.0,-11.2,58,98800,227,1404,243,70,63,60,7600,4500,6900,1280,330,6.1,9,8,11.3,1050,9,999999999,60,0.0970,0,88,0.180,999.0,99.0 +1996,2,12,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.5,-11.7,53,98800,456,1404,230,260,618,59,26900,56200,8600,1170,320,5.6,2,2,11.3,77777,9,999999999,60,0.0970,0,88,0.180,999.0,99.0 +1996,2,12,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.9,-12.3,48,98900,640,1404,259,168,0,168,19100,0,19100,6690,350,5.6,10,10,11.3,6000,9,999999999,60,0.0970,0,88,0.180,999.0,99.0 +1996,2,12,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.4,-12.3,46,98900,767,1404,233,505,748,96,53000,74000,12500,2110,350,8.2,2,2,11.3,77777,9,999999999,60,0.0970,0,88,0.180,999.0,99.0 +1996,2,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.4,-11.2,51,98900,826,1404,249,287,262,132,31800,26900,15900,2970,340,9.2,9,8,11.3,1050,9,999999999,60,0.0970,0,88,0.180,999.0,99.0 +1996,2,12,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.3,-11.2,46,98900,815,1404,249,300,287,133,33200,29500,16000,2970,360,8.7,9,7,11.3,1050,9,999999999,50,0.0970,0,88,0.180,999.0,99.0 +1996,2,12,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.8,-11.2,48,98900,734,1404,251,299,255,166,32800,26700,18800,3650,350,6.1,9,8,11.3,1050,9,999999999,50,0.0970,0,88,0.180,999.0,99.0 +1996,2,12,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.3,-11.7,44,98900,589,1404,249,238,44,220,26100,4300,24300,5860,300,6.6,9,7,11.3,1050,9,999999999,50,0.0970,0,88,0.180,999.0,99.0 +1996,2,12,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.4,-10.0,56,98900,389,1404,250,163,76,142,17800,6900,15900,3420,310,5.6,9,8,8.0,900,9,999999999,50,0.0970,0,88,0.180,999.0,99.0 +1996,2,12,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.4,-8.9,62,98900,150,1404,247,40,48,35,4400,2800,4100,730,310,6.6,9,7,8.0,900,9,999999999,50,0.0970,0,88,0.180,999.0,99.0 +1996,2,12,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.5,-11.7,53,99000,1,152,244,0,1,0,0,0,0,0,300,5.1,9,8,11.3,900,9,999999999,50,0.0970,0,88,0.180,999.0,99.0 +1996,2,12,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.5,-10.6,59,99000,0,0,242,0,0,0,0,0,0,0,310,6.1,9,7,11.3,900,9,999999999,50,0.0970,0,88,0.180,999.0,99.0 +1996,2,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.6,-11.7,59,99000,0,0,241,0,0,0,0,0,0,0,320,5.1,9,8,11.3,900,9,999999999,50,0.0970,0,88,0.180,999.0,99.0 +1996,2,12,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.6,-11.7,59,99100,0,0,237,0,0,0,0,0,0,0,310,4.1,9,7,11.3,900,9,999999999,50,0.0970,0,88,0.180,999.0,99.0 +1996,2,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.7,-12.3,61,99100,0,0,215,0,0,0,0,0,0,0,310,4.1,0,0,11.3,77777,9,999999999,50,0.0970,0,88,0.180,999.0,99.0 +1996,2,12,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-7.8,-12.3,67,99100,0,0,211,0,0,0,0,0,0,0,290,4.1,0,0,11.3,77777,9,999999999,50,0.0970,0,88,0.180,999.0,99.0 +1996,2,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-7.8,-12.3,67,99100,0,0,215,0,0,0,0,0,0,0,280,3.0,2,1,11.3,77777,9,999999999,50,0.0980,0,88,0.180,0.0,6.0 +1996,2,13,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-10.0,-12.8,78,99000,0,0,208,0,0,0,0,0,0,0,230,2.0,3,1,11.3,77777,9,999999999,50,0.0980,0,88,0.180,999.0,99.0 +1996,2,13,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-10.0,-12.8,78,99000,0,0,208,0,0,0,0,0,0,0,250,2.5,2,1,11.3,77777,9,999999999,50,0.0980,0,88,0.180,999.0,99.0 +1996,2,13,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-7.3,-11.2,71,99000,0,0,247,0,0,0,0,0,0,0,230,2.0,10,10,11.3,1200,9,999999999,50,0.0980,0,88,0.180,999.0,99.0 +1996,2,13,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-8.4,-11.7,75,99000,0,0,221,0,0,0,0,0,0,0,260,3.6,9,4,11.3,1200,9,999999999,50,0.0980,0,88,0.180,999.0,99.0 +1996,2,13,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-8.4,-11.7,75,98900,0,0,221,0,0,0,0,0,0,0,220,3.0,9,4,11.3,1200,9,999999999,50,0.0980,0,88,0.180,999.0,99.0 +1996,2,13,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-7.3,-10.6,75,99000,0,0,247,0,0,0,0,0,0,0,220,4.6,10,10,11.3,1200,9,999999999,50,0.0980,0,88,0.180,0.0,6.0 +1996,2,13,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.7,-10.0,75,98900,23,620,250,3,0,3,0,0,0,0,210,5.1,10,10,11.3,3300,9,999999999,50,0.0980,0,88,0.180,999.0,99.0 +1996,2,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.6,-10.0,68,98900,233,1403,225,98,305,47,10300,20900,6800,840,220,4.6,2,1,11.3,77777,9,999999999,50,0.0980,0,88,0.180,999.0,99.0 +1996,2,13,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.9,-10.0,59,98900,462,1403,261,97,0,97,11100,0,11100,3810,220,7.2,10,10,11.3,6000,9,999999999,50,0.0980,0,88,0.180,999.0,99.0 +1996,2,13,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.8,-9.5,56,98700,646,1403,266,154,0,154,17700,0,17700,6320,210,8.2,10,10,11.3,6000,9,999999999,50,0.0980,0,88,0.180,999.0,99.0 +1996,2,13,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.8,-8.9,59,98600,773,1403,266,155,0,155,18200,0,18200,6940,210,6.6,10,10,11.3,900,9,999999999,50,0.0980,0,88,0.180,999.0,99.0 +1996,2,13,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-7.8,59,98400,833,1403,272,171,0,171,20100,0,20100,7770,210,10.2,10,10,11.3,750,9,999999999,60,0.0980,0,88,0.180,0.0,6.0 +1996,2,13,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.2,-7.8,57,98200,822,1403,274,168,0,168,19800,0,19800,7610,200,10.2,10,10,11.3,750,9,999999999,60,0.0980,0,88,0.180,999.0,99.0 +1996,2,13,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-0.6,-7.3,57,98000,740,1403,277,147,0,147,17200,0,17200,6520,200,8.7,10,10,11.3,750,9,999999999,60,0.0980,0,88,0.180,999.0,99.0 +1996,2,13,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-0.6,-6.7,60,97800,595,1403,277,110,0,110,12800,0,12800,4690,190,9.7,10,10,11.3,750,9,999999999,60,0.0980,0,88,0.180,999.0,99.0 +1996,2,13,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-6.2,59,97700,395,1403,255,148,150,106,16200,13400,12400,2350,190,7.7,9,4,11.3,1500,9,999999999,60,0.0980,0,88,0.180,999.0,99.0 +1996,2,13,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-5.6,62,97500,156,1403,281,32,0,32,3600,0,3600,1100,180,7.2,10,10,11.3,3300,9,999999999,60,0.0980,0,88,0.180,999.0,99.0 +1996,2,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.5,-5.6,60,97400,2,175,283,0,0,0,0,0,0,0,190,8.2,10,10,11.3,3300,9,999999999,60,0.0980,0,88,0.180,999.0,99.0 +1996,2,13,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.5,-5.0,63,97300,0,0,284,0,0,0,0,0,0,0,180,6.1,10,10,11.3,3300,9,999999999,60,0.0980,0,88,0.180,999.0,99.0 +1996,2,13,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.2,-5.0,56,97100,0,0,291,0,0,0,0,0,0,0,210,9.2,10,10,11.3,3300,9,999999999,60,0.0980,0,88,0.180,999.0,99.0 +1996,2,13,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.7,-5.6,51,96900,0,0,292,0,0,0,0,0,0,0,200,7.2,10,10,11.3,3300,9,999999999,60,0.0980,0,88,0.180,999.0,99.0 +1996,2,13,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.3,-5.6,49,96800,0,0,295,0,0,0,0,0,0,0,230,7.7,10,10,11.3,3300,9,999999999,60,0.0980,0,88,0.180,999.0,99.0 +1996,2,13,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.8,-5.6,48,96700,0,0,297,0,0,0,0,0,0,0,260,8.2,10,10,11.3,3000,9,999999999,60,0.0980,0,88,0.180,999.0,99.0 +1996,2,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.8,-3.9,55,96700,0,0,299,0,0,0,0,0,0,0,280,6.6,10,10,11.3,2700,9,999999999,60,0.0990,0,88,0.180,0.0,6.0 +1996,2,14,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.3,-3.9,57,96800,0,0,297,0,0,0,0,0,0,0,280,10.8,10,10,11.3,900,9,999999999,60,0.0990,0,88,0.180,999.0,99.0 +1996,2,14,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.7,-4.5,57,96900,0,0,293,0,0,0,0,0,0,0,290,9.2,10,10,11.3,780,9,999999999,60,0.0990,0,88,0.180,999.0,99.0 +1996,2,14,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.2,-4.5,59,96900,0,0,291,0,0,0,0,0,0,0,280,9.7,10,10,11.3,780,9,999999999,69,0.0990,0,88,0.180,999.0,99.0 +1996,2,14,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.6,-4.5,61,97000,0,0,289,0,0,0,0,0,0,0,280,7.7,10,10,11.3,780,9,999999999,69,0.0990,0,88,0.180,999.0,99.0 +1996,2,14,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.1,-4.5,63,97000,0,0,287,0,0,0,0,0,0,0,290,6.6,10,10,11.3,750,9,999999999,69,0.0990,0,88,0.180,999.0,99.0 +1996,2,14,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-5.6,58,97000,0,0,285,0,0,0,0,0,0,0,290,5.6,10,10,11.3,780,9,999999999,69,0.0990,0,88,0.180,0.0,6.0 +1996,2,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-7.3,54,97100,26,643,271,4,2,4,500,100,500,110,290,4.6,9,9,11.3,6000,9,999999999,69,0.0990,0,88,0.180,999.0,99.0 +1996,2,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.5,-6.7,55,97200,238,1403,282,46,0,46,5200,0,5200,1670,260,3.0,10,10,11.3,3900,9,999999999,69,0.0990,0,88,0.180,999.0,99.0 +1996,2,14,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.1,-6.2,55,97200,468,1403,285,87,0,87,10100,0,10100,3520,270,5.6,10,10,11.3,1020,9,999999999,69,0.0990,0,88,0.180,999.0,99.0 +1996,2,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.6,-5.6,56,97200,652,1403,288,133,0,133,15500,0,15500,5680,250,7.2,10,10,11.3,1140,9,999999999,69,0.0990,0,88,0.180,999.0,99.0 +1996,2,14,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.6,-5.0,59,97300,779,1403,288,165,0,165,19300,0,19300,7320,270,6.6,10,10,16.1,720,9,999999999,69,0.0990,0,88,0.180,999.0,99.0 +1996,2,14,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.7,-5.0,54,97200,839,1403,293,180,0,180,21100,0,21100,8120,270,7.7,10,10,16.1,810,9,999999999,69,0.0990,0,88,0.180,0.0,6.0 +1996,2,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.3,-5.6,49,97200,828,1403,295,177,0,177,20800,0,20800,7960,250,8.2,10,10,16.1,840,9,999999999,69,0.0990,0,88,0.180,999.0,99.0 +1996,2,14,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.3,-5.0,52,97100,746,1403,295,157,0,157,18300,0,18300,6900,280,6.1,10,10,16.1,870,9,999999999,69,0.0990,0,88,0.180,999.0,99.0 +1996,2,14,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.7,-5.0,54,97200,601,1403,293,120,0,120,13900,0,13900,5050,280,5.6,10,10,16.1,870,9,999999999,69,0.0990,0,88,0.180,999.0,99.0 +1996,2,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.2,-4.5,59,97200,400,1403,291,71,0,71,8200,0,8200,2820,300,5.1,10,10,16.1,870,9,999999999,69,0.0990,0,88,0.180,999.0,99.0 +1996,2,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.6,-4.5,61,97200,161,1403,289,22,0,22,2600,0,2600,830,280,3.6,10,10,16.1,900,9,999999999,69,0.0990,0,88,0.180,999.0,99.0 +1996,2,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-4.5,63,97300,3,222,287,0,0,0,0,0,0,0,310,2.0,10,10,16.1,1200,9,999999999,69,0.0990,0,88,0.180,0.0,6.0 +1996,2,14,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.1,-4.5,63,97300,0,0,287,0,0,0,0,0,0,0,330,2.5,10,10,16.1,1200,9,999999999,69,0.0990,0,88,0.180,999.0,99.0 +1996,2,14,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.1,-3.9,67,97400,0,0,287,0,0,0,0,0,0,0,310,3.0,10,10,11.3,840,9,999999999,69,0.0990,0,88,0.180,999.0,99.0 +1996,2,14,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.5,-3.4,73,97400,0,0,285,0,0,0,0,0,0,0,300,3.6,10,10,11.3,840,9,999999999,69,0.0990,0,88,0.180,999.0,99.0 +1996,2,14,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-0.6,-5.0,69,97500,0,0,279,0,0,0,0,0,0,0,350,4.6,10,10,11.2,420,9,999999999,69,0.0990,0,88,0.180,999.0,99.0 +1996,2,14,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.7,-4.5,79,97500,0,0,275,0,0,0,0,0,0,0,340,4.1,10,10,11.3,1050,9,999999999,60,0.0990,0,88,0.180,999.0,99.0 +1996,2,15,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.3,-5.6,76,97500,0,0,272,0,0,0,0,0,0,0,360,3.6,10,10,11.3,1500,9,999999999,60,0.0990,0,88,0.180,0.0,6.0 +1996,2,15,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.8,-6.2,75,97500,0,0,269,0,0,0,0,0,0,0,310,2.5,10,10,11.3,1800,9,999999999,60,0.0990,0,88,0.180,999.0,99.0 +1996,2,15,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.8,-6.7,72,97600,0,0,237,0,0,0,0,0,0,0,310,4.1,2,1,11.3,77777,9,999999999,60,0.0990,0,88,0.180,999.0,99.0 +1996,2,15,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.8,-7.3,68,97600,0,0,237,0,0,0,0,0,0,0,310,3.6,3,1,11.3,77777,9,999999999,60,0.0990,0,88,0.180,999.0,99.0 +1996,2,15,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.4,-7.8,69,97700,0,0,245,0,0,0,0,0,0,0,310,4.1,9,6,11.3,1050,9,999999999,60,0.0990,0,88,0.180,999.0,99.0 +1996,2,15,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.4,-7.3,72,97700,0,0,265,0,0,0,0,0,0,0,300,4.1,10,10,11.3,900,9,999999999,60,0.0990,0,88,0.180,999.0,99.0 +1996,2,15,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.4,-6.7,75,97800,0,0,266,0,0,0,0,0,0,0,290,3.0,10,10,11.3,900,9,999999999,60,0.0990,0,88,0.180,999.0,99.0 +1996,2,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.4,-7.3,72,97800,28,666,265,4,0,4,500,0,500,160,280,3.6,10,10,11.3,900,9,999999999,60,0.0990,0,88,0.180,999.0,99.0 +1996,2,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.8,-6.7,72,97900,244,1402,268,35,0,35,4100,0,4100,1350,280,3.6,10,10,6.4,1020,9,999999999,60,0.0990,0,88,0.180,999.0,99.0 +1996,2,15,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.3,-6.2,72,98000,474,1402,251,136,119,96,15200,11300,11300,2180,270,4.1,9,6,8.0,1230,9,999999999,60,0.0990,0,88,0.180,999.0,99.0 +1996,2,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.7,-7.3,62,98000,659,1402,252,203,164,126,22400,16900,14500,2590,290,3.0,9,6,11.3,600,9,999999999,60,0.0990,0,88,0.180,999.0,99.0 +1996,2,15,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.7,-7.3,62,98000,785,1402,272,159,0,159,18700,0,18700,7140,270,3.6,10,10,6.4,810,9,999999999,60,0.0990,0,88,0.180,999.0,99.0 +1996,2,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.7,-6.7,65,97900,845,1402,273,175,0,175,20600,0,20600,7970,250,4.6,10,10,8.0,1140,9,999999999,60,0.0990,0,88,0.180,999.0,99.0 +1996,2,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.7,-7.2,63,97900,834,1402,272,172,0,172,20300,0,20300,7810,280,4.6,10,10,4.8,600,9,999999999,60,0.0990,0,88,0.180,999.0,99.0 +1996,2,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.7,-5.6,72,97900,753,1402,274,151,0,151,17700,0,17700,6720,280,3.0,10,10,3.6,840,9,999999999,60,0.0990,0,88,0.180,999.0,99.0 +1996,2,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.2,-6.7,63,98000,607,1402,255,228,115,178,24900,11500,19900,4250,280,4.1,9,6,6.4,1050,9,999999999,60,0.0990,0,88,0.180,999.0,99.0 +1996,2,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.7,-6.2,68,98000,406,1402,273,65,0,65,7600,0,7600,2640,240,6.6,10,10,9.7,1200,9,999999999,60,0.0990,0,88,0.180,999.0,99.0 +1996,2,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.3,-7.3,65,98000,166,1402,250,54,31,50,5900,2100,5600,1150,270,4.6,9,6,11.3,1200,9,999999999,60,0.0990,0,88,0.180,999.0,99.0 +1996,2,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.4,-6.7,75,98100,3,245,246,0,0,0,0,0,0,0,290,4.1,9,6,11.3,1200,9,999999999,60,0.0990,0,88,0.180,999.0,99.0 +1996,2,15,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.8,-6.7,72,98100,0,0,268,0,0,0,0,0,0,0,280,1.5,10,10,11.3,1500,9,999999999,60,0.0990,0,88,0.180,999.0,99.0 +1996,2,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.4,-6.7,75,98100,0,0,266,0,0,0,0,0,0,0,70,2.0,10,10,11.3,1800,9,999999999,60,0.0990,0,88,0.180,999.0,99.0 +1996,2,15,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.4,-6.2,79,98200,0,0,267,0,0,0,0,0,0,0,60,1.5,10,10,11.3,1200,9,999999999,60,0.0990,0,88,0.180,999.0,99.0 +1996,2,15,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.5,-6.7,83,98200,0,0,231,0,0,0,0,0,0,0,20,2.5,2,1,11.3,77777,9,999999999,60,0.0990,0,88,0.180,999.0,99.0 +1996,2,15,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.5,-6.7,83,98200,0,0,231,0,0,0,0,0,0,0,10,1.0,3,1,11.3,77777,9,999999999,50,0.0990,0,88,0.180,999.0,99.0 +1996,2,16,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.0,-7.3,82,98200,0,0,252,0,0,0,0,0,0,0,330,2.5,9,9,9.7,3600,9,999999999,50,0.1000,0,88,0.180,0.0,6.0 +1996,2,16,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.4,-6.2,79,98200,0,0,267,0,0,0,0,0,0,0,350,3.6,10,10,9.7,420,9,999999999,50,0.1000,0,88,0.180,999.0,99.0 +1996,2,16,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.4,-6.7,75,98200,0,0,266,0,0,0,0,0,0,0,30,5.1,10,10,11.3,420,9,999999999,50,0.1000,0,88,0.180,999.0,99.0 +1996,2,16,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.4,-6.7,75,98200,0,0,266,0,0,0,0,0,0,0,40,5.6,10,10,11.3,420,9,999999999,50,0.1000,0,88,0.180,999.0,99.0 +1996,2,16,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.0,-8.4,74,98300,0,0,258,0,0,0,0,0,0,0,20,4.1,10,10,11.3,840,9,999999999,50,0.1000,0,88,0.180,999.0,99.0 +1996,2,16,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.7,-8.4,86,98400,0,0,245,0,0,0,0,0,0,0,50,3.6,9,9,11.3,360,9,999999999,50,0.1000,0,88,0.180,999.0,99.0 +1996,2,16,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.7,-8.9,83,98400,0,0,227,0,0,0,0,0,0,0,20,5.1,3,3,11.3,77777,9,999999999,50,0.1000,0,88,0.180,999.0,99.0 +1996,2,16,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.7,-9.5,78,98500,31,712,244,5,6,5,600,200,600,100,20,5.1,9,9,11.3,960,9,999999999,50,0.1000,0,88,0.180,999.0,99.0 +1996,2,16,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.7,-9.5,78,98600,250,1401,244,56,65,44,6200,4900,5300,940,20,4.6,9,9,11.3,1050,9,999999999,50,0.1000,0,88,0.180,999.0,99.0 +1996,2,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.0,-8.4,74,98700,480,1401,251,80,38,67,8800,3500,7600,2020,10,6.1,9,9,4.8,450,9,999999999,50,0.1000,0,88,0.180,999.0,99.0 +1996,2,16,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.4,-11.2,51,98800,665,1401,236,337,441,128,36500,43900,15600,2590,40,7.2,3,3,11.3,77777,9,999999999,50,0.1000,0,88,0.180,999.0,99.0 +1996,2,16,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.9,-12.8,46,98700,792,1401,231,547,699,152,57100,69400,17800,3390,10,6.6,2,2,16.1,77777,9,999999999,50,0.1000,0,88,0.180,999.0,99.0 +1996,2,16,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.8,-13.9,38,98700,852,1401,236,522,637,135,55400,64300,16200,3270,360,8.2,3,3,16.1,77777,9,999999999,50,0.1000,0,88,0.180,999.0,99.0 +1996,2,16,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.4,-13.9,40,98700,840,1401,232,479,470,197,51200,48200,22200,4640,350,5.6,2,2,16.1,77777,9,999999999,50,0.1000,0,88,0.180,999.0,99.0 +1996,2,16,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.9,-13.9,41,98700,759,1401,232,498,632,155,51600,62300,17800,3320,330,8.2,3,3,16.1,77777,9,999999999,50,0.1000,0,88,0.180,999.0,99.0 +1996,2,16,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.4,-13.9,40,98700,612,1401,232,384,628,109,40000,60400,13500,2180,330,6.6,2,2,16.1,77777,9,999999999,50,0.1000,0,88,0.180,999.0,99.0 +1996,2,16,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.9,-13.9,41,98700,412,1401,232,151,219,86,16300,19700,10500,1620,330,7.2,3,3,16.1,77777,9,999999999,50,0.1000,0,88,0.180,999.0,99.0 +1996,2,16,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.0,-13.4,48,98700,172,1401,227,58,186,36,6200,10800,4900,640,360,5.6,2,2,16.1,77777,9,999999999,50,0.1000,0,88,0.180,999.0,99.0 +1996,2,16,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.6,-12.8,53,98700,4,269,245,0,0,0,0,0,0,0,360,3.0,9,9,16.1,1200,9,999999999,50,0.1000,0,88,0.180,0.0,6.0 +1996,2,16,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.6,-11.7,59,98700,0,0,246,0,0,0,0,0,0,0,320,2.0,9,9,24.1,1200,9,999999999,50,0.1000,0,88,0.180,999.0,99.0 +1996,2,16,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.7,-12.8,58,98600,0,0,241,0,0,0,0,0,0,0,290,3.0,9,9,24.1,1200,9,999999999,50,0.1000,0,88,0.180,999.0,99.0 +1996,2,16,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.7,-12.8,58,98600,0,0,222,0,0,0,0,0,0,0,270,2.5,2,2,24.1,77777,9,999999999,50,0.1000,0,88,0.180,999.0,99.0 +1996,2,16,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-8.4,-12.8,68,98500,0,0,218,0,0,0,0,0,0,0,230,3.0,3,3,24.1,77777,9,999999999,50,0.1000,0,88,0.180,999.0,99.0 +1996,2,16,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-8.4,-12.8,68,98500,0,0,216,0,0,0,0,0,0,0,250,3.6,2,2,24.1,77777,9,999999999,50,0.1000,0,88,0.180,999.0,99.0 +1996,2,17,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.2,-12.3,58,98500,0,0,221,0,0,0,0,0,0,0,260,3.6,2,1,24.1,77777,9,999999999,50,0.1000,0,88,0.180,999.0,99.0 +1996,2,17,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.2,-11.7,62,98400,0,0,230,0,0,0,0,0,0,0,250,3.6,9,5,24.1,4500,9,999999999,50,0.1000,0,88,0.180,999.0,99.0 +1996,2,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.2,-12.3,58,98400,0,0,221,0,0,0,0,0,0,0,260,3.6,2,1,24.1,77777,9,999999999,40,0.1000,0,88,0.180,999.0,99.0 +1996,2,17,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.6,-11.7,59,98300,0,0,232,0,0,0,0,0,0,0,260,4.1,9,5,24.1,3300,9,999999999,40,0.1000,0,88,0.180,999.0,99.0 +1996,2,17,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.6,-11.7,59,98200,0,0,253,0,0,0,0,0,0,0,230,4.6,10,10,24.1,3300,9,999999999,40,0.1000,0,88,0.180,999.0,99.0 +1996,2,17,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.6,-11.7,59,98200,0,0,253,0,0,0,0,0,0,0,230,6.6,10,10,24.1,3300,9,999999999,40,0.1000,0,88,0.180,999.0,99.0 +1996,2,17,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.2,-10.6,68,98000,0,0,251,0,0,0,0,0,0,0,210,5.1,10,10,16.1,3300,9,999999999,40,0.1000,0,88,0.180,0.0,6.0 +1996,2,17,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.2,-10.6,68,98000,34,735,231,10,20,9,1100,800,1100,180,210,5.1,9,5,16.1,3000,9,999999999,40,0.1000,0,88,0.180,999.0,99.0 +1996,2,17,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.6,-10.0,68,97800,256,1401,254,40,0,40,4600,0,4600,1530,200,7.7,10,10,16.1,3000,9,999999999,40,0.1000,0,88,0.180,999.0,99.0 +1996,2,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.5,-10.0,62,97900,486,1401,259,92,0,92,10600,0,10600,3740,210,8.2,10,10,16.1,2400,9,999999999,50,0.1000,0,88,0.180,999.0,99.0 +1996,2,17,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.9,-10.0,59,97700,671,1401,261,138,0,138,16100,0,16100,5930,210,10.8,10,10,16.1,2400,9,999999999,50,0.1000,0,88,0.180,999.0,99.0 +1996,2,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.3,-11.2,46,97600,798,1401,266,170,0,170,19900,0,19900,7580,210,11.3,10,10,16.1,2100,9,999999999,50,0.1000,0,88,0.180,999.0,99.0 +1996,2,17,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.4,-8.4,65,97500,858,1401,264,185,0,185,21800,0,21800,8390,220,7.7,10,10,2.4,600,9,999999999,50,0.1000,0,88,0.180,999.0,99.0 +1996,2,17,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.4,-8.4,65,97400,847,1401,264,182,0,182,21400,0,21400,8230,230,8.2,10,10,6.4,780,9,999999999,50,0.1000,0,88,0.180,999.0,99.0 +1996,2,17,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.4,-7.8,69,97400,765,1401,265,162,0,162,18900,0,18900,7150,240,8.7,10,10,4.0,660,9,999999999,50,0.1000,0,88,0.180,999.0,99.0 +1996,2,17,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.4,-6.7,75,97400,618,1401,266,125,0,125,14500,0,14500,5280,250,5.6,10,10,4.0,660,9,999999999,50,0.1000,0,88,0.180,999.0,99.0 +1996,2,17,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.4,-6.2,79,97400,417,1401,267,76,0,76,8800,0,8800,3030,250,5.6,10,10,2.8,660,9,999999999,50,0.1000,0,88,0.180,999.0,99.0 +1996,2,17,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.4,-5.6,83,97500,177,1401,267,25,0,25,2900,0,2900,940,250,4.6,10,10,2.8,660,9,999999999,50,0.1000,0,88,0.180,999.0,99.0 +1996,2,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.8,-4.5,87,97600,5,292,271,0,0,0,0,0,0,0,280,6.1,10,10,2.8,660,9,999999999,50,0.1000,0,88,0.180,0.0,6.0 +1996,2,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.8,-6.2,75,97700,0,0,269,0,0,0,0,0,0,0,310,5.6,10,10,4.8,660,9,999999999,50,0.1000,0,88,0.180,999.0,99.0 +1996,2,17,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.4,-6.7,75,97800,0,0,266,0,0,0,0,0,0,0,300,4.6,10,10,9.7,1500,9,999999999,50,0.1000,0,88,0.180,999.0,99.0 +1996,2,17,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.8,-6.7,72,97900,0,0,268,0,0,0,0,0,0,0,320,7.7,10,10,9.7,1200,9,999999999,50,0.1000,0,88,0.180,999.0,99.0 +1996,2,17,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.5,-8.9,68,97900,0,0,238,0,0,0,0,0,0,0,320,5.6,9,5,11.3,1500,9,999999999,50,0.1000,0,88,0.180,999.0,99.0 +1996,2,17,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.6,-9.5,71,98000,0,0,234,0,0,0,0,0,0,0,310,5.6,9,5,11.3,1050,9,999999999,50,0.1000,0,88,0.180,999.0,99.0 +1996,2,18,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.6,-9.5,71,98100,0,0,255,0,0,0,0,0,0,0,320,4.6,10,10,11.3,1050,9,999999999,50,0.1010,0,88,0.180,999.0,99.0 +1996,2,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.7,-10.6,71,98100,0,0,220,0,0,0,0,0,0,0,310,5.1,2,1,11.3,77777,9,999999999,60,0.1010,0,88,0.180,999.0,99.0 +1996,2,18,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-8.4,-11.7,75,98100,0,0,214,0,0,0,0,0,0,0,330,4.1,3,1,11.3,77777,9,999999999,60,0.1010,0,88,0.180,999.0,99.0 +1996,2,18,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-9.5,-13.9,67,98200,0,0,209,0,0,0,0,0,0,0,310,3.6,2,1,11.3,77777,9,999999999,60,0.1010,0,88,0.180,999.0,99.0 +1996,2,18,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-10.6,-13.9,74,98200,0,0,205,0,0,0,0,0,0,0,350,4.1,3,1,11.3,77777,9,999999999,60,0.1010,0,88,0.180,999.0,99.0 +1996,2,18,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-12.8,-14.5,86,98300,0,0,198,0,0,0,0,0,0,0,350,2.5,2,1,11.3,77777,9,999999999,60,0.1010,0,88,0.180,999.0,99.0 +1996,2,18,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-13.4,-15.0,86,98400,0,0,196,0,0,0,0,0,0,0,330,1.5,3,1,11.3,77777,9,999999999,60,0.1010,0,88,0.180,999.0,99.0 +1996,2,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-13.4,-15.0,86,98400,37,758,196,11,98,6,1200,5100,900,150,110,1.5,2,1,11.3,77777,9,999999999,60,0.1010,0,88,0.180,999.0,99.0 +1996,2,18,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-11.2,-13.4,82,98500,262,1400,204,135,516,38,13700,40000,6200,720,60,1.5,3,1,11.3,77777,9,999999999,60,0.1010,0,88,0.180,999.0,99.0 +1996,2,18,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-10.0,-15.0,64,98500,492,1400,206,312,726,57,32800,67500,9000,1190,100,2.0,2,1,11.3,77777,9,999999999,60,0.1010,0,88,0.180,999.0,99.0 +1996,2,18,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-8.4,-14.5,58,98500,678,1400,212,439,738,82,46200,72100,11100,1750,240,1.0,3,1,11.3,77777,9,999999999,69,0.1010,0,88,0.180,999.0,99.0 +1996,2,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-7.3,-13.4,58,98600,805,1400,216,564,818,94,59800,81500,12800,2180,260,2.5,2,1,11.3,77777,9,999999999,69,0.1010,0,88,0.180,999.0,99.0 +1996,2,18,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.6,-12.3,55,98500,864,1400,223,612,802,117,64000,79800,14500,2680,140,2.5,3,1,11.3,77777,9,999999999,69,0.1010,0,88,0.180,0.0,6.0 +1996,2,18,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.5,-12.3,50,98400,853,1400,237,508,494,207,54100,50700,23100,4960,160,4.1,9,6,11.3,77777,9,999999999,69,0.1010,0,88,0.180,999.0,99.0 +1996,2,18,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.4,-12.3,46,98400,771,1400,241,380,354,184,40300,35900,20400,4090,150,2.0,9,6,11.3,77777,9,999999999,80,0.1010,0,88,0.180,999.0,99.0 +1996,2,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.8,-12.3,44,98300,624,1400,243,342,459,138,36500,45100,16300,2760,190,6.6,9,6,11.3,77777,9,999999999,80,0.1010,0,88,0.180,999.0,99.0 +1996,2,18,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.3,-12.3,42,98300,423,1400,245,173,109,140,18600,9900,15600,3130,180,6.1,9,6,11.3,6000,9,999999999,80,0.1010,0,88,0.180,999.0,99.0 +1996,2,18,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.4,-11.2,51,98400,182,1400,262,35,0,35,4000,0,4000,1240,150,4.6,10,10,11.3,6000,9,999999999,80,0.1010,0,88,0.180,999.0,99.0 +1996,2,18,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-10.6,56,98300,6,315,241,0,3,0,0,0,0,0,150,4.1,9,6,11.3,3600,9,999999999,80,0.1010,0,88,0.180,0.0,6.0 +1996,2,18,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.4,-11.2,51,98300,0,0,242,0,0,0,0,0,0,0,150,4.6,9,6,11.3,3600,9,999999999,89,0.1010,0,88,0.180,999.0,99.0 +1996,2,18,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.9,-15.0,37,98300,0,0,237,0,0,0,0,0,0,0,140,3.6,9,6,11.3,3600,9,999999999,89,0.1010,0,88,0.180,999.0,99.0 +1996,2,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.9,-10.0,59,98300,0,0,261,0,0,0,0,0,0,0,140,5.1,10,10,11.3,3600,9,999999999,89,0.1010,0,88,0.180,999.0,99.0 +1996,2,18,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.9,-10.0,59,98300,0,0,261,0,0,0,0,0,0,0,140,5.1,10,10,11.3,3300,9,999999999,89,0.1010,0,88,0.180,999.0,99.0 +1996,2,18,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.9,-9.5,62,98200,0,0,261,0,0,0,0,0,0,0,150,4.1,10,10,11.3,1800,9,999999999,89,0.1010,0,88,0.180,999.0,99.0 +1996,2,19,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-10.0,59,98300,0,0,261,0,0,0,0,0,0,0,110,2.5,10,10,11.3,2700,9,999999999,100,0.1010,0,88,0.180,0.0,6.0 +1996,2,19,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.9,-10.0,59,98200,0,0,261,0,0,0,0,0,0,0,150,4.1,10,10,11.3,2400,9,999999999,100,0.1010,0,88,0.180,999.0,99.0 +1996,2,19,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.4,-10.0,56,98200,0,0,263,0,0,0,0,0,0,0,160,4.6,10,10,11.3,3000,9,999999999,100,0.1010,0,88,0.180,999.0,99.0 +1996,2,19,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.8,-9.5,56,98100,0,0,266,0,0,0,0,0,0,0,150,6.1,10,10,11.3,1800,9,999999999,100,0.1010,0,88,0.180,999.0,99.0 +1996,2,19,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.3,-8.4,59,98100,0,0,269,0,0,0,0,0,0,0,150,4.1,10,10,11.3,1800,9,999999999,110,0.1010,0,88,0.180,999.0,99.0 +1996,2,19,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.7,-6.7,65,98100,0,0,273,0,0,0,0,0,0,0,140,6.6,10,10,11.3,1500,9,999999999,110,0.1010,0,88,0.180,999.0,99.0 +1996,2,19,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.3,-5.6,76,98100,0,0,272,0,0,0,0,0,0,0,130,4.1,10,10,11.3,2100,9,999999999,110,0.1010,0,88,0.180,999.0,99.0 +1996,2,19,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.3,-6.7,69,98100,40,805,270,6,0,6,700,0,700,230,140,6.1,10,10,4.8,2100,9,999999999,110,0.1010,0,88,0.180,999.0,99.0 +1996,2,19,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.2,-5.6,69,98200,268,1400,276,39,0,39,4500,0,4500,1520,130,5.6,10,10,6.4,1200,9,999999999,120,0.1010,0,88,0.180,999.0,99.0 +1996,2,19,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-0.6,-5.0,69,98100,499,1400,256,293,375,159,30800,35800,18000,3360,130,5.6,9,5,11.3,1500,9,999999999,120,0.1010,0,88,0.180,999.0,99.0 +1996,2,19,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.6,-5.6,56,98000,684,1400,264,321,262,193,34500,27100,21200,4300,150,4.6,9,5,11.3,1800,9,999999999,120,0.1010,0,88,0.180,999.0,99.0 +1996,2,19,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.4,-5.6,46,98100,811,1400,275,459,363,249,49300,38400,27000,6110,170,8.7,9,5,11.3,2700,9,999999999,129,0.1010,0,88,0.180,999.0,99.0 +1996,2,19,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-5.6,44,98000,871,1400,302,180,0,180,21300,0,21300,8270,150,3.6,10,10,11.3,1500,9,999999999,129,0.1010,0,88,0.180,0.0,6.0 +1996,2,19,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.5,-5.6,42,98000,859,1400,304,177,0,177,20900,0,20900,8110,170,5.1,10,10,11.3,1350,9,999999999,129,0.1010,0,88,0.180,999.0,99.0 +1996,2,19,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.5,-3.4,51,97900,777,1400,307,155,0,155,18200,0,18200,6960,170,5.1,10,10,11.3,960,9,999999999,139,0.1010,0,88,0.180,999.0,99.0 +1996,2,19,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.5,-1.7,59,97900,630,1400,309,118,0,118,13800,0,13800,5100,150,4.1,10,10,11.3,750,9,999999999,139,0.1010,0,88,0.180,999.0,99.0 +1996,2,19,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,0.0,70,97900,429,1400,308,69,0,69,8100,0,8100,2830,150,4.1,10,10,6.4,1200,9,999999999,139,0.1010,0,88,0.180,999.0,99.0 +1996,2,19,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.3,-4.5,54,97900,188,1400,296,31,0,31,3600,0,3600,1140,80,2.5,10,10,4.0,1200,9,999999999,150,0.1010,0,88,0.180,999.0,99.0 +1996,2,19,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.8,1.6,86,97900,7,338,305,0,0,0,0,0,0,0,140,3.6,10,10,4.0,600,9,999999999,150,0.1010,0,88,0.180,999.0,99.0 +1996,2,19,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.4,2.2,86,97900,0,0,308,0,0,0,0,0,0,0,170,3.0,10,10,9.7,1050,9,999999999,150,0.1010,0,88,0.180,999.0,99.0 +1996,2,19,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.4,2.2,86,98000,0,0,308,0,0,0,0,0,0,0,100,1.0,10,10,9.7,1050,9,999999999,160,0.1010,0,88,0.180,999.0,99.0 +1996,2,19,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,2.2,86,98000,0,0,308,0,0,0,0,0,0,0,140,1.0,10,10,11.3,1050,9,999999999,160,0.1010,0,88,0.180,1.0,6.0 +1996,2,19,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.4,1.6,82,98000,0,0,307,0,0,0,0,0,0,0,30,1.0,10,10,11.3,960,9,999999999,160,0.1010,0,88,0.180,999.0,99.0 +1996,2,19,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,2.7,85,98000,0,0,311,0,0,0,0,0,0,0,170,2.5,10,10,9.7,840,9,999999999,170,0.1010,0,88,0.180,999.0,99.0 +1996,2,20,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,2.7,85,98000,0,0,311,0,0,0,0,0,0,0,140,2.5,10,10,9.7,870,9,999999999,170,0.1020,0,88,0.180,1.0,6.0 +1996,2,20,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,2.7,85,98000,0,0,311,0,0,0,0,0,0,0,160,3.6,10,10,8.0,870,9,999999999,170,0.1020,0,88,0.180,999.0,99.0 +1996,2,20,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,2.7,85,98000,0,0,311,0,0,0,0,0,0,0,160,2.0,10,10,8.0,840,9,999999999,179,0.1020,0,88,0.180,999.0,99.0 +1996,2,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,3.3,89,98000,0,0,312,0,0,0,0,0,0,0,60,2.0,10,10,4.0,450,9,999999999,179,0.1020,0,88,0.180,1.0,6.0 +1996,2,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.5,3.8,89,98000,0,0,315,0,0,0,0,0,0,0,140,2.0,10,10,2.8,420,9,999999999,179,0.1020,0,88,0.180,999.0,99.0 +1996,2,20,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.1,4.4,89,98000,0,0,318,0,0,0,0,0,0,0,150,3.6,10,10,2.8,300,9,999999999,189,0.1020,0,88,0.180,999.0,99.0 +1996,2,20,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,4.4,89,98000,0,0,318,0,0,0,0,0,0,0,150,3.0,10,10,4.0,300,9,999999999,189,0.1020,0,88,0.180,3.0,6.0 +1996,2,20,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.1,5.0,93,98100,43,828,319,4,0,4,500,0,500,160,140,2.5,10,10,4.0,150,9,999999999,189,0.1020,0,88,0.180,999.0,99.0 +1996,2,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.6,5.0,90,98100,274,1399,321,29,0,29,3500,0,3500,1180,170,2.0,10,10,3.2,150,9,999999999,189,0.1020,0,88,0.180,999.0,99.0 +1996,2,20,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.6,5.0,90,98100,505,1399,321,65,0,65,7800,0,7800,2850,180,3.0,10,10,1.6,150,9,999999999,179,0.1020,0,88,0.180,0.0,6.0 +1996,2,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.7,5.5,86,98200,691,1399,327,98,0,98,11800,0,11800,4530,180,3.6,10,10,3.2,150,9,999999999,179,0.1020,0,88,0.180,999.0,99.0 +1996,2,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.3,6.6,89,98100,817,1399,331,120,0,120,14500,0,14500,5760,170,3.6,10,10,4.0,150,9,999999999,179,0.1020,0,88,0.180,999.0,99.0 +1996,2,20,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,7.2,86,98100,877,1399,336,131,0,131,15900,0,15900,6380,190,6.6,10,10,6.4,150,9,999999999,179,0.1020,0,88,0.180,0.0,6.0 +1996,2,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,7.2,83,98100,865,1399,339,129,0,129,15600,0,15600,6260,180,7.2,10,10,4.8,150,9,999999999,170,0.1020,0,88,0.180,999.0,99.0 +1996,2,20,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,7.7,86,98100,783,1399,340,114,0,114,13700,0,13700,5420,180,5.1,10,10,4.0,150,9,999999999,170,0.1020,0,88,0.180,999.0,99.0 +1996,2,20,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,7.7,86,98100,636,1399,340,88,0,88,10500,0,10500,4010,190,3.6,10,10,4.0,150,9,999999999,170,0.1020,0,88,0.180,0.0,6.0 +1996,2,20,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.4,7.2,86,98200,434,1399,336,53,0,53,6300,0,6300,2270,170,2.5,10,10,4.0,180,9,999999999,170,0.1020,0,88,0.180,999.0,99.0 +1996,2,20,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.4,7.2,86,98100,193,1399,336,27,0,27,3100,0,3100,1020,150,4.1,10,10,4.8,420,9,999999999,170,0.1020,0,88,0.180,999.0,99.0 +1996,2,20,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.8,7.2,90,98300,8,361,334,0,0,0,0,0,0,0,160,2.5,10,10,4.8,540,9,999999999,160,0.1020,0,88,0.180,0.0,6.0 +1996,2,20,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.3,6.6,89,98300,0,0,331,0,0,0,0,0,0,0,150,0.5,10,10,4.0,360,9,999999999,160,0.1020,0,88,0.180,999.0,99.0 +1996,2,20,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.3,6.6,89,98300,0,0,321,0,0,0,0,0,0,0,180,5.1,9,9,3.2,3300,9,999999999,160,0.1020,0,88,0.180,999.0,99.0 +1996,2,20,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.6,5.0,90,98300,0,0,312,0,0,0,0,0,0,0,160,3.0,9,9,1.2,3300,9,999999999,160,0.1020,0,88,0.180,999.0,99.0 +1996,2,20,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.2,5.6,90,98300,0,0,315,0,0,0,0,0,0,0,150,2.6,9,9,2.4,3600,9,999999999,150,0.1020,0,88,0.180,999.0,99.0 +1996,2,20,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.6,5.5,93,98300,0,0,313,0,0,0,0,0,0,0,200,4.6,9,9,2.8,90,9,999999999,150,0.1020,0,88,0.180,999.0,99.0 +1996,2,21,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.7,6.1,90,98400,0,0,289,0,0,0,0,0,0,0,180,5.6,2,1,4.8,77777,9,999999999,150,0.1030,0,88,0.180,0.0,6.0 +1996,2,21,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.3,6.6,89,98400,0,0,331,0,0,0,0,0,0,0,200,3.6,10,10,8.0,780,9,999999999,150,0.1030,0,88,0.180,999.0,99.0 +1996,2,21,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.3,6.6,89,98400,0,0,331,0,0,0,0,0,0,0,200,3.6,10,10,8.0,780,9,999999999,150,0.1030,0,88,0.180,999.0,99.0 +1996,2,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.8,6.6,86,98300,0,0,333,0,0,0,0,0,0,0,230,3.0,10,10,8.0,600,9,999999999,139,0.1030,0,88,0.180,999.0,99.0 +1996,2,21,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.3,6.6,89,98400,0,0,331,0,0,0,0,0,0,0,240,2.5,10,10,8.0,300,9,999999999,139,0.1030,0,88,0.180,999.0,99.0 +1996,2,21,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.3,6.1,86,98500,0,0,330,0,0,0,0,0,0,0,280,2.5,10,10,8.0,300,9,999999999,139,0.1030,0,88,0.180,999.0,99.0 +1996,2,21,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.7,5.5,86,98400,0,0,327,0,0,0,0,0,0,0,230,2.0,10,10,4.8,360,9,999999999,139,0.1030,0,88,0.180,0.0,6.0 +1996,2,21,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.7,6.1,90,98500,47,851,327,6,0,6,700,0,700,240,240,2.0,10,10,2.8,360,9,999999999,139,0.1030,0,88,0.180,999.0,99.0 +1996,2,21,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.3,6.6,89,98600,281,1398,331,35,0,35,4100,0,4100,1400,270,3.0,10,10,2.8,360,9,999999999,139,0.1030,0,88,0.180,999.0,99.0 +1996,2,21,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.8,6.6,86,98600,512,1398,333,79,0,79,9300,0,9300,3380,240,2.5,10,10,3.2,360,9,999999999,139,0.1030,0,88,0.180,999.0,99.0 +1996,2,21,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.8,6.1,83,98600,697,1398,332,118,0,118,14000,0,14000,5320,270,3.6,10,10,3.2,270,9,999999999,139,0.1030,0,88,0.180,999.0,99.0 +1996,2,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.8,6.1,83,98600,824,1398,332,145,0,145,17300,0,17300,6780,290,3.6,10,10,3.2,270,9,999999999,139,0.1030,0,88,0.180,999.0,99.0 +1996,2,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.8,6.1,83,98600,883,1398,332,131,0,131,15900,0,15900,6400,290,4.6,10,10,3.2,150,9,999999999,139,0.1030,0,88,0.180,0.0,6.0 +1996,2,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.8,5.5,80,98600,872,1398,332,155,0,155,18500,0,18500,7330,290,3.0,10,10,4.8,270,9,999999999,139,0.1030,0,88,0.180,999.0,99.0 +1996,2,21,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.4,5.5,77,98600,789,1398,335,137,0,137,16300,0,16300,6350,20,3.6,10,10,4.8,270,9,999999999,139,0.1030,0,88,0.180,999.0,99.0 +1996,2,21,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.4,5.0,74,98600,642,1398,334,126,0,126,14700,0,14700,5410,350,1.0,10,10,4.0,420,9,999999999,139,0.1030,0,88,0.180,999.0,99.0 +1996,2,21,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.8,5.0,77,98700,440,1398,331,64,0,64,7500,0,7500,2680,10,2.5,10,10,2.8,330,9,999999999,139,0.1030,0,88,0.180,999.0,99.0 +1996,2,21,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.7,4.4,80,98700,198,1398,325,23,0,23,2700,0,2700,900,20,2.0,10,10,2.8,300,9,999999999,139,0.1030,0,88,0.180,999.0,99.0 +1996,2,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,4.4,82,98700,10,408,323,0,0,0,0,0,0,0,270,1.0,10,10,3.2,450,9,999999999,139,0.1030,0,88,0.180,0.0,6.0 +1996,2,21,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.6,4.4,86,98700,0,0,320,0,0,0,0,0,0,0,30,3.0,10,10,1.2,120,9,999999999,139,0.1030,0,88,0.180,999.0,99.0 +1996,2,21,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.5,3.8,89,98800,0,0,315,0,0,0,0,0,0,0,360,2.0,10,10,2.0,120,9,999999999,139,0.1030,0,88,0.180,999.0,99.0 +1996,2,21,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.5,3.8,89,98700,0,0,315,0,0,0,0,0,0,0,40,2.0,10,10,1.2,90,9,999999999,139,0.1030,0,88,0.180,999.0,99.0 +1996,2,21,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,3.3,89,98700,0,0,312,0,0,0,0,0,0,0,10,2.0,10,10,0.4,30,9,999999999,139,0.1030,0,88,0.180,999.0,99.0 +1996,2,21,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,3.3,89,98700,0,0,312,0,0,0,0,0,0,0,30,3.6,10,10,0.0,15,9,999999999,139,0.1030,0,88,0.180,999.0,99.0 +1996,2,22,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,3.3,93,98600,0,0,309,0,0,0,0,0,0,0,20,3.6,10,10,0.0,15,9,999999999,139,0.1030,0,88,0.180,0.0,6.0 +1996,2,22,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.3,2.2,92,98600,0,0,303,0,0,0,0,0,0,0,30,4.1,10,10,2.0,60,9,999999999,139,0.1030,0,88,0.180,999.0,99.0 +1996,2,22,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.3,1.6,89,98700,0,0,302,0,0,0,0,0,0,0,280,2.5,10,10,4.0,90,9,999999999,139,0.1030,0,88,0.180,999.0,99.0 +1996,2,22,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.3,1.6,89,98600,0,0,302,0,0,0,0,0,0,0,340,2.0,10,10,4.0,90,9,999999999,139,0.1030,0,88,0.180,999.0,99.0 +1996,2,22,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.3,1.1,85,98600,0,0,302,0,0,0,0,0,0,0,30,3.0,10,10,4.0,90,9,999999999,139,0.1030,0,88,0.180,999.0,99.0 +1996,2,22,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.7,1.1,89,98600,0,0,299,0,0,0,0,0,0,0,70,4.1,10,10,4.8,90,9,999999999,139,0.1030,0,88,0.180,999.0,99.0 +1996,2,22,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,0.5,89,98600,0,0,297,0,0,0,0,0,0,0,60,3.6,10,10,1.6,90,9,999999999,139,0.1030,0,88,0.180,0.0,6.0 +1996,2,22,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.2,0.5,89,98600,50,897,297,5,0,5,600,0,600,200,60,4.6,10,10,2.8,90,9,999999999,139,0.1030,0,88,0.180,999.0,99.0 +1996,2,22,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.7,1.6,92,98600,287,1398,300,30,0,30,3600,0,3600,1230,90,3.6,10,10,4.8,120,9,999999999,139,0.1030,0,88,0.180,999.0,99.0 +1996,2,22,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.3,1.7,89,98600,518,1398,303,67,0,67,8000,0,8000,2950,90,4.6,10,10,4.8,120,9,999999999,139,0.1030,0,88,0.180,999.0,99.0 +1996,2,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,2.7,85,98600,704,1398,311,100,0,100,12000,0,12000,4650,90,3.6,10,10,6.4,120,9,999999999,139,0.1030,0,88,0.180,999.0,99.0 +1996,2,22,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.6,3.3,79,98600,830,1398,319,147,0,147,17500,0,17500,6880,90,5.1,10,10,6.4,210,9,999999999,139,0.1030,0,88,0.180,999.0,99.0 +1996,2,22,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,3.3,76,98500,890,1398,322,159,0,159,19000,0,19000,7560,70,4.1,10,10,6.4,270,9,999999999,139,0.1030,0,88,0.180,0.0,6.0 +1996,2,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.3,3.8,73,98500,878,1398,327,157,0,157,18800,0,18800,7440,110,4.1,10,10,8.0,360,9,999999999,150,0.1030,0,88,0.180,999.0,99.0 +1996,2,22,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.7,3.3,74,98500,795,1398,324,139,0,139,16500,0,16500,6450,40,4.6,10,10,6.4,360,9,999999999,150,0.1030,0,88,0.180,999.0,99.0 +1996,2,22,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.7,3.3,74,98400,648,1398,324,108,0,108,12800,0,12800,4800,60,5.1,10,10,6.4,360,9,999999999,150,0.1030,0,88,0.180,999.0,99.0 +1996,2,22,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.2,3.8,79,98400,446,1398,322,66,0,66,7800,0,7800,2760,90,3.0,10,10,6.4,360,9,999999999,150,0.1030,0,88,0.180,999.0,99.0 +1996,2,22,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.2,3.8,79,98400,203,1398,322,23,0,23,2700,0,2700,900,50,4.1,10,10,4.8,360,9,999999999,150,0.1030,0,88,0.180,999.0,99.0 +1996,2,22,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.6,3.8,82,98500,11,431,320,1,0,1,0,0,0,0,60,4.6,10,10,4.8,360,9,999999999,150,0.1030,0,88,0.180,0.0,6.0 +1996,2,22,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.1,3.3,82,98500,0,0,317,0,0,0,0,0,0,0,70,3.6,10,10,8.0,330,9,999999999,160,0.1030,0,88,0.180,999.0,99.0 +1996,2,22,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,2.2,82,98400,0,0,311,0,0,0,0,0,0,0,60,3.6,10,10,8.0,360,9,999999999,160,0.1030,0,88,0.180,999.0,99.0 +1996,2,22,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,2.7,85,98500,0,0,311,0,0,0,0,0,0,0,50,2.5,10,10,8.0,360,9,999999999,160,0.1030,0,88,0.180,999.0,99.0 +1996,2,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.4,2.2,86,98400,0,0,308,0,0,0,0,0,0,0,70,4.1,10,10,8.0,360,9,999999999,160,0.1030,0,88,0.180,999.0,99.0 +1996,2,22,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,3.3,89,98300,0,0,312,0,0,0,0,0,0,0,100,5.6,10,10,3.2,90,9,999999999,160,0.1030,0,88,0.180,999.0,99.0 +1996,2,23,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,2.7,89,98300,0,0,308,0,0,0,0,0,0,0,90,4.6,10,10,1.2,60,9,999999999,160,0.1040,0,88,0.180,0.0,6.0 +1996,2,23,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.4,2.7,89,98300,0,0,308,0,0,0,0,0,0,0,110,3.6,10,10,1.2,60,9,999999999,170,0.1040,0,88,0.180,999.0,99.0 +1996,2,23,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.4,2.7,89,98100,0,0,308,0,0,0,0,0,0,0,110,4.1,10,10,1.2,60,9,999999999,170,0.1040,0,88,0.180,999.0,99.0 +1996,2,23,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.8,2.7,93,98100,0,0,306,0,0,0,0,0,0,0,100,4.6,10,10,1.2,30,9,999999999,170,0.1040,0,88,0.180,999.0,99.0 +1996,2,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.8,2.7,93,98000,0,0,306,0,0,0,0,0,0,0,100,3.6,10,10,1.6,60,9,999999999,170,0.1040,0,88,0.180,999.0,99.0 +1996,2,23,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,3.3,89,98000,0,0,312,0,0,0,0,0,0,0,120,4.1,10,10,3.2,90,9,999999999,170,0.1040,0,88,0.180,999.0,99.0 +1996,2,23,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,3.3,89,97900,0,0,312,0,0,0,0,0,0,0,90,4.6,10,10,3.2,90,9,999999999,170,0.1040,0,88,0.180,0.0,6.0 +1996,2,23,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.5,3.8,89,97800,54,920,315,6,0,6,700,0,700,240,130,4.6,10,10,4.8,150,9,999999999,170,0.1040,0,88,0.180,999.0,99.0 +1996,2,23,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.1,3.8,85,97800,294,1397,317,31,0,31,3700,0,3700,1280,130,6.1,10,10,2.4,90,9,999999999,170,0.1040,0,88,0.180,999.0,99.0 +1996,2,23,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.2,5.0,86,97700,525,1397,324,62,0,62,7500,0,7500,2770,140,4.6,10,10,2.4,90,9,999999999,160,0.1040,0,88,0.180,999.0,99.0 +1996,2,23,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.8,6.6,86,97600,710,1397,333,95,0,95,11500,0,11500,4460,150,4.6,10,10,2.4,90,9,999999999,160,0.1040,0,88,0.180,999.0,99.0 +1996,2,23,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.5,7.7,83,97500,837,1397,342,141,0,141,16900,0,16900,6670,150,6.1,10,10,4.8,240,9,999999999,160,0.1040,0,88,0.180,999.0,99.0 +1996,2,23,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.7,9.4,80,97300,896,1397,355,184,0,184,21800,0,21800,8540,160,6.6,10,10,8.0,750,9,999999999,160,0.1040,0,88,0.180,999.0,99.0 +1996,2,23,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,10.0,75,97100,884,1397,364,181,0,181,21400,0,21400,8370,160,6.1,10,10,8.0,2400,9,999999999,150,0.1040,0,88,0.180,999.0,99.0 +1996,2,23,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.6,11.1,70,97000,801,1397,377,159,0,159,18700,0,18700,7220,160,7.7,10,10,9.7,2400,9,999999999,150,0.1040,0,88,0.180,999.0,99.0 +1996,2,23,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.6,11.6,72,96800,654,1397,378,121,0,121,14200,0,14200,5290,170,6.1,10,10,9.7,2700,9,999999999,150,0.1040,0,88,0.180,999.0,99.0 +1996,2,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,12.2,72,96800,451,1397,381,72,0,72,8400,0,8400,2990,180,3.0,10,10,9.7,2700,9,999999999,150,0.1040,0,88,0.180,999.0,99.0 +1996,2,23,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.6,12.2,75,96900,209,1397,378,35,0,35,4000,0,4000,1290,220,1.5,10,10,9.7,2700,9,999999999,139,0.1040,0,88,0.180,999.0,99.0 +1996,2,23,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,11.1,81,96900,13,454,366,1,0,1,0,0,0,0,0,0.0,10,10,9.7,2700,9,999999999,139,0.1040,0,88,0.180,0.0,6.0 +1996,2,23,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,12.2,68,97000,0,0,387,0,0,0,0,0,0,0,260,8.2,10,10,11.3,2700,9,999999999,139,0.1040,0,88,0.180,999.0,99.0 +1996,2,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,11.1,65,97000,0,0,383,0,0,0,0,0,0,0,270,5.6,10,10,11.3,3000,9,999999999,129,0.1040,0,88,0.180,999.0,99.0 +1996,2,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,6.1,66,97300,0,0,349,0,0,0,0,0,0,0,290,10.8,10,10,8.0,660,9,999999999,129,0.1040,0,88,0.180,9.0,6.0 +1996,2,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.4,2.7,63,97500,0,0,331,0,0,0,0,0,0,0,290,11.3,10,10,11.3,750,9,999999999,129,0.1040,0,88,0.180,999.0,99.0 +1996,2,23,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.8,1.6,61,97600,0,0,327,0,0,0,0,0,0,0,280,13.8,10,10,11.3,840,9,999999999,129,0.1040,0,88,0.180,999.0,99.0 +1996,2,24,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.7,0.0,58,97700,0,0,283,0,0,0,0,0,0,0,290,14.4,3,1,16.1,77777,9,999999999,120,0.1040,0,88,0.180,999.0,99.0 +1996,2,24,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.5,-1.7,59,97900,0,0,267,0,0,0,0,0,0,0,280,12.3,0,0,16.1,77777,9,999999999,120,0.1040,0,88,0.180,999.0,99.0 +1996,2,24,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-2.3,58,98000,0,0,265,0,0,0,0,0,0,0,270,8.7,0,0,24.1,77777,9,999999999,120,0.1040,0,88,0.180,999.0,99.0 +1996,2,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.4,-2.3,60,98100,0,0,263,0,0,0,0,0,0,0,260,7.2,0,0,24.1,77777,9,999999999,110,0.1040,0,88,0.180,999.0,99.0 +1996,2,24,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.3,-2.8,63,98200,0,0,258,0,0,0,0,0,0,0,250,6.6,0,0,24.1,77777,9,999999999,110,0.1040,0,88,0.180,999.0,99.0 +1996,2,24,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.3,-2.3,65,98300,0,0,258,0,0,0,0,0,0,0,260,7.2,0,0,24.1,77777,9,999999999,110,0.1040,0,88,0.180,999.0,99.0 +1996,2,24,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-2.8,68,98500,0,0,254,0,0,0,0,0,0,0,260,6.6,0,0,24.1,77777,9,999999999,110,0.1040,0,88,0.180,0.0,6.0 +1996,2,24,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.3,-2.3,65,98500,58,943,258,20,158,11,2300,7500,1800,210,250,7.2,0,0,24.1,77777,9,999999999,110,0.1040,0,88,0.180,999.0,99.0 +1996,2,24,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.5,-2.8,54,98600,300,1396,266,167,594,39,17200,48400,6800,780,250,8.2,0,0,24.1,77777,9,999999999,100,0.1040,0,88,0.180,999.0,99.0 +1996,2,24,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.3,-3.9,40,98700,531,1396,276,354,780,57,37500,73900,9300,1230,260,10.2,0,0,24.1,77777,9,999999999,100,0.1040,0,88,0.180,999.0,99.0 +1996,2,24,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,-5.6,31,98800,717,1396,281,516,866,71,54100,84600,10500,1580,280,8.2,0,0,24.1,77777,9,999999999,100,0.1040,0,88,0.180,999.0,99.0 +1996,2,24,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.6,-7.8,23,98800,844,1396,285,630,908,80,65800,89800,11300,1880,290,10.8,0,0,24.1,77777,9,999999999,100,0.1040,0,88,0.180,999.0,99.0 +1996,2,24,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.7,-6.2,25,98800,903,1396,291,683,925,85,71300,91900,11700,2060,280,7.7,0,0,24.1,77777,9,999999999,100,0.1040,0,88,0.180,0.0,6.0 +1996,2,24,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.3,-7.3,22,98800,890,1396,293,672,922,84,70200,91500,11600,2020,270,10.8,0,0,24.1,77777,9,999999999,100,0.1040,0,88,0.180,999.0,99.0 +1996,2,24,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,-6.2,22,98800,807,1396,304,561,764,118,59700,77000,15000,2780,280,8.7,3,1,24.1,77777,9,999999999,100,0.1040,0,88,0.180,999.0,99.0 +1996,2,24,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.8,-7.3,21,98800,659,1396,300,340,577,67,36400,56600,9500,1520,280,9.2,2,1,24.1,77777,9,999999999,100,0.1040,0,88,0.180,999.0,99.0 +1996,2,24,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,-7.3,20,98800,457,1396,303,251,557,69,26400,50700,9700,1340,270,7.2,3,1,24.1,77777,9,999999999,100,0.1040,0,88,0.180,999.0,99.0 +1996,2,24,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.6,-6.7,25,98900,214,1396,292,102,444,34,10600,30700,5900,630,270,4.6,2,1,24.1,77777,9,999999999,89,0.1040,0,88,0.180,999.0,99.0 +1996,2,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.7,-6.2,34,98800,14,477,277,3,39,2,0,0,0,0,250,3.6,3,1,24.1,77777,9,999999999,89,0.1040,0,88,0.180,0.0,6.0 +1996,2,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.5,-5.6,42,98800,0,0,269,0,0,0,0,0,0,0,240,2.5,2,1,24.1,77777,9,999999999,89,0.1040,0,88,0.180,999.0,99.0 +1996,2,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-5.0,46,98800,0,0,267,0,0,0,0,0,0,0,220,3.6,3,1,24.1,77777,9,999999999,89,0.1040,0,88,0.180,999.0,99.0 +1996,2,24,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.8,-4.5,52,98800,0,0,263,0,0,0,0,0,0,0,230,4.1,2,1,24.1,77777,9,999999999,89,0.1040,0,88,0.180,999.0,99.0 +1996,2,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.1,-5.0,43,98800,0,0,272,0,0,0,0,0,0,0,250,5.1,3,1,24.1,77777,9,999999999,89,0.1040,0,88,0.180,999.0,99.0 +1996,2,24,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.6,-5.6,39,98800,0,0,273,0,0,0,0,0,0,0,250,5.6,2,1,24.1,77777,9,999999999,89,0.1040,0,88,0.180,999.0,99.0 +1996,2,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-5.6,38,98800,0,0,275,0,0,0,0,0,0,0,250,6.1,2,1,24.1,77777,9,999999999,89,0.1050,0,88,0.180,0.0,6.0 +1996,2,25,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.1,-5.6,41,98900,0,0,284,0,0,0,0,0,0,0,250,6.1,9,6,24.1,77777,9,999999999,89,0.1050,0,88,0.180,999.0,99.0 +1996,2,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.4,-5.6,46,98800,0,0,277,0,0,0,0,0,0,0,240,4.6,9,6,24.1,7500,9,999999999,80,0.1050,0,88,0.180,999.0,99.0 +1996,2,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-5.6,44,98800,0,0,280,0,0,0,0,0,0,0,240,4.1,9,6,24.1,7500,9,999999999,80,0.1050,0,88,0.180,999.0,99.0 +1996,2,25,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.4,-4.5,50,98900,0,0,301,0,0,0,0,0,0,0,220,4.1,10,10,24.1,4500,9,999999999,80,0.1050,0,88,0.180,999.0,99.0 +1996,2,25,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.6,-4.5,43,98900,0,0,310,0,0,0,0,0,0,0,180,3.6,10,10,24.1,3900,9,999999999,80,0.1050,0,88,0.180,999.0,99.0 +1996,2,25,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-5.0,40,98900,0,0,312,0,0,0,0,0,0,0,190,2.0,10,10,24.1,3900,9,999999999,80,0.1050,0,88,0.180,0.0,6.0 +1996,2,25,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.2,-5.0,40,99000,63,989,289,14,16,13,1600,700,1600,270,180,2.5,9,6,24.1,3900,9,999999999,89,0.1050,0,88,0.180,999.0,99.0 +1996,2,25,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.8,-3.4,41,99100,307,1396,321,73,0,73,8200,0,8200,2580,220,3.6,10,10,24.1,7500,9,999999999,89,0.1050,0,88,0.180,999.0,99.0 +1996,2,25,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.5,-3.9,35,99100,538,1396,329,142,0,142,16100,0,16100,5420,230,4.6,10,10,24.1,7500,9,999999999,100,0.1050,0,88,0.180,999.0,99.0 +1996,2,25,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.6,-3.9,32,99100,724,1396,334,199,0,199,22700,0,22700,8090,240,3.6,10,10,24.1,7500,9,999999999,100,0.1050,0,88,0.180,999.0,99.0 +1996,2,25,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,-5.0,24,99000,850,1396,346,238,0,238,27400,0,27400,10070,200,4.6,10,10,24.1,7500,9,999999999,110,0.1050,0,88,0.180,999.0,99.0 +1996,2,25,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-4.5,25,98900,909,1396,349,256,0,256,29600,0,29600,11020,210,5.1,10,10,24.1,7500,9,999999999,110,0.1050,0,88,0.180,0.0,6.0 +1996,2,25,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,-4.5,25,98700,897,1396,349,252,0,252,29100,0,29100,10810,200,5.6,10,10,24.1,7500,9,999999999,120,0.1050,0,88,0.180,999.0,99.0 +1996,2,25,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,-4.5,23,98800,813,1396,355,227,0,227,26100,0,26100,9500,240,4.6,10,10,24.1,7500,9,999999999,120,0.1050,0,88,0.180,999.0,99.0 +1996,2,25,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,-4.5,24,98700,665,1396,352,181,0,181,20600,0,20600,7220,190,3.6,10,10,24.1,7500,9,999999999,129,0.1050,0,88,0.180,999.0,99.0 +1996,2,25,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,-4.5,24,98600,462,1396,326,217,278,124,23000,26000,14400,2490,200,5.6,9,6,24.1,7500,9,999999999,129,0.1050,0,88,0.180,999.0,99.0 +1996,2,25,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.8,-3.9,28,98600,219,1396,344,48,0,48,5400,0,5400,1670,210,4.6,10,10,24.1,4500,9,999999999,139,0.1050,0,88,0.180,999.0,99.0 +1996,2,25,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.6,-3.9,32,98600,16,500,334,2,0,2,0,0,0,0,180,4.1,10,10,24.1,7500,9,999999999,139,0.1050,0,88,0.180,0.0,6.0 +1996,2,25,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.4,-3.9,37,98600,0,0,324,0,0,0,0,0,0,0,40,2.0,10,10,24.1,7500,9,999999999,150,0.1050,0,88,0.180,999.0,99.0 +1996,2,25,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.7,-3.9,42,98500,0,0,293,0,0,0,0,0,0,0,160,1.5,9,6,24.1,7500,9,999999999,150,0.1050,0,88,0.180,999.0,99.0 +1996,2,25,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-2.8,55,98500,0,0,305,0,0,0,0,0,0,0,200,1.5,10,10,24.1,7500,9,999999999,160,0.1050,0,88,0.180,999.0,99.0 +1996,2,25,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.7,-1.7,51,98500,0,0,318,0,0,0,0,0,0,0,160,2.0,10,10,24.1,1500,9,999999999,160,0.1050,0,88,0.180,999.0,99.0 +1996,2,25,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.2,-2.8,34,98400,0,0,338,0,0,0,0,0,0,0,170,2.5,10,10,24.1,3900,9,999999999,170,0.1050,0,88,0.180,999.0,99.0 +1996,2,26,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.6,-0.6,43,98300,0,0,338,0,0,0,0,0,0,0,170,4.6,10,10,24.1,3900,9,999999999,170,0.1060,0,88,0.180,0.0,6.0 +1996,2,26,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.5,1.1,52,98400,0,0,335,0,0,0,0,0,0,0,40,4.1,10,10,24.1,990,9,999999999,179,0.1060,0,88,0.180,999.0,99.0 +1996,2,26,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.1,3.3,59,98300,0,0,340,0,0,0,0,0,0,0,70,1.0,10,10,3.2,930,9,999999999,179,0.1060,0,88,0.180,999.0,99.0 +1996,2,26,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,7.7,86,98300,0,0,340,0,0,0,0,0,0,0,180,4.1,10,10,11.3,3900,9,999999999,189,0.1060,0,88,0.180,2.0,6.0 +1996,2,26,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.8,7.7,93,98200,0,0,334,0,0,0,0,0,0,0,30,1.5,10,10,8.0,2100,9,999999999,189,0.1060,0,88,0.180,999.0,99.0 +1996,2,26,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.4,7.7,89,98300,0,0,337,0,0,0,0,0,0,0,60,2.5,10,10,11.3,1140,9,999999999,200,0.1060,0,88,0.180,999.0,99.0 +1996,2,26,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.8,6.6,86,98300,0,0,333,0,0,0,0,0,0,0,120,5.1,10,10,11.3,1200,9,999999999,200,0.1060,0,88,0.180,3.0,6.0 +1996,2,26,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,6.6,79,98200,67,1011,339,9,0,9,1100,0,1100,350,110,0.5,10,10,11.3,1050,9,999999999,200,0.1060,0,88,0.180,999.0,99.0 +1996,2,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.8,5.0,77,98300,313,1395,331,55,0,55,6300,0,6300,2110,140,1.0,10,10,11.3,960,9,999999999,200,0.1060,0,88,0.180,999.0,99.0 +1996,2,26,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.8,5.5,80,98300,545,1395,332,110,0,110,12700,0,12700,4520,90,2.5,10,10,11.3,600,9,999999999,200,0.1060,0,88,0.180,1.0,6.0 +1996,2,26,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.4,6.6,83,98300,730,1395,336,156,0,156,18200,0,18200,6810,70,2.5,10,10,8.0,600,9,999999999,189,0.1060,0,88,0.180,999.0,99.0 +1996,2,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,7.2,83,98300,857,1395,339,188,0,188,22100,0,22100,8500,140,1.5,10,10,4.0,540,9,999999999,189,0.1060,0,88,0.180,999.0,99.0 +1996,2,26,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.5,8.3,86,98200,916,1395,343,202,0,202,23800,0,23800,9280,60,1.5,10,10,4.0,750,9,999999999,189,0.1060,0,88,0.180,999.0,99.0 +1996,2,26,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.1,9.4,89,98100,903,1395,347,199,0,199,23400,0,23400,9110,140,3.6,10,10,4.8,450,9,999999999,189,0.1060,0,88,0.180,999.0,99.0 +1996,2,26,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.2,9.4,83,98200,819,1395,353,125,0,125,15100,0,15100,5980,190,1.5,10,10,4.8,150,9,999999999,189,0.1060,0,88,0.180,999.0,99.0 +1996,2,26,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.7,10.0,84,98200,671,1395,356,118,0,118,13900,0,13900,5240,190,3.6,10,10,4.8,360,9,999999999,189,0.1060,0,88,0.180,0.0,6.0 +1996,2,26,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.3,10.5,83,98300,468,1395,359,91,0,91,10500,0,10500,3650,210,4.1,10,10,4.8,420,9,999999999,179,0.1060,0,88,0.180,999.0,99.0 +1996,2,26,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.7,10.5,86,98300,225,1395,356,36,0,36,4200,0,4200,1350,180,2.5,10,10,4.8,420,9,999999999,179,0.1060,0,88,0.180,999.0,99.0 +1996,2,26,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.7,10.0,84,98400,18,523,356,2,0,2,0,0,0,0,200,3.0,10,10,4.8,420,9,999999999,179,0.1060,0,88,0.180,0.0,6.0 +1996,2,26,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.2,10.5,89,98300,0,0,354,0,0,0,0,0,0,0,170,2.0,10,10,4.8,180,9,999999999,179,0.1060,0,88,0.180,999.0,99.0 +1996,2,26,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.1,9.4,89,98300,0,0,314,0,0,0,0,0,0,0,20,0.5,3,3,0.8,77777,9,999999999,179,0.1060,0,88,0.180,999.0,99.0 +1996,2,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.3,6.6,89,98300,0,0,331,0,0,0,0,0,0,0,50,1.5,10,10,0.0,15,9,999999999,179,0.1060,0,88,0.180,999.0,99.0 +1996,2,26,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,8.3,89,98300,0,0,341,0,0,0,0,0,0,0,360,0.5,10,10,0.8,60,9,999999999,170,0.1060,0,88,0.180,999.0,99.0 +1996,2,26,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,8.8,92,98200,0,0,341,0,0,0,0,0,0,0,60,1.5,10,10,2.0,60,9,999999999,170,0.1060,0,88,0.180,999.0,99.0 +1996,2,27,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.6,10.0,90,98100,0,0,350,0,0,0,0,0,0,0,170,3.6,10,10,2.0,60,9,999999999,170,0.1060,0,88,0.180,999.0,99.0 +1996,2,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.2,11.1,93,98100,0,0,355,0,0,0,0,0,0,0,210,3.6,10,10,2.4,120,9,999999999,170,0.1060,0,88,0.180,999.0,99.0 +1996,2,27,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.2,11.1,93,98100,0,0,355,0,0,0,0,0,0,0,150,3.0,10,10,6.4,1200,9,999999999,170,0.1060,0,88,0.180,999.0,99.0 +1996,2,27,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,10.5,89,98000,0,0,354,0,0,0,0,0,0,0,110,2.5,10,10,11.3,750,9,999999999,170,0.1060,0,88,0.180,7.0,6.0 +1996,2,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.2,10.5,89,98000,0,0,354,0,0,0,0,0,0,0,170,4.6,10,10,8.0,780,9,999999999,160,0.1060,0,88,0.180,999.0,99.0 +1996,2,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.7,10.5,86,98000,0,0,356,0,0,0,0,0,0,0,160,5.1,10,10,11.3,630,9,999999999,160,0.1060,0,88,0.180,999.0,99.0 +1996,2,27,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.7,10.5,86,97900,0,0,356,0,0,0,0,0,0,0,170,4.1,10,10,11.3,630,9,999999999,160,0.1060,0,88,0.180,7.0,6.0 +1996,2,27,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.3,11.1,87,97900,72,1057,360,12,0,12,1400,0,1400,450,170,5.1,10,10,8.0,2400,9,999999999,160,0.1060,0,88,0.180,999.0,99.0 +1996,2,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,12.7,83,97900,320,1394,363,88,29,81,9600,2500,9000,2080,200,4.6,9,9,8.0,3000,9,999999999,150,0.1060,0,88,0.180,999.0,99.0 +1996,2,27,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,14.4,78,97900,552,1394,379,112,49,93,12400,4600,10600,2850,220,7.7,9,9,11.3,1500,9,999999999,150,0.1060,0,88,0.180,999.0,99.0 +1996,2,27,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,13.8,78,97900,737,1394,386,144,0,144,16900,0,16900,6420,250,6.6,10,10,9.7,600,9,999999999,150,0.1060,0,88,0.180,999.0,99.0 +1996,2,27,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,14.4,68,97900,863,1394,391,476,109,408,52100,11300,45100,12020,240,8.2,9,9,9.7,900,9,999999999,139,0.1060,0,88,0.180,999.0,99.0 +1996,2,27,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,14.4,66,97800,922,1394,394,293,46,262,32200,4700,29100,9130,230,9.7,9,9,11.3,900,9,999999999,139,0.1060,0,88,0.180,0.0,6.0 +1996,2,27,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,12.7,55,97700,909,1394,370,643,691,191,66900,69200,21700,4760,250,7.7,3,3,11.3,77777,9,999999999,139,0.1060,0,88,0.180,999.0,99.0 +1996,2,27,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,13.3,59,97700,825,1394,395,226,53,195,25000,5300,21800,6590,250,6.1,9,9,11.3,7500,9,999999999,129,0.1060,0,88,0.180,999.0,99.0 +1996,2,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,12.7,57,97600,677,1394,395,254,55,227,27800,5500,25200,6570,240,6.6,9,9,11.3,7500,9,999999999,129,0.1060,0,88,0.180,999.0,99.0 +1996,2,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,13.3,59,97500,473,1394,395,232,65,210,25300,6200,23200,4950,230,4.6,9,9,9.7,7500,9,999999999,129,0.1060,0,88,0.180,999.0,99.0 +1996,2,27,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,12.7,65,97500,230,1394,394,45,0,45,5100,0,5100,1620,210,4.6,10,10,9.7,7500,9,999999999,120,0.1060,0,88,0.180,999.0,99.0 +1996,2,27,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.8,12.7,68,97600,19,546,391,2,0,2,0,0,0,0,200,4.6,10,10,9.7,2400,9,999999999,120,0.1060,0,88,0.180,0.0,6.0 +1996,2,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.8,11.1,84,97700,0,0,363,0,0,0,0,0,0,0,280,3.0,10,10,4.8,450,9,999999999,110,0.1060,0,88,0.180,999.0,99.0 +1996,2,27,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.7,10.5,86,97700,0,0,356,0,0,0,0,0,0,0,260,3.0,10,10,11.3,3600,9,999999999,110,0.1060,0,88,0.180,999.0,99.0 +1996,2,27,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,8.8,80,97700,0,0,352,0,0,0,0,0,0,0,280,5.6,10,10,9.7,1200,9,999999999,110,0.1060,0,88,0.180,23.0,6.0 +1996,2,27,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.5,7.2,80,97700,0,0,342,0,0,0,0,0,0,0,290,5.1,10,10,9.7,2400,9,999999999,100,0.1060,0,88,0.180,999.0,99.0 +1996,2,27,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.4,4.4,71,97700,0,0,333,0,0,0,0,0,0,0,310,7.2,10,10,11.3,450,9,999999999,100,0.1060,0,88,0.180,999.0,99.0 +1996,2,28,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.7,3.3,74,97800,0,0,324,0,0,0,0,0,0,0,310,5.6,10,10,11.3,450,9,999999999,100,0.1070,0,88,0.180,23.0,6.0 +1996,2,28,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.5,1.6,76,97900,0,0,312,0,0,0,0,0,0,0,310,6.6,10,10,11.3,450,9,999999999,89,0.1070,0,88,0.180,999.0,99.0 +1996,2,28,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.4,0.5,76,97900,0,0,306,0,0,0,0,0,0,0,310,4.6,10,10,11.3,450,9,999999999,89,0.1070,0,88,0.180,999.0,99.0 +1996,2,28,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.6,-2.3,74,98000,0,0,291,0,0,0,0,0,0,0,290,10.2,10,10,11.3,450,9,999999999,89,0.1070,0,88,0.180,999.0,99.0 +1996,2,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.6,-2.3,74,98100,0,0,291,0,0,0,0,0,0,0,290,5.6,10,10,11.3,360,9,999999999,80,0.1070,0,88,0.180,999.0,99.0 +1996,2,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-5.6,62,98200,0,0,281,0,0,0,0,0,0,0,290,7.7,10,10,11.3,510,9,999999999,80,0.1070,0,88,0.180,999.0,99.0 +1996,2,28,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.2,-6.2,65,98200,0,0,275,0,0,0,0,0,0,0,270,9.7,10,10,11.3,600,9,999999999,80,0.1070,0,88,0.180,0.0,6.0 +1996,2,28,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.2,-6.2,65,98300,77,1080,275,11,0,11,1300,0,1300,420,280,9.7,10,10,11.3,690,9,999999999,69,0.1070,0,88,0.180,999.0,99.0 +1996,2,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.2,-6.7,63,98300,327,1394,275,54,0,54,6300,0,6300,2110,290,10.8,10,10,11.3,690,9,999999999,69,0.1070,0,88,0.180,999.0,99.0 +1996,2,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.2,-8.4,54,98400,558,1394,266,154,86,119,17100,8500,13600,2790,280,11.3,9,9,11.3,750,9,999999999,69,0.1070,0,88,0.180,999.0,99.0 +1996,2,28,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.2,-9.5,49,98400,744,1394,264,189,80,146,21200,8400,16700,3730,280,11.3,9,9,11.3,840,9,999999999,69,0.1070,0,88,0.180,999.0,99.0 +1996,2,28,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.2,-9.5,49,98500,870,1394,264,292,69,249,32200,7000,27800,8380,270,11.8,9,9,11.3,900,9,999999999,69,0.1070,0,88,0.180,999.0,99.0 +1996,2,28,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.3,-11.2,46,98600,929,1394,259,409,50,376,45000,5200,41500,12190,280,13.3,9,9,11.3,900,9,999999999,69,0.1070,0,88,0.180,999.0,99.0 +1996,2,28,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.8,-11.2,48,98600,915,1394,257,376,48,344,41300,4900,38000,11260,300,11.8,9,9,11.3,900,9,999999999,69,0.1070,0,88,0.180,999.0,99.0 +1996,2,28,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.4,-11.7,49,98600,831,1394,254,401,166,302,43500,17300,33100,8140,300,11.8,9,9,11.3,1050,9,999999999,69,0.1070,0,88,0.180,999.0,99.0 +1996,2,28,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.5,-12.3,50,98700,682,1394,249,353,78,315,38600,7900,34700,8300,290,10.8,9,9,11.3,1050,9,999999999,69,0.1070,0,88,0.180,999.0,99.0 +1996,2,28,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.5,-11.2,56,98900,479,1394,250,139,73,114,15300,6800,12900,3200,280,9.2,9,9,11.3,1050,9,999999999,69,0.1070,0,88,0.180,999.0,99.0 +1996,2,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.6,-11.2,61,99000,235,1394,253,35,0,35,4100,0,4100,1340,290,6.6,10,10,4.8,1350,9,999999999,60,0.1070,0,88,0.180,999.0,99.0 +1996,2,28,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.1,-11.7,61,99000,21,592,251,2,0,2,0,0,0,0,300,7.2,10,10,4.8,1200,9,999999999,60,0.1070,0,88,0.180,8.0,6.0 +1996,2,28,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.2,-11.2,64,99000,0,0,251,0,0,0,0,0,0,0,280,7.7,10,10,11.3,1230,9,999999999,50,0.1070,0,88,0.180,999.0,99.0 +1996,2,28,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-7.3,-12.3,64,99100,0,0,222,0,0,0,0,0,0,0,280,8.2,3,3,11.3,77777,9,999999999,50,0.1070,0,88,0.180,999.0,99.0 +1996,2,28,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.6,-11.4,68,99100,0,0,242,0,0,0,0,0,0,0,290,7.5,9,9,11.3,1350,9,999999999,50,0.1070,0,88,0.180,999.0,99.0 +1996,2,28,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.0,-10.7,61,99200,0,0,245,0,0,0,0,0,0,0,300,6.9,9,9,11.2,1350,9,999999999,50,0.1070,0,88,0.180,999.0,99.0 +1996,2,28,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.4,-9.9,61,99200,0,0,255,0,0,0,0,0,0,0,300,6.2,10,10,11.3,1350,9,999999999,50,0.1070,0,88,0.180,999.0,99.0 +2002,3,1,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.7,-9.2,60,99200,0,0,236,0,0,0,0,0,0,0,190,5.6,9,4,11.3,1800,9,999999999,50,0.1080,0,88,0.170,999.0,99.0 +2002,3,1,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.1,-8.4,71,99300,0,0,238,0,0,0,0,0,0,0,220,4.9,9,4,11.3,1800,9,999999999,60,0.1080,0,88,0.170,999.0,99.0 +2002,3,1,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.5,-7.7,71,99300,0,0,241,0,0,0,0,0,0,0,200,4.3,9,4,11.3,1800,9,999999999,60,0.1080,0,88,0.170,999.0,99.0 +2002,3,1,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-7.0,71,99300,0,0,244,0,0,0,0,0,0,0,190,3.6,9,4,11.3,1800,9,999999999,60,0.1080,0,88,0.170,999.0,99.0 +2002,3,1,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.0,-7.0,77,99400,0,0,240,0,0,0,0,0,0,0,180,3.1,9,4,11.3,6000,9,999999999,69,0.1080,0,88,0.170,999.0,99.0 +2002,3,1,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-7.0,71,99500,0,0,244,0,0,0,0,0,0,0,180,3.1,9,4,11.3,6000,9,999999999,69,0.1080,0,88,0.170,999.0,99.0 +2002,3,1,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-7.0,71,99600,0,0,244,0,0,0,0,0,0,0,190,3.1,9,4,11.3,6000,9,999999999,69,0.1080,0,88,0.170,999.0,99.0 +2002,3,1,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-6.0,77,99700,85,1149,245,0,0,0,0,0,0,0,190,3.6,9,4,11.3,6000,9,999999999,69,0.1080,0,88,0.170,999.0,99.0 +2002,3,1,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-6.0,60,99800,338,1393,256,205,460,93,21000,37400,11900,1740,210,5.1,9,4,11.3,6000,9,999999999,80,0.1080,0,88,0.170,999.0,99.0 +2002,3,1,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-6.0,52,99900,569,1393,263,385,672,110,39800,63600,13700,2130,210,4.6,9,4,11.3,6000,9,999999999,80,0.1080,0,88,0.170,999.0,99.0 +2002,3,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-6.0,45,99900,754,1393,271,535,756,125,56400,75300,15400,2780,210,3.1,9,4,11.3,6000,9,999999999,80,0.1080,0,88,0.170,999.0,99.0 +2002,3,1,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-6.0,42,99900,880,1393,275,647,810,134,66700,80300,15800,2980,210,2.6,9,4,11.3,6000,9,999999999,80,0.1080,0,88,0.170,999.0,99.0 +2002,3,1,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,-6.0,39,99800,939,1393,279,703,842,134,73100,84000,16300,3280,160,1.0,9,4,11.3,6000,9,999999999,80,0.1080,0,88,0.170,999.0,99.0 +2002,3,1,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,-6.0,37,99800,925,1393,283,681,814,138,70300,81000,16400,3260,150,2.6,9,4,11.3,6000,9,999999999,80,0.1080,0,88,0.170,999.0,99.0 +2002,3,1,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,-5.0,37,99700,841,1393,316,611,803,124,63000,79500,14900,2700,140,2.1,10,10,11.3,6000,9,999999999,80,0.1080,0,88,0.170,999.0,99.0 +2002,3,1,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,-5.0,37,99700,691,1393,316,477,743,107,50300,73400,13700,2300,130,4.1,10,10,11.3,6000,9,999999999,89,0.1080,0,88,0.170,999.0,99.0 +2002,3,1,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,-5.0,37,99700,487,1393,316,310,645,84,32200,59300,11400,1610,130,3.1,10,10,11.3,6000,9,999999999,80,0.1080,0,88,0.170,999.0,99.0 +2002,3,1,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,-4.0,47,99700,243,1393,281,126,423,52,12800,30300,7500,900,110,4.6,9,4,11.3,6000,9,999999999,80,0.1080,0,88,0.170,999.0,99.0 +2002,3,1,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-4.0,50,99700,24,615,277,0,0,0,0,0,0,0,80,2.6,9,4,11.3,6000,9,999999999,80,0.1080,0,88,0.170,999.0,99.0 +2002,3,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,-4.0,58,99600,0,0,269,0,0,0,0,0,0,0,80,4.6,9,4,11.3,6000,9,999999999,80,0.1080,0,88,0.170,999.0,99.0 +2002,3,1,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,-5.0,53,99600,0,0,294,0,0,0,0,0,0,0,90,3.1,10,10,11.3,6000,9,999999999,89,0.1080,0,88,0.170,999.0,99.0 +2002,3,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,-5.0,53,99500,0,0,294,0,0,0,0,0,0,0,100,3.6,10,10,11.3,6000,9,999999999,89,0.1080,0,88,0.170,999.0,99.0 +2002,3,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-5.0,57,99300,0,0,290,0,0,0,0,0,0,0,90,2.1,10,10,11.3,6000,9,999999999,100,0.1080,0,88,0.170,999.0,99.0 +2002,3,1,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,-6.0,49,99200,0,0,293,0,0,0,0,0,0,0,100,5.1,10,10,11.3,6000,9,999999999,110,0.1080,0,88,0.170,999.0,99.0 +2002,3,2,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-6.0,45,99200,0,0,297,0,0,0,0,0,0,0,120,5.1,10,10,11.3,2700,9,999999999,110,0.1080,0,88,0.170,999.0,99.0 +2002,3,2,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,-7.0,45,99000,0,0,292,0,0,0,0,0,0,0,120,5.7,10,10,11.3,2700,9,999999999,110,0.1080,0,88,0.170,999.0,99.0 +2002,3,2,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-7.0,42,99000,0,0,296,0,0,0,0,0,0,0,120,4.6,10,10,11.3,2700,9,999999999,110,0.1080,0,88,0.170,999.0,99.0 +2002,3,2,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-6.0,45,99000,0,0,297,0,0,0,0,0,0,0,120,4.1,10,10,11.3,2700,9,999999999,110,0.1080,0,88,0.170,999.0,99.0 +2002,3,2,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-6.0,45,98900,0,0,297,0,0,0,0,0,0,0,100,2.6,10,10,11.3,2700,9,999999999,110,0.1080,0,88,0.170,999.0,99.0 +2002,3,2,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.1,-5.5,50,98900,0,0,286,0,0,0,0,0,0,0,100,2.6,9,9,11.3,2700,9,999999999,110,0.1080,0,88,0.170,999.0,99.0 +2002,3,2,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.2,-4.9,57,98800,0,0,283,0,0,0,0,0,0,0,100,3.1,9,9,11.3,3000,9,999999999,110,0.1080,0,88,0.170,999.0,99.0 +2002,3,2,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.4,-3.7,62,98800,90,1172,285,0,0,0,0,0,0,0,100,2.6,9,9,11.3,3000,9,999999999,129,0.1080,0,88,0.170,999.0,99.0 +2002,3,2,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.3,-2.7,63,98800,345,1392,290,114,33,106,12500,2900,11800,2630,120,4.1,9,9,11.3,3000,9,999999999,160,0.1080,0,88,0.170,999.0,99.0 +2002,3,2,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.0,-2.0,64,98700,576,1392,302,75,0,75,9000,0,9000,3380,120,5.1,10,10,11.3,3000,9,999999999,189,0.1080,0,88,0.170,0.0,3.0 +2002,3,2,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,1.0,87,98700,761,1392,301,90,0,90,11000,0,11000,4370,150,4.1,10,10,9.7,1500,9,999999999,200,0.1080,0,88,0.170,999.0,99.0 +2002,3,2,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,2.0,93,98500,887,1392,302,106,0,106,13100,0,13100,5330,100,4.1,10,10,4.8,1200,9,999999999,209,0.1080,0,88,0.170,999.0,99.0 +2002,3,2,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.0,6.0,100,98300,945,1392,319,115,0,115,14200,0,14200,5860,120,5.7,10,10,4.8,1200,9,999999999,220,0.1080,0,88,0.170,5.0,6.0 +2002,3,2,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,6.0,100,98200,931,1392,319,124,0,124,15200,0,15200,6230,120,5.7,10,10,4.8,1200,9,999999999,220,0.1080,0,88,0.170,999.0,99.0 +2002,3,2,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,6.0,100,98000,847,1392,319,121,0,121,14700,0,14700,5890,130,5.7,10,10,4.8,1200,9,999999999,229,0.1080,0,88,0.170,999.0,99.0 +2002,3,2,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.0,6.0,100,97800,697,1392,319,78,0,78,9500,0,9500,3730,140,6.7,10,10,3.2,270,9,999999999,229,0.1080,0,88,0.170,1.0,3.0 +2002,3,2,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,6.0,100,97700,493,1392,319,67,0,67,8000,0,8000,2900,140,5.7,10,10,4.8,270,9,999999999,229,0.1080,0,88,0.170,999.0,99.0 +2002,3,2,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,6.0,100,97600,248,1392,319,25,0,25,3000,0,3000,1020,130,6.2,10,10,4.8,270,9,999999999,240,0.1080,0,88,0.170,999.0,99.0 +2002,3,2,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.0,6.0,100,97500,27,638,319,0,0,0,0,0,0,0,140,6.7,10,10,4.8,270,9,999999999,240,0.1080,0,88,0.170,2.0,6.0 +2002,3,2,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,6.0,100,97400,0,0,319,0,0,0,0,0,0,0,180,1.5,10,10,3.2,270,9,999999999,250,0.1080,0,88,0.170,999.0,99.0 +2002,3,2,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,6.0,100,97400,0,0,319,0,0,0,0,0,0,0,180,2.6,10,10,4.8,240,9,999999999,250,0.1080,0,88,0.170,999.0,99.0 +2002,3,2,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.0,6.0,100,97200,0,0,319,0,0,0,0,0,0,0,120,3.1,10,10,9.7,240,9,999999999,250,0.1080,0,88,0.170,10.0,3.0 +2002,3,2,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,6.0,100,97200,0,0,319,0,0,0,0,0,0,0,150,2.1,10,10,9.7,240,9,999999999,229,0.1080,0,88,0.170,999.0,99.0 +2002,3,2,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,7.0,100,97200,0,0,325,0,0,0,0,0,0,0,240,3.1,10,10,8.0,120,9,999999999,200,0.1080,0,88,0.170,999.0,99.0 +2002,3,3,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.0,7.0,100,97300,0,0,325,0,0,0,0,0,0,0,240,6.7,10,10,9.7,120,9,999999999,179,0.1090,0,88,0.170,10.0,6.0 +2002,3,3,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,5.0,100,97400,0,0,314,0,0,0,0,0,0,0,230,5.7,10,10,11.3,360,9,999999999,150,0.1090,0,88,0.170,999.0,99.0 +2002,3,3,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,3.0,100,97500,0,0,303,0,0,0,0,0,0,0,250,7.7,10,10,11.3,600,9,999999999,129,0.1090,0,88,0.170,999.0,99.0 +2002,3,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,0.0,100,97600,0,0,287,0,0,0,0,0,0,0,240,9.3,10,10,11.3,450,9,999999999,100,0.1090,0,88,0.170,0.0,3.0 +2002,3,3,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-2.0,92,97600,0,0,280,0,0,0,0,0,0,0,240,7.7,10,10,11.3,300,9,999999999,100,0.1090,0,88,0.170,999.0,99.0 +2002,3,3,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-3.0,92,97700,0,0,275,0,0,0,0,0,0,0,250,8.7,10,10,11.3,300,9,999999999,89,0.1090,0,88,0.170,999.0,99.0 +2002,3,3,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.0,-5.0,84,97800,0,0,269,0,0,0,0,0,0,0,250,8.7,10,10,11.3,420,9,999999999,80,0.1090,0,88,0.170,18.0,24.0 +2002,3,3,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.0,-6.0,84,97900,96,1218,264,0,0,0,0,0,0,0,250,11.8,10,10,11.3,420,9,999999999,69,0.1090,0,88,0.170,999.0,99.0 +2002,3,3,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.0,-7.0,84,98000,352,1392,260,57,0,57,6600,0,6600,2260,240,9.8,10,10,5.6,600,9,999999999,60,0.1090,0,88,0.170,999.0,99.0 +2002,3,3,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.0,-7.0,84,98100,583,1392,260,110,0,110,12800,0,12800,4670,240,7.7,10,10,5.6,600,9,999999999,50,0.1090,0,88,0.170,0.0,3.0 +2002,3,3,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.0,-7.0,84,98200,768,1392,260,90,0,90,11000,0,11000,4380,240,9.8,10,10,5.6,600,9,999999999,50,0.1090,0,88,0.170,999.0,99.0 +2002,3,3,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.0,-7.0,84,98400,894,1392,260,330,79,279,36300,8000,31100,9390,250,9.3,10,10,4.8,750,9,999999999,40,0.1090,0,88,0.170,999.0,99.0 +2002,3,3,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.0,-9.0,71,98400,951,1392,258,121,0,121,14900,0,14900,6140,240,8.7,10,10,11.3,600,9,999999999,40,0.1090,0,88,0.170,0.0,6.0 +2002,3,3,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.0,-9.0,71,98500,937,1392,258,166,0,166,19900,0,19900,8020,240,7.2,10,10,8.0,600,9,999999999,40,0.1090,0,88,0.170,999.0,99.0 +2002,3,3,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.0,-9.0,71,98500,852,1392,258,208,6,204,24200,500,23900,9040,250,7.2,10,10,8.0,600,9,999999999,40,0.1090,0,88,0.170,999.0,99.0 +2002,3,3,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.0,-8.0,77,98600,703,1392,259,300,112,243,32900,11200,27200,7090,250,7.2,10,10,8.0,600,9,999999999,40,0.1090,0,88,0.170,0.0,3.0 +2002,3,3,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.0,-9.0,77,98700,498,1392,254,202,92,169,22100,8800,19000,4430,250,7.2,10,10,6.4,600,9,999999999,30,0.1090,0,88,0.170,999.0,99.0 +2002,3,3,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-7.0,-9.0,84,98800,253,1392,250,64,11,62,7200,300,7100,2120,250,6.7,10,10,1.6,450,9,999999999,30,0.1090,0,88,0.170,999.0,99.0 +2002,3,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-7.0,-9.0,84,98800,29,661,243,0,0,0,0,0,0,0,250,5.7,9,9,9.7,1050,9,999999999,30,0.1090,0,88,0.170,999.0,99.0 +2002,3,3,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-9.0,-11.0,84,98900,0,0,234,0,0,0,0,0,0,0,250,5.7,9,9,9.7,1050,9,999999999,30,0.1090,0,88,0.170,999.0,99.0 +2002,3,3,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-9.0,-12.0,77,98900,0,0,233,0,0,0,0,0,0,0,250,5.1,9,9,11.3,1200,9,999999999,30,0.1090,0,88,0.170,999.0,99.0 +2002,3,3,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-10.0,-12.0,84,99000,0,0,230,0,0,0,0,0,0,0,260,6.2,9,9,11.3,1500,9,999999999,20,0.1090,0,88,0.170,0.0,3.0 +2002,3,3,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-11.0,-12.0,91,99000,0,0,214,0,0,0,0,0,0,0,290,6.7,5,5,1.6,77777,9,999999999,20,0.1090,0,88,0.170,999.0,99.0 +2002,3,3,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-11.0,-12.0,91,99000,0,0,226,0,0,0,0,0,0,0,260,6.2,9,9,9.7,660,9,999999999,20,0.1090,0,88,0.170,999.0,99.0 +2002,3,4,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-12.0,-14.0,83,99000,0,0,209,0,0,0,0,0,0,0,250,7.2,5,5,11.3,77777,9,999999999,20,0.1100,0,88,0.170,1.0,6.0 +2002,3,4,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-14.0,-16.0,83,99000,0,0,213,0,0,0,0,0,0,0,270,7.2,9,9,6.4,660,9,999999999,20,0.1100,0,88,0.170,999.0,99.0 +2002,3,4,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-14.0,-17.0,76,99100,0,0,197,0,0,0,0,0,0,0,260,6.2,3,3,11.3,77777,9,999999999,30,0.1100,0,88,0.170,999.0,99.0 +2002,3,4,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-15.0,-18.0,76,99100,0,0,191,0,0,0,0,0,0,0,240,7.7,2,2,11.3,77777,9,999999999,30,0.1100,0,88,0.170,0.0,3.0 +2002,3,4,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-15.0,-17.0,83,99100,0,0,209,0,0,0,0,0,0,0,270,7.2,9,9,11.3,960,9,999999999,30,0.1100,0,88,0.170,999.0,99.0 +2002,3,4,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-16.0,-18.0,83,99100,0,0,193,0,0,0,0,0,0,0,250,5.7,5,5,11.3,77777,9,999999999,20,0.1100,0,88,0.170,999.0,99.0 +2002,3,4,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-16.0,-18.0,83,99200,0,0,190,0,0,0,0,0,0,0,250,5.1,3,3,11.3,77777,9,999999999,20,0.1100,0,88,0.170,0.0,6.0 +2002,3,4,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-16.0,-18.0,83,99300,102,1240,188,0,0,0,0,0,0,0,250,5.1,2,2,11.3,77777,9,999999999,20,0.1100,0,88,0.170,999.0,99.0 +2002,3,4,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-15.0,-18.0,76,99300,358,1391,193,208,330,123,21600,27900,14400,2550,270,6.7,3,3,11.3,77777,9,999999999,20,0.1100,0,88,0.170,999.0,99.0 +2002,3,4,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-13.0,-18.0,63,99400,590,1391,202,335,379,174,35700,38000,19500,3740,260,7.7,5,5,11.3,77777,9,999999999,20,0.1100,0,88,0.170,999.0,99.0 +2002,3,4,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-13.0,-18.0,63,99400,775,1391,199,418,268,268,44300,28200,28600,6590,250,8.2,3,3,11.3,77777,9,999999999,20,0.1100,0,88,0.170,999.0,99.0 +2002,3,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-11.0,-17.0,58,99500,900,1391,204,597,580,220,63600,59800,24700,5590,250,7.2,2,2,11.3,77777,9,999999999,20,0.1100,0,88,0.170,999.0,99.0 +2002,3,4,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-11.0,-16.0,63,99400,958,1391,207,642,595,231,68700,61700,26100,6320,260,7.7,3,3,11.3,77777,9,999999999,20,0.1100,0,88,0.170,999.0,99.0 +2002,3,4,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-9.0,-15.0,58,99400,943,1391,212,645,634,214,66900,63300,23800,5530,220,8.7,2,2,11.3,77777,9,999999999,20,0.1100,0,88,0.170,999.0,99.0 +2002,3,4,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-8.0,-15.0,53,99300,858,1391,234,565,554,222,59800,56900,24500,5410,240,6.2,9,9,11.3,6000,9,999999999,20,0.1100,0,88,0.170,999.0,99.0 +2002,3,4,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-8.0,-16.0,49,99300,708,1391,233,500,702,142,51800,68800,16700,2960,230,6.2,9,9,11.3,6000,9,999999999,30,0.1100,0,88,0.170,999.0,99.0 +2002,3,4,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-7.0,-15.0,49,99300,503,1391,244,322,624,96,33200,57600,12300,1810,210,7.7,10,10,11.3,6000,9,999999999,30,0.1100,0,88,0.170,999.0,99.0 +2002,3,4,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-7.0,-15.0,49,99200,258,1391,244,116,246,70,12200,17700,8900,1340,210,5.7,10,10,11.3,6000,9,999999999,30,0.1100,0,88,0.170,999.0,99.0 +2002,3,4,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-8.0,-14.0,58,99200,31,684,242,0,0,0,0,0,0,0,210,5.7,10,10,11.3,6000,9,999999999,30,0.1100,0,88,0.170,999.0,99.0 +2002,3,4,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-8.0,-13.0,64,99300,0,0,236,0,0,0,0,0,0,0,200,3.6,9,9,11.3,2400,9,999999999,40,0.1100,0,88,0.170,999.0,99.0 +2002,3,4,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-7.0,-13.0,59,99300,0,0,239,0,0,0,0,0,0,0,190,3.6,9,9,11.3,2400,9,999999999,40,0.1100,0,88,0.170,999.0,99.0 +2002,3,4,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.0,-12.0,59,99300,0,0,251,0,0,0,0,0,0,0,190,4.1,10,10,11.3,2400,9,999999999,40,0.1100,0,88,0.170,999.0,99.0 +2002,3,4,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.0,-12.0,59,99300,0,0,251,0,0,0,0,0,0,0,200,5.1,10,10,11.3,2100,9,999999999,40,0.1100,0,88,0.170,999.0,99.0 +2002,3,4,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.0,-12.0,59,99300,0,0,251,0,0,0,0,0,0,0,190,5.1,10,10,11.3,2100,9,999999999,40,0.1100,0,88,0.170,999.0,99.0 +2002,3,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.0,-11.0,59,99200,0,0,256,0,0,0,0,0,0,0,200,5.7,10,10,11.3,2100,9,999999999,40,0.1110,0,88,0.170,0.0,6.0 +2002,3,5,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.0,-11.0,59,99200,0,0,256,0,0,0,0,0,0,0,200,6.7,10,10,11.3,2100,9,999999999,50,0.1110,0,88,0.170,999.0,99.0 +2002,3,5,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.0,-10.0,65,99200,0,0,257,0,0,0,0,0,0,0,220,7.7,10,10,11.3,1500,9,999999999,50,0.1110,0,88,0.170,999.0,99.0 +2002,3,5,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.0,-10.0,59,99200,0,0,260,0,0,0,0,0,0,0,230,4.6,10,10,11.3,1350,9,999999999,50,0.1110,0,88,0.170,0.0,3.0 +2002,3,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.0,-8.0,71,99300,0,0,262,0,0,0,0,0,0,0,230,3.6,10,10,11.3,1500,9,999999999,50,0.1110,0,88,0.170,999.0,99.0 +2002,3,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.0,-7.0,77,99300,0,0,263,0,0,0,0,0,0,0,220,4.6,10,10,11.3,1500,9,999999999,50,0.1110,0,88,0.170,999.0,99.0 +2002,3,5,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.0,-8.0,65,99400,0,0,266,0,0,0,0,0,0,0,210,6.2,10,10,11.3,1500,9,999999999,50,0.1110,0,88,0.170,0.0,6.0 +2002,3,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-8.0,65,99500,108,1286,266,0,0,0,0,0,0,0,210,5.1,10,10,11.3,1500,9,999999999,50,0.1110,0,88,0.170,999.0,99.0 +2002,3,5,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-8.0,60,99500,365,1390,270,167,158,125,17900,13700,14300,2750,210,5.1,10,10,11.3,1500,9,999999999,60,0.1110,0,88,0.170,999.0,99.0 +2002,3,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-7.0,60,99600,597,1390,268,218,62,192,24000,6100,21400,5380,210,6.7,9,9,11.3,3000,9,999999999,60,0.1110,0,88,0.170,999.0,99.0 +2002,3,5,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-6.0,56,99600,781,1390,277,521,439,273,55200,46200,29200,6760,230,6.7,9,9,11.3,3600,9,999999999,69,0.1110,0,88,0.170,999.0,99.0 +2002,3,5,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-6.0,56,99600,907,1390,285,323,66,280,35600,6700,31200,9530,210,6.2,10,10,11.3,3000,9,999999999,69,0.1110,0,88,0.170,999.0,99.0 +2002,3,5,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-5.0,49,99600,964,1390,290,212,12,204,25200,1000,24500,9590,210,8.2,9,9,11.3,3000,9,999999999,69,0.1110,0,88,0.170,999.0,99.0 +2002,3,5,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-6.0,42,99500,949,1390,277,616,479,288,64400,49400,30500,7960,230,7.2,5,5,11.3,77777,9,999999999,80,0.1110,0,88,0.170,999.0,99.0 +2002,3,5,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,-6.0,39,99400,864,1390,281,634,750,167,66300,75200,19500,4020,210,8.7,5,5,11.3,77777,9,999999999,80,0.1110,0,88,0.170,999.0,99.0 +2002,3,5,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,-6.0,37,99400,714,1390,302,506,743,123,53000,73400,15200,2640,240,6.7,9,9,11.3,7500,9,999999999,89,0.1110,0,88,0.170,999.0,99.0 +2002,3,5,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,-6.0,37,99400,508,1390,302,323,485,145,33300,45400,16600,2850,230,6.2,9,9,11.3,7500,9,999999999,89,0.1110,0,88,0.170,999.0,99.0 +2002,3,5,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,-5.0,43,99400,263,1390,299,73,32,67,8000,2600,7500,1670,210,5.1,9,9,11.3,3000,9,999999999,100,0.1110,0,88,0.170,999.0,99.0 +2002,3,5,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-5.0,49,99300,33,730,290,0,0,0,0,0,0,0,170,3.6,9,9,11.3,3000,9,999999999,100,0.1110,0,88,0.170,999.0,99.0 +2002,3,5,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-4.0,54,99300,0,0,291,0,0,0,0,0,0,0,180,3.6,9,9,11.3,7500,9,999999999,100,0.1110,0,88,0.170,999.0,99.0 +2002,3,5,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-5.0,49,99300,0,0,290,0,0,0,0,0,0,0,170,3.1,9,9,11.3,3000,9,999999999,110,0.1110,0,88,0.170,999.0,99.0 +2002,3,5,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-4.0,54,99200,0,0,291,0,0,0,0,0,0,0,170,5.7,9,9,11.3,7500,9,999999999,110,0.1110,0,88,0.170,999.0,99.0 +2002,3,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-3.0,55,99200,0,0,297,0,0,0,0,0,0,0,190,6.2,9,9,11.3,7500,9,999999999,110,0.1110,0,88,0.170,999.0,99.0 +2002,3,5,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-3.0,55,99200,0,0,297,0,0,0,0,0,0,0,200,7.7,9,9,11.3,7500,9,999999999,100,0.1110,0,88,0.170,999.0,99.0 +2002,3,6,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-4.0,50,99100,0,0,281,0,0,0,0,0,0,0,190,7.2,9,6,11.3,7500,9,999999999,89,0.1110,0,88,0.170,999.0,99.0 +2002,3,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-4.0,50,99200,0,0,281,0,0,0,0,0,0,0,190,6.2,9,6,11.3,7500,9,999999999,89,0.1110,0,88,0.170,999.0,99.0 +2002,3,6,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-4.0,54,99100,0,0,273,0,0,0,0,0,0,0,200,5.7,5,4,11.3,77777,9,999999999,89,0.1110,0,88,0.170,999.0,99.0 +2002,3,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,-4.0,58,99100,0,0,273,0,0,0,0,0,0,0,200,5.7,9,6,11.3,7500,9,999999999,80,0.1110,0,88,0.170,999.0,99.0 +2002,3,6,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-5.0,49,99200,0,0,276,0,0,0,0,0,0,0,200,6.2,9,6,11.3,7500,9,999999999,80,0.1110,0,88,0.170,999.0,99.0 +2002,3,6,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-5.0,49,99200,0,0,276,0,0,0,0,0,0,0,200,5.7,9,6,11.3,7500,9,999999999,80,0.1110,0,88,0.170,999.0,99.0 +2002,3,6,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,-5.0,53,99200,0,0,272,0,0,0,0,0,0,0,200,6.2,9,6,11.3,7500,9,999999999,80,0.1110,0,88,0.170,999.0,99.0 +2002,3,6,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-5.0,46,99200,114,1308,280,0,0,0,0,0,0,0,200,7.2,9,6,11.3,7500,9,999999999,80,0.1110,0,88,0.170,999.0,99.0 +2002,3,6,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,-6.0,37,99300,373,1389,287,198,302,116,20600,26000,13600,2350,210,8.2,9,6,11.3,7500,9,999999999,80,0.1110,0,88,0.170,999.0,99.0 +2002,3,6,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,-5.0,35,99300,604,1389,297,408,638,130,41900,60700,15400,2510,210,8.7,9,6,11.3,7500,9,999999999,80,0.1110,0,88,0.170,999.0,99.0 +2002,3,6,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,-5.0,33,99300,788,1389,301,565,773,125,59700,77600,15600,2880,210,7.2,9,6,11.3,7500,9,999999999,80,0.1110,0,88,0.170,999.0,99.0 +2002,3,6,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,-4.0,31,99300,913,1389,311,677,822,135,70100,81800,16100,3170,210,8.7,9,6,11.3,7500,9,999999999,80,0.1110,0,88,0.170,999.0,99.0 +2002,3,6,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,-4.0,31,99200,970,1389,306,733,854,135,76500,85500,16600,3490,220,8.2,5,4,11.3,77777,9,999999999,80,0.1110,0,88,0.170,999.0,99.0 +2002,3,6,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,-3.0,30,99100,955,1389,306,716,844,134,74700,84400,16400,3380,210,7.7,2,1,11.3,77777,9,999999999,80,0.1110,0,88,0.170,999.0,99.0 +2002,3,6,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,-4.0,27,99100,870,1389,305,640,822,124,66400,81700,15100,2820,190,8.2,3,1,11.3,77777,9,999999999,80,0.1110,0,88,0.170,999.0,99.0 +2002,3,6,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,-5.0,25,99100,719,1389,304,506,749,117,53200,74300,14700,2540,210,8.2,2,1,11.3,77777,9,999999999,80,0.1110,0,88,0.170,999.0,99.0 +2002,3,6,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,-4.0,27,99000,514,1389,305,334,671,85,34800,62700,11500,1660,210,6.2,3,1,11.3,77777,9,999999999,80,0.1110,0,88,0.170,999.0,99.0 +2002,3,6,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,-4.0,31,99000,268,1389,306,143,451,56,14600,33700,8000,980,210,5.7,5,4,11.3,77777,9,999999999,69,0.1110,0,88,0.170,999.0,99.0 +2002,3,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,-4.0,41,99100,36,753,289,0,0,0,0,0,0,0,210,3.1,5,4,11.3,77777,9,999999999,69,0.1110,0,88,0.170,999.0,99.0 +2002,3,6,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,-4.0,41,99100,0,0,289,0,0,0,0,0,0,0,200,2.6,5,4,11.3,77777,9,999999999,69,0.1110,0,88,0.170,999.0,99.0 +2002,3,6,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,-4.0,47,99100,0,0,281,0,0,0,0,0,0,0,90,1.5,5,4,11.3,77777,9,999999999,80,0.1110,0,88,0.170,999.0,99.0 +2002,3,6,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,-6.0,37,99100,0,0,283,0,0,0,0,0,0,0,120,1.5,5,4,11.3,77777,9,999999999,89,0.1110,0,88,0.170,999.0,99.0 +2002,3,6,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,-5.0,40,99100,0,0,289,0,0,0,0,0,0,0,130,2.1,9,6,11.3,1800,9,999999999,89,0.1110,0,88,0.170,999.0,99.0 +2002,3,6,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,-5.0,43,99100,0,0,284,0,0,0,0,0,0,0,120,2.1,9,6,11.3,1800,9,999999999,100,0.1110,0,88,0.170,999.0,99.0 +2002,3,7,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,-5.0,43,99100,0,0,299,0,0,0,0,0,0,0,120,3.1,9,9,11.3,1800,9,999999999,110,0.1120,0,88,0.170,999.0,99.0 +2002,3,7,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-4.0,50,99100,0,0,295,0,0,0,0,0,0,0,140,1.5,9,9,11.3,1800,9,999999999,110,0.1120,0,88,0.170,999.0,99.0 +2002,3,7,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,-5.0,43,99100,0,0,299,0,0,0,0,0,0,0,120,2.6,9,9,11.3,1800,9,999999999,120,0.1120,0,88,0.170,999.0,99.0 +2002,3,7,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-4.0,50,99000,0,0,295,0,0,0,0,0,0,0,120,2.1,9,9,11.3,1500,9,999999999,129,0.1120,0,88,0.170,999.0,99.0 +2002,3,7,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-3.0,55,99100,0,0,297,0,0,0,0,0,0,0,150,1.0,9,9,11.3,1200,9,999999999,139,0.1120,0,88,0.170,999.0,99.0 +2002,3,7,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-2.0,59,99100,0,0,306,0,0,0,0,0,0,0,200,2.1,10,10,11.3,2400,9,999999999,150,0.1120,0,88,0.170,999.0,99.0 +2002,3,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,-3.0,51,99100,0,0,309,0,0,0,0,0,0,0,120,1.5,10,10,11.3,2700,9,999999999,160,0.1120,0,88,0.170,999.0,99.0 +2002,3,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,-2.0,55,99200,121,1354,302,0,0,0,0,0,0,0,120,1.5,9,9,11.3,2700,9,999999999,170,0.1120,0,88,0.170,999.0,99.0 +2002,3,7,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,0.0,47,99300,380,1389,326,110,13,106,12200,700,12000,3690,130,1.5,9,9,11.3,2700,9,999999999,170,0.1120,0,88,0.170,999.0,99.0 +2002,3,7,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,1.0,47,99300,611,1389,342,319,242,213,34500,24200,23800,5110,220,5.1,10,10,11.3,960,9,999999999,179,0.1120,0,88,0.170,999.0,99.0 +2002,3,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,1.0,47,99300,795,1389,342,257,79,211,28200,7900,23700,6890,240,5.1,10,10,11.3,900,9,999999999,179,0.1120,0,88,0.170,999.0,99.0 +2002,3,7,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,3.0,47,99300,920,1389,325,683,671,238,72600,69300,26500,6240,220,4.6,5,5,11.3,77777,9,999999999,179,0.1120,0,88,0.170,999.0,99.0 +2002,3,7,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,4.0,48,99200,977,1389,322,739,854,137,77100,85500,16800,3560,230,5.1,2,2,11.3,77777,9,999999999,179,0.1120,0,88,0.170,999.0,99.0 +2002,3,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,4.0,42,99200,961,1389,335,722,850,132,75500,85100,16400,3390,210,4.6,3,3,11.3,77777,9,999999999,179,0.1120,0,88,0.170,999.0,99.0 +2002,3,7,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,4.0,39,99200,875,1389,345,646,822,127,67000,81700,15400,2890,220,4.6,5,5,11.3,77777,9,999999999,179,0.1120,0,88,0.170,999.0,99.0 +2002,3,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,4.0,42,99200,724,1389,340,512,755,117,53900,75000,14700,2560,210,3.1,5,5,11.3,77777,9,999999999,179,0.1120,0,88,0.170,999.0,99.0 +2002,3,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,4.0,42,99200,519,1389,370,339,677,86,35400,63400,11700,1680,220,4.1,10,10,11.3,7500,9,999999999,170,0.1120,0,88,0.170,999.0,99.0 +2002,3,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,4.0,48,99200,273,1389,350,144,442,57,14700,33300,8100,1000,220,2.1,9,9,11.3,7500,9,999999999,160,0.1120,0,88,0.170,999.0,99.0 +2002,3,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,3.0,51,99200,38,775,349,2,26,1,300,1500,200,40,150,2.6,10,10,11.3,7500,9,999999999,139,0.1120,0,88,0.170,999.0,99.0 +2002,3,7,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,2.0,54,99200,0,0,338,0,0,0,0,0,0,0,120,1.5,10,10,11.3,7500,9,999999999,150,0.1120,0,88,0.170,999.0,99.0 +2002,3,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,2.0,57,99200,0,0,324,0,0,0,0,0,0,0,130,1.5,9,9,11.3,7500,9,999999999,150,0.1120,0,88,0.170,999.0,99.0 +2002,3,7,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,2.0,61,99300,0,0,297,0,0,0,0,0,0,0,140,3.1,3,3,11.3,77777,9,999999999,150,0.1120,0,88,0.170,999.0,99.0 +2002,3,7,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,3.0,62,99300,0,0,299,0,0,0,0,0,0,0,140,3.6,2,2,11.3,77777,9,999999999,150,0.1120,0,88,0.170,999.0,99.0 +2002,3,7,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,3.0,66,99200,0,0,321,0,0,0,0,0,0,0,140,3.1,9,9,11.3,6000,9,999999999,150,0.1120,0,88,0.170,999.0,99.0 +2002,3,8,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,2.0,61,99200,0,0,329,0,0,0,0,0,0,0,140,3.1,10,10,11.3,6000,9,999999999,150,0.1130,0,88,0.170,999.0,99.0 +2002,3,8,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,2.0,61,99100,0,0,329,0,0,0,0,0,0,0,140,3.1,10,10,11.3,6000,9,999999999,150,0.1130,0,88,0.170,999.0,99.0 +2002,3,8,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,2.0,61,99200,0,0,329,0,0,0,0,0,0,0,160,2.1,10,10,11.3,6000,9,999999999,160,0.1130,0,88,0.170,999.0,99.0 +2002,3,8,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,2.0,66,99100,0,0,324,0,0,0,0,0,0,0,160,0.5,10,10,11.3,6000,9,999999999,160,0.1130,0,88,0.170,999.0,99.0 +2002,3,8,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,2.0,61,99100,0,0,329,0,0,0,0,0,0,0,150,3.1,10,10,11.3,3000,9,999999999,160,0.1130,0,88,0.170,999.0,99.0 +2002,3,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,2.0,54,99200,0,0,317,0,0,0,0,0,0,0,180,3.1,9,7,11.3,3000,9,999999999,160,0.1130,0,88,0.170,999.0,99.0 +2002,3,8,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,1.0,50,99200,0,0,321,0,0,0,0,0,0,0,180,2.6,9,8,11.3,3000,9,999999999,150,0.1130,0,88,0.170,999.0,99.0 +2002,3,8,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,1.0,50,99200,127,1376,316,0,0,0,0,0,0,0,150,4.6,9,7,11.3,3000,9,999999999,160,0.1130,0,88,0.170,999.0,99.0 +2002,3,8,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,13.6,1.5,44,99200,387,1388,328,242,352,143,24900,30700,16400,3040,160,5.8,9,7,11.3,4000,9,999999999,170,0.1130,0,88,0.170,999.0,99.0 +2002,3,8,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.9,1.8,39,99300,618,1388,344,170,25,158,18600,2400,17500,4710,180,7.0,9,8,11.3,5000,9,999999999,179,0.1130,0,88,0.170,999.0,99.0 +2002,3,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,2.0,34,99300,802,1388,355,577,615,221,60500,62700,24200,5140,190,8.2,9,8,11.3,6000,9,999999999,189,0.1130,0,88,0.170,999.0,99.0 +2002,3,8,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,3.0,37,99300,926,1388,350,677,791,147,71900,80400,18100,3910,190,8.7,9,7,11.3,6000,9,999999999,200,0.1130,0,88,0.170,999.0,99.0 +2002,3,8,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,4.0,35,99200,983,1388,367,721,793,157,76700,80900,19300,4520,200,10.3,9,8,11.3,6000,9,999999999,209,0.1130,0,88,0.170,999.0,99.0 +2002,3,8,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,3.0,30,99100,967,1388,365,728,820,155,77500,83500,19100,4360,180,8.2,9,7,11.3,6000,9,999999999,220,0.1130,0,88,0.170,999.0,99.0 +2002,3,8,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,4.0,35,99000,881,1388,367,623,720,164,65300,72400,19200,4050,180,9.3,9,8,11.3,6000,9,999999999,229,0.1130,0,88,0.170,999.0,99.0 +2002,3,8,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,4.0,35,99000,730,1388,361,490,632,157,50600,61900,17900,3280,180,7.2,9,7,11.3,6000,9,999999999,240,0.1130,0,88,0.170,999.0,99.0 +2002,3,8,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,4.0,37,99000,524,1388,362,277,307,161,29300,29800,18000,3400,170,7.2,9,8,11.3,6000,9,999999999,209,0.1130,0,88,0.170,999.0,99.0 +2002,3,8,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,4.0,39,99000,278,1388,352,118,221,74,12500,16600,9200,1420,160,6.2,9,7,11.3,6000,9,999999999,179,0.1130,0,88,0.170,999.0,99.0 +2002,3,8,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,4.0,39,99000,41,798,357,2,0,2,300,0,300,80,170,5.1,9,8,11.3,6000,9,999999999,150,0.1130,0,88,0.170,999.0,99.0 +2002,3,8,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,3.0,42,99100,0,0,341,0,0,0,0,0,0,0,150,3.6,9,7,11.3,6000,9,999999999,160,0.1130,0,88,0.170,999.0,99.0 +2002,3,8,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,3.0,44,99100,0,0,342,0,0,0,0,0,0,0,140,3.6,9,8,11.3,6000,9,999999999,160,0.1130,0,88,0.170,999.0,99.0 +2002,3,8,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,3.0,44,99100,0,0,336,0,0,0,0,0,0,0,150,3.6,9,7,11.3,6000,9,999999999,160,0.1130,0,88,0.170,999.0,99.0 +2002,3,8,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,3.0,42,99000,0,0,364,0,0,0,0,0,0,0,160,4.1,10,10,11.3,4200,9,999999999,170,0.1130,0,88,0.170,999.0,99.0 +2002,3,8,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,3.0,44,99000,0,0,359,0,0,0,0,0,0,0,160,5.1,10,10,11.3,4200,9,999999999,170,0.1130,0,88,0.170,999.0,99.0 +2002,3,9,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,3.0,47,99000,0,0,354,0,0,0,0,0,0,0,160,5.1,10,10,11.3,6600,9,999999999,179,0.1130,0,88,0.170,999.0,99.0 +2002,3,9,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,3.0,44,98800,0,0,359,0,0,0,0,0,0,0,160,5.1,10,10,11.3,4200,9,999999999,179,0.1130,0,88,0.170,999.0,99.0 +2002,3,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,4.0,48,98800,0,0,360,0,0,0,0,0,0,0,170,5.7,10,10,11.3,4200,9,999999999,189,0.1130,0,88,0.170,999.0,99.0 +2002,3,9,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,5.0,51,98700,0,0,361,0,0,0,0,0,0,0,160,7.2,10,10,11.3,4200,9,999999999,200,0.1130,0,88,0.170,999.0,99.0 +2002,3,9,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,4.0,51,98600,0,0,355,0,0,0,0,0,0,0,160,7.7,10,10,11.3,4200,9,999999999,200,0.1130,0,88,0.170,999.0,99.0 +2002,3,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,4.0,54,98400,0,0,350,0,0,0,0,0,0,0,140,5.1,10,10,11.3,4200,9,999999999,189,0.1130,0,88,0.170,999.0,99.0 +2002,3,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,3.0,47,98300,0,35,354,0,0,0,0,0,0,0,150,7.2,10,10,11.3,4200,9,999999999,189,0.1130,0,88,0.170,999.0,99.0 +2002,3,9,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,4.0,51,98300,134,1387,355,0,0,0,0,0,0,0,150,7.7,10,10,11.3,4200,9,999999999,229,0.1130,0,88,0.170,999.0,99.0 +2002,3,9,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,6.0,55,98500,394,1387,362,93,0,93,10500,0,10500,3450,170,5.7,10,10,11.3,1500,9,999999999,270,0.1130,0,88,0.170,999.0,99.0 +2002,3,9,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.0,8.0,76,98400,624,1387,350,68,0,68,8300,0,8300,3190,170,6.7,10,10,6.4,1500,9,999999999,320,0.1130,0,88,0.170,0.0,3.0 +2002,3,9,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,10.0,94,98200,808,1387,347,96,0,96,11800,0,11800,4730,150,8.2,10,10,4.8,900,9,999999999,309,0.1130,0,88,0.170,999.0,99.0 +2002,3,9,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,11.0,94,98100,933,1387,353,112,0,112,13900,0,13900,5700,160,9.8,10,10,8.0,900,9,999999999,300,0.1130,0,88,0.170,999.0,99.0 +2002,3,9,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.0,12.0,94,97900,989,1387,360,121,0,121,15000,0,15000,6230,180,9.8,10,10,4.8,600,9,999999999,290,0.1130,0,88,0.170,6.0,6.0 +2002,3,9,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,13.0,94,97700,973,1387,366,118,0,118,14600,0,14600,6060,190,12.3,10,10,11.3,600,9,999999999,270,0.1130,0,88,0.170,999.0,99.0 +2002,3,9,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,12.0,88,97800,887,1387,365,104,0,104,12800,0,12800,5250,190,13.9,10,10,1.6,150,9,999999999,240,0.1130,0,88,0.170,999.0,99.0 +2002,3,9,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.0,2.0,93,98100,735,1387,302,95,0,95,11500,0,11500,4530,250,13.4,10,10,11.3,450,9,999999999,220,0.1130,0,88,0.170,5.0,3.0 +2002,3,9,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-2.0,85,98600,529,1387,285,94,0,94,11000,0,11000,3960,240,12.3,10,10,11.3,450,9,999999999,170,0.1130,0,88,0.170,999.0,99.0 +2002,3,9,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-4.0,78,98800,283,1387,278,57,0,57,6500,0,6500,2100,240,12.3,10,10,11.3,750,9,999999999,110,0.1130,0,88,0.170,999.0,99.0 +2002,3,9,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.0,-6.0,71,99000,44,821,265,3,8,3,400,300,400,40,250,11.3,9,9,11.3,900,9,999999999,60,0.1130,0,88,0.170,5.0,6.0 +2002,3,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-6.0,71,99200,0,0,265,0,0,0,0,0,0,0,250,12.9,9,9,11.3,900,9,999999999,50,0.1130,0,88,0.170,999.0,99.0 +2002,3,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-7.0,71,99300,0,0,260,0,0,0,0,0,0,0,240,11.8,9,9,11.3,1050,9,999999999,50,0.1130,0,88,0.170,999.0,99.0 +2002,3,9,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.0,-7.0,71,99500,0,0,267,0,0,0,0,0,0,0,240,10.8,10,10,11.3,1200,9,999999999,40,0.1130,0,88,0.170,0.0,3.0 +2002,3,9,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-8.0,65,99600,0,0,259,0,0,0,0,0,0,0,250,11.8,9,9,11.3,1140,9,999999999,40,0.1130,0,88,0.170,999.0,99.0 +2002,3,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-8.0,65,99600,0,0,245,0,0,0,0,0,0,0,250,12.3,5,5,11.3,77777,9,999999999,40,0.1130,0,88,0.170,999.0,99.0 +2002,3,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.0,-9.0,65,99500,0,0,236,0,0,0,0,0,0,0,250,10.3,3,3,11.3,77777,9,999999999,40,0.1140,0,88,0.170,0.0,6.0 +2002,3,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.0,-9.0,65,99600,0,0,234,0,0,0,0,0,0,0,240,10.3,2,2,11.3,77777,9,999999999,40,0.1140,0,88,0.170,999.0,99.0 +2002,3,10,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.0,-10.0,59,99600,0,0,226,0,0,0,0,0,0,0,240,12.3,0,0,11.3,77777,9,999999999,40,0.1140,0,88,0.170,999.0,99.0 +2002,3,10,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.0,-11.0,54,99600,0,0,232,0,0,0,0,0,0,0,240,9.3,2,2,11.3,77777,9,999999999,30,0.1140,0,88,0.170,999.0,99.0 +2002,3,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.0,-12.0,54,99700,0,0,230,0,0,0,0,0,0,0,230,9.3,3,3,11.3,77777,9,999999999,30,0.1140,0,88,0.170,999.0,99.0 +2002,3,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.0,-11.0,59,99700,0,0,229,0,0,0,0,0,0,0,230,8.7,2,2,11.3,77777,9,999999999,30,0.1140,0,88,0.170,999.0,99.0 +2002,3,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.0,-11.0,59,99700,0,58,221,0,0,0,0,0,0,0,240,7.7,0,0,11.3,77777,9,999999999,30,0.1140,0,88,0.170,11.0,24.0 +2002,3,10,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.0,-11.0,54,99800,141,1386,238,87,184,69,8800,8800,7900,1500,250,9.8,5,5,11.3,77777,9,999999999,30,0.1140,0,88,0.170,999.0,99.0 +2002,3,10,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.0,-11.0,54,99800,401,1386,238,254,558,92,25700,47900,11800,1620,250,11.3,5,5,11.3,77777,9,999999999,30,0.1140,0,88,0.170,999.0,99.0 +2002,3,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-13.0,42,99900,631,1386,240,432,686,119,44900,66300,14600,2390,260,10.8,5,5,11.3,77777,9,999999999,30,0.1140,0,88,0.170,999.0,99.0 +2002,3,10,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-13.0,42,99900,815,1386,240,576,724,149,60300,72400,17600,3450,270,11.3,5,5,11.3,77777,9,999999999,30,0.1140,0,88,0.170,999.0,99.0 +2002,3,10,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-11.0,46,100000,939,1386,245,701,797,159,74200,80900,19200,4280,260,9.3,5,5,11.3,77777,9,999999999,30,0.1140,0,88,0.170,999.0,99.0 +2002,3,10,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-13.0,38,100000,995,1386,240,757,865,134,79400,86800,16800,3640,260,7.7,3,3,11.3,77777,9,999999999,30,0.1140,0,88,0.170,999.0,99.0 +2002,3,10,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-12.0,42,100000,979,1386,238,740,856,134,77500,85800,16700,3540,260,6.7,2,2,11.3,77777,9,999999999,30,0.1140,0,88,0.170,999.0,99.0 +2002,3,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-13.0,38,100000,892,1386,240,658,822,128,68400,81800,15500,2980,270,9.3,3,3,11.3,77777,9,999999999,30,0.1140,0,88,0.170,999.0,99.0 +2002,3,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-12.0,39,100000,740,1386,242,530,774,115,56000,77200,14600,2560,280,6.7,2,2,11.3,77777,9,999999999,30,0.1140,0,88,0.170,999.0,99.0 +2002,3,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-11.0,46,100100,534,1386,242,351,695,83,36900,65700,11500,1650,270,6.7,3,3,11.3,77777,9,999999999,30,0.1140,0,88,0.170,999.0,99.0 +2002,3,10,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-11.0,46,100100,288,1386,245,160,494,57,16300,38200,8400,1020,260,6.2,5,5,11.3,77777,9,999999999,30,0.1140,0,88,0.170,999.0,99.0 +2002,3,10,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-11.0,50,100100,46,843,242,3,6,3,400,300,400,60,270,5.7,5,5,11.3,77777,9,999999999,30,0.1140,0,88,0.170,999.0,99.0 +2002,3,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.0,-10.0,59,100100,0,0,233,0,0,0,0,0,0,0,260,3.6,2,2,11.3,77777,9,999999999,40,0.1140,0,88,0.170,999.0,99.0 +2002,3,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.0,-10.0,65,100100,0,0,232,0,0,0,0,0,0,0,270,3.1,3,3,11.3,77777,9,999999999,40,0.1140,0,88,0.170,999.0,99.0 +2002,3,10,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.0,-9.0,71,100100,0,0,231,0,0,0,0,0,0,0,260,2.1,2,2,11.3,77777,9,999999999,40,0.1140,0,88,0.170,999.0,99.0 +2002,3,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.0,-10.0,65,100000,0,0,222,0,0,0,0,0,0,0,340,1.0,0,0,11.3,77777,9,999999999,50,0.1140,0,88,0.170,999.0,99.0 +2002,3,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.0,-10.0,70,100000,0,0,219,0,0,0,0,0,0,0,320,1.5,0,0,11.3,77777,9,999999999,50,0.1140,0,88,0.170,999.0,99.0 +2002,3,11,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-8.0,-11.0,77,99900,0,0,212,0,0,0,0,0,0,0,290,1.0,0,0,11.3,77777,9,999999999,60,0.1150,0,88,0.170,999.0,99.0 +2002,3,11,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-8.0,-10.0,84,99900,0,0,213,0,0,0,0,0,0,0,270,1.0,0,0,11.3,77777,9,999999999,60,0.1150,0,88,0.170,999.0,99.0 +2002,3,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-9.0,-10.0,92,99900,0,0,209,0,0,0,0,0,0,0,240,1.5,0,0,11.3,77777,9,999999999,60,0.1150,0,88,0.170,999.0,99.0 +2002,3,11,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-8.0,-9.0,92,99800,0,0,223,0,0,0,0,0,0,0,220,1.5,3,3,11.3,77777,9,999999999,60,0.1150,0,88,0.170,999.0,99.0 +2002,3,11,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-9.0,-10.0,92,99900,0,0,216,0,0,0,0,0,0,0,240,1.5,2,2,11.3,77777,9,999999999,50,0.1150,0,88,0.170,999.0,99.0 +2002,3,11,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-9.0,-9.0,100,99900,0,0,219,0,0,0,0,0,0,0,260,1.0,3,3,11.3,77777,9,999999999,50,0.1150,0,88,0.170,999.0,99.0 +2002,3,11,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-8.0,-9.0,92,99900,1,104,226,0,0,0,0,0,0,0,140,1.5,5,5,11.3,77777,9,999999999,50,0.1150,0,88,0.170,999.0,99.0 +2002,3,11,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-7.0,-9.0,84,99900,148,1386,243,65,45,61,7200,3100,6800,1260,130,3.6,9,9,11.3,6600,9,999999999,50,0.1150,0,88,0.170,999.0,99.0 +2002,3,11,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.0,-8.0,71,100000,408,1386,255,222,337,123,23400,30200,14500,2500,140,5.7,9,9,11.3,6600,9,999999999,50,0.1150,0,88,0.170,999.0,99.0 +2002,3,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-8.0,60,99900,638,1386,270,438,581,170,45800,57300,19300,3510,140,4.6,10,10,11.3,7500,9,999999999,50,0.1150,0,88,0.170,999.0,99.0 +2002,3,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-8.0,55,99800,822,1386,274,544,566,207,57600,57900,23100,4860,100,4.6,10,10,11.3,7500,9,999999999,50,0.1150,0,88,0.170,999.0,99.0 +2002,3,11,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-8.0,47,99700,946,1386,282,657,658,207,68400,65900,23200,5420,130,6.2,10,10,11.3,7500,9,999999999,50,0.1150,0,88,0.170,999.0,99.0 +2002,3,11,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-8.0,44,99600,1001,1386,287,666,559,261,70900,58000,28900,7710,120,4.6,10,10,11.3,7500,9,999999999,50,0.1150,0,88,0.170,999.0,99.0 +2002,3,11,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-8.0,38,99400,985,1386,295,746,790,183,78600,80000,21600,5200,130,5.1,10,10,11.3,7500,9,999999999,60,0.1150,0,88,0.170,999.0,99.0 +2002,3,11,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-8.0,36,99200,898,1386,299,641,732,165,67300,73800,19400,4170,130,6.2,10,10,11.3,7500,9,999999999,60,0.1150,0,88,0.170,999.0,99.0 +2002,3,11,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,-8.0,33,99100,746,1386,304,508,591,189,53600,59800,21300,4160,130,4.6,10,10,11.3,7500,9,999999999,69,0.1150,0,88,0.170,999.0,99.0 +2002,3,11,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,-8.0,33,99100,539,1386,304,273,243,178,28700,23800,19400,3850,150,4.6,10,10,11.3,7500,9,999999999,80,0.1150,0,88,0.170,999.0,99.0 +2002,3,11,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-8.0,36,99100,293,1386,299,85,38,77,9300,3100,8600,1940,120,2.6,10,10,11.3,3300,9,999999999,89,0.1150,0,88,0.170,999.0,99.0 +2002,3,11,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-7.0,39,99000,49,866,300,3,0,3,400,0,400,120,110,3.1,10,10,11.3,3300,9,999999999,89,0.1150,0,88,0.170,999.0,99.0 +2002,3,11,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-7.0,42,98900,0,0,296,0,0,0,0,0,0,0,120,2.1,10,10,11.3,3300,9,999999999,100,0.1150,0,88,0.170,999.0,99.0 +2002,3,11,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-7.0,42,98900,0,0,296,0,0,0,0,0,0,0,140,2.1,10,10,11.3,2700,9,999999999,110,0.1150,0,88,0.170,999.0,99.0 +2002,3,11,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-7.0,39,98800,0,0,300,0,0,0,0,0,0,0,170,2.1,10,10,11.3,3000,9,999999999,120,0.1150,0,88,0.170,999.0,99.0 +2002,3,11,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,-6.0,49,98900,0,0,293,0,0,0,0,0,0,0,330,2.1,10,10,11.3,3000,9,999999999,129,0.1150,0,88,0.170,999.0,99.0 +2002,3,11,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,-8.0,41,98800,0,0,291,0,0,0,0,0,0,0,310,1.0,10,10,11.3,3000,9,999999999,139,0.1150,0,88,0.170,999.0,99.0 +2002,3,12,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-7.0,48,98800,0,0,288,0,0,0,0,0,0,0,280,0.5,10,10,11.3,3000,9,999999999,139,0.1160,0,88,0.170,999.0,99.0 +2002,3,12,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-4.0,62,98800,0,0,291,0,0,0,0,0,0,0,260,0.5,10,10,11.3,2400,9,999999999,139,0.1160,0,88,0.170,999.0,99.0 +2002,3,12,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-3.0,67,98800,0,0,292,0,0,0,0,0,0,0,230,0.5,10,10,11.3,2100,9,999999999,150,0.1160,0,88,0.170,999.0,99.0 +2002,3,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-3.0,59,98800,0,0,301,0,0,0,0,0,0,0,210,5.1,10,10,11.3,1800,9,999999999,150,0.1160,0,88,0.170,999.0,99.0 +2002,3,12,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,0.0,81,98800,0,0,299,0,0,0,0,0,0,0,270,1.5,10,10,11.3,900,9,999999999,160,0.1160,0,88,0.170,999.0,99.0 +2002,3,12,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,0.0,87,98900,0,0,295,0,0,0,0,0,0,0,330,1.0,10,10,11.3,1350,9,999999999,160,0.1160,0,88,0.170,999.0,99.0 +2002,3,12,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.0,1.0,93,98900,1,127,296,0,0,0,0,0,0,0,100,2.1,10,10,11.3,1200,9,999999999,170,0.1160,0,88,0.170,2.0,6.0 +2002,3,12,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,1.0,93,98900,155,1385,296,15,0,15,1800,0,1800,590,90,1.5,10,10,9.7,1200,9,999999999,170,0.1160,0,88,0.170,999.0,99.0 +2002,3,12,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,2.0,100,98900,415,1385,297,46,0,46,5500,0,5500,1990,80,2.1,10,10,6.4,810,9,999999999,160,0.1160,0,88,0.170,999.0,99.0 +2002,3,12,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.0,2.0,100,98900,645,1385,297,74,0,74,9000,0,9000,3480,120,3.1,10,10,4.8,510,9,999999999,160,0.1160,0,88,0.170,0.0,3.0 +2002,3,12,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,3.0,100,98900,828,1385,303,96,0,96,11800,0,11800,4780,90,2.6,10,10,3.2,210,9,999999999,160,0.1160,0,88,0.170,999.0,99.0 +2002,3,12,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,3.0,100,98800,952,1385,303,161,0,161,19400,0,19400,7880,110,2.6,10,10,2.4,180,9,999999999,160,0.1160,0,88,0.170,999.0,99.0 +2002,3,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.0,4.0,100,98800,1007,1385,308,121,0,121,15000,0,15000,6260,100,2.6,10,10,2.4,180,9,999999999,160,0.1160,0,88,0.170,1.0,6.0 +2002,3,12,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,4.0,100,98700,990,1385,308,118,0,118,14700,0,14700,6090,70,2.1,10,10,1.6,150,9,999999999,160,0.1160,0,88,0.170,999.0,99.0 +2002,3,12,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,5.0,100,98700,903,1385,314,404,137,315,44100,14400,34600,9000,60,3.1,10,10,2.4,180,9,999999999,160,0.1160,0,88,0.170,999.0,99.0 +2002,3,12,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.0,6.0,100,98600,751,1385,319,329,112,268,36100,11300,29900,8010,50,2.1,10,10,6.4,210,9,999999999,160,0.1160,0,88,0.170,0.0,3.0 +2002,3,12,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,6.0,93,98600,544,1385,324,226,93,190,24800,9000,21300,5080,40,2.6,10,10,9.7,330,9,999999999,160,0.1160,0,88,0.170,999.0,99.0 +2002,3,12,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,6.0,93,98600,298,1385,324,130,218,83,13700,17000,10000,1610,60,2.1,10,10,11.3,1200,9,999999999,170,0.1160,0,88,0.170,999.0,99.0 +2002,3,12,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.0,5.0,93,98600,52,889,318,2,0,2,300,0,300,80,30,1.5,10,10,11.3,1200,9,999999999,170,0.1160,0,88,0.170,0.0,6.0 +2002,3,12,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,5.0,93,98500,0,0,318,0,0,0,0,0,0,0,50,2.1,10,10,11.3,1200,9,999999999,170,0.1160,0,88,0.170,999.0,99.0 +2002,3,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,4.0,93,98500,0,0,313,0,0,0,0,0,0,0,30,2.1,10,10,11.3,1200,9,999999999,170,0.1160,0,88,0.170,999.0,99.0 +2002,3,12,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,4.0,93,98500,0,0,313,0,0,0,0,0,0,0,30,1.5,10,10,11.3,1200,9,999999999,170,0.1160,0,88,0.170,999.0,99.0 +2002,3,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,4.0,93,98400,0,0,313,0,0,0,0,0,0,0,20,2.1,10,10,11.3,1200,9,999999999,170,0.1160,0,88,0.170,999.0,99.0 +2002,3,12,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,4.0,93,98400,0,0,313,0,0,0,0,0,0,0,20,1.5,10,10,11.3,1200,9,999999999,170,0.1160,0,88,0.170,999.0,99.0 +2002,3,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,4.0,93,98300,0,0,313,0,0,0,0,0,0,0,20,0.5,10,10,11.3,1200,9,999999999,160,0.1170,0,88,0.170,999.0,99.0 +2002,3,13,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,4.0,100,98300,0,0,308,0,0,0,0,0,0,0,10,0.5,10,10,11.3,1200,9,999999999,170,0.1170,0,88,0.170,999.0,99.0 +2002,3,13,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,4.0,100,98200,0,0,308,0,0,0,0,0,0,0,10,1.0,10,10,11.3,1200,9,999999999,170,0.1170,0,88,0.170,999.0,99.0 +2002,3,13,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,4.0,100,98200,0,0,308,0,0,0,0,0,0,0,10,0.5,10,10,11.3,1050,9,999999999,170,0.1170,0,88,0.170,999.0,99.0 +2002,3,13,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,4.0,100,98200,0,0,308,0,0,0,0,0,0,0,360,0.5,10,10,9.7,1050,9,999999999,170,0.1170,0,88,0.170,999.0,99.0 +2002,3,13,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,3.0,93,98200,0,0,307,0,0,0,0,0,0,0,0,0.0,10,10,9.7,990,9,999999999,170,0.1170,0,88,0.170,999.0,99.0 +2002,3,13,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.0,4.0,100,98100,2,173,308,0,0,0,0,0,0,0,310,1.0,10,10,8.0,960,9,999999999,160,0.1170,0,88,0.170,1.0,24.0 +2002,3,13,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,4.0,93,98200,162,1384,313,15,0,15,1800,0,1800,590,290,1.0,10,10,8.0,960,9,999999999,160,0.1170,0,88,0.170,999.0,99.0 +2002,3,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,4.0,87,98200,422,1384,317,45,0,45,5400,0,5400,1960,290,1.0,10,10,8.0,900,9,999999999,150,0.1170,0,88,0.170,999.0,99.0 +2002,3,13,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,5.0,87,98300,652,1384,323,101,0,101,12000,0,12000,4570,310,1.0,10,10,8.0,900,9,999999999,139,0.1170,0,88,0.170,999.0,99.0 +2002,3,13,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,6.0,87,98200,835,1384,329,160,0,160,19000,0,19000,7420,270,1.5,10,10,8.0,840,9,999999999,139,0.1170,0,88,0.170,999.0,99.0 +2002,3,13,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,7.0,76,98200,958,1384,344,304,36,278,33400,3700,30900,9970,230,2.1,10,10,8.0,900,9,999999999,129,0.1170,0,88,0.170,999.0,99.0 +2002,3,13,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,6.0,62,98200,1013,1384,327,708,565,293,74600,58600,31600,8920,190,4.1,9,6,11.3,990,9,999999999,129,0.1170,0,88,0.170,999.0,99.0 +2002,3,13,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,5.0,58,98100,996,1384,310,758,790,187,79800,80000,22000,5410,220,3.6,3,1,11.3,77777,9,999999999,129,0.1170,0,88,0.170,999.0,99.0 +2002,3,13,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,6.0,55,98100,908,1384,314,676,834,127,70400,83200,15600,3050,220,3.1,0,0,11.3,77777,9,999999999,129,0.1170,0,88,0.170,999.0,99.0 +2002,3,13,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,5.0,48,98100,756,1384,334,542,774,118,57300,77400,14900,2660,220,4.1,5,4,9.7,77777,9,999999999,129,0.1170,0,88,0.170,999.0,99.0 +2002,3,13,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,5.0,48,98100,549,1384,334,363,685,91,38000,65000,12100,1800,220,4.6,5,4,9.7,77777,9,999999999,129,0.1170,0,88,0.170,999.0,99.0 +2002,3,13,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,5.0,51,98100,303,1384,335,167,492,59,17100,38800,8500,1060,220,4.1,9,6,9.7,7500,9,999999999,129,0.1170,0,88,0.170,999.0,99.0 +2002,3,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,3.0,66,98100,55,911,305,8,94,6,1300,4600,1000,120,200,2.1,9,6,11.3,7500,9,999999999,139,0.1170,0,88,0.170,999.0,99.0 +2002,3,13,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,3.0,66,98200,0,0,305,0,0,0,0,0,0,0,260,2.1,9,6,11.3,7500,9,999999999,139,0.1170,0,88,0.170,999.0,99.0 +2002,3,13,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,3.0,71,98200,0,0,296,0,0,0,0,0,0,0,200,2.1,5,4,11.3,77777,9,999999999,150,0.1170,0,88,0.170,999.0,99.0 +2002,3,13,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,3.0,81,98300,0,0,293,0,0,0,0,0,0,0,170,1.0,9,6,11.3,7500,9,999999999,150,0.1170,0,88,0.170,999.0,99.0 +2002,3,13,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,3.0,76,98300,0,0,321,0,0,0,0,0,0,0,140,1.0,10,10,11.3,7500,9,999999999,150,0.1170,0,88,0.170,999.0,99.0 +2002,3,13,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,4.0,81,98300,0,0,284,0,0,0,0,0,0,0,100,1.0,3,1,11.3,77777,9,999999999,150,0.1170,0,88,0.170,999.0,99.0 +2002,3,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,3.0,87,98300,0,0,270,0,0,0,0,0,0,0,80,1.0,0,0,11.3,77777,9,999999999,150,0.1170,0,88,0.170,999.0,99.0 +2002,3,14,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,1.0,93,98300,0,0,257,0,0,0,0,0,0,0,40,1.0,0,0,11.3,77777,9,999999999,150,0.1170,0,88,0.170,999.0,99.0 +2002,3,14,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,1.0,93,98300,0,0,257,0,0,0,0,0,0,0,10,1.0,0,0,11.3,77777,9,999999999,150,0.1170,0,88,0.170,999.0,99.0 +2002,3,14,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,1.0,100,98300,0,0,253,0,0,0,0,0,0,0,340,1.0,0,0,6.4,77777,9,999999999,150,0.1170,0,88,0.170,999.0,99.0 +2002,3,14,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,0.0,100,98300,0,0,248,0,0,0,0,0,0,0,130,1.0,0,0,4.8,77777,9,999999999,139,0.1170,0,88,0.170,999.0,99.0 +2002,3,14,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,0.0,100,98400,0,0,248,0,0,0,0,0,0,0,270,0.5,0,0,4.8,77777,9,999999999,139,0.1170,0,88,0.170,999.0,99.0 +2002,3,14,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,0.0,100,98500,3,219,259,0,0,0,0,0,0,0,30,1.0,3,3,3.2,77777,9,999999999,129,0.1170,0,88,0.170,999.0,99.0 +2002,3,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,1.0,100,98500,170,1383,268,83,126,68,8800,7600,7900,1430,40,1.5,5,5,8.0,77777,9,999999999,139,0.1170,0,88,0.170,999.0,99.0 +2002,3,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,6.0,100,98600,429,1383,304,271,573,93,27600,50400,11900,1670,150,2.1,9,8,11.3,7500,9,999999999,139,0.1170,0,88,0.170,999.0,99.0 +2002,3,14,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,6.0,76,98600,659,1383,317,456,703,120,47500,68600,14700,2470,140,2.1,9,7,11.3,7500,9,999999999,139,0.1170,0,88,0.170,999.0,99.0 +2002,3,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,5.0,62,98600,842,1383,346,613,772,142,64700,77800,17200,3420,120,3.1,10,10,11.3,7500,9,999999999,150,0.1170,0,88,0.170,999.0,99.0 +2002,3,14,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,5.0,51,98500,964,1383,361,737,863,133,77000,86400,16500,3440,150,5.1,10,10,11.3,7500,9,999999999,160,0.1170,0,88,0.170,999.0,99.0 +2002,3,14,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,6.0,51,98400,1019,1383,368,781,871,137,82000,87500,17300,3880,140,5.1,10,10,11.3,7500,9,999999999,160,0.1170,0,88,0.170,999.0,99.0 +2002,3,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,6.0,48,98300,1002,1383,373,746,796,168,79300,81100,20400,4980,150,5.7,10,10,11.3,7500,9,999999999,170,0.1170,0,88,0.170,999.0,99.0 +2002,3,14,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,6.0,48,98200,914,1383,373,635,673,190,66300,67500,21600,4820,150,5.7,10,10,11.3,7500,9,999999999,170,0.1170,0,88,0.170,999.0,99.0 +2002,3,14,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,6.0,45,98100,761,1383,378,520,597,190,54900,60600,21500,4230,160,6.2,10,10,11.3,7500,9,999999999,170,0.1170,0,88,0.170,999.0,99.0 +2002,3,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,6.0,48,98100,554,1383,373,248,163,182,26800,16000,20300,4270,160,6.7,10,10,11.3,7500,9,999999999,150,0.1170,0,88,0.170,999.0,99.0 +2002,3,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,6.0,51,98000,308,1383,368,158,318,88,16200,24900,10700,1650,150,5.1,10,10,11.3,7500,9,999999999,129,0.1170,0,88,0.170,999.0,99.0 +2002,3,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,6.0,59,98000,58,934,357,7,13,6,800,600,800,120,150,4.1,10,10,11.3,7500,9,999999999,110,0.1170,0,88,0.170,999.0,99.0 +2002,3,14,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,6.0,59,97900,0,0,357,0,0,0,0,0,0,0,170,3.1,10,10,11.3,7500,9,999999999,129,0.1170,0,88,0.170,999.0,99.0 +2002,3,14,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,6.0,59,97800,0,0,340,0,0,0,0,0,0,0,160,5.1,9,8,11.3,7500,9,999999999,139,0.1170,0,88,0.170,999.0,99.0 +2002,3,14,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,5.0,55,97800,0,0,334,0,0,0,0,0,0,0,160,5.1,9,7,11.3,7500,9,999999999,150,0.1170,0,88,0.170,999.0,99.0 +2002,3,14,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,6.0,55,97800,0,0,345,0,0,0,0,0,0,0,170,4.1,9,8,11.3,4500,9,999999999,170,0.1170,0,88,0.170,999.0,99.0 +2002,3,14,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,6.0,55,97800,0,0,340,0,0,0,0,0,0,0,170,5.7,9,7,11.3,4200,9,999999999,189,0.1170,0,88,0.170,999.0,99.0 +2002,3,15,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,6.0,51,97800,0,0,335,0,0,0,0,0,0,0,190,7.7,9,4,11.3,7500,9,999999999,220,0.1180,0,88,0.170,999.0,99.0 +2002,3,15,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,5.0,51,97900,0,0,329,0,0,0,0,0,0,0,190,7.7,9,4,11.3,7500,9,999999999,229,0.1180,0,88,0.170,999.0,99.0 +2002,3,15,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,5.0,51,97900,0,0,351,0,0,0,0,0,0,0,190,6.2,10,9,11.3,7500,9,999999999,240,0.1180,0,88,0.170,999.0,99.0 +2002,3,15,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,6.0,51,97900,0,0,357,0,0,0,0,0,0,0,200,7.7,10,9,11.3,4500,9,999999999,250,0.1180,0,88,0.170,999.0,99.0 +2002,3,15,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,6.0,51,97900,0,0,357,0,0,0,0,0,0,0,200,7.2,10,9,11.3,4500,9,999999999,250,0.1180,0,88,0.170,999.0,99.0 +2002,3,15,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,7.0,63,98000,0,0,349,0,0,0,0,0,0,0,200,5.1,10,9,11.3,4500,9,999999999,250,0.1180,0,88,0.170,999.0,99.0 +2002,3,15,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,7.0,63,98000,4,242,349,0,0,0,0,0,0,0,190,6.2,10,9,11.3,4500,9,999999999,259,0.1180,0,88,0.170,999.0,99.0 +2002,3,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,8.0,67,98100,177,1383,350,80,107,66,8500,6600,7600,1390,190,5.7,10,9,11.3,6600,9,999999999,279,0.1180,0,88,0.170,999.0,99.0 +2002,3,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,9.0,63,98100,436,1383,361,233,347,123,24700,31900,14600,2480,200,7.7,10,9,11.3,1050,9,999999999,300,0.1180,0,88,0.170,999.0,99.0 +2002,3,15,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,10.0,63,98100,666,1383,367,362,265,234,38200,27200,25000,5420,200,6.7,10,9,11.3,1050,9,999999999,320,0.1180,0,88,0.170,999.0,99.0 +2002,3,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,11.0,68,98200,848,1383,368,134,0,134,16200,0,16200,6450,210,5.7,10,9,11.3,900,9,999999999,320,0.1180,0,88,0.170,999.0,99.0 +2002,3,15,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,11.0,72,98200,971,1383,363,124,0,124,15300,0,15300,6330,220,5.1,10,9,11.3,810,9,999999999,320,0.1180,0,88,0.170,999.0,99.0 +2002,3,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,12.0,72,98300,1025,1383,370,163,0,163,19900,0,19900,8180,210,5.7,10,9,9.7,720,9,999999999,320,0.1180,0,88,0.170,999.0,99.0 +2002,3,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,12.0,72,98200,1007,1383,370,124,0,124,15400,0,15400,6410,200,4.6,10,9,9.7,630,9,999999999,320,0.1180,0,88,0.170,999.0,99.0 +2002,3,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,12.0,72,98200,919,1383,370,179,6,175,21400,500,21100,8330,190,5.7,10,9,9.7,630,9,999999999,320,0.1180,0,88,0.170,999.0,99.0 +2002,3,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,12.0,77,98100,766,1383,365,196,6,192,22600,500,22300,8190,200,5.1,10,9,9.7,630,9,999999999,320,0.1180,0,88,0.170,999.0,99.0 +2002,3,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,13.0,82,98100,559,1383,366,90,0,90,10600,0,10600,3910,210,4.6,10,9,9.7,540,9,999999999,309,0.1180,0,88,0.170,999.0,99.0 +2002,3,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,13.3,11.5,89,98100,312,1383,351,91,44,81,10000,3700,9100,2070,260,4.4,10,9,9.7,330,9,999999999,300,0.1180,0,88,0.170,999.0,99.0 +2002,3,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,10.0,100,98200,61,956,333,3,0,3,400,0,400,120,310,4.1,10,9,2.4,120,9,999999999,290,0.1180,0,88,0.170,0.0,6.0 +2002,3,15,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,9.0,100,98200,0,0,327,0,0,0,0,0,0,0,330,4.1,10,9,4.8,120,9,999999999,300,0.1180,0,88,0.170,999.0,99.0 +2002,3,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,7.0,93,98300,0,0,321,0,0,0,0,0,0,0,310,4.6,10,9,4.8,120,9,999999999,309,0.1180,0,88,0.170,999.0,99.0 +2002,3,15,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.0,7.0,100,98200,0,0,316,0,0,0,0,0,0,0,30,3.6,10,9,4.8,120,9,999999999,320,0.1180,0,88,0.170,2.0,3.0 +2002,3,15,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,6.0,100,98300,0,0,310,0,0,0,0,0,0,0,330,4.1,10,9,4.8,150,9,999999999,309,0.1180,0,88,0.170,999.0,99.0 +2002,3,15,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,5.0,93,98400,0,0,309,0,0,0,0,0,0,0,340,5.7,10,9,4.8,240,9,999999999,300,0.1180,0,88,0.170,999.0,99.0 +2002,3,16,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.0,4.0,100,98400,0,0,308,0,0,0,0,0,0,0,360,5.7,10,10,6.4,270,9,999999999,290,0.1190,0,88,0.170,16.0,6.0 +2002,3,16,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,3.0,93,98500,0,0,307,0,0,0,0,0,0,0,350,5.1,10,10,11.3,540,9,999999999,279,0.1190,0,88,0.170,999.0,99.0 +2002,3,16,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,3.0,100,98500,0,0,303,0,0,0,0,0,0,0,350,5.1,10,10,9.7,510,9,999999999,279,0.1190,0,88,0.170,999.0,99.0 +2002,3,16,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.0,2.0,93,98500,0,0,302,0,0,0,0,0,0,0,350,6.2,10,10,8.0,240,9,999999999,270,0.1190,0,88,0.170,1.0,3.0 +2002,3,16,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,2.0,93,98600,0,0,302,0,0,0,0,0,0,0,360,5.1,10,10,4.8,210,9,999999999,250,0.1190,0,88,0.170,999.0,99.0 +2002,3,16,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,2.0,100,98700,0,0,297,0,0,0,0,0,0,0,350,5.7,10,10,9.7,390,9,999999999,229,0.1190,0,88,0.170,999.0,99.0 +2002,3,16,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.0,1.0,93,98700,5,288,296,0,0,0,0,0,0,0,340,6.2,10,10,9.7,420,9,999999999,209,0.1190,0,88,0.170,2.0,6.0 +2002,3,16,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,0.0,87,99000,184,1382,295,64,16,62,7000,300,6900,1810,360,4.6,10,10,9.7,360,9,999999999,189,0.1190,0,88,0.170,999.0,99.0 +2002,3,16,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,0.0,87,99100,444,1382,295,119,0,119,13400,0,13400,4350,10,5.7,10,10,11.3,360,9,999999999,179,0.1190,0,88,0.170,999.0,99.0 +2002,3,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,0.0,93,99200,673,1382,291,87,0,87,10500,0,10500,4070,20,6.7,10,10,11.3,420,9,999999999,170,0.1190,0,88,0.170,999.0,99.0 +2002,3,16,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-1.0,86,99200,855,1382,290,115,0,115,14000,0,14000,5670,20,7.7,10,10,11.3,420,9,999999999,150,0.1190,0,88,0.170,999.0,99.0 +2002,3,16,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-1.0,80,99300,977,1382,294,124,0,124,15300,0,15300,6350,20,7.7,10,10,11.3,510,9,999999999,139,0.1190,0,88,0.170,999.0,99.0 +2002,3,16,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-2.0,73,99400,1031,1382,285,188,0,188,22700,0,22700,9240,30,7.2,9,9,11.3,570,9,999999999,120,0.1190,0,88,0.170,999.0,99.0 +2002,3,16,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-2.0,73,99400,1013,1382,285,249,6,244,29300,500,29000,11290,30,6.2,9,9,11.3,600,9,999999999,129,0.1190,0,88,0.170,999.0,99.0 +2002,3,16,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,-1.0,74,99400,924,1382,290,260,24,244,30300,2100,28900,10800,360,5.7,9,9,11.3,690,9,999999999,129,0.1190,0,88,0.170,999.0,99.0 +2002,3,16,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-1.0,69,99400,771,1382,294,397,248,258,43200,25700,28800,6720,30,4.6,9,9,11.3,6000,9,999999999,139,0.1190,0,88,0.170,999.0,99.0 +2002,3,16,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-1.0,69,99400,564,1382,294,275,203,192,29700,20000,21500,4520,40,5.7,9,9,11.3,6000,9,999999999,120,0.1190,0,88,0.170,999.0,99.0 +2002,3,16,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-1.0,69,99500,317,1382,294,174,341,95,17600,27100,11400,1790,40,5.7,9,9,11.3,6000,9,999999999,110,0.1190,0,88,0.170,999.0,99.0 +2002,3,16,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-1.0,80,99500,64,979,286,11,63,8,1400,2700,1300,130,40,4.6,9,9,11.3,6000,9,999999999,100,0.1190,0,88,0.170,999.0,99.0 +2002,3,16,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-2.0,79,99500,0,0,281,0,0,0,0,0,0,0,40,3.6,9,9,11.3,6000,9,999999999,100,0.1190,0,88,0.170,999.0,99.0 +2002,3,16,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-1.0,86,99500,0,0,282,0,0,0,0,0,0,0,50,5.1,9,9,11.3,6000,9,999999999,100,0.1190,0,88,0.170,999.0,99.0 +2002,3,16,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-1.0,86,99500,0,0,282,0,0,0,0,0,0,0,40,5.7,9,9,11.3,6000,9,999999999,100,0.1190,0,88,0.170,999.0,99.0 +2002,3,16,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-2.0,79,99500,0,0,281,0,0,0,0,0,0,0,50,5.7,9,9,11.3,6000,9,999999999,110,0.1190,0,88,0.170,999.0,99.0 +2002,3,16,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-2.0,79,99500,0,0,289,0,0,0,0,0,0,0,50,6.2,10,10,11.3,6600,9,999999999,110,0.1190,0,88,0.170,999.0,99.0 +2002,3,17,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-3.0,72,99400,0,0,288,0,0,0,0,0,0,0,40,6.2,10,10,11.3,3600,9,999999999,120,0.1200,0,88,0.170,999.0,99.0 +2002,3,17,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-3.0,78,99400,0,0,284,0,0,0,0,0,0,0,80,5.1,10,10,11.3,3300,9,999999999,129,0.1200,0,88,0.170,999.0,99.0 +2002,3,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-3.0,72,99400,0,0,288,0,0,0,0,0,0,0,60,5.1,10,10,11.3,3000,9,999999999,139,0.1200,0,88,0.170,999.0,99.0 +2002,3,17,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-3.0,72,99100,0,0,288,0,0,0,0,0,0,0,30,7.7,10,10,11.3,2100,9,999999999,150,0.1200,0,88,0.170,999.0,99.0 +2002,3,17,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-3.0,72,99100,0,0,288,0,0,0,0,0,0,0,60,5.1,10,10,11.3,3000,9,999999999,160,0.1200,0,88,0.170,999.0,99.0 +2002,3,17,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-3.0,72,99200,0,0,288,0,0,0,0,0,0,0,50,3.6,10,10,11.3,3000,9,999999999,170,0.1200,0,88,0.170,999.0,99.0 +2002,3,17,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.0,-3.0,72,99100,7,311,288,0,0,0,0,0,0,0,50,2.6,10,10,11.3,690,9,999999999,189,0.1200,0,88,0.170,0.0,6.0 +2002,3,17,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-3.0,72,99200,191,1381,288,61,0,61,6700,0,6700,1840,10,3.1,10,10,11.3,690,9,999999999,200,0.1200,0,88,0.170,999.0,99.0 +2002,3,17,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-1.0,86,99000,451,1381,290,45,0,45,5500,0,5500,2000,80,4.6,10,10,4.8,690,9,999999999,220,0.1200,0,88,0.170,999.0,99.0 +2002,3,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.0,1.0,93,98800,680,1381,296,80,0,80,9700,0,9700,3790,60,5.1,10,10,11.3,690,9,999999999,229,0.1200,0,88,0.170,1.0,3.0 +2002,3,17,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,1.0,87,98900,861,1381,301,147,0,147,17600,0,17600,7020,80,3.6,10,10,11.3,2100,9,999999999,229,0.1200,0,88,0.170,999.0,99.0 +2002,3,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,2.0,93,98800,983,1381,302,217,0,217,25700,0,25700,10190,90,5.1,10,10,9.7,690,9,999999999,229,0.1200,0,88,0.170,999.0,99.0 +2002,3,17,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.0,2.0,93,98800,1037,1381,302,157,0,157,19200,0,19200,7950,120,3.6,10,10,9.7,300,9,999999999,229,0.1200,0,88,0.170,1.0,6.0 +2002,3,17,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,2.0,93,98800,1018,1381,302,124,0,124,15400,0,15400,6430,100,2.1,10,10,2.0,240,9,999999999,229,0.1200,0,88,0.170,999.0,99.0 +2002,3,17,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,3.0,93,98700,929,1381,307,110,0,110,13600,0,13600,5610,120,2.1,10,10,4.8,180,9,999999999,229,0.1200,0,88,0.170,999.0,99.0 +2002,3,17,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,3.0,93,98700,776,1381,307,90,0,90,11100,0,11100,4410,90,2.6,10,10,4.8,180,9,999999999,220,0.1200,0,88,0.170,999.0,99.0 +2002,3,17,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,3.0,93,98700,569,1381,307,101,0,101,11800,0,11800,4330,120,2.1,10,10,4.8,180,9,999999999,200,0.1200,0,88,0.170,999.0,99.0 +2002,3,17,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,4.0,93,98600,322,1381,313,37,0,37,4400,0,4400,1530,140,1.5,10,10,4.8,90,9,999999999,179,0.1200,0,88,0.170,999.0,99.0 +2002,3,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,4.0,93,98700,68,1001,313,3,0,3,400,0,400,120,170,1.5,10,10,4.8,90,9,999999999,170,0.1200,0,88,0.170,0.0,6.0 +2002,3,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,5.0,100,98700,0,0,314,0,0,0,0,0,0,0,190,2.6,10,10,4.8,90,9,999999999,189,0.1200,0,88,0.170,999.0,99.0 +2002,3,17,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,5.0,100,98600,0,0,314,0,0,0,0,0,0,0,160,3.1,10,10,1.2,30,9,999999999,209,0.1200,0,88,0.170,999.0,99.0 +2002,3,17,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,5.0,100,98700,0,0,314,0,0,0,0,0,0,0,160,1.5,10,10,1.2,30,9,999999999,229,0.1200,0,88,0.170,999.0,99.0 +2002,3,17,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,6.0,100,98700,0,0,319,0,0,0,0,0,0,0,170,2.1,10,10,1.2,30,9,999999999,229,0.1200,0,88,0.170,999.0,99.0 +2002,3,17,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,5.0,100,98500,0,0,314,0,0,0,0,0,0,0,170,3.6,10,10,1.2,60,9,999999999,240,0.1200,0,88,0.170,999.0,99.0 +2002,3,18,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,5.0,100,98700,0,0,314,0,0,0,0,0,0,0,290,3.1,10,10,1.2,60,9,999999999,250,0.1210,0,88,0.170,999.0,99.0 +2002,3,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,5.0,100,98700,0,0,314,0,0,0,0,0,0,0,270,2.1,10,10,3.2,120,9,999999999,240,0.1210,0,88,0.170,999.0,99.0 +2002,3,18,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,6.0,100,98700,0,0,319,0,0,0,0,0,0,0,170,2.6,10,10,4.8,210,9,999999999,240,0.1210,0,88,0.170,999.0,99.0 +2002,3,18,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,6.0,100,98800,0,0,319,0,0,0,0,0,0,0,240,2.1,10,10,4.8,210,9,999999999,229,0.1210,0,88,0.170,999.0,99.0 +2002,3,18,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,6.0,100,98900,0,0,319,0,0,0,0,0,0,0,290,2.6,10,10,8.0,210,9,999999999,209,0.1210,0,88,0.170,999.0,99.0 +2002,3,18,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,5.0,100,99000,0,0,314,0,0,0,0,0,0,0,280,2.6,10,10,9.7,270,9,999999999,200,0.1210,0,88,0.170,999.0,99.0 +2002,3,18,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,4.0,93,99100,8,357,313,0,0,0,0,0,0,0,290,3.1,10,10,9.7,270,9,999999999,179,0.1210,0,88,0.170,1.0,24.0 +2002,3,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,4.0,93,99200,198,1380,313,24,0,24,2800,0,2800,940,260,2.6,10,10,11.3,360,9,999999999,170,0.1210,0,88,0.170,999.0,99.0 +2002,3,18,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,4.0,93,99300,458,1380,313,74,0,74,8700,0,8700,3080,300,3.6,10,10,11.3,360,9,999999999,160,0.1210,0,88,0.170,999.0,99.0 +2002,3,18,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,3.0,87,99300,686,1380,311,93,0,93,11200,0,11200,4350,310,4.1,10,10,11.3,420,9,999999999,150,0.1210,0,88,0.170,999.0,99.0 +2002,3,18,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,3.0,87,99300,868,1380,311,140,0,140,16900,0,16900,6760,290,3.6,10,10,11.3,360,9,999999999,139,0.1210,0,88,0.170,999.0,99.0 +2002,3,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,3.0,81,99400,989,1380,316,216,6,212,25700,500,25400,10030,300,2.6,10,10,11.3,420,9,999999999,129,0.1210,0,88,0.170,999.0,99.0 +2002,3,18,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,3.0,71,99400,1042,1380,325,369,60,323,40600,6100,36000,12290,290,3.1,10,10,11.3,450,9,999999999,129,0.1210,0,88,0.170,999.0,99.0 +2002,3,18,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,3.0,71,99300,1024,1380,325,598,323,357,64300,34800,38400,11270,290,3.6,10,10,11.3,600,9,999999999,129,0.1210,0,88,0.170,999.0,99.0 +2002,3,18,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,3.0,66,99300,934,1380,330,584,447,280,61100,46100,29800,7630,310,3.1,10,10,11.3,4500,9,999999999,129,0.1210,0,88,0.170,999.0,99.0 +2002,3,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,4.0,66,99400,781,1380,336,381,201,267,41400,20900,29600,7000,30,2.1,10,10,11.3,7500,9,999999999,129,0.1210,0,88,0.170,999.0,99.0 +2002,3,18,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,3.0,66,99400,573,1380,330,339,401,172,36000,40000,19300,3690,310,1.5,10,10,11.3,7500,9,999999999,120,0.1210,0,88,0.170,999.0,99.0 +2002,3,18,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,3.0,71,99400,326,1380,325,69,0,69,7800,0,7800,2560,330,3.1,10,10,11.3,7500,9,999999999,110,0.1210,0,88,0.170,999.0,99.0 +2002,3,18,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,3.0,76,99400,71,1024,321,16,66,13,2000,2900,1800,220,340,2.6,10,10,11.3,4500,9,999999999,100,0.1210,0,88,0.170,999.0,99.0 +2002,3,18,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,3.0,81,99500,0,0,316,0,0,0,0,0,0,0,350,2.1,10,10,11.3,4500,9,999999999,100,0.1210,0,88,0.170,999.0,99.0 +2002,3,18,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,3.0,81,99500,0,0,316,0,0,0,0,0,0,0,350,3.1,10,10,11.3,4500,9,999999999,100,0.1210,0,88,0.170,999.0,99.0 +2002,3,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,3.0,87,99600,0,0,311,0,0,0,0,0,0,0,10,2.1,10,10,11.3,4500,9,999999999,100,0.1210,0,88,0.170,999.0,99.0 +2002,3,18,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,3.0,87,99500,0,0,311,0,0,0,0,0,0,0,20,2.6,10,10,11.3,4500,9,999999999,100,0.1210,0,88,0.170,999.0,99.0 +2002,3,18,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,2.0,87,99500,0,0,306,0,0,0,0,0,0,0,40,2.1,10,10,11.3,4200,9,999999999,100,0.1210,0,88,0.170,999.0,99.0 +2002,3,19,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,2.0,87,99500,0,0,306,0,0,0,0,0,0,0,40,1.5,10,10,11.3,4200,9,999999999,100,0.1210,0,88,0.170,999.0,99.0 +2002,3,19,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,2.0,87,99500,0,0,306,0,0,0,0,0,0,0,40,1.0,10,10,11.3,4200,9,999999999,110,0.1210,0,88,0.170,999.0,99.0 +2002,3,19,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,2.0,87,99500,0,0,306,0,0,0,0,0,0,0,60,3.1,10,10,11.3,4200,9,999999999,120,0.1210,0,88,0.170,999.0,99.0 +2002,3,19,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,2.0,87,99400,0,0,306,0,0,0,0,0,0,0,50,2.1,10,10,11.3,3600,9,999999999,129,0.1210,0,88,0.170,999.0,99.0 +2002,3,19,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,2.0,87,99400,0,0,306,0,0,0,0,0,0,0,50,4.1,10,10,8.0,2700,9,999999999,139,0.1210,0,88,0.170,999.0,99.0 +2002,3,19,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,2.0,87,99400,0,0,306,0,0,0,0,0,0,0,60,4.1,10,10,8.0,2700,9,999999999,160,0.1210,0,88,0.170,999.0,99.0 +2002,3,19,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,2.0,87,99400,10,402,306,0,0,0,0,0,0,0,80,3.1,10,10,8.0,2700,9,999999999,170,0.1210,0,88,0.170,999.0,99.0 +2002,3,19,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,2.0,87,99400,205,1379,306,23,0,23,2700,0,2700,910,70,4.6,10,10,8.0,2700,9,999999999,179,0.1210,0,88,0.170,999.0,99.0 +2002,3,19,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,2.0,81,99400,465,1379,310,74,0,74,8700,0,8700,3100,80,3.6,10,10,8.0,2400,9,999999999,200,0.1210,0,88,0.170,999.0,99.0 +2002,3,19,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,5.6,2.5,80,99300,693,1379,314,93,0,93,11200,0,11200,4360,90,4.4,10,10,8.0,2250,9,999999999,209,0.1210,0,88,0.170,999.0,99.0 +2002,3,19,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,3.0,81,99200,874,1379,316,153,0,153,18300,0,18300,7300,100,5.1,10,10,8.0,2100,9,999999999,220,0.1210,0,88,0.170,999.0,99.0 +2002,3,19,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,4.0,81,99200,995,1379,322,155,0,155,18900,0,18900,7760,100,3.6,10,10,8.0,1800,9,999999999,229,0.1210,0,88,0.170,999.0,99.0 +2002,3,19,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.0,4.0,81,99100,1048,1379,322,224,0,224,26800,0,26800,10720,110,5.1,10,10,8.0,1800,9,999999999,240,0.1210,0,88,0.170,0.0,6.0 +2002,3,19,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,4.0,81,99100,1029,1379,322,142,0,142,17500,0,17500,7270,90,4.1,10,10,8.0,1800,9,999999999,250,0.1210,0,88,0.170,999.0,99.0 +2002,3,19,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,5.0,87,98900,939,1379,323,133,0,133,16300,0,16300,6660,80,5.7,10,10,8.0,1050,9,999999999,270,0.1210,0,88,0.170,999.0,99.0 +2002,3,19,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.0,6.0,87,98800,786,1379,329,118,0,118,14200,0,14200,5620,90,4.6,10,10,8.0,1050,9,999999999,290,0.1210,0,88,0.170,0.0,3.0 +2002,3,19,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,6.0,87,98800,578,1379,329,90,0,90,10700,0,10700,3960,80,4.6,10,10,8.0,450,9,999999999,279,0.1210,0,88,0.170,999.0,99.0 +2002,3,19,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,7.0,93,98700,331,1379,330,32,0,32,3900,0,3900,1360,50,5.1,10,10,6.4,450,9,999999999,270,0.1210,0,88,0.170,999.0,99.0 +2002,3,19,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.0,7.0,100,98700,74,1046,325,4,0,4,500,0,500,160,60,3.6,10,10,4.8,450,9,999999999,270,0.1210,0,88,0.170,0.0,6.0 +2002,3,19,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,6.0,93,98700,0,0,324,0,0,0,0,0,0,0,70,3.1,10,10,4.8,450,9,999999999,270,0.1210,0,88,0.170,999.0,99.0 +2002,3,19,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,6.0,93,98600,0,0,324,0,0,0,0,0,0,0,60,2.6,10,10,6.4,450,9,999999999,279,0.1210,0,88,0.170,999.0,99.0 +2002,3,19,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.0,6.0,93,98600,0,0,324,0,0,0,0,0,0,0,30,2.6,10,10,6.4,180,9,999999999,290,0.1210,0,88,0.170,1.0,3.0 +2002,3,19,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,6.0,93,98500,0,0,324,0,0,0,0,0,0,0,30,2.1,10,10,6.4,180,9,999999999,290,0.1210,0,88,0.170,999.0,99.0 +2002,3,19,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,6.0,100,98400,0,0,319,0,0,0,0,0,0,0,30,1.5,10,10,4.8,180,9,999999999,300,0.1210,0,88,0.170,999.0,99.0 +2002,3,20,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.0,6.0,100,98300,0,0,319,0,0,0,0,0,0,0,30,2.6,10,10,4.4,150,9,999999999,300,0.1220,0,88,0.170,4.0,6.0 +2002,3,20,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,6.0,100,98300,0,0,319,0,0,0,0,0,0,0,360,4.1,10,10,3.2,180,9,999999999,309,0.1220,0,88,0.170,999.0,99.0 +2002,3,20,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,5.0,100,98300,0,0,314,0,0,0,0,0,0,0,350,2.1,10,10,2.4,120,9,999999999,309,0.1220,0,88,0.170,999.0,99.0 +2002,3,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,5.0,100,98100,0,0,314,0,0,0,0,0,0,0,340,1.0,10,10,1.2,120,9,999999999,309,0.1220,0,88,0.170,0.0,3.0 +2002,3,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,5.0,100,98100,0,0,314,0,0,0,0,0,0,0,320,2.6,10,10,2.0,180,9,999999999,300,0.1220,0,88,0.170,999.0,99.0 +2002,3,20,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,5.0,100,98200,0,0,314,0,0,0,0,0,0,0,310,1.5,10,10,2.4,150,9,999999999,290,0.1220,0,88,0.170,999.0,99.0 +2002,3,20,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,5.0,100,98200,12,425,314,0,0,0,0,0,0,0,310,2.1,10,10,2.4,150,9,999999999,270,0.1220,0,88,0.170,3.0,6.0 +2002,3,20,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,4.0,100,98300,213,1379,308,33,0,33,3800,0,3800,1240,310,2.6,10,10,2.4,150,9,999999999,259,0.1220,0,88,0.170,999.0,99.0 +2002,3,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,5.0,100,98300,472,1379,314,125,0,125,14100,0,14100,4650,290,2.1,10,10,3.2,180,9,999999999,250,0.1220,0,88,0.170,999.0,99.0 +2002,3,20,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,5.0,100,98400,700,1379,314,186,6,183,21300,500,21100,7540,290,4.1,10,10,3.2,180,9,999999999,240,0.1220,0,88,0.170,3.0,3.0 +2002,3,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,5.0,100,98500,881,1379,314,197,0,197,23200,0,23200,8980,310,5.1,10,10,4.8,240,9,999999999,220,0.1220,0,88,0.170,999.0,99.0 +2002,3,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,5.0,100,98600,1001,1379,314,198,0,198,23700,0,23700,9550,320,7.2,10,10,2.4,150,9,999999999,200,0.1220,0,88,0.170,999.0,99.0 +2002,3,20,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.0,5.0,93,98700,1054,1379,318,157,0,157,19300,0,19300,7990,320,6.2,10,10,6.4,270,9,999999999,179,0.1220,0,88,0.170,3.0,6.0 +2002,3,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,4.0,87,98700,1034,1379,317,166,0,166,20300,0,20300,8340,320,5.1,10,10,8.0,300,9,999999999,160,0.1220,0,88,0.170,999.0,99.0 +2002,3,20,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,4.0,87,98800,944,1379,317,150,0,150,18200,0,18200,7410,320,5.7,10,10,8.0,360,9,999999999,139,0.1220,0,88,0.170,999.0,99.0 +2002,3,20,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,4.0,87,98800,790,1379,317,123,0,123,14800,0,14800,5840,310,3.6,10,10,8.0,360,9,999999999,110,0.1220,0,88,0.170,999.0,99.0 +2002,3,20,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,4.0,87,98900,583,1379,317,96,0,96,11300,0,11300,4190,340,2.6,10,10,8.0,540,9,999999999,100,0.1220,0,88,0.170,999.0,99.0 +2002,3,20,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,2.0,75,98900,336,1379,315,51,0,51,6000,0,6000,2040,340,3.6,10,10,9.7,750,9,999999999,89,0.1220,0,88,0.170,999.0,99.0 +2002,3,20,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,3.0,81,99000,78,1068,316,10,0,10,1200,0,1200,390,330,2.1,10,10,8.0,840,9,999999999,80,0.1220,0,88,0.170,999.0,99.0 +2002,3,20,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,3.0,87,99100,0,0,311,0,0,0,0,0,0,0,330,1.0,10,10,9.7,960,9,999999999,80,0.1220,0,88,0.170,999.0,99.0 +2002,3,20,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,3.0,87,99100,0,0,311,0,0,0,0,0,0,0,350,3.1,10,10,9.7,960,9,999999999,80,0.1220,0,88,0.170,999.0,99.0 +2002,3,20,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,2.0,87,99100,0,0,306,0,0,0,0,0,0,0,330,2.6,10,10,9.7,960,9,999999999,69,0.1220,0,88,0.170,999.0,99.0 +2002,3,20,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,1.0,93,99100,0,0,288,0,0,0,0,0,0,0,50,0.5,9,9,9.7,1050,9,999999999,69,0.1220,0,88,0.170,999.0,99.0 +2002,3,20,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,1.0,93,99000,0,0,265,0,0,0,0,0,0,0,270,1.0,2,2,8.0,77777,9,999999999,69,0.1220,0,88,0.170,999.0,99.0 +2002,3,21,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,0.0,93,99000,0,0,260,0,0,0,0,0,0,0,140,1.0,2,2,8.0,77777,9,999999999,69,0.1230,0,88,0.170,999.0,99.0 +2002,3,21,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,0.0,100,99000,0,0,263,0,0,0,0,0,0,0,250,1.0,5,5,4.8,77777,9,999999999,69,0.1230,0,88,0.170,999.0,99.0 +2002,3,21,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,0.0,100,98900,0,0,279,0,0,0,0,0,0,0,310,1.0,9,9,6.4,960,9,999999999,69,0.1230,0,88,0.170,999.0,99.0 +2002,3,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,0.0,100,98900,0,0,279,0,0,0,0,0,0,0,0,0.0,9,9,6.4,750,9,999999999,69,0.1230,0,88,0.170,999.0,99.0 +2002,3,21,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-1.0,100,98900,0,0,258,0,0,0,0,0,0,0,180,2.1,5,5,3.2,77777,9,999999999,69,0.1230,0,88,0.170,999.0,99.0 +2002,3,21,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-1.0,100,98900,0,0,274,0,0,0,0,0,0,0,230,2.1,9,9,6.4,750,9,999999999,69,0.1230,0,88,0.170,999.0,99.0 +2002,3,21,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.0,-2.0,100,98900,14,471,254,0,0,0,0,0,0,0,210,2.6,5,5,4.8,77777,9,999999999,80,0.1230,0,88,0.170,3.0,24.0 +2002,3,21,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,1.0,100,98900,220,1378,268,119,256,78,12200,16800,9600,1580,200,2.6,5,5,8.0,77777,9,999999999,80,0.1230,0,88,0.170,999.0,99.0 +2002,3,21,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,2.0,81,98900,479,1378,285,322,629,102,32800,57100,12900,1870,240,5.1,5,5,11.3,77777,9,999999999,89,0.1230,0,88,0.170,999.0,99.0 +2002,3,21,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,1.0,70,98900,707,1378,305,498,731,122,52200,72300,15000,2620,250,7.2,9,9,11.3,1050,9,999999999,100,0.1230,0,88,0.170,999.0,99.0 +2002,3,21,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,0.0,65,98900,887,1378,313,655,656,231,69400,67600,25700,5860,250,8.2,10,10,11.3,900,9,999999999,110,0.1230,0,88,0.170,999.0,99.0 +2002,3,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-1.0,69,98900,1007,1378,303,253,24,236,28000,2400,26300,9100,270,9.8,10,10,11.3,600,9,999999999,120,0.1230,0,88,0.170,999.0,99.0 +2002,3,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-3.0,78,99000,1059,1378,284,127,0,127,15900,0,15900,6640,300,8.7,10,10,11.3,540,9,999999999,129,0.1230,0,88,0.170,0.0,6.0 +2002,3,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-4.0,78,99000,1039,1378,278,124,0,124,15500,0,15500,6470,310,7.7,10,10,11.3,690,9,999999999,110,0.1230,0,88,0.170,999.0,99.0 +2002,3,21,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-6.0,71,99100,949,1378,272,116,0,116,14400,0,14400,5930,310,5.7,10,10,11.3,690,9,999999999,100,0.1230,0,88,0.170,999.0,99.0 +2002,3,21,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.0,-7.0,71,99100,795,1378,267,179,6,176,21000,500,20700,7830,290,7.2,10,10,8.0,690,9,999999999,80,0.1230,0,88,0.170,0.0,3.0 +2002,3,21,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-6.0,77,99200,587,1378,268,96,0,96,11300,0,11300,4210,310,7.2,10,10,4.8,690,9,999999999,69,0.1230,0,88,0.170,999.0,99.0 +2002,3,21,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.0,-9.0,65,99300,340,1378,261,102,44,92,11300,3800,10300,2360,300,10.8,10,10,9.7,690,9,999999999,60,0.1230,0,88,0.170,999.0,99.0 +2002,3,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.0,-10.0,70,99400,81,1091,253,14,31,13,1700,1300,1600,210,300,7.2,10,10,11.3,750,9,999999999,50,0.1230,0,88,0.170,0.0,6.0 +2002,3,21,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-7.0,-13.0,59,99500,0,0,246,0,0,0,0,0,0,0,290,7.7,10,10,11.3,1200,9,999999999,50,0.1230,0,88,0.170,999.0,99.0 +2002,3,21,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-8.0,-13.0,64,99600,0,0,236,0,0,0,0,0,0,0,300,7.7,9,9,11.3,1200,9,999999999,40,0.1230,0,88,0.170,999.0,99.0 +2002,3,21,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-8.0,-13.0,64,99600,0,0,236,0,0,0,0,0,0,0,290,8.7,9,9,11.3,1050,9,999999999,30,0.1230,0,88,0.170,999.0,99.0 +2002,3,21,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-9.0,-14.0,64,99700,0,0,213,0,0,0,0,0,0,0,290,6.2,2,2,11.3,77777,9,999999999,20,0.1230,0,88,0.170,999.0,99.0 +2002,3,21,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-9.0,-14.0,64,99700,0,0,215,0,0,0,0,0,0,0,290,5.7,3,3,11.3,77777,9,999999999,20,0.1230,0,88,0.170,999.0,99.0 +2002,3,22,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-9.0,-14.0,64,99700,0,0,206,0,0,0,0,0,0,0,280,4.6,0,0,11.3,77777,9,999999999,20,0.1240,0,88,0.170,999.0,99.0 +2002,3,22,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-9.0,-14.0,64,99700,0,0,206,0,0,0,0,0,0,0,270,4.6,0,0,11.3,77777,9,999999999,20,0.1240,0,88,0.170,999.0,99.0 +2002,3,22,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-9.0,-13.0,70,99700,0,0,207,0,0,0,0,0,0,0,260,4.6,0,0,11.3,77777,9,999999999,20,0.1240,0,88,0.170,999.0,99.0 +2002,3,22,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-9.0,-13.0,70,99600,0,0,207,0,0,0,0,0,0,0,270,6.2,0,0,11.3,77777,9,999999999,20,0.1240,0,88,0.170,999.0,99.0 +2002,3,22,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-10.0,-13.0,76,99700,0,0,204,0,0,0,0,0,0,0,260,4.1,0,0,11.3,77777,9,999999999,20,0.1240,0,88,0.170,999.0,99.0 +2002,3,22,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-10.0,-13.0,76,99600,0,0,204,0,0,0,0,0,0,0,250,4.1,0,0,11.3,77777,9,999999999,30,0.1240,0,88,0.170,999.0,99.0 +2002,3,22,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-10.0,-13.0,76,99700,17,516,208,0,0,0,0,0,0,0,250,4.1,3,1,11.3,77777,9,999999999,30,0.1240,0,88,0.170,999.0,99.0 +2002,3,22,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-9.0,-13.0,70,99700,227,1377,211,127,261,84,13000,17400,10200,1720,250,6.7,2,1,11.3,77777,9,999999999,30,0.1240,0,88,0.170,999.0,99.0 +2002,3,22,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-8.0,-13.0,64,99700,486,1377,221,328,469,162,33200,43300,17900,3230,270,7.7,9,4,9.7,900,9,999999999,30,0.1240,0,88,0.170,999.0,99.0 +2002,3,22,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.0,-12.0,59,99700,713,1377,229,285,92,237,31300,9200,26500,7080,260,6.7,9,4,9.7,900,9,999999999,40,0.1240,0,88,0.170,0.0,3.0 +2002,3,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.0,-13.0,54,99700,893,1377,226,654,643,236,69300,66300,26200,6040,240,7.2,5,3,11.3,77777,9,999999999,40,0.1240,0,88,0.170,999.0,99.0 +2002,3,22,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.0,-13.0,54,99700,1013,1377,224,772,857,140,80900,86000,17400,3930,240,9.3,5,2,11.3,77777,9,999999999,40,0.1240,0,88,0.170,999.0,99.0 +2002,3,22,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-12.0,46,99600,1065,1377,237,822,883,137,86900,89100,17800,4310,250,7.7,5,3,11.3,77777,9,999999999,40,0.1240,0,88,0.170,999.0,99.0 +2002,3,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-12.0,42,99600,1044,1377,235,805,880,136,85000,88700,17500,4110,260,7.7,2,1,11.3,77777,9,999999999,40,0.1240,0,88,0.170,999.0,99.0 +2002,3,22,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-12.0,42,99400,954,1377,235,717,846,129,75100,84800,16200,3340,240,8.7,3,1,11.3,77777,9,999999999,40,0.1240,0,88,0.170,999.0,99.0 +2002,3,22,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-12.0,39,99400,800,1377,242,583,734,156,60800,73100,18300,3540,260,8.2,5,2,11.3,77777,9,999999999,40,0.1240,0,88,0.170,999.0,99.0 +2002,3,22,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-12.0,39,99300,592,1377,239,378,553,139,39900,53900,16600,2770,240,7.7,3,1,11.3,77777,9,999999999,40,0.1240,0,88,0.170,999.0,99.0 +2002,3,22,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-11.0,46,99300,345,1377,236,201,544,65,20700,45100,9400,1180,240,8.7,2,1,11.3,77777,9,999999999,40,0.1240,0,88,0.170,999.0,99.0 +2002,3,22,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-11.0,50,99300,85,1113,233,24,171,14,2900,8900,2200,270,240,6.2,3,1,11.3,77777,9,999999999,30,0.1240,0,88,0.170,999.0,99.0 +2002,3,22,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-10.0,55,99300,0,0,229,0,0,0,0,0,0,0,230,6.2,0,0,11.3,77777,9,999999999,30,0.1240,0,88,0.170,999.0,99.0 +2002,3,22,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.0,-9.0,65,99300,0,0,227,0,0,0,0,0,0,0,220,5.7,0,0,11.3,77777,9,999999999,40,0.1240,0,88,0.170,999.0,99.0 +2002,3,22,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.0,-9.0,65,99300,0,0,227,0,0,0,0,0,0,0,210,4.6,0,0,11.3,77777,9,999999999,40,0.1240,0,88,0.170,999.0,99.0 +2002,3,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.0,-9.0,65,99300,0,0,227,0,0,0,0,0,0,0,210,5.1,0,0,11.3,77777,9,999999999,40,0.1240,0,88,0.170,999.0,99.0 +2002,3,22,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.0,-9.0,65,99200,0,0,227,0,0,0,0,0,0,0,210,6.7,0,0,11.3,77777,9,999999999,40,0.1240,0,88,0.170,999.0,99.0 +2002,3,23,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.0,-9.0,65,99200,0,0,227,0,0,0,0,0,0,0,210,6.7,0,0,11.3,77777,9,999999999,40,0.1250,0,88,0.170,999.0,99.0 +2002,3,23,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.0,-8.0,71,99200,0,0,227,0,0,0,0,0,0,0,210,6.7,0,0,11.3,77777,9,999999999,40,0.1250,0,88,0.170,999.0,99.0 +2002,3,23,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.0,-8.0,77,99100,0,0,224,0,0,0,0,0,0,0,210,6.2,0,0,11.3,77777,9,999999999,40,0.1250,0,88,0.170,999.0,99.0 +2002,3,23,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.0,-8.0,77,99100,0,0,224,0,0,0,0,0,0,0,210,6.2,0,0,11.3,77777,9,999999999,40,0.1250,0,88,0.170,999.0,99.0 +2002,3,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.0,-8.0,77,99100,0,0,224,0,0,0,0,0,0,0,200,5.1,0,0,11.3,77777,9,999999999,40,0.1250,0,88,0.170,999.0,99.0 +2002,3,23,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.0,-8.0,84,99100,0,0,221,0,0,0,0,0,0,0,200,4.1,0,0,11.3,77777,9,999999999,30,0.1250,0,88,0.170,999.0,99.0 +2002,3,23,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.0,-8.0,77,99100,19,539,224,0,0,0,0,0,0,0,200,5.1,0,0,11.3,77777,9,999999999,30,0.1250,0,88,0.170,0.0,24.0 +2002,3,23,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-7.0,71,99100,234,1376,232,124,236,84,12800,16100,10000,1710,210,7.2,0,0,11.3,77777,9,999999999,30,0.1250,0,88,0.170,999.0,99.0 +2002,3,23,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-8.0,51,99100,493,1376,241,334,614,113,33900,55900,13900,2050,210,7.2,0,0,11.3,77777,9,999999999,30,0.1250,0,88,0.170,999.0,99.0 +2002,3,23,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-9.0,43,99100,720,1376,244,510,743,121,53700,73700,15000,2640,220,7.7,0,0,11.3,77777,9,999999999,30,0.1250,0,88,0.170,999.0,99.0 +2002,3,23,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,-9.0,37,99100,899,1376,251,666,819,130,69200,81600,15800,3070,220,8.7,0,0,11.3,77777,9,999999999,30,0.1250,0,88,0.170,999.0,99.0 +2002,3,23,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-10.0,32,99000,1019,1376,254,778,863,138,81700,86700,17400,3940,210,7.2,0,0,11.3,77777,9,999999999,30,0.1250,0,88,0.170,999.0,99.0 +2002,3,23,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-10.0,30,98900,1070,1376,257,828,883,139,87400,89100,18000,4410,210,9.8,0,0,11.3,77777,9,999999999,30,0.1250,0,88,0.170,999.0,99.0 +2002,3,23,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,-10.0,28,98800,1050,1376,261,811,886,133,85800,89400,17400,4090,230,9.8,0,0,11.3,77777,9,999999999,40,0.1250,0,88,0.170,999.0,99.0 +2002,3,23,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,-10.0,26,98800,959,1376,265,723,852,128,75900,85500,16200,3360,230,9.3,0,0,11.3,77777,9,999999999,50,0.1250,0,88,0.170,999.0,99.0 +2002,3,23,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,-9.0,28,98800,804,1376,266,589,805,117,60900,79600,14300,2520,240,8.2,0,0,11.3,77777,9,999999999,50,0.1250,0,88,0.170,999.0,99.0 +2002,3,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,-8.0,31,98700,596,1376,276,410,717,99,42900,69200,12900,2000,230,7.7,2,2,11.3,77777,9,999999999,60,0.1250,0,88,0.170,999.0,99.0 +2002,3,23,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,-7.0,34,98700,349,1376,284,202,534,66,20700,44500,9400,1200,220,8.2,5,5,11.3,77777,9,999999999,60,0.1250,0,88,0.170,999.0,99.0 +2002,3,23,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-7.0,39,98700,88,1135,269,25,157,15,2900,8300,2200,280,210,4.1,2,2,11.3,77777,9,999999999,60,0.1250,0,88,0.170,999.0,99.0 +2002,3,23,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-7.0,48,98700,0,0,260,0,0,0,0,0,0,0,220,3.1,3,3,11.3,77777,9,999999999,69,0.1250,0,88,0.170,999.0,99.0 +2002,3,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-7.0,51,98800,0,0,254,0,0,0,0,0,0,0,210,2.6,2,2,11.3,77777,9,999999999,69,0.1250,0,88,0.170,999.0,99.0 +2002,3,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-7.0,51,98800,0,0,246,0,0,0,0,0,0,0,190,2.1,0,0,11.3,77777,9,999999999,80,0.1250,0,88,0.170,999.0,99.0 +2002,3,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-6.0,60,98800,0,0,273,0,0,0,0,0,0,0,160,0.5,9,9,11.3,7500,9,999999999,80,0.1250,0,88,0.170,999.0,99.0 +2002,3,23,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-6.0,71,98800,0,0,265,0,0,0,0,0,0,0,140,0.5,9,9,11.3,7500,9,999999999,89,0.1250,0,88,0.170,999.0,99.0 +2002,3,24,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-5.0,71,98700,0,0,277,0,0,0,0,0,0,0,110,2.1,10,10,11.3,7500,9,999999999,89,0.1260,0,88,0.170,999.0,99.0 +2002,3,24,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-5.0,71,98800,0,0,277,0,0,0,0,0,0,0,160,1.5,10,10,11.3,7500,9,999999999,100,0.1260,0,88,0.170,999.0,99.0 +2002,3,24,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-4.0,67,98700,0,0,287,0,0,0,0,0,0,0,120,1.5,10,10,11.3,7500,9,999999999,100,0.1260,0,88,0.170,999.0,99.0 +2002,3,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-5.0,61,98700,0,0,286,0,0,0,0,0,0,0,100,1.0,10,10,11.3,7500,9,999999999,110,0.1260,0,88,0.170,999.0,99.0 +2002,3,24,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-5.0,66,98700,0,0,282,0,0,0,0,0,0,0,120,2.1,10,10,11.3,7500,9,999999999,110,0.1260,0,88,0.170,999.0,99.0 +2002,3,24,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-5.0,66,98700,0,0,282,0,0,0,0,0,0,0,120,2.6,10,10,11.3,7500,9,999999999,110,0.1260,0,88,0.170,999.0,99.0 +2002,3,24,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-6.0,60,98700,22,585,280,0,0,0,0,0,0,0,110,2.6,10,10,11.3,3600,9,999999999,110,0.1260,0,88,0.170,999.0,99.0 +2002,3,24,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,-5.0,53,98800,241,1375,294,111,153,84,11900,11200,9900,1790,150,2.6,10,10,11.3,3600,9,999999999,110,0.1260,0,88,0.170,999.0,99.0 +2002,3,24,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-5.0,46,98800,500,1375,303,267,278,166,28000,26700,18300,3540,160,3.6,10,10,11.3,3600,9,999999999,120,0.1260,0,88,0.170,999.0,99.0 +2002,3,24,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-5.0,46,98800,726,1375,303,159,0,159,18500,0,18500,6930,170,3.6,10,10,11.3,3600,9,999999999,120,0.1260,0,88,0.170,999.0,99.0 +2002,3,24,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,-5.0,43,98800,905,1375,307,108,0,108,13400,0,13400,5480,170,3.6,10,10,11.3,3300,9,999999999,129,0.1260,0,88,0.170,999.0,99.0 +2002,3,24,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,-5.0,40,98700,1024,1375,311,142,0,142,17500,0,17500,7270,140,3.1,10,10,11.3,3000,9,999999999,139,0.1260,0,88,0.170,999.0,99.0 +2002,3,24,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,-5.0,40,98700,1075,1375,311,151,0,151,18700,0,18700,7770,330,1.5,10,10,11.3,2100,9,999999999,150,0.1260,0,88,0.170,999.0,99.0 +2002,3,24,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,-5.0,40,98700,1055,1375,311,320,36,292,35300,3700,32500,11480,340,5.1,10,10,11.3,2100,9,999999999,160,0.1260,0,88,0.170,999.0,99.0 +2002,3,24,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,0.0,65,98600,964,1375,313,434,137,338,47400,14500,37200,10260,360,5.1,10,10,11.3,2100,9,999999999,170,0.1260,0,88,0.170,999.0,99.0 +2002,3,24,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,0.0,61,98600,809,1375,317,123,0,123,14800,0,14800,5890,40,3.6,10,10,11.3,1800,9,999999999,179,0.1260,0,88,0.170,999.0,99.0 +2002,3,24,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,0.0,61,98600,601,1375,317,203,29,190,22700,2400,21700,7050,10,3.6,10,10,11.3,1500,9,999999999,170,0.1260,0,88,0.170,999.0,99.0 +2002,3,24,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,0.0,61,98600,354,1375,297,127,78,107,13900,6900,12100,2690,40,4.1,9,7,11.3,4500,9,999999999,170,0.1260,0,88,0.170,999.0,99.0 +2002,3,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-1.0,64,98600,92,1158,292,14,0,14,1600,0,1600,530,20,6.2,9,8,11.3,4500,9,999999999,160,0.1260,0,88,0.170,999.0,99.0 +2002,3,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,0.0,75,98600,0,0,285,0,0,0,0,0,0,0,50,6.2,9,7,11.3,2400,9,999999999,170,0.1260,0,88,0.170,999.0,99.0 +2002,3,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,0.0,75,98700,0,0,289,0,0,0,0,0,0,0,30,5.1,9,8,11.3,2400,9,999999999,179,0.1260,0,88,0.170,999.0,99.0 +2002,3,24,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,0.0,81,98800,0,0,281,0,0,0,0,0,0,0,30,5.7,9,7,11.3,2400,9,999999999,179,0.1260,0,88,0.170,999.0,99.0 +2002,3,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,1.0,87,98800,0,0,301,0,0,0,0,0,0,0,30,6.2,10,10,11.3,2400,9,999999999,189,0.1260,0,88,0.170,999.0,99.0 +2002,3,24,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,1.0,93,98900,0,0,296,0,0,0,0,0,0,0,30,5.7,10,10,11.3,450,9,999999999,189,0.1260,0,88,0.170,999.0,99.0 +2002,3,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.0,0.0,93,98900,0,0,291,0,0,0,0,0,0,0,20,5.1,10,10,9.7,450,9,999999999,200,0.1270,0,88,0.170,2.0,6.0 +2002,3,25,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,0.0,100,98800,0,0,287,0,0,0,0,0,0,0,50,6.2,10,10,9.7,390,9,999999999,200,0.1270,0,88,0.170,999.0,99.0 +2002,3,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,0.0,93,98800,0,0,291,0,0,0,0,0,0,0,50,5.1,10,10,9.7,390,9,999999999,200,0.1270,0,88,0.170,999.0,99.0 +2002,3,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,0.0,100,98800,0,0,287,0,0,0,0,0,0,0,50,6.2,10,10,11.3,360,9,999999999,209,0.1270,0,88,0.170,2.0,3.0 +2002,3,25,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-1.0,92,98900,0,0,286,0,0,0,0,0,0,0,40,5.7,10,10,9.7,360,9,999999999,209,0.1270,0,88,0.170,999.0,99.0 +2002,3,25,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-1.0,92,98800,0,0,286,0,0,0,0,0,0,0,50,5.1,10,10,9.7,360,9,999999999,209,0.1270,0,88,0.170,999.0,99.0 +2002,3,25,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.0,-1.0,100,98800,25,607,281,0,0,0,0,0,0,0,40,6.7,10,10,9.7,210,9,999999999,209,0.1270,0,88,0.170,4.0,6.0 +2002,3,25,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-1.0,100,98900,249,1375,281,20,0,20,2400,0,2400,830,50,5.7,10,10,8.0,210,9,999999999,200,0.1270,0,88,0.170,999.0,99.0 +2002,3,25,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-1.0,100,98800,507,1375,281,94,0,94,10900,0,10900,3900,40,5.7,10,10,8.0,210,9,999999999,189,0.1270,0,88,0.170,999.0,99.0 +2002,3,25,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.0,-1.0,100,98800,733,1375,281,86,0,86,10500,0,10500,4160,40,3.1,10,10,3.2,210,9,999999999,179,0.1270,0,88,0.170,4.0,3.0 +2002,3,25,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-1.0,92,98800,911,1375,286,108,0,108,13400,0,13400,5500,60,5.1,10,10,8.0,210,9,999999999,189,0.1270,0,88,0.170,999.0,99.0 +2002,3,25,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-1.0,92,98800,1030,1375,286,123,0,123,15300,0,15300,6410,50,4.1,10,10,9.7,300,9,999999999,200,0.1270,0,88,0.170,999.0,99.0 +2002,3,25,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.0,-1.0,100,98900,1081,1375,281,133,0,133,16600,0,16600,6950,350,3.6,10,10,11.3,240,9,999999999,209,0.1270,0,88,0.170,8.0,6.0 +2002,3,25,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-1.0,100,98900,1059,1375,281,130,0,130,16200,0,16200,6780,350,5.1,10,10,3.2,240,9,999999999,200,0.1270,0,88,0.170,999.0,99.0 +2002,3,25,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-1.0,100,98900,968,1375,281,116,0,116,14400,0,14400,5970,10,6.2,10,10,9.7,240,9,999999999,189,0.1270,0,88,0.170,999.0,99.0 +2002,3,25,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.0,-2.0,92,99000,813,1375,280,118,0,118,14300,0,14300,5700,20,6.7,10,10,9.7,240,9,999999999,179,0.1270,0,88,0.170,0.0,3.0 +2002,3,25,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-2.0,92,99000,605,1375,280,64,0,64,7800,0,7800,3000,30,6.2,10,10,9.7,240,9,999999999,179,0.1270,0,88,0.170,999.0,99.0 +2002,3,25,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-2.0,92,99200,358,1375,280,80,0,80,9100,0,9100,2970,30,5.7,10,10,9.7,240,9,999999999,179,0.1270,0,88,0.170,999.0,99.0 +2002,3,25,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.0,-2.0,92,99200,96,1180,280,7,0,7,900,0,900,280,20,4.6,10,10,9.7,240,9,999999999,179,0.1270,0,88,0.170,0.0,6.0 +2002,3,25,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-2.0,92,99200,0,0,280,0,0,0,0,0,0,0,40,6.2,10,10,11.3,240,9,999999999,189,0.1270,0,88,0.170,999.0,99.0 +2002,3,25,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-3.0,92,99100,0,0,275,0,0,0,0,0,0,0,20,7.2,10,10,11.3,240,9,999999999,189,0.1270,0,88,0.170,999.0,99.0 +2002,3,25,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-3.0,92,99100,0,0,275,0,0,0,0,0,0,0,40,4.1,10,10,11.3,240,9,999999999,200,0.1270,0,88,0.170,999.0,99.0 +2002,3,25,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-3.0,92,99100,0,0,275,0,0,0,0,0,0,0,30,6.2,10,10,11.3,240,9,999999999,209,0.1270,0,88,0.170,999.0,99.0 +2002,3,25,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-3.0,92,99000,0,0,275,0,0,0,0,0,0,0,50,4.6,10,10,11.3,360,9,999999999,209,0.1270,0,88,0.170,999.0,99.0 +2002,3,26,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.0,-3.0,92,99000,0,0,275,0,0,0,0,0,0,0,20,5.1,10,10,11.3,330,9,999999999,220,0.1280,0,88,0.170,1.0,6.0 +2002,3,26,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-3.0,92,98900,0,0,275,0,0,0,0,0,0,0,40,4.1,10,10,9.7,300,9,999999999,229,0.1280,0,88,0.170,999.0,99.0 +2002,3,26,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-2.0,100,98800,0,0,276,0,0,0,0,0,0,0,30,4.1,10,10,9.7,270,9,999999999,240,0.1280,0,88,0.170,999.0,99.0 +2002,3,26,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-2.3,-2.3,100,98700,0,0,275,0,0,0,0,0,0,0,30,4.8,10,10,9.7,371,9,999999999,250,0.1280,0,88,0.170,999.0,99.0 +2002,3,26,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-2.1,-2.1,100,98700,0,0,276,0,0,0,0,0,0,0,30,4.6,10,10,9.7,0,9,999999999,250,0.1280,0,88,0.170,999.0,99.0 +2002,3,26,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-1.9,-1.9,100,98600,0,0,277,0,0,0,0,0,0,0,30,4.2,10,10,9.7,452,9,999999999,250,0.1280,0,88,0.170,999.0,99.0 +2002,3,26,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-2.1,-2.1,100,98500,28,653,276,0,0,0,0,0,0,0,30,4.6,10,10,9.7,0,9,999999999,250,0.1280,0,88,0.170,999.0,99.0 +2002,3,26,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-1.9,-1.9,100,98400,256,1374,277,58,0,58,6500,0,6500,2040,40,4.9,10,10,9.7,519,9,999999999,250,0.1280,0,88,0.170,999.0,99.0 +2002,3,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-1.2,-1.2,100,98300,513,1374,280,129,0,129,14700,0,14700,4980,40,4.8,10,10,9.7,79,9,999999999,240,0.1280,0,88,0.170,999.0,99.0 +2002,3,26,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.0,-1.0,100,98300,739,1374,281,86,0,86,10500,0,10500,4170,40,3.6,10,10,3.2,180,9,999999999,229,0.1280,0,88,0.170,3.0,3.0 +2002,3,26,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-1.0,86,98300,918,1374,290,127,0,127,15500,0,15500,6360,30,4.1,10,10,3.2,180,9,999999999,229,0.1280,0,88,0.170,999.0,99.0 +2002,3,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,0.0,93,98300,1036,1374,291,123,0,123,15400,0,15400,6420,280,2.6,10,10,2.4,150,9,999999999,220,0.1280,0,88,0.170,999.0,99.0 +2002,3,26,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.0,1.0,100,98300,1086,1374,292,133,0,133,16600,0,16600,6960,310,5.1,10,10,6.4,150,9,999999999,209,0.1280,0,88,0.170,5.0,6.0 +2002,3,26,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,1.0,100,98200,1064,1374,292,130,0,130,16200,0,16200,6790,350,4.1,10,10,11.3,210,9,999999999,200,0.1280,0,88,0.170,999.0,99.0 +2002,3,26,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,0.0,100,98300,973,1374,287,249,12,240,29200,1000,28500,10980,290,4.1,10,10,11.3,300,9,999999999,179,0.1280,0,88,0.170,999.0,99.0 +2002,3,26,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-1.0,92,98500,818,1374,286,275,24,261,31400,2200,30100,10550,280,5.7,10,10,4.8,330,9,999999999,170,0.1280,0,88,0.170,999.0,99.0 +2002,3,26,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-3.0,92,98600,609,1374,275,198,17,190,22200,1400,21600,7120,300,7.7,10,10,11.3,450,9,999999999,150,0.1280,0,88,0.170,999.0,99.0 +2002,3,26,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-4.0,85,98800,362,1374,274,114,39,103,12400,3400,11500,2640,300,6.7,10,10,8.0,450,9,999999999,129,0.1280,0,88,0.170,999.0,99.0 +2002,3,26,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.0,-4.0,92,98900,99,1202,270,17,4,17,2000,0,2000,630,300,4.6,10,10,8.0,480,9,999999999,120,0.1280,0,88,0.170,3.0,6.0 +2002,3,26,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-4.0,92,99000,0,0,270,0,0,0,0,0,0,0,280,4.1,10,10,8.0,450,9,999999999,120,0.1280,0,88,0.170,999.0,99.0 +2002,3,26,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-4.0,92,99000,0,0,270,0,0,0,0,0,0,0,280,4.1,10,10,8.0,450,9,999999999,120,0.1280,0,88,0.170,999.0,99.0 +2002,3,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-4.0,92,99100,0,0,270,0,0,0,0,0,0,0,260,3.1,10,10,9.7,450,9,999999999,120,0.1280,0,88,0.170,999.0,99.0 +2002,3,26,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-4.0,92,99100,0,0,270,0,0,0,0,0,0,0,260,5.1,10,10,9.7,450,9,999999999,110,0.1280,0,88,0.170,999.0,99.0 +2002,3,26,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-3.0,100,99100,0,0,271,0,0,0,0,0,0,0,260,5.1,10,10,9.7,750,9,999999999,110,0.1280,0,88,0.170,999.0,99.0 +2002,3,27,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-3.0,92,99200,0,0,275,0,0,0,0,0,0,0,250,4.1,10,10,8.0,1140,9,999999999,100,0.1290,0,88,0.170,999.0,99.0 +2002,3,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-3.0,92,99200,0,0,275,0,0,0,0,0,0,0,270,3.6,10,10,9.7,1230,9,999999999,100,0.1290,0,88,0.170,999.0,99.0 +2002,3,27,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-3.0,92,99200,0,0,275,0,0,0,0,0,0,0,260,3.6,10,10,9.7,1230,9,999999999,89,0.1290,0,88,0.170,999.0,99.0 +2002,3,27,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-3.0,92,99200,0,0,275,0,0,0,0,0,0,0,260,3.6,10,10,9.7,1350,9,999999999,89,0.1290,0,88,0.170,999.0,99.0 +2002,3,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-3.0,92,99200,0,0,275,0,0,0,0,0,0,0,260,3.6,10,10,9.7,330,9,999999999,80,0.1290,0,88,0.170,999.0,99.0 +2002,3,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-3.0,92,99300,0,0,275,0,0,0,0,0,0,0,260,3.1,10,10,9.7,1290,9,999999999,80,0.1290,0,88,0.170,999.0,99.0 +2002,3,27,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.0,-3.0,92,99300,31,698,268,0,10,0,0,0,0,0,270,2.1,9,9,9.7,360,9,999999999,69,0.1290,0,88,0.170,8.0,24.0 +2002,3,27,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-3.0,92,99400,263,1373,268,105,64,93,11500,5200,10500,2140,270,3.6,9,9,9.7,1350,9,999999999,69,0.1290,0,88,0.170,999.0,99.0 +2002,3,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-3.0,85,99400,520,1373,272,222,82,191,24300,7900,21300,4990,290,3.1,9,9,9.7,360,9,999999999,69,0.1290,0,88,0.170,999.0,99.0 +2002,3,27,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-3.0,85,99400,746,1373,272,336,123,269,36900,12400,30100,8040,290,3.1,9,9,11.3,450,9,999999999,60,0.1290,0,88,0.170,999.0,99.0 +2002,3,27,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-2.0,85,99400,923,1373,277,272,18,260,31600,1600,30500,11340,260,4.1,9,9,11.3,450,9,999999999,60,0.1290,0,88,0.170,999.0,99.0 +2002,3,27,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-3.0,78,99400,1041,1373,284,302,12,293,35300,1100,34500,13130,280,3.6,10,10,11.3,540,9,999999999,69,0.1290,0,88,0.170,999.0,99.0 +2002,3,27,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-3.0,78,99400,1091,1373,284,266,6,261,31600,500,31200,12270,300,3.6,10,10,11.3,600,9,999999999,69,0.1290,0,88,0.170,999.0,99.0 +2002,3,27,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-3.0,72,99400,1069,1373,280,296,12,287,34900,1100,34000,13080,300,4.1,9,9,11.3,750,9,999999999,69,0.1290,0,88,0.170,999.0,99.0 +2002,3,27,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,-3.0,63,99400,977,1373,288,469,173,345,51100,18300,38100,10630,300,2.1,9,9,11.3,750,9,999999999,69,0.1290,0,88,0.170,999.0,99.0 +2002,3,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,-4.0,58,99300,822,1373,271,539,539,216,57000,55200,23900,5130,290,2.6,5,5,11.3,77777,9,999999999,80,0.1290,0,88,0.170,999.0,99.0 +2002,3,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-4.0,62,99300,614,1373,267,412,671,111,42800,64800,13800,2240,280,4.1,5,5,11.3,77777,9,999999999,69,0.1290,0,88,0.170,999.0,99.0 +2002,3,27,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-5.0,57,99300,367,1373,262,219,470,93,22700,39800,12000,1730,300,3.6,3,3,11.3,77777,9,999999999,69,0.1290,0,88,0.170,999.0,99.0 +2002,3,27,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-5.0,66,99300,103,1224,252,28,120,19,3200,5800,2700,330,320,2.6,2,2,11.3,77777,9,999999999,60,0.1290,0,88,0.170,999.0,99.0 +2002,3,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-5.0,78,99300,0,0,247,0,0,0,0,0,0,0,350,2.6,3,3,11.3,77777,9,999999999,60,0.1290,0,88,0.170,999.0,99.0 +2002,3,27,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-5.0,78,99300,0,0,245,0,0,0,0,0,0,0,40,1.5,2,2,11.3,77777,9,999999999,60,0.1290,0,88,0.170,999.0,99.0 +2002,3,27,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.0,-6.0,84,99200,0,0,239,0,0,0,0,0,0,0,20,2.1,3,3,11.3,77777,9,999999999,60,0.1290,0,88,0.170,999.0,99.0 +2002,3,27,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-4.0,92,99200,0,0,242,0,0,0,0,0,0,0,80,1.0,2,2,11.3,77777,9,999999999,60,0.1290,0,88,0.170,999.0,99.0 +2002,3,27,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.0,-5.0,100,99200,0,0,227,0,0,0,0,0,0,0,50,1.5,0,0,11.3,77777,9,999999999,60,0.1290,0,88,0.170,999.0,99.0 +2002,3,28,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-5.1,-5.1,100,99200,0,0,226,0,0,0,0,0,0,0,50,1.3,0,0,11.3,77777,9,999999999,69,0.1300,0,88,0.170,999.0,99.0 +2002,3,28,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.0,-5.0,100,99200,0,0,227,0,0,0,0,0,0,0,40,1.0,0,0,11.3,77777,9,999999999,69,0.1300,0,88,0.170,999.0,99.0 +2002,3,28,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.0,-5.0,100,99100,0,0,227,0,0,0,0,0,0,0,40,1.0,0,0,11.3,77777,9,999999999,69,0.1300,0,88,0.170,999.0,99.0 +2002,3,28,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-7.0,-7.0,100,99100,0,0,218,0,0,0,0,0,0,0,40,1.0,0,0,11.3,77777,9,999999999,69,0.1300,0,88,0.170,999.0,99.0 +2002,3,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-7.0,-7.0,100,99000,0,0,218,0,0,0,0,0,0,0,30,1.0,0,0,11.3,77777,9,999999999,69,0.1300,0,88,0.170,999.0,99.0 +2002,3,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-7.0,-7.0,100,99100,0,0,218,0,0,0,0,0,0,0,30,1.5,0,0,11.3,77777,9,999999999,80,0.1300,0,88,0.170,999.0,99.0 +2002,3,28,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.0,-6.0,100,99100,35,720,232,1,61,0,0,0,0,0,50,1.0,3,3,11.3,77777,9,999999999,80,0.1300,0,88,0.170,999.0,99.0 +2002,3,28,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-3.0,92,99100,270,1372,253,160,360,89,16100,26600,10800,1690,130,3.1,5,5,11.3,77777,9,999999999,80,0.1300,0,88,0.170,999.0,99.0 +2002,3,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-2.0,79,99100,527,1372,265,357,654,105,36700,61000,13200,2000,160,3.6,5,5,11.3,77777,9,999999999,80,0.1300,0,88,0.170,999.0,99.0 +2002,3,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-2.0,64,99100,752,1372,293,547,778,119,57800,77800,15000,2680,170,5.1,9,9,11.3,7500,9,999999999,89,0.1300,0,88,0.170,999.0,99.0 +2002,3,28,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-2.0,59,99000,929,1372,298,703,837,134,73100,83600,16300,3300,140,6.7,9,9,11.3,7500,9,999999999,100,0.1300,0,88,0.170,999.0,99.0 +2002,3,28,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,-2.0,52,99000,1047,1372,306,795,699,260,82300,69900,28800,8050,160,5.7,9,9,11.3,7500,9,999999999,100,0.1300,0,88,0.170,999.0,99.0 +2002,3,28,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,-2.0,48,98800,1096,1372,319,284,36,255,31400,3700,28500,10700,130,5.1,10,10,11.3,3600,9,999999999,110,0.1300,0,88,0.170,999.0,99.0 +2002,3,28,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,-3.0,41,98700,1074,1372,323,740,473,369,77000,49100,38500,12970,160,4.6,10,10,11.3,3600,9,999999999,120,0.1300,0,88,0.170,999.0,99.0 +2002,3,28,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,-2.0,48,98700,982,1372,319,313,42,283,34500,4300,31500,10420,170,4.6,10,10,11.3,3600,9,999999999,139,0.1300,0,88,0.170,999.0,99.0 +2002,3,28,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,-2.0,48,98600,826,1372,319,191,6,187,22300,500,22000,8380,120,4.1,10,10,11.3,3600,9,999999999,150,0.1300,0,88,0.170,999.0,99.0 +2002,3,28,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,0.0,61,98600,618,1372,317,86,0,86,10300,0,10300,3910,140,2.6,10,10,8.0,2400,9,999999999,150,0.1300,0,88,0.170,999.0,99.0 +2002,3,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,2.0,75,98600,371,1372,315,33,0,33,4000,0,4000,1440,130,2.1,10,10,8.0,2400,9,999999999,160,0.1300,0,88,0.170,999.0,99.0 +2002,3,28,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.0,2.0,75,98400,107,1246,315,13,0,13,1500,0,1500,500,120,3.6,10,10,11.3,2400,9,999999999,160,0.1300,0,88,0.170,1.0,6.0 +2002,3,28,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,2.0,75,98500,0,0,315,0,0,0,0,0,0,0,90,1.5,10,10,9.7,2400,9,999999999,170,0.1300,0,88,0.170,999.0,99.0 +2002,3,28,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,2.0,75,98500,0,0,315,0,0,0,0,0,0,0,110,2.1,10,10,9.7,2400,9,999999999,170,0.1300,0,88,0.170,999.0,99.0 +2002,3,28,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.0,2.0,75,98400,0,0,315,0,0,0,0,0,0,0,110,2.1,10,10,11.3,2400,9,999999999,179,0.1300,0,88,0.170,0.0,3.0 +2002,3,28,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,1.0,70,98400,0,0,314,0,0,0,0,0,0,0,140,2.1,10,10,11.3,2700,9,999999999,179,0.1300,0,88,0.170,999.0,99.0 +2002,3,28,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,2.0,75,98400,0,0,315,0,0,0,0,0,0,0,120,1.5,10,10,11.3,1800,9,999999999,179,0.1300,0,88,0.170,999.0,99.0 +2002,3,29,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,1.0,75,98300,0,0,309,0,0,0,0,0,0,0,130,0.5,10,10,11.3,2100,9,999999999,179,0.1310,0,88,0.170,0.0,6.0 +2002,3,29,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,3.0,93,98300,0,0,307,0,0,0,0,0,0,0,110,1.0,10,10,11.3,2100,9,999999999,179,0.1310,0,88,0.170,999.0,99.0 +2002,3,29,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,3.0,93,98300,0,0,307,0,0,0,0,0,0,0,90,1.5,10,10,11.3,2400,9,999999999,179,0.1310,0,88,0.170,999.0,99.0 +2002,3,29,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,3.0,93,98300,0,0,299,0,0,0,0,0,0,0,80,1.5,9,9,11.3,2400,9,999999999,170,0.1310,0,88,0.170,999.0,99.0 +2002,3,29,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,1.0,87,98200,0,0,276,0,0,0,0,0,0,0,70,1.5,5,5,11.3,77777,9,999999999,170,0.1310,0,88,0.170,999.0,99.0 +2002,3,29,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,0.0,87,98100,0,0,271,0,0,0,0,0,0,0,60,1.5,5,5,11.3,77777,9,999999999,160,0.1310,0,88,0.170,999.0,99.0 +2002,3,29,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,0.0,93,98200,39,766,283,1,41,1,400,2400,200,40,70,1.0,9,9,11.3,6000,9,999999999,150,0.1310,0,88,0.170,999.0,99.0 +2002,3,29,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,3.0,100,98100,277,1371,278,139,218,95,14400,16400,11100,1930,110,1.0,5,5,11.3,77777,9,999999999,160,0.1310,0,88,0.170,999.0,99.0 +2002,3,29,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,3.0,66,98200,534,1371,303,363,541,152,37500,51400,17400,3020,130,2.1,5,5,11.3,77777,9,999999999,170,0.1310,0,88,0.170,999.0,99.0 +2002,3,29,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,4.0,58,98200,758,1371,317,500,521,211,52300,52800,23000,4760,130,3.1,5,5,11.3,77777,9,999999999,179,0.1310,0,88,0.170,999.0,99.0 +2002,3,29,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,4.0,51,98100,935,1371,345,455,188,327,49700,19800,36100,9680,130,1.5,9,9,11.3,6000,9,999999999,189,0.1310,0,88,0.170,999.0,99.0 +2002,3,29,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,4.0,48,98000,1052,1371,350,789,681,265,81600,68000,29300,8290,130,3.1,9,9,11.3,6000,9,999999999,200,0.1310,0,88,0.170,999.0,99.0 +2002,3,29,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,4.0,45,97900,1101,1371,365,616,276,393,66400,29900,42400,14250,150,5.1,10,10,11.3,6000,9,999999999,209,0.1310,0,88,0.170,999.0,99.0 +2002,3,29,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,5.0,45,97700,1078,1371,371,580,287,353,62900,31100,38400,12130,150,6.7,10,10,11.3,6000,9,999999999,220,0.1310,0,88,0.170,999.0,99.0 +2002,3,29,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,6.0,45,97400,986,1371,378,237,12,229,28100,1000,27400,10670,150,8.7,10,10,11.3,3600,9,999999999,229,0.1310,0,88,0.170,999.0,99.0 +2002,3,29,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.0,6.0,45,97300,830,1371,378,275,53,243,30300,5400,27000,8030,160,8.2,10,10,11.3,2700,9,999999999,250,0.1310,0,88,0.170,0.0,3.0 +2002,3,29,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,10.0,59,97200,622,1371,383,80,0,80,9700,0,9700,3690,170,8.7,10,10,9.7,1500,9,999999999,259,0.1310,0,88,0.170,999.0,99.0 +2002,3,29,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,11.0,68,97200,375,1371,379,38,0,38,4600,0,4600,1630,210,5.1,10,10,9.7,1500,9,999999999,279,0.1310,0,88,0.170,999.0,99.0 +2002,3,29,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.0,10.0,94,97400,111,1269,347,11,0,11,1300,0,1300,430,300,5.7,10,10,4.8,750,9,999999999,290,0.1310,0,88,0.170,15.0,6.0 +2002,3,29,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,7.0,100,97600,0,0,325,0,0,0,0,0,0,0,270,2.6,10,10,4.8,750,9,999999999,270,0.1310,0,88,0.170,999.0,99.0 +2002,3,29,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,6.0,100,97700,0,0,319,0,0,0,0,0,0,0,270,2.6,10,10,8.0,750,9,999999999,250,0.1310,0,88,0.170,999.0,99.0 +2002,3,29,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,5.0,100,97900,0,0,314,0,0,0,0,0,0,0,280,5.7,10,10,8.0,300,9,999999999,240,0.1310,0,88,0.170,0.0,3.0 +2002,3,29,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,4.0,100,98100,0,0,308,0,0,0,0,0,0,0,290,5.7,10,10,8.0,300,9,999999999,209,0.1310,0,88,0.170,999.0,99.0 +2002,3,29,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,4.0,100,98100,0,0,308,0,0,0,0,0,0,0,290,4.1,10,10,9.7,120,9,999999999,179,0.1310,0,88,0.170,999.0,99.0 +2002,3,30,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.0,4.0,100,98100,0,0,308,0,0,0,0,0,0,0,300,3.1,10,10,9.7,120,9,999999999,150,0.1320,0,88,0.170,0.0,6.0 +2002,3,30,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,3.0,93,98300,0,0,288,0,0,0,0,0,0,0,270,3.6,9,7,11.3,210,9,999999999,139,0.1320,0,88,0.170,999.0,99.0 +2002,3,30,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,3.0,93,98300,0,0,292,0,0,0,0,0,0,0,240,1.5,9,8,11.3,300,9,999999999,120,0.1320,0,88,0.170,999.0,99.0 +2002,3,30,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,3.0,93,98400,0,0,288,0,0,0,0,0,0,0,220,3.1,9,7,11.3,330,9,999999999,110,0.1320,0,88,0.170,999.0,99.0 +2002,3,30,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,3.0,93,98500,0,0,292,0,0,0,0,0,0,0,210,2.6,9,8,11.3,330,9,999999999,110,0.1320,0,88,0.170,999.0,99.0 +2002,3,30,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,3.0,93,98500,0,0,288,0,0,0,0,0,0,0,200,2.1,9,7,11.3,300,9,999999999,100,0.1320,0,88,0.170,999.0,99.0 +2002,3,30,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.0,3.0,100,98700,43,788,288,1,0,1,100,0,100,40,190,5.1,9,8,9.7,300,9,999999999,89,0.1320,0,88,0.170,15.0,24.0 +2002,3,30,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,3.0,93,98700,284,1371,288,64,0,64,7200,0,7200,2290,200,5.1,9,7,9.7,300,9,999999999,89,0.1320,0,88,0.170,999.0,99.0 +2002,3,30,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,5.0,87,98700,540,1371,307,333,408,172,35200,40100,19300,3690,200,4.6,9,8,9.7,330,9,999999999,89,0.1320,0,88,0.170,999.0,99.0 +2002,3,30,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,5.0,81,98700,765,1371,301,512,594,180,54600,60400,20800,4010,190,4.6,5,5,11.3,77777,9,999999999,89,0.1320,0,88,0.170,999.0,99.0 +2002,3,30,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,5.0,71,98800,941,1371,309,714,770,185,75000,77700,21500,4970,230,5.1,5,5,11.3,77777,9,999999999,89,0.1320,0,88,0.170,999.0,99.0 +2002,3,30,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,4.0,54,98800,1057,1371,321,820,808,195,86800,82200,23200,6430,210,5.1,5,5,11.3,77777,9,999999999,100,0.1320,0,88,0.170,999.0,99.0 +2002,3,30,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,0.0,38,98800,1106,1371,333,767,577,300,81900,60200,33200,11140,230,5.7,9,8,11.3,7500,9,999999999,100,0.1320,0,88,0.170,999.0,99.0 +2002,3,30,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,-2.0,32,98800,1083,1371,348,704,503,306,74800,52400,33300,10820,240,6.7,10,10,11.3,6000,9,999999999,110,0.1320,0,88,0.170,999.0,99.0 +2002,3,30,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,-2.0,32,98800,990,1371,348,440,119,354,48000,12600,38900,11090,240,5.7,10,10,11.3,3900,9,999999999,110,0.1320,0,88,0.170,999.0,99.0 +2002,3,30,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,0.0,38,98800,835,1371,350,371,124,295,40300,13000,32400,8050,250,7.2,10,10,11.3,3900,9,999999999,110,0.1320,0,88,0.170,999.0,99.0 +2002,3,30,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,-2.0,35,98800,626,1371,343,252,64,222,27500,6300,24600,6220,260,5.1,10,10,11.3,3900,9,999999999,110,0.1320,0,88,0.170,999.0,99.0 +2002,3,30,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,0.0,44,98800,380,1371,340,134,56,119,14700,5000,13300,3010,250,3.1,10,10,11.3,7500,9,999999999,110,0.1320,0,88,0.170,999.0,99.0 +2002,3,30,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,1.0,50,98800,115,1291,321,28,53,23,3000,2400,2800,390,260,2.1,9,8,11.3,6000,9,999999999,110,0.1320,0,88,0.170,999.0,99.0 +2002,3,30,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,1.0,57,98900,0,0,307,0,0,0,0,0,0,0,310,1.0,9,7,11.3,6000,9,999999999,110,0.1320,0,88,0.170,999.0,99.0 +2002,3,30,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,1.0,70,98900,0,0,288,0,0,0,0,0,0,0,330,1.5,5,5,11.3,77777,9,999999999,110,0.1320,0,88,0.170,999.0,99.0 +2002,3,30,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-1.0,69,98900,0,0,278,0,0,0,0,0,0,0,0,0.0,5,5,11.3,77777,9,999999999,110,0.1320,0,88,0.170,999.0,99.0 +2002,3,30,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,-1.0,74,98900,0,0,284,0,0,0,0,0,0,0,30,1.5,9,8,11.3,6000,9,999999999,110,0.1320,0,88,0.170,999.0,99.0 +2002,3,30,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,2.0,87,98900,0,0,287,0,0,0,0,0,0,0,40,1.0,9,7,11.3,6000,9,999999999,110,0.1320,0,88,0.170,999.0,99.0 +2002,3,31,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,2.0,87,98800,0,0,306,0,0,0,0,0,0,0,50,0.5,10,10,11.3,3600,9,999999999,120,0.1330,0,88,0.170,999.0,99.0 +2002,3,31,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,1.0,87,98800,0,0,301,0,0,0,0,0,0,0,60,1.0,10,10,11.3,3600,9,999999999,120,0.1330,0,88,0.170,999.0,99.0 +2002,3,31,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,2.0,87,98800,0,0,306,0,0,0,0,0,0,0,70,1.5,10,10,11.3,6000,9,999999999,120,0.1330,0,88,0.170,999.0,99.0 +2002,3,31,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,1.0,87,98800,0,0,301,0,0,0,0,0,0,0,80,1.0,10,10,11.3,6000,9,999999999,120,0.1330,0,88,0.170,999.0,99.0 +2002,3,31,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,0.0,93,98800,0,0,291,0,0,0,0,0,0,0,90,0.5,10,10,11.3,6000,9,999999999,120,0.1330,0,88,0.170,999.0,99.0 +2002,3,31,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,1.0,93,98900,0,0,296,0,0,0,0,0,0,0,100,1.0,10,10,11.3,6000,9,999999999,120,0.1330,0,88,0.170,999.0,99.0 +2002,3,31,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,0.0,93,98900,47,833,291,2,6,2,300,200,300,30,60,1.0,10,10,11.3,6000,9,999999999,110,0.1330,0,88,0.170,999.0,99.0 +2002,3,31,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,3.0,93,98900,291,1370,307,99,28,93,10800,2300,10300,2240,110,1.0,10,10,11.3,6000,9,999999999,120,0.1330,0,88,0.170,999.0,99.0 +2002,3,31,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,3.0,93,98800,547,1370,307,205,50,185,22500,4800,20500,5020,120,1.5,10,10,11.3,6000,9,999999999,120,0.1330,0,88,0.170,999.0,99.0 +2002,3,31,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,0.0,65,98800,771,1370,313,302,55,271,33200,5600,30000,8300,140,1.5,10,10,11.3,6000,9,999999999,129,0.1330,0,88,0.170,999.0,99.0 +2002,3,31,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,0.0,61,98800,947,1370,317,385,73,335,42400,7500,37200,11560,160,1.5,10,10,11.3,6000,9,999999999,129,0.1330,0,88,0.170,999.0,99.0 +2002,3,31,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,0.0,53,98700,1063,1370,326,437,84,372,48200,8600,41500,14220,160,0.5,10,10,11.3,6000,9,999999999,139,0.1330,0,88,0.170,999.0,99.0 +2002,3,31,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,0.0,50,98700,1111,1370,331,308,12,298,36300,1100,35500,13650,170,1.5,10,10,11.3,6000,9,999999999,139,0.1330,0,88,0.170,999.0,99.0 +2002,3,31,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,1.0,50,98600,1087,1370,337,414,48,376,45700,4900,41700,14770,170,1.5,10,10,11.3,6000,9,999999999,139,0.1330,0,88,0.170,999.0,99.0 +2002,3,31,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,1.0,50,98500,995,1370,337,301,18,288,35000,1600,33900,12690,170,1.5,10,10,11.3,6000,9,999999999,139,0.1330,0,88,0.170,999.0,99.0 +2002,3,31,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,1.0,50,98500,839,1370,337,304,47,275,33400,4800,30500,8940,190,1.5,10,10,11.3,6000,9,999999999,139,0.1330,0,88,0.170,999.0,99.0 +2002,3,31,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,0.0,44,98400,630,1370,319,279,129,220,30200,13000,24200,5340,240,3.6,9,7,11.3,6000,9,999999999,129,0.1330,0,88,0.170,999.0,99.0 +2002,3,31,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,2.0,50,98400,384,1370,326,192,315,104,20400,27700,12600,2050,210,2.6,9,8,11.3,6000,9,999999999,129,0.1330,0,88,0.170,999.0,99.0 +2002,3,31,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,1.0,57,98300,119,1313,307,43,206,25,4500,11300,3500,450,190,3.1,9,7,11.3,6000,9,999999999,120,0.1330,0,88,0.170,999.0,99.0 +2002,3,31,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,2.0,61,98300,0,0,313,0,0,0,0,0,0,0,180,2.6,9,8,11.3,6000,9,999999999,120,0.1330,0,88,0.170,999.0,99.0 +2002,3,31,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,2.0,61,98300,0,0,308,0,0,0,0,0,0,0,220,2.6,9,7,11.3,2400,9,999999999,110,0.1330,0,88,0.170,999.0,99.0 +2002,3,31,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.3,1.0,65,98400,0,0,304,0,0,0,0,0,0,0,300,2.4,9,8,11.3,2400,9,999999999,110,0.1330,0,88,0.170,0.0,3.0 +2002,3,31,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.6,0.0,87,98500,0,0,311,0,0,0,0,0,0,0,290,2.3,10,10,11.3,900,9,999999999,100,0.1330,0,88,0.170,999.0,99.0 +2002,3,31,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.9,-0.9,87,98500,0,0,302,0,0,0,0,0,0,0,280,2.1,10,10,11.3,900,9,999999999,89,0.1330,0,88,0.170,999.0,99.0 +1997,4,1,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.1,-1.9,66,99400,0,0,254,0,0,0,0,0,0,0,310,2.0,0,0,11.3,77777,9,999999999,60,0.1340,0,88,0.160,0.0,6.0 +1997,4,1,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.4,-2.9,71,99400,0,0,247,0,0,0,0,0,0,0,330,1.8,0,0,11.3,77777,9,999999999,60,0.1340,0,88,0.160,999.0,99.0 +1997,4,1,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.2,-3.9,78,99400,0,0,241,0,0,0,0,0,0,0,10,1.7,0,0,11.3,77777,9,999999999,60,0.1340,0,88,0.160,999.0,99.0 +1997,4,1,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-5.0,84,99400,0,0,233,0,0,0,0,0,0,0,140,1.5,0,0,11.3,77777,9,999999999,50,0.1340,0,88,0.160,999.0,99.0 +1997,4,1,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-5.0,78,99500,0,0,237,0,0,0,0,0,0,0,250,2.1,0,0,11.3,77777,9,999999999,50,0.1340,0,88,0.160,999.0,99.0 +1997,4,1,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.0,-5.0,92,99600,0,0,230,0,0,0,0,0,0,0,210,1.0,0,0,11.3,77777,9,999999999,50,0.1340,0,88,0.160,999.0,99.0 +1997,4,1,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.0,-6.0,84,99700,52,878,229,16,103,10,1700,4900,1400,190,30,1.0,0,0,11.3,77777,9,999999999,50,0.1340,0,88,0.160,0.0,6.0 +1997,4,1,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-4.0,78,99800,299,1369,241,164,540,46,17100,43200,7600,860,30,2.1,0,0,11.3,77777,9,999999999,50,0.1340,0,88,0.160,999.0,99.0 +1997,4,1,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-5.0,57,99800,555,1369,251,376,755,70,39300,71900,10100,1440,30,2.1,0,0,11.3,77777,9,999999999,50,0.1340,0,88,0.160,999.0,99.0 +1997,4,1,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-7.0,39,99900,778,1369,260,577,857,90,61300,85400,12600,2100,40,2.6,0,0,11.3,77777,9,999999999,50,0.1340,0,88,0.160,999.0,99.0 +1997,4,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,-10.0,24,99900,953,1369,269,739,910,104,76600,90600,13300,2430,30,3.6,0,0,11.3,77777,9,999999999,50,0.1340,0,88,0.160,999.0,99.0 +1997,4,1,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,-8.0,24,99900,1069,1369,282,846,938,113,87500,93800,14100,3130,20,4.6,0,0,11.3,77777,9,999999999,50,0.1340,0,88,0.160,999.0,99.0 +1997,4,1,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.0,-7.0,26,99800,1116,1369,296,811,747,202,86400,76200,24100,7610,20,5.1,3,3,11.3,77777,9,999999999,60,0.1340,0,88,0.160,0.0,6.0 +1997,4,1,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,-11.0,16,99800,1093,1369,297,718,650,199,76400,66300,23300,7100,90,3.6,2,2,11.3,77777,9,999999999,60,0.1340,0,88,0.160,999.0,99.0 +1997,4,1,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,-8.0,19,99700,1000,1369,307,666,639,198,70000,64600,22700,5840,30,3.1,3,3,11.3,77777,9,999999999,60,0.1340,0,88,0.160,999.0,99.0 +1997,4,1,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,-9.0,18,99700,844,1369,303,545,694,116,58400,70600,14800,2900,350,4.6,2,2,11.3,77777,9,999999999,60,0.1340,0,88,0.160,999.0,99.0 +1997,4,1,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,-8.0,19,99700,635,1369,307,414,650,112,43300,63300,13800,2300,260,1.5,3,3,11.3,77777,9,999999999,60,0.1340,0,88,0.160,999.0,99.0 +1997,4,1,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,-8.0,21,99800,389,1369,300,200,471,66,20700,41000,9100,1240,90,1.0,2,2,11.3,77777,9,999999999,60,0.1340,0,88,0.160,999.0,99.0 +1997,4,1,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.0,-7.0,26,99700,124,1358,296,45,201,27,4900,10200,3900,480,350,2.6,3,3,11.3,77777,9,999999999,60,0.1340,0,88,0.160,0.0,6.0 +1997,4,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,9.5,-6.1,31,99800,0,0,291,0,0,0,0,0,0,0,30,1.8,3,3,11.3,77777,9,999999999,60,0.1340,0,88,0.160,999.0,99.0 +1997,4,1,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,-5.0,37,99800,0,0,286,0,0,0,0,0,0,0,70,1.0,3,3,11.3,77777,9,999999999,60,0.1340,0,88,0.160,999.0,99.0 +1997,4,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-2.0,64,99800,0,0,270,0,0,0,0,0,0,0,260,0.5,2,2,11.3,77777,9,999999999,60,0.1340,0,88,0.160,999.0,99.0 +1997,4,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,-2.0,68,99700,0,0,269,0,0,0,0,0,0,0,290,1.0,3,3,11.3,77777,9,999999999,60,0.1340,0,88,0.160,999.0,99.0 +1997,4,1,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-3.0,67,99800,0,0,261,0,0,0,0,0,0,0,310,1.0,2,2,11.3,77777,9,999999999,60,0.1340,0,88,0.160,999.0,99.0 +1997,4,2,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.0,-4.0,67,99800,0,0,257,0,0,0,0,0,0,0,60,1.0,2,2,11.3,77777,9,999999999,60,0.1340,0,88,0.160,0.0,6.0 +1997,4,2,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-4.0,67,99800,0,0,259,0,0,0,0,0,0,0,50,1.0,3,3,11.3,77777,9,999999999,60,0.1340,0,88,0.160,999.0,99.0 +1997,4,2,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-3.0,92,99700,0,0,253,0,0,0,0,0,0,0,40,1.5,5,5,11.3,77777,9,999999999,60,0.1340,0,88,0.160,999.0,99.0 +1997,4,2,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-3.0,85,99800,0,0,257,0,0,0,0,0,0,0,120,0.5,5,5,11.3,77777,9,999999999,60,0.1340,0,88,0.160,999.0,99.0 +1997,4,2,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-4.0,78,99800,0,0,256,0,0,0,0,0,0,0,100,1.0,5,5,11.3,77777,9,999999999,60,0.1340,0,88,0.160,999.0,99.0 +1997,4,2,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-4.0,85,99800,0,0,252,0,0,0,0,0,0,0,260,2.1,5,5,11.3,77777,9,999999999,69,0.1340,0,88,0.160,999.0,99.0 +1997,4,2,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.0,-4.0,85,99900,56,923,267,12,0,12,1400,0,1400,440,100,0.5,9,9,11.3,7500,9,999999999,69,0.1340,0,88,0.160,0.0,6.0 +1997,4,2,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-2.0,73,100000,306,1368,285,72,10,70,8200,400,8100,2530,70,0.5,9,9,11.3,7500,9,999999999,69,0.1340,0,88,0.160,999.0,99.0 +1997,4,2,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,-2.0,55,100000,561,1368,302,187,60,162,20500,5800,18100,4600,120,1.0,9,9,11.3,7500,9,999999999,69,0.1340,0,88,0.160,999.0,99.0 +1997,4,2,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,-6.0,26,100000,784,1368,324,321,235,186,35200,24900,20800,4310,160,3.1,9,9,11.3,7500,9,999999999,80,0.1340,0,88,0.160,999.0,99.0 +1997,4,2,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,-5.0,25,100000,959,1368,334,384,28,364,43600,2800,41600,14420,120,2.6,9,9,11.3,7500,9,999999999,80,0.1340,0,88,0.160,999.0,99.0 +1997,4,2,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,-6.0,20,99900,1074,1368,342,463,124,365,50800,13200,40400,12720,260,1.5,9,9,11.3,7500,9,999999999,89,0.1340,0,88,0.160,999.0,99.0 +1997,4,2,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.0,-9.0,15,99900,1121,1368,343,336,170,197,38400,18500,23200,6910,220,2.1,9,9,11.3,7500,9,999999999,89,0.1340,0,88,0.160,0.0,6.0 +1997,4,2,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,-6.0,19,99800,1097,1368,347,357,29,334,39400,3000,37100,13570,240,2.1,9,9,11.3,7500,9,999999999,100,0.1340,0,88,0.160,999.0,99.0 +1997,4,2,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.6,-5.8,19,99800,1004,1368,350,561,213,404,60700,22500,44200,12870,250,1.6,9,9,11.3,7500,9,999999999,100,0.1340,0,88,0.160,999.0,99.0 +1997,4,2,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,-6.0,18,99700,848,1368,352,369,279,196,40700,29800,22100,4770,250,1.0,9,9,11.3,7500,9,999999999,100,0.1340,0,88,0.160,999.0,99.0 +1997,4,2,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,-3.0,23,99700,639,1368,356,178,106,128,19900,10900,14800,3120,330,3.1,9,9,11.3,7500,9,999999999,110,0.1340,0,88,0.160,999.0,99.0 +1997,4,2,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,-5.0,21,99700,393,1368,329,159,247,87,17000,22000,10700,1650,320,2.1,5,5,11.3,77777,9,999999999,110,0.1340,0,88,0.160,999.0,99.0 +1997,4,2,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.0,-5.0,22,99600,128,1368,316,37,43,33,4000,2300,3800,690,250,1.5,2,2,11.3,77777,9,999999999,120,0.1340,0,88,0.160,0.0,6.0 +1997,4,2,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,-4.0,36,99600,0,11,295,0,0,0,0,0,0,0,210,1.0,3,3,11.3,77777,9,999999999,120,0.1340,0,88,0.160,999.0,99.0 +1997,4,2,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,-1.0,56,99500,0,0,283,0,0,0,0,0,0,0,230,1.0,2,2,11.3,77777,9,999999999,129,0.1340,0,88,0.160,999.0,99.0 +1997,4,2,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,-2.0,52,99500,0,0,285,0,0,0,0,0,0,0,0,0.0,3,3,11.3,77777,9,999999999,129,0.1340,0,88,0.160,999.0,99.0 +1997,4,2,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,-1.0,60,99500,0,0,279,0,0,0,0,0,0,0,210,0.5,2,2,11.3,77777,9,999999999,129,0.1340,0,88,0.160,999.0,99.0 +1997,4,2,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-3.0,55,99400,0,0,276,0,0,0,0,0,0,0,40,2.1,3,3,11.3,77777,9,999999999,139,0.1340,0,88,0.160,999.0,99.0 +1997,4,3,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.0,0.0,75,99300,0,0,275,0,0,0,0,0,0,0,40,1.5,3,3,11.3,77777,9,999999999,139,0.1350,0,88,0.160,0.0,6.0 +1997,4,3,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,-1.0,74,99300,0,0,267,0,0,0,0,0,0,0,40,1.5,2,2,11.3,77777,9,999999999,150,0.1350,0,88,0.160,999.0,99.0 +1997,4,3,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-1.0,80,99300,0,0,266,0,0,0,0,0,0,0,100,0.5,3,3,11.3,77777,9,999999999,150,0.1350,0,88,0.160,999.0,99.0 +1997,4,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-2.0,79,99200,0,0,265,0,0,0,0,0,0,0,40,1.0,5,5,11.3,77777,9,999999999,160,0.1350,0,88,0.160,999.0,99.0 +1997,4,3,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-3.0,72,99200,0,0,264,0,0,0,0,0,0,0,60,1.0,5,5,11.3,77777,9,999999999,160,0.1350,0,88,0.160,999.0,99.0 +1997,4,3,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-2.0,85,99200,0,0,277,0,0,0,0,0,0,0,120,1.0,9,9,11.3,7500,9,999999999,160,0.1350,0,88,0.160,999.0,99.0 +1997,4,3,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.0,-1.0,80,99300,61,946,286,13,3,12,1400,0,1400,450,310,0.5,9,9,11.3,7500,9,999999999,170,0.1350,0,88,0.160,0.0,6.0 +1997,4,3,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,0.0,65,99300,313,1367,304,71,30,64,7800,2500,7200,1710,160,1.0,9,9,11.3,7500,9,999999999,170,0.1350,0,88,0.160,999.0,99.0 +1997,4,3,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,1.0,50,99300,568,1367,309,301,305,174,31900,30400,19300,3740,200,1.5,5,5,11.3,77777,9,999999999,170,0.1350,0,88,0.160,999.0,99.0 +1997,4,3,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,1.0,36,99400,790,1367,332,399,292,230,43000,30900,25100,5550,240,5.1,5,5,11.3,77777,9,999999999,170,0.1350,0,88,0.160,999.0,99.0 +1997,4,3,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,0.0,32,99300,964,1367,355,407,125,318,44500,13200,35200,9710,240,4.6,9,9,11.3,4500,9,999999999,170,0.1350,0,88,0.160,999.0,99.0 +1997,4,3,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,0.0,28,99200,1079,1367,365,230,125,132,27000,13700,16200,4140,230,6.2,9,9,11.3,4500,9,999999999,170,0.1350,0,88,0.160,999.0,99.0 +1997,4,3,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.0,0.0,30,99200,1126,1367,360,430,112,337,47600,12000,37700,12760,240,5.1,9,9,11.3,2700,9,999999999,179,0.1350,0,88,0.160,0.0,6.0 +1997,4,3,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,-1.0,24,99100,1101,1367,368,422,112,331,46600,12000,37000,12030,250,5.1,9,9,11.3,1800,9,999999999,179,0.1350,0,88,0.160,999.0,99.0 +1997,4,3,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,0.0,23,99000,1008,1367,380,429,73,375,47200,7500,41600,13490,260,6.2,9,9,11.3,1800,9,999999999,179,0.1350,0,88,0.160,999.0,99.0 +1997,4,3,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,2.0,27,98900,852,1367,383,217,53,184,24000,5300,20700,6470,230,6.2,9,9,11.3,7500,9,999999999,179,0.1350,0,88,0.160,999.0,99.0 +1997,4,3,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,2.0,28,98800,643,1367,378,205,31,190,22500,3100,21000,5620,240,3.1,9,9,11.3,2400,9,999999999,179,0.1350,0,88,0.160,999.0,99.0 +1997,4,3,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,2.0,30,98800,397,1367,372,74,41,63,8300,3600,7200,1820,250,4.1,9,9,11.3,7500,9,999999999,179,0.1350,0,88,0.160,999.0,99.0 +1997,4,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.0,2.0,34,98800,133,1367,362,38,9,37,4200,0,4200,1160,270,1.5,9,9,11.3,7500,9,999999999,179,0.1350,0,88,0.160,0.0,6.0 +1997,4,3,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,3.0,44,98800,0,34,359,0,0,0,0,0,0,0,210,2.1,10,10,11.3,7500,9,999999999,189,0.1350,0,88,0.160,999.0,99.0 +1997,4,3,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,3.0,42,98900,0,0,364,0,0,0,0,0,0,0,210,2.6,10,10,11.3,7500,9,999999999,189,0.1350,0,88,0.160,999.0,99.0 +1997,4,3,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,3.0,47,98900,0,0,344,0,0,0,0,0,0,0,210,2.6,9,9,11.3,7500,9,999999999,189,0.1350,0,88,0.160,999.0,99.0 +1997,4,3,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,3.0,51,98800,0,0,339,0,0,0,0,0,0,0,230,2.1,9,9,11.3,7500,9,999999999,189,0.1350,0,88,0.160,999.0,99.0 +1997,4,3,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,2.0,54,98800,0,0,329,0,0,0,0,0,0,0,90,1.0,9,9,11.3,7500,9,999999999,189,0.1350,0,88,0.160,999.0,99.0 +1997,4,4,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.0,3.0,58,98800,0,0,309,0,0,0,0,0,0,0,100,1.0,9,4,11.3,7500,9,999999999,189,0.1360,0,88,0.160,0.0,6.0 +1997,4,4,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,2.0,54,98800,0,0,308,0,0,0,0,0,0,0,120,1.5,9,4,11.3,7500,9,999999999,189,0.1360,0,88,0.160,999.0,99.0 +1997,4,4,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,2.0,61,98800,0,0,299,0,0,0,0,0,0,0,50,1.0,9,4,11.3,7500,9,999999999,189,0.1360,0,88,0.160,999.0,99.0 +1997,4,4,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,2.0,66,98800,0,0,286,0,0,0,0,0,0,0,40,1.0,5,1,11.3,77777,9,999999999,200,0.1360,0,88,0.160,999.0,99.0 +1997,4,4,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,6.9,2.4,73,98800,0,0,282,0,0,0,0,0,0,0,40,1.0,5,1,11.3,77777,9,999999999,200,0.1360,0,88,0.160,999.0,99.0 +1997,4,4,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,3.0,81,98900,0,0,279,0,0,0,0,0,0,0,40,1.0,5,1,11.3,77777,9,999999999,200,0.1360,0,88,0.160,999.0,99.0 +1997,4,4,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.0,5.0,81,98900,65,991,289,20,60,16,2200,2200,2100,270,350,1.0,5,1,11.3,77777,9,999999999,200,0.1360,0,88,0.160,0.0,6.0 +1997,4,4,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,5.0,62,99000,319,1367,306,163,396,71,17200,31900,9700,1290,160,1.5,5,1,11.3,77777,9,999999999,200,0.1360,0,88,0.160,999.0,99.0 +1997,4,4,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,4.0,45,99000,574,1367,322,341,521,122,36400,50600,15100,2380,200,2.1,5,1,11.3,77777,9,999999999,209,0.1360,0,88,0.160,999.0,99.0 +1997,4,4,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,4.0,35,99100,796,1367,351,398,228,265,43400,23800,29500,7050,180,2.1,9,4,11.3,7500,9,999999999,209,0.1360,0,88,0.160,999.0,99.0 +1997,4,4,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,22.1,4.0,31,99100,970,1367,362,592,502,236,63600,52100,26500,6730,190,3.1,9,4,11.3,7500,9,999999999,209,0.1360,0,88,0.160,999.0,99.0 +1997,4,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,4.0,27,99000,1084,1367,371,722,606,241,75600,61100,27000,8270,200,4.1,9,4,11.3,7500,9,999999999,209,0.1360,0,88,0.160,999.0,99.0 +1997,4,4,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.0,4.0,27,99000,1130,1367,371,692,548,238,72900,55500,26900,9190,200,5.1,9,4,11.3,7500,9,999999999,220,0.1360,0,88,0.160,0.0,6.0 +1997,4,4,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,3.0,24,98900,1106,1367,375,592,352,306,65200,38200,34200,10890,200,4.6,9,4,11.3,7500,9,999999999,220,0.1360,0,88,0.160,999.0,99.0 +1997,4,4,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,4.0,26,98800,1012,1367,376,705,636,234,73500,63800,26100,6920,210,5.1,9,4,11.3,7500,9,999999999,220,0.1360,0,88,0.160,999.0,99.0 +1997,4,4,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,4.0,27,98800,856,1367,371,568,554,221,60300,57000,24600,5440,180,4.1,9,4,11.3,7500,9,999999999,220,0.1360,0,88,0.160,999.0,99.0 +1997,4,4,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,5.0,31,98800,647,1367,370,383,425,182,39900,42100,19900,3810,190,3.6,10,5,11.3,7500,9,999999999,229,0.1360,0,88,0.160,999.0,99.0 +1997,4,4,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,4.0,31,98800,401,1367,364,186,180,133,20000,16200,15300,2970,170,4.6,10,5,11.3,7500,9,999999999,229,0.1360,0,88,0.160,999.0,99.0 +1997,4,4,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.0,5.0,35,98800,137,1367,360,37,36,33,4000,2000,3800,690,180,3.1,10,5,11.3,4500,9,999999999,229,0.1360,0,88,0.160,0.0,6.0 +1997,4,4,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,5.0,37,98800,0,57,355,0,0,0,0,0,0,0,170,2.1,10,5,11.3,4500,9,999999999,229,0.1360,0,88,0.160,999.0,99.0 +1997,4,4,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,5.0,42,98800,0,0,346,0,0,0,0,0,0,0,150,2.1,10,5,11.3,4500,9,999999999,240,0.1360,0,88,0.160,999.0,99.0 +1997,4,4,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,5.0,45,98700,0,0,341,0,0,0,0,0,0,0,170,2.1,10,5,11.3,3000,9,999999999,240,0.1360,0,88,0.160,999.0,99.0 +1997,4,4,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,7.0,55,98700,0,0,339,0,0,0,0,0,0,0,250,2.6,10,5,11.3,2700,9,999999999,240,0.1360,0,88,0.160,999.0,99.0 +1997,4,4,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,8.0,59,98800,0,0,340,0,0,0,0,0,0,0,200,2.6,10,5,11.3,2400,9,999999999,250,0.1360,0,88,0.160,999.0,99.0 +1997,4,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.0,11.0,82,98700,0,0,346,0,0,0,0,0,0,0,140,3.6,10,8,11.3,2400,9,999999999,250,0.1370,0,88,0.160,0.0,6.0 +1997,4,5,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,9.0,72,98600,0,0,338,0,0,0,0,0,0,0,110,2.6,10,7,11.3,2400,9,999999999,250,0.1370,0,88,0.160,999.0,99.0 +1997,4,5,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,9.0,67,98600,0,0,349,0,0,0,0,0,0,0,170,1.5,10,8,11.3,2400,9,999999999,250,0.1370,0,88,0.160,999.0,99.0 +1997,4,5,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.0,9.0,72,98500,0,0,338,0,0,0,0,0,0,0,130,3.1,10,7,11.3,2400,9,999999999,259,0.1370,0,88,0.160,0.0,3.0 +1997,4,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,9.0,77,98600,0,0,339,0,0,0,0,0,0,0,200,0.5,10,8,11.3,2100,9,999999999,259,0.1370,0,88,0.160,999.0,99.0 +1997,4,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,9.0,77,98600,0,0,334,0,0,0,0,0,0,0,160,3.1,10,7,11.3,2100,9,999999999,259,0.1370,0,88,0.160,999.0,99.0 +1997,4,5,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.0,11.0,88,98600,70,1013,341,24,6,24,2700,0,2700,790,150,4.6,10,8,11.3,2100,9,999999999,259,0.1370,0,88,0.160,1.0,6.0 +1997,4,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,11.0,88,98500,326,1366,336,131,98,107,14000,8200,12100,2340,140,4.1,10,7,11.3,1500,9,999999999,259,0.1370,0,88,0.160,999.0,99.0 +1997,4,5,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,11.0,94,98500,580,1366,337,213,168,141,23500,16800,16300,3350,160,5.7,10,8,11.3,1500,9,999999999,259,0.1370,0,88,0.160,999.0,99.0 +1997,4,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.0,12.0,100,98400,802,1366,332,432,211,308,46700,21900,33800,8230,150,4.1,10,7,11.3,1500,9,999999999,250,0.1370,0,88,0.160,6.0,3.0 +1997,4,5,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,12.0,94,98400,975,1366,342,487,141,386,52800,14900,42100,11940,160,3.1,10,8,11.3,1500,9,999999999,250,0.1370,0,88,0.160,999.0,99.0 +1997,4,5,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,13.0,88,98200,1089,1366,348,572,383,266,61700,40000,29800,9510,150,5.1,10,7,11.3,1500,9,999999999,250,0.1370,0,88,0.160,999.0,99.0 +1997,4,5,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.0,10.0,56,98100,1135,1366,354,809,659,261,84700,66400,29400,10120,170,9.3,9,4,11.3,3000,9,999999999,240,0.1370,0,88,0.160,6.0,6.0 +1997,4,5,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,10.0,53,98100,1110,1366,359,645,485,251,70300,50700,29000,9390,180,8.2,9,4,11.3,3000,9,999999999,240,0.1370,0,88,0.160,999.0,99.0 +1997,4,5,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,10.0,56,98000,1016,1366,370,487,98,414,53600,10100,46000,14700,170,5.1,10,8,11.3,2700,9,999999999,240,0.1370,0,88,0.160,999.0,99.0 +1997,4,5,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,10.0,53,98000,859,1366,369,517,315,318,54900,33500,33800,8530,180,5.7,10,7,11.3,2700,9,999999999,229,0.1370,0,88,0.160,0.0,3.0 +1997,4,5,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,11.0,53,97900,651,1366,381,221,83,181,24300,8200,20300,5450,170,5.1,10,8,11.3,2700,9,999999999,229,0.1370,0,88,0.160,999.0,99.0 +1997,4,5,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,11.0,53,97700,405,1366,375,157,110,124,17000,10000,14000,2770,160,7.2,10,7,11.3,6000,9,999999999,229,0.1370,0,88,0.160,999.0,99.0 +1997,4,5,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.0,10.0,49,97700,141,1366,380,46,6,45,5000,0,5000,1340,170,5.7,10,8,11.3,6000,9,999999999,220,0.1370,0,88,0.160,0.0,6.0 +1997,4,5,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,10.0,46,97700,0,80,379,0,0,0,0,0,0,0,190,6.2,10,7,11.3,6000,9,999999999,220,0.1370,0,88,0.160,999.0,99.0 +1997,4,5,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,10.0,53,97800,0,0,375,0,0,0,0,0,0,0,200,4.1,10,8,11.3,6000,9,999999999,220,0.1370,0,88,0.160,999.0,99.0 +1997,4,5,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,11.0,53,97800,0,0,375,0,0,0,0,0,0,0,220,6.7,10,7,11.3,1500,9,999999999,209,0.1370,0,88,0.160,999.0,99.0 +1997,4,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,11.0,56,97900,0,0,360,0,0,0,0,0,0,0,220,10.3,9,4,11.3,1500,9,999999999,209,0.1370,0,88,0.160,999.0,99.0 +1997,4,5,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.0,12.0,64,97900,0,0,356,0,0,0,0,0,0,0,230,7.7,9,4,11.3,1200,9,999999999,209,0.1370,0,88,0.160,0.0,6.0 +1997,4,6,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,12.0,64,97900,0,0,380,0,0,0,0,0,0,0,230,6.7,9,9,11.3,1200,9,999999999,209,0.1380,0,88,0.160,999.0,99.0 +1997,4,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,18.6,11.5,63,97900,0,0,377,0,0,0,0,0,0,0,230,7.0,9,9,11.3,1800,9,999999999,200,0.1380,0,88,0.160,999.0,99.0 +1997,4,6,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,11.0,64,97900,0,0,374,0,0,0,0,0,0,0,220,7.2,9,9,11.3,2400,9,999999999,200,0.1380,0,88,0.160,999.0,99.0 +1997,4,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,11.0,68,97900,0,0,368,0,0,0,0,0,0,0,220,5.1,9,9,11.3,1800,9,999999999,200,0.1380,0,88,0.160,999.0,99.0 +1997,4,6,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,10.0,68,97900,0,0,342,0,0,0,0,0,0,0,210,6.2,5,5,11.3,77777,9,999999999,189,0.1380,0,88,0.160,999.0,99.0 +1997,4,6,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,10.0,72,97900,0,0,332,0,0,0,0,0,0,0,200,5.1,3,3,11.3,77777,9,999999999,189,0.1380,0,88,0.160,999.0,99.0 +1997,4,6,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,11.0,77,98000,75,1058,330,25,160,14,2700,8100,2100,260,200,4.6,2,2,11.3,77777,9,999999999,189,0.1380,0,88,0.160,0.0,6.0 +1997,4,6,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,11.0,68,98000,333,1365,343,173,430,68,17700,35200,9100,1220,200,5.7,3,3,11.3,77777,9,999999999,179,0.1380,0,88,0.160,999.0,99.0 +1997,4,6,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,10.0,56,97900,586,1365,356,387,630,116,40000,60200,14100,2270,210,8.2,5,5,11.3,77777,9,999999999,179,0.1380,0,88,0.160,999.0,99.0 +1997,4,6,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,10.0,49,97900,807,1365,366,500,528,187,53500,54100,21400,4340,210,7.7,5,5,11.3,77777,9,999999999,179,0.1380,0,88,0.160,999.0,99.0 +1997,4,6,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,9.0,46,97800,980,1365,387,428,55,388,47000,5700,42900,13460,220,9.3,9,9,11.3,7500,9,999999999,170,0.1380,0,88,0.160,999.0,99.0 +1997,4,6,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,8.0,41,97800,1093,1365,391,403,62,354,44500,6400,39400,14230,200,9.3,9,9,11.3,7500,9,999999999,170,0.1380,0,88,0.160,999.0,99.0 +1997,4,6,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.0,8.0,38,97700,1139,1365,396,588,118,490,64800,12300,54500,19640,200,8.7,9,9,11.3,7500,9,999999999,170,0.1380,0,88,0.160,0.0,6.0 +1997,4,6,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,7.0,36,97500,1114,1365,395,483,82,416,53200,8500,46300,16660,210,12.3,9,9,11.3,7500,9,999999999,160,0.1380,0,88,0.160,999.0,99.0 +1997,4,6,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,8.0,38,97500,1020,1365,396,297,80,237,33300,8600,26900,7700,210,11.3,9,9,11.3,2100,9,999999999,160,0.1380,0,88,0.160,999.0,99.0 +1997,4,6,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,8.0,38,97400,863,1365,396,409,149,314,44400,15600,34500,8770,230,10.8,9,9,11.3,2400,9,999999999,160,0.1380,0,88,0.160,999.0,99.0 +1997,4,6,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,7.0,38,97500,655,1365,389,171,25,158,18700,2500,17500,4890,250,12.9,9,9,11.3,2400,9,999999999,150,0.1380,0,88,0.160,999.0,99.0 +1997,4,6,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,-4.0,20,97800,409,1365,339,224,382,109,23200,33700,13000,2060,270,10.8,5,5,11.3,77777,9,999999999,150,0.1380,0,88,0.160,999.0,99.0 +1997,4,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.0,-5.0,21,97900,145,1365,321,62,329,27,6300,19000,4300,480,270,11.8,2,2,11.3,77777,9,999999999,150,0.1380,0,88,0.160,0.0,6.0 +1997,4,6,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,-3.0,30,98000,1,102,300,0,7,0,0,0,0,0,260,7.7,0,0,11.3,77777,9,999999999,139,0.1380,0,88,0.160,999.0,99.0 +1997,4,6,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,-3.0,36,98100,0,0,288,0,0,0,0,0,0,0,270,9.8,0,0,11.3,77777,9,999999999,139,0.1380,0,88,0.160,999.0,99.0 +1997,4,6,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,-3.0,39,98200,0,0,284,0,0,0,0,0,0,0,280,6.2,0,0,11.3,77777,9,999999999,139,0.1380,0,88,0.160,999.0,99.0 +1997,4,6,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,-2.0,48,98300,0,0,277,0,0,0,0,0,0,0,270,6.7,0,0,11.3,77777,9,999999999,129,0.1380,0,88,0.160,999.0,99.0 +1997,4,6,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,-3.0,48,98300,0,0,284,0,0,0,0,0,0,0,280,7.7,3,3,11.3,77777,9,999999999,129,0.1380,0,88,0.160,999.0,99.0 +1997,4,7,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-2.0,59,98300,0,0,277,0,0,0,0,0,0,0,280,7.7,5,3,11.3,77777,9,999999999,129,0.1390,0,88,0.160,0.0,6.0 +1997,4,7,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-4.0,54,98400,0,0,268,0,0,0,0,0,0,0,280,8.2,5,2,11.3,77777,9,999999999,120,0.1390,0,88,0.160,999.0,99.0 +1997,4,7,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-4.0,54,98400,0,0,271,0,0,0,0,0,0,0,270,7.2,5,3,11.3,77777,9,999999999,120,0.1390,0,88,0.160,999.0,99.0 +1997,4,7,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,-4.0,58,98500,0,0,264,0,0,0,0,0,0,0,280,5.7,5,2,11.3,77777,9,999999999,120,0.1390,0,88,0.160,999.0,99.0 +1997,4,7,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-5.0,57,98500,0,0,262,0,0,0,0,0,0,0,270,8.2,5,3,11.3,77777,9,999999999,110,0.1390,0,88,0.160,999.0,99.0 +1997,4,7,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-6.0,60,98700,0,0,251,0,0,0,0,0,0,0,280,6.7,5,2,11.3,77777,9,999999999,110,0.1390,0,88,0.160,999.0,99.0 +1997,4,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.0,-5.0,61,98700,80,1080,260,21,31,19,2400,1500,2300,390,260,6.2,9,4,11.3,1050,9,999999999,110,0.1390,0,88,0.160,0.0,6.0 +1997,4,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-7.0,51,98800,339,1364,254,173,386,77,18200,31800,10200,1410,270,7.7,5,2,11.3,77777,9,999999999,110,0.1390,0,88,0.160,999.0,99.0 +1997,4,7,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-10.0,37,98900,592,1364,257,334,456,136,35500,44600,16100,2700,280,8.2,5,3,11.3,77777,9,999999999,100,0.1390,0,88,0.160,999.0,99.0 +1997,4,7,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,-10.0,34,99000,813,1364,258,554,704,134,58600,70900,16300,3190,270,9.8,5,2,11.3,77777,9,999999999,100,0.1390,0,88,0.160,999.0,99.0 +1997,4,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-9.0,35,99000,985,1364,266,648,676,159,69200,69000,19200,4710,270,7.7,5,3,11.3,77777,9,999999999,100,0.1390,0,88,0.160,999.0,99.0 +1997,4,7,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-8.0,36,99000,1098,1364,259,857,918,117,88500,91800,14400,3440,260,9.3,0,0,11.3,77777,9,999999999,100,0.1390,0,88,0.160,999.0,99.0 +1997,4,7,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-8.0,36,99100,1143,1364,259,899,928,121,92800,92900,14700,3950,270,10.3,0,0,11.3,77777,9,999999999,100,0.1390,0,88,0.160,0.0,6.0 +1997,4,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,-7.0,36,99100,1118,1364,264,876,923,119,90400,92400,14500,3640,270,7.7,0,0,11.3,77777,9,999999999,100,0.1390,0,88,0.160,999.0,99.0 +1997,4,7,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,-6.0,37,99100,1023,1364,269,789,902,112,81600,90000,13900,2850,280,7.7,0,0,11.3,77777,9,999999999,100,0.1390,0,88,0.160,999.0,99.0 +1997,4,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,-6.0,34,99100,867,1364,278,609,799,100,64800,80300,13600,2510,270,7.7,2,1,11.3,77777,9,999999999,100,0.1390,0,88,0.160,999.0,99.0 +1997,4,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,-7.0,32,99100,659,1364,277,431,686,99,45600,67700,12800,2110,290,7.2,3,1,11.3,77777,9,999999999,89,0.1390,0,88,0.160,999.0,99.0 +1997,4,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,-6.0,34,99200,413,1364,273,249,630,58,25600,56200,8500,1120,270,6.2,0,0,11.3,77777,9,999999999,89,0.1390,0,88,0.160,999.0,99.0 +1997,4,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-7.0,39,99200,149,1364,260,61,284,30,6200,16500,4400,530,280,5.1,0,0,11.3,77777,9,999999999,89,0.1390,0,88,0.160,0.0,6.0 +1997,4,7,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-7.0,42,99300,1,125,257,0,4,0,0,0,0,0,280,4.6,0,0,11.3,77777,9,999999999,89,0.1390,0,88,0.160,999.0,99.0 +1997,4,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,-7.0,45,99300,0,0,253,0,0,0,0,0,0,0,280,2.6,0,0,11.3,77777,9,999999999,89,0.1390,0,88,0.160,999.0,99.0 +1997,4,7,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,-7.0,45,99300,0,0,253,0,0,0,0,0,0,0,260,3.1,0,0,11.3,77777,9,999999999,89,0.1390,0,88,0.160,999.0,99.0 +1997,4,7,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,-7.0,45,99300,0,0,253,0,0,0,0,0,0,0,270,4.1,0,0,11.3,77777,9,999999999,89,0.1390,0,88,0.160,999.0,99.0 +1997,4,7,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-6.0,52,99300,0,0,250,0,0,0,0,0,0,0,250,2.6,0,0,11.3,77777,9,999999999,89,0.1390,0,88,0.160,999.0,99.0 +1997,4,8,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.0,-6.0,52,99400,0,0,250,0,0,0,0,0,0,0,260,3.1,0,0,11.3,77777,9,999999999,80,0.1400,0,88,0.160,0.0,6.0 +1997,4,8,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-6.0,52,99400,0,0,255,0,0,0,0,0,0,0,280,4.1,3,1,11.3,77777,9,999999999,80,0.1400,0,88,0.160,999.0,99.0 +1997,4,8,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-7.0,48,99400,0,0,249,0,0,0,0,0,0,0,280,4.6,0,0,11.3,77777,9,999999999,80,0.1400,0,88,0.160,999.0,99.0 +1997,4,8,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-6.0,56,99400,0,0,251,0,0,0,0,0,0,0,280,4.1,3,1,11.3,77777,9,999999999,80,0.1400,0,88,0.160,999.0,99.0 +1997,4,8,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-6.0,60,99300,0,0,248,0,0,0,0,0,0,0,280,3.6,2,1,11.3,77777,9,999999999,80,0.1400,0,88,0.160,999.0,99.0 +1997,4,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-6.0,66,99300,0,0,244,0,0,0,0,0,0,0,260,3.1,3,1,11.3,77777,9,999999999,80,0.1400,0,88,0.160,999.0,99.0 +1997,4,8,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-6.0,60,99400,86,1125,243,25,62,20,2700,2500,2500,340,260,2.6,0,0,11.3,77777,9,999999999,80,0.1400,0,88,0.160,0.0,6.0 +1997,4,8,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,-6.0,49,99500,346,1363,259,170,379,74,18000,31500,10000,1350,260,4.1,3,1,11.3,77777,9,999999999,80,0.1400,0,88,0.160,999.0,99.0 +1997,4,8,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-6.0,42,99400,598,1363,270,353,511,129,37800,50100,15700,2560,260,4.1,5,2,11.3,77777,9,999999999,80,0.1400,0,88,0.160,999.0,99.0 +1997,4,8,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,-7.0,36,99300,818,1363,269,547,663,148,57500,66500,17400,3500,250,4.6,3,1,11.3,77777,9,999999999,80,0.1400,0,88,0.160,999.0,99.0 +1997,4,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,-6.0,37,99300,990,1363,274,702,740,164,74900,75500,19900,4890,270,6.2,2,1,11.3,77777,9,999999999,80,0.1400,0,88,0.160,999.0,99.0 +1997,4,8,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,-5.0,33,99300,1103,1363,294,577,492,179,61900,50400,21000,6660,260,5.7,5,3,11.3,77777,9,999999999,80,0.1400,0,88,0.160,999.0,99.0 +1997,4,8,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.0,-5.0,35,99200,1147,1363,287,817,726,206,87200,74200,24700,8510,260,6.7,5,2,11.3,77777,9,999999999,80,0.1400,0,88,0.160,0.0,6.0 +1997,4,8,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,-4.0,33,99100,1122,1363,301,742,534,302,79400,55700,33500,11810,270,7.7,9,4,11.3,2400,9,999999999,80,0.1400,0,88,0.160,999.0,99.0 +1997,4,8,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,-4.0,38,99000,1027,1363,301,493,214,331,54200,22800,37000,10880,280,5.7,10,7,11.3,2400,9,999999999,80,0.1400,0,88,0.160,999.0,99.0 +1997,4,8,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,-4.0,44,99100,870,1363,298,466,249,307,50800,26100,34000,8630,320,9.3,10,8,11.3,1800,9,999999999,80,0.1400,0,88,0.160,999.0,99.0 +1997,4,8,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,-6.0,49,99200,662,1363,275,378,294,235,39900,30200,25200,5460,320,9.3,10,7,11.3,1800,9,999999999,80,0.1400,0,88,0.160,999.0,99.0 +1997,4,8,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-7.0,51,99300,417,1363,270,112,105,80,12500,9700,9500,1790,330,8.2,10,8,11.3,1500,9,999999999,69,0.1400,0,88,0.160,999.0,99.0 +1997,4,8,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-6.0,60,99400,154,1363,263,40,11,39,4400,700,4300,930,330,6.2,10,7,11.3,1350,9,999999999,69,0.1400,0,88,0.160,0.0,6.0 +1997,4,8,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-7.0,65,99500,1,148,258,0,0,0,0,0,0,0,350,5.1,10,8,11.3,2100,9,999999999,69,0.1400,0,88,0.160,999.0,99.0 +1997,4,8,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-8.0,65,99600,0,0,243,0,0,0,0,0,0,0,340,6.7,9,4,11.3,2100,9,999999999,69,0.1400,0,88,0.160,999.0,99.0 +1997,4,8,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.0,-10.0,65,99700,0,0,232,0,0,0,0,0,0,0,340,3.6,5,3,11.3,77777,9,999999999,69,0.1400,0,88,0.160,999.0,99.0 +1997,4,8,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.0,-10.0,65,99700,0,0,227,0,0,0,0,0,0,0,350,3.6,2,1,11.3,77777,9,999999999,69,0.1400,0,88,0.160,999.0,99.0 +1997,4,8,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.0,-12.0,59,99700,0,0,222,0,0,0,0,0,0,0,350,5.1,3,1,11.3,77777,9,999999999,69,0.1400,0,88,0.160,999.0,99.0 +1997,4,9,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-7.0,-12.0,64,99700,0,0,214,0,0,0,0,0,0,0,340,4.1,0,0,11.3,77777,9,999999999,69,0.1410,0,88,0.160,0.0,6.0 +1997,4,9,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-7.0,-11.0,70,99600,0,0,215,0,0,0,0,0,0,0,330,3.6,0,0,11.3,77777,9,999999999,69,0.1410,0,88,0.160,999.0,99.0 +1997,4,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-8.0,-11.0,77,99700,0,0,212,0,0,0,0,0,0,0,310,3.1,0,0,11.3,77777,9,999999999,69,0.1410,0,88,0.160,999.0,99.0 +1997,4,9,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-8.0,-10.0,84,99700,0,0,213,0,0,0,0,0,0,0,320,2.6,0,0,11.3,77777,9,999999999,69,0.1410,0,88,0.160,999.0,99.0 +1997,4,9,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-8.0,-10.0,84,99700,0,0,213,0,0,0,0,0,0,0,320,3.1,0,0,11.3,77777,9,999999999,69,0.1410,0,88,0.160,999.0,99.0 +1997,4,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-8.0,-10.0,84,99700,0,0,213,0,0,0,0,0,0,0,320,3.1,0,0,11.3,77777,9,999999999,69,0.1410,0,88,0.160,999.0,99.0 +1997,4,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-7.0,-10.0,77,99800,91,1169,216,30,127,20,3300,5800,2800,350,330,4.6,0,0,11.3,77777,9,999999999,69,0.1410,0,88,0.160,0.0,6.0 +1997,4,9,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.0,-10.0,65,99900,352,1362,230,150,323,66,16000,27100,9000,1190,340,6.7,2,2,11.3,77777,9,999999999,69,0.1410,0,88,0.160,999.0,99.0 +1997,4,9,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.0,-11.0,54,99900,604,1362,235,389,543,147,41000,53300,17300,2960,10,5.1,3,3,11.3,77777,9,999999999,69,0.1410,0,88,0.160,999.0,99.0 +1997,4,9,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-11.0,46,99900,824,1362,239,540,590,184,58200,60600,21500,4330,300,4.6,2,2,11.3,77777,9,999999999,69,0.1410,0,88,0.160,999.0,99.0 +1997,4,9,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-11.0,39,99900,995,1362,249,679,723,150,72900,74100,18600,4560,330,4.6,3,3,11.3,77777,9,999999999,69,0.1410,0,88,0.160,999.0,99.0 +1997,4,9,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-12.0,36,99900,1107,1362,245,836,819,170,87100,82100,20200,5720,290,5.1,2,2,11.3,77777,9,999999999,69,0.1410,0,88,0.160,999.0,99.0 +1997,4,9,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-13.0,32,99900,1151,1362,247,845,756,206,90300,77300,24800,8630,330,5.7,3,3,11.3,77777,9,999999999,69,0.1410,0,88,0.160,0.0,6.0 +1997,4,9,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-12.0,31,99900,1125,1362,253,847,835,157,89200,84100,19600,5680,320,5.7,2,2,11.3,77777,9,999999999,69,0.1410,0,88,0.160,999.0,99.0 +1997,4,9,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,-12.0,29,99900,1031,1362,259,719,693,194,76100,70400,22700,6130,340,4.6,3,3,11.3,77777,9,999999999,69,0.1410,0,88,0.160,999.0,99.0 +1997,4,9,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-12.0,27,99800,874,1362,260,507,572,140,54000,58000,16600,3570,10,4.6,2,2,11.3,77777,9,999999999,69,0.1410,0,88,0.160,999.0,99.0 +1997,4,9,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,-13.0,26,99800,666,1362,247,461,749,94,47700,72900,12000,1910,360,6.2,0,0,11.3,77777,9,999999999,69,0.1410,0,88,0.160,999.0,99.0 +1997,4,9,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-12.0,31,99800,421,1362,245,249,588,67,26000,52600,9700,1280,340,4.1,0,0,11.3,77777,9,999999999,69,0.1410,0,88,0.160,999.0,99.0 +1997,4,9,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.0,-11.0,36,99800,158,1362,242,62,243,34,6500,13600,4900,600,330,4.1,0,0,11.3,77777,9,999999999,69,0.1410,0,88,0.160,0.0,6.0 +1997,4,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-11.0,39,99800,2,170,246,0,2,0,0,0,0,0,10,2.6,2,2,11.3,77777,9,999999999,80,0.1410,0,88,0.160,999.0,99.0 +1997,4,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-11.0,46,99900,0,0,232,0,0,0,0,0,0,0,340,2.1,0,0,11.3,77777,9,999999999,80,0.1410,0,88,0.160,999.0,99.0 +1997,4,9,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-2.6,-10.4,51,99900,0,0,238,0,0,0,0,0,0,0,290,1.3,2,2,11.3,77777,9,999999999,80,0.1410,0,88,0.160,999.0,99.0 +1997,4,9,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-10.0,55,99800,0,0,239,0,0,0,0,0,0,0,240,0.5,3,3,11.3,77777,9,999999999,80,0.1410,0,88,0.160,999.0,99.0 +1997,4,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.0,-9.0,65,99800,0,0,234,0,0,0,0,0,0,0,210,1.0,2,2,11.3,77777,9,999999999,80,0.1410,0,88,0.160,999.0,99.0 +1997,4,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.0,-9.0,71,99800,0,0,231,0,0,0,0,0,0,0,200,1.5,5,2,11.3,77777,9,999999999,80,0.1420,0,88,0.160,0.0,6.0 +1997,4,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.0,-9.0,71,99900,0,0,233,0,0,0,0,0,0,0,250,0.5,5,3,11.3,77777,9,999999999,80,0.1420,0,88,0.160,999.0,99.0 +1997,4,10,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.0,-9.0,77,99900,0,0,224,0,0,0,0,0,0,0,120,1.5,2,1,11.3,77777,9,999999999,80,0.1420,0,88,0.160,999.0,99.0 +1997,4,10,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.0,-9.0,77,99900,0,0,224,0,0,0,0,0,0,0,200,1.0,3,1,11.3,77777,9,999999999,80,0.1420,0,88,0.160,999.0,99.0 +1997,4,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.0,-9.0,77,99900,0,0,224,0,0,0,0,0,0,0,220,1.0,2,1,11.3,77777,9,999999999,80,0.1420,0,88,0.160,999.0,99.0 +1997,4,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.0,-9.0,77,99900,0,0,224,0,0,0,0,0,0,0,30,1.0,3,1,11.3,77777,9,999999999,80,0.1420,0,88,0.160,999.0,99.0 +1997,4,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.0,-8.0,84,99900,97,1191,225,30,87,23,3300,3700,3000,400,40,2.1,2,1,11.3,77777,9,999999999,80,0.1420,0,88,0.160,0.0,6.0 +1997,4,10,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-7.0,71,100000,358,1362,242,172,305,91,17800,25700,11000,1690,60,1.5,5,3,11.3,77777,9,999999999,80,0.1420,0,88,0.160,999.0,99.0 +1997,4,10,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-8.0,47,100000,610,1362,253,354,516,123,38200,50800,15300,2440,170,0.5,5,2,11.3,77777,9,999999999,80,0.1420,0,88,0.160,999.0,99.0 +1997,4,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,-9.0,37,100000,829,1362,262,551,627,169,57500,62600,19300,3970,100,3.6,5,3,11.3,77777,9,999999999,89,0.1420,0,88,0.160,999.0,99.0 +1997,4,10,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-9.0,35,100000,1000,1362,272,571,307,346,61600,33100,37300,10730,40,2.1,9,6,11.3,6000,9,999999999,89,0.1420,0,88,0.160,999.0,99.0 +1997,4,10,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-10.0,32,99800,1111,1362,271,472,217,294,52200,23600,32900,10610,180,3.6,9,6,11.3,6000,9,999999999,89,0.1420,0,88,0.160,999.0,99.0 +1997,4,10,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.0,-10.0,26,99800,1155,1362,274,817,739,189,87800,75800,23300,8080,150,2.6,5,2,11.3,77777,9,999999999,89,0.1420,0,88,0.160,0.0,6.0 +1997,4,10,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,-9.0,28,99700,1129,1362,277,742,597,246,78000,60400,27800,9540,180,2.6,5,3,11.3,77777,9,999999999,100,0.1420,0,88,0.160,999.0,99.0 +1997,4,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,7.1,-9.3,27,99700,1034,1362,288,706,451,363,76200,48700,39100,11860,200,2.1,8,7,11.3,14000,9,999999999,100,0.1420,0,88,0.160,999.0,99.0 +1997,4,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,-10.0,26,99600,878,1362,306,226,0,226,26300,0,26300,10010,210,1.5,10,10,11.3,6000,9,999999999,100,0.1420,0,88,0.160,999.0,99.0 +1997,4,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,-10.0,26,99600,670,1362,306,160,0,160,18500,0,18500,6720,90,0.5,10,10,11.3,6000,9,999999999,100,0.1420,0,88,0.160,999.0,99.0 +1997,4,10,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,-10.0,26,99600,425,1362,306,85,0,85,9800,0,9800,3360,120,1.5,10,10,11.3,4500,9,999999999,110,0.1420,0,88,0.160,999.0,99.0 +1997,4,10,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.0,-10.0,26,99600,162,1362,306,27,0,27,3100,0,3100,990,50,1.5,10,10,11.3,3000,9,999999999,110,0.1420,0,88,0.160,0.0,6.0 +1997,4,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,-9.0,28,99500,2,193,307,0,0,0,0,0,0,0,100,2.6,10,10,11.3,3000,9,999999999,110,0.1420,0,88,0.160,999.0,99.0 +1997,4,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,-8.0,31,99500,0,0,308,0,0,0,0,0,0,0,110,2.6,10,10,11.3,2400,9,999999999,110,0.1420,0,88,0.160,999.0,99.0 +1997,4,10,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,-8.0,33,99500,0,0,304,0,0,0,0,0,0,0,120,3.1,10,10,11.3,2400,9,999999999,120,0.1420,0,88,0.160,999.0,99.0 +1997,4,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,-8.0,33,99500,0,0,304,0,0,0,0,0,0,0,150,2.6,10,10,11.3,1500,9,999999999,120,0.1420,0,88,0.160,999.0,99.0 +1997,4,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,-8.0,33,99500,0,0,304,0,0,0,0,0,0,0,110,2.6,10,10,11.3,1500,9,999999999,120,0.1420,0,88,0.160,999.0,99.0 +1997,4,11,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-6.0,42,99400,0,0,302,0,0,0,0,0,0,0,80,1.5,10,10,11.3,1500,9,999999999,120,0.1430,0,88,0.160,0.0,6.0 +1997,4,11,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-6.0,42,99400,0,0,302,0,0,0,0,0,0,0,80,1.5,10,10,11.3,1500,9,999999999,129,0.1430,0,88,0.160,999.0,99.0 +1997,4,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-6.0,42,99300,0,0,302,0,0,0,0,0,0,0,80,1.5,10,10,11.3,1500,9,999999999,129,0.1430,0,88,0.160,999.0,99.0 +1997,4,11,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-6.0,42,99300,0,0,302,0,0,0,0,0,0,0,60,2.1,10,10,11.3,1500,9,999999999,129,0.1430,0,88,0.160,999.0,99.0 +1997,4,11,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-6.0,42,99300,0,0,302,0,0,0,0,0,0,0,80,3.6,10,10,11.3,2100,9,999999999,129,0.1430,0,88,0.160,999.0,99.0 +1997,4,11,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-7.0,39,99400,0,0,300,0,0,0,0,0,0,0,80,3.6,10,10,11.3,2100,9,999999999,139,0.1430,0,88,0.160,999.0,99.0 +1997,4,11,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-6.0,42,99400,102,1236,302,14,0,14,1700,0,1700,530,60,4.1,10,10,11.3,2100,9,999999999,139,0.1430,0,88,0.160,0.0,6.0 +1997,4,11,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,-3.0,51,99400,365,1361,309,67,0,67,7700,0,7700,2630,50,4.1,10,10,11.3,2100,9,999999999,139,0.1430,0,88,0.160,999.0,99.0 +1997,4,11,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,-3.0,44,99400,616,1361,303,278,136,216,30000,13700,23800,5220,80,4.6,9,8,11.3,2100,9,999999999,139,0.1430,0,88,0.160,999.0,99.0 +1997,4,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,-5.0,35,99300,834,1361,300,437,173,331,47200,18000,36100,9070,90,6.2,9,7,11.3,2100,9,999999999,139,0.1430,0,88,0.160,999.0,99.0 +1997,4,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,-6.0,26,99300,1005,1361,317,392,128,298,43400,13600,33300,9560,100,5.7,9,8,11.3,7500,9,999999999,139,0.1430,0,88,0.160,999.0,99.0 +1997,4,11,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,-7.0,23,99100,1116,1361,309,773,636,252,81100,64200,28400,9420,130,4.6,5,5,11.3,77777,9,999999999,150,0.1430,0,88,0.160,999.0,99.0 +1997,4,11,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-4.0,26,99000,1159,1361,333,409,212,228,46400,23100,26600,8960,80,3.1,9,8,11.3,7500,9,999999999,150,0.1430,0,88,0.160,0.0,6.0 +1997,4,11,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,-3.0,25,99000,1133,1361,338,719,355,423,77600,38400,45600,16730,130,6.2,9,7,11.3,7500,9,999999999,150,0.1430,0,88,0.160,999.0,99.0 +1997,4,11,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,-2.0,25,98900,1038,1361,350,325,103,247,36500,11000,28100,8250,110,5.7,9,8,11.3,7500,9,999999999,150,0.1430,0,88,0.160,999.0,99.0 +1997,4,11,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,-3.0,23,98700,881,1361,343,396,196,268,43400,20700,30000,7610,120,5.1,9,7,11.3,7500,9,999999999,150,0.1430,0,88,0.160,999.0,99.0 +1997,4,11,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,-2.0,25,98700,673,1361,350,207,163,126,22900,16900,14500,2620,100,4.1,9,8,11.3,7500,9,999999999,150,0.1430,0,88,0.160,999.0,99.0 +1997,4,11,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,-2.0,25,98500,429,1361,344,164,89,135,17900,8200,15300,3510,140,4.1,9,7,11.3,7500,9,999999999,150,0.1430,0,88,0.160,999.0,99.0 +1997,4,11,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.0,-2.0,28,98400,166,1361,340,64,32,60,7000,2300,6700,1310,100,4.6,9,8,11.3,6000,9,999999999,160,0.1430,0,88,0.160,0.0,6.0 +1997,4,11,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,-2.0,30,98500,3,215,352,0,0,0,0,0,0,0,90,4.6,10,10,11.3,6000,9,999999999,160,0.1430,0,88,0.160,999.0,99.0 +1997,4,11,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,-2.0,30,98400,0,0,352,0,0,0,0,0,0,0,90,5.1,10,10,11.3,6000,9,999999999,160,0.1430,0,88,0.160,999.0,99.0 +1997,4,11,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,-3.0,30,98300,0,0,346,0,0,0,0,0,0,0,120,7.7,10,10,11.3,6000,9,999999999,160,0.1430,0,88,0.160,999.0,99.0 +1997,4,11,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,-2.0,35,98300,0,0,343,0,0,0,0,0,0,0,120,5.7,10,10,11.3,2400,9,999999999,160,0.1430,0,88,0.160,999.0,99.0 +1997,4,11,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,0.0,44,98300,0,0,340,0,0,0,0,0,0,0,90,2.1,10,10,11.3,2400,9,999999999,160,0.1430,0,88,0.160,999.0,99.0 +1997,4,12,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,5.0,71,98300,0,0,337,0,0,0,0,0,0,0,70,2.1,10,10,11.3,1350,9,999999999,170,0.1440,0,88,0.160,1.0,6.0 +1997,4,12,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,6.0,87,98100,0,0,329,0,0,0,0,0,0,0,80,2.6,10,10,11.3,1200,9,999999999,170,0.1440,0,88,0.160,999.0,99.0 +1997,4,12,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,6.0,87,97900,0,0,329,0,0,0,0,0,0,0,140,1.5,10,10,11.3,1200,9,999999999,170,0.1440,0,88,0.160,999.0,99.0 +1997,4,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.0,6.0,81,97900,0,0,333,0,0,0,0,0,0,0,120,3.6,10,10,11.3,600,9,999999999,170,0.1440,0,88,0.160,0.0,3.0 +1997,4,12,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,6.0,81,97800,0,0,333,0,0,0,0,0,0,0,140,3.6,10,10,11.3,870,9,999999999,170,0.1440,0,88,0.160,999.0,99.0 +1997,4,12,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,8.0,87,97700,0,0,340,0,0,0,0,0,0,0,150,2.6,10,10,11.3,600,9,999999999,170,0.1440,0,88,0.160,999.0,99.0 +1997,4,12,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,9.8,9.1,95,97700,108,1258,341,16,0,16,1900,0,1900,600,170,2.8,10,10,11.3,500,9,999999999,170,0.1440,0,88,0.160,999.0,99.0 +1997,4,12,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,11.0,10.3,95,97700,371,1360,348,52,0,52,6100,0,6100,2150,180,2.9,10,10,11.3,400,9,999999999,170,0.1440,0,88,0.160,999.0,99.0 +1997,4,12,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,11.0,94,97600,622,1360,353,103,0,103,12200,0,12200,4590,200,3.1,10,10,4.8,300,9,999999999,170,0.1440,0,88,0.160,999.0,99.0 +1997,4,12,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.0,13.0,94,97600,840,1360,366,149,0,149,17800,0,17800,7070,210,5.1,10,10,6.4,300,9,999999999,170,0.1440,0,88,0.160,10.0,3.0 +1997,4,12,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,13.0,94,97600,1010,1360,366,184,0,184,22200,0,22200,9060,220,6.2,10,10,6.4,300,9,999999999,160,0.1440,0,88,0.160,999.0,99.0 +1997,4,12,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,13.0,94,97500,1120,1360,366,207,0,207,25200,0,25200,10290,230,4.1,10,10,3.2,240,9,999999999,160,0.1440,0,88,0.160,999.0,99.0 +1997,4,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.0,14.0,88,97500,1163,1360,377,216,0,216,26300,0,26300,10720,230,4.6,10,10,3.2,240,9,999999999,160,0.1440,0,88,0.160,10.0,6.0 +1997,4,12,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,14.0,82,97500,1136,1360,383,211,0,211,25700,0,25700,10480,240,3.6,10,10,11.3,240,9,999999999,160,0.1440,0,88,0.160,999.0,99.0 +1997,4,12,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,12.0,68,97400,1041,1360,357,571,413,254,61500,43100,28500,8290,250,5.7,9,6,11.3,450,9,999999999,150,0.1440,0,88,0.160,999.0,99.0 +1997,4,12,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,10.0,59,97400,885,1360,355,571,524,230,60700,54100,25500,5890,270,7.2,9,6,11.3,450,9,999999999,150,0.1440,0,88,0.160,999.0,99.0 +1997,4,12,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,10.0,68,97500,677,1360,345,377,298,229,40000,30800,24700,5300,260,8.2,9,6,8.0,750,9,999999999,150,0.1440,0,88,0.160,999.0,99.0 +1997,4,12,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,8.0,72,97500,433,1360,329,181,162,129,19600,15000,14800,2910,270,6.2,9,6,8.0,750,9,999999999,150,0.1440,0,88,0.160,999.0,99.0 +1997,4,12,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.0,5.0,87,97300,170,1360,323,20,0,20,2400,0,2400,770,290,7.2,10,10,3.2,300,9,999999999,139,0.1440,0,88,0.160,0.0,6.0 +1997,4,12,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,3.0,76,97600,3,238,321,0,0,0,0,0,0,0,260,6.7,10,10,3.2,360,9,999999999,139,0.1440,0,88,0.160,999.0,99.0 +1997,4,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,0.0,65,97700,0,0,313,0,0,0,0,0,0,0,270,8.7,10,10,11.3,360,9,999999999,139,0.1440,0,88,0.160,999.0,99.0 +1997,4,12,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,0.0,70,97800,0,0,308,0,0,0,0,0,0,0,270,9.3,10,10,11.3,750,9,999999999,129,0.1440,0,88,0.160,999.0,99.0 +1997,4,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-1.0,64,97800,0,0,307,0,0,0,0,0,0,0,270,6.2,10,10,11.3,750,9,999999999,129,0.1440,0,88,0.160,999.0,99.0 +1997,4,12,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,0.0,70,97800,0,0,308,0,0,0,0,0,0,0,260,7.2,10,10,11.3,750,9,999999999,129,0.1440,0,88,0.160,999.0,99.0 +1997,4,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.0,0.0,75,97800,0,0,304,0,0,0,0,0,0,0,260,8.2,10,10,11.3,750,9,999999999,129,0.1450,0,88,0.160,0.0,6.0 +1997,4,13,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,0.0,75,97800,0,0,304,0,0,0,0,0,0,0,250,7.2,10,10,9.7,750,9,999999999,120,0.1450,0,88,0.160,999.0,99.0 +1997,4,13,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,0.0,75,97800,0,0,304,0,0,0,0,0,0,0,270,9.3,10,10,11.3,540,9,999999999,120,0.1450,0,88,0.160,999.0,99.0 +1997,4,13,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.0,0.0,81,97900,0,0,299,0,0,0,0,0,0,0,270,6.7,10,10,9.7,420,9,999999999,120,0.1450,0,88,0.160,0.0,3.0 +1997,4,13,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,-1.0,74,97900,0,0,298,0,0,0,0,0,0,0,270,6.2,10,10,11.3,420,9,999999999,120,0.1450,0,88,0.160,999.0,99.0 +1997,4,13,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,0.0,81,97900,0,0,299,0,0,0,0,0,0,0,260,5.7,10,10,11.3,420,9,999999999,110,0.1450,0,88,0.160,999.0,99.0 +1997,4,13,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.0,-1.0,74,98000,114,1303,298,18,0,18,2100,0,2100,670,280,5.7,10,10,11.3,420,9,999999999,110,0.1450,0,88,0.160,0.0,6.0 +1997,4,13,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-2.0,73,98100,377,1359,293,60,0,60,7000,0,7000,2430,270,6.7,10,10,9.7,750,9,999999999,110,0.1450,0,88,0.160,999.0,99.0 +1997,4,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-1.0,80,98100,627,1359,294,120,0,120,14100,0,14100,5220,260,6.2,10,10,9.7,750,9,999999999,110,0.1450,0,88,0.160,999.0,99.0 +1997,4,13,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,-2.0,68,98200,845,1359,297,176,0,176,20800,0,20800,8120,280,6.2,10,10,11.3,750,9,999999999,110,0.1450,0,88,0.160,999.0,99.0 +1997,4,13,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,-2.0,68,98300,1014,1359,297,219,0,219,26100,0,26100,10460,290,5.7,10,10,11.3,750,9,999999999,110,0.1450,0,88,0.160,999.0,99.0 +1997,4,13,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,-2.0,68,98300,1124,1359,297,246,0,246,29600,0,29600,11850,270,7.7,10,10,11.3,750,9,999999999,100,0.1450,0,88,0.160,999.0,99.0 +1997,4,13,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.0,-2.0,64,98400,1167,1359,302,257,0,257,31000,0,31000,12360,280,6.2,10,10,11.3,840,9,999999999,100,0.1450,0,88,0.160,0.0,6.0 +1997,4,13,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-2.0,59,98400,1140,1359,306,250,0,250,30100,0,30100,12030,270,6.7,10,10,11.3,840,9,999999999,100,0.1450,0,88,0.160,999.0,99.0 +1997,4,13,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-1.0,69,98500,1045,1359,303,226,0,226,27000,0,27000,10840,300,6.2,10,10,11.3,840,9,999999999,100,0.1450,0,88,0.160,999.0,99.0 +1997,4,13,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.0,-1.0,69,98500,888,1359,303,187,0,187,22200,0,22200,8710,280,6.2,10,10,11.3,840,9,999999999,100,0.1450,0,88,0.160,0.0,3.0 +1997,4,13,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-2.0,64,98600,680,1359,302,134,0,134,15700,0,15700,5910,300,4.6,10,10,11.3,840,9,999999999,100,0.1450,0,88,0.160,999.0,99.0 +1997,4,13,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,0.0,75,98700,436,1359,304,74,0,74,8600,0,8600,3040,310,4.1,10,10,11.3,840,9,999999999,100,0.1450,0,88,0.160,999.0,99.0 +1997,4,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.0,0.0,81,98800,174,1359,291,72,13,70,7700,300,7600,1860,300,2.1,9,9,11.3,1800,9,999999999,100,0.1450,0,88,0.160,0.0,6.0 +1997,4,13,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-1.0,80,98900,4,261,286,0,0,0,0,0,0,0,280,2.1,9,9,11.3,1800,9,999999999,89,0.1450,0,88,0.160,999.0,99.0 +1997,4,13,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-1.0,80,98900,0,0,270,0,0,0,0,0,0,0,250,2.1,5,5,11.3,77777,9,999999999,89,0.1450,0,88,0.160,999.0,99.0 +1997,4,13,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-2.0,85,99000,0,0,255,0,0,0,0,0,0,0,210,2.6,2,2,11.3,77777,9,999999999,89,0.1450,0,88,0.160,999.0,99.0 +1997,4,13,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-1.0,86,99000,0,0,251,0,0,0,0,0,0,0,200,1.5,0,0,11.3,77777,9,999999999,89,0.1450,0,88,0.160,999.0,99.0 +1997,4,13,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-2.0,85,99000,0,0,247,0,0,0,0,0,0,0,200,2.6,0,0,11.3,77777,9,999999999,89,0.1450,0,88,0.160,999.0,99.0 +1997,4,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.0,-2.0,92,99100,0,0,243,0,0,0,0,0,0,0,240,1.0,0,0,11.3,77777,9,999999999,89,0.1460,0,88,0.160,0.0,6.0 +1997,4,14,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-2.0,92,99100,0,0,243,0,0,0,0,0,0,0,220,2.1,0,0,11.3,77777,9,999999999,89,0.1460,0,88,0.160,999.0,99.0 +1997,4,14,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-3.0,85,99100,0,0,242,0,0,0,0,0,0,0,210,2.1,0,0,11.3,77777,9,999999999,80,0.1460,0,88,0.160,999.0,99.0 +1997,4,14,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-3.0,92,99100,0,0,239,0,0,0,0,0,0,0,210,2.1,0,0,11.3,77777,9,999999999,80,0.1460,0,88,0.160,999.0,99.0 +1997,4,14,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-3.0,100,99200,0,0,235,0,0,0,0,0,0,0,210,1.5,0,0,11.3,77777,9,999999999,80,0.1460,0,88,0.160,999.0,99.0 +1997,4,14,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.0,-4.0,100,99200,0,0,231,0,0,0,0,0,0,0,230,0.5,0,0,8.0,77777,9,999999999,80,0.1460,0,88,0.160,999.0,99.0 +1997,4,14,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.0,-3.0,92,99300,120,1325,239,44,211,25,4600,11500,3500,450,60,1.0,0,0,6.4,77777,9,999999999,80,0.1460,0,88,0.160,0.0,6.0 +1997,4,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-1.0,86,99400,383,1359,251,223,590,57,23400,51500,8900,1090,60,0.5,0,0,9.7,77777,9,999999999,80,0.1460,0,88,0.160,999.0,99.0 +1997,4,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-3.0,59,99500,633,1359,260,436,760,82,45600,73800,11100,1710,330,1.5,0,0,11.3,77777,9,999999999,80,0.1460,0,88,0.160,999.0,99.0 +1997,4,14,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,-6.0,37,99500,850,1359,274,585,762,109,61700,76200,14000,2610,340,1.0,3,1,11.3,77777,9,999999999,80,0.1460,0,88,0.160,999.0,99.0 +1997,4,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,-8.0,31,99600,1019,1359,272,732,820,117,78500,83100,16100,3590,260,2.1,2,1,11.3,77777,9,999999999,80,0.1460,0,88,0.160,999.0,99.0 +1997,4,14,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,-8.0,29,99500,1128,1359,276,827,798,164,86800,80200,20000,5970,300,2.1,3,1,11.3,77777,9,999999999,80,0.1460,0,88,0.160,999.0,99.0 +1997,4,14,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-5.0,33,99500,1171,1359,287,912,909,129,94000,91000,15300,4500,230,3.1,2,1,11.3,77777,9,999999999,80,0.1460,0,88,0.160,0.0,6.0 +1997,4,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,-5.0,33,99500,1143,1359,294,773,712,174,83500,73300,21700,7280,230,2.6,5,3,11.3,77777,9,999999999,80,0.1460,0,88,0.160,999.0,99.0 +1997,4,14,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,-5.0,31,99400,1048,1359,295,769,776,169,82300,79500,20800,5640,260,3.1,5,2,11.3,77777,9,999999999,80,0.1460,0,88,0.160,999.0,99.0 +1997,4,14,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,-5.0,29,99400,891,1359,302,619,587,234,65800,60600,26000,6060,240,2.6,5,3,11.3,77777,9,999999999,80,0.1460,0,88,0.160,999.0,99.0 +1997,4,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,-4.0,33,99400,684,1359,296,399,521,136,43100,52400,16700,2820,310,2.1,5,2,11.3,77777,9,999999999,80,0.1460,0,88,0.160,999.0,99.0 +1997,4,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,-4.0,36,99400,440,1359,288,256,580,67,26700,52700,9600,1300,220,1.5,3,1,11.3,77777,9,999999999,89,0.1460,0,88,0.160,999.0,99.0 +1997,4,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.0,-5.0,35,99400,178,1359,283,74,297,35,7500,18800,5100,620,220,1.0,2,1,11.3,77777,9,999999999,89,0.1460,0,88,0.160,0.0,6.0 +1997,4,14,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,-3.0,44,99400,5,283,281,0,6,0,0,0,0,0,240,1.0,3,1,11.3,77777,9,999999999,89,0.1460,0,88,0.160,999.0,99.0 +1997,4,14,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,-3.0,51,99400,0,0,273,0,0,0,0,0,0,0,310,1.0,2,1,11.3,77777,9,999999999,89,0.1460,0,88,0.160,999.0,99.0 +1997,4,14,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-3.0,59,99400,0,0,265,0,0,0,0,0,0,0,50,1.5,3,1,11.3,77777,9,999999999,89,0.1460,0,88,0.160,999.0,99.0 +1997,4,14,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-3.0,59,99400,0,0,260,0,0,0,0,0,0,0,90,0.5,0,0,11.3,77777,9,999999999,89,0.1460,0,88,0.160,999.0,99.0 +1997,4,14,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-3.0,67,99400,0,0,253,0,0,0,0,0,0,0,50,1.5,0,0,11.3,77777,9,999999999,89,0.1460,0,88,0.160,999.0,99.0 +1997,4,15,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.0,-2.0,73,99400,0,0,254,0,0,0,0,0,0,0,360,1.0,0,0,11.3,77777,9,999999999,89,0.1470,0,88,0.160,0.0,6.0 +1997,4,15,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-1.0,80,99400,0,0,255,0,0,0,0,0,0,0,40,1.0,0,0,11.3,77777,9,999999999,89,0.1470,0,88,0.160,999.0,99.0 +1997,4,15,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-2.0,73,99400,0,0,254,0,0,0,0,0,0,0,100,1.5,0,0,11.3,77777,9,999999999,89,0.1470,0,88,0.160,999.0,99.0 +1997,4,15,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-3.0,67,99400,0,0,253,0,0,0,0,0,0,0,70,1.0,0,0,11.3,77777,9,999999999,89,0.1470,0,88,0.160,999.0,99.0 +1997,4,15,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-3.0,72,99400,0,0,249,0,0,0,0,0,0,0,340,0.5,0,0,11.3,77777,9,999999999,89,0.1470,0,88,0.160,999.0,99.0 +1997,4,15,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-3.0,72,99500,0,11,249,0,0,0,0,0,0,0,60,0.5,0,0,11.3,77777,9,999999999,89,0.1470,0,88,0.160,999.0,99.0 +1997,4,15,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.0,-4.0,67,99500,126,1358,248,49,247,26,5000,13300,3700,460,90,1.0,0,0,11.3,77777,9,999999999,89,0.1470,0,88,0.160,0.0,6.0 +1997,4,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,-1.0,60,99700,389,1358,270,231,615,54,23700,54200,8100,1050,240,1.5,0,0,11.3,77777,9,999999999,89,0.1470,0,88,0.160,999.0,99.0 +1997,4,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,-2.0,45,99700,638,1358,281,443,776,78,46600,75600,10900,1670,220,1.5,0,0,11.3,77777,9,999999999,100,0.1470,0,88,0.160,999.0,99.0 +1997,4,15,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,-3.0,36,99700,854,1358,288,636,857,96,67900,86200,13600,2410,250,2.6,0,0,11.3,77777,9,999999999,100,0.1470,0,88,0.160,999.0,99.0 +1997,4,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,-5.0,29,99700,1023,1358,290,789,902,109,81700,90100,13700,2850,240,4.1,0,0,11.3,77777,9,999999999,100,0.1470,0,88,0.160,999.0,99.0 +1997,4,15,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,-4.0,27,99700,1132,1358,309,653,521,218,69300,53000,24900,8700,240,5.7,2,2,11.3,77777,9,999999999,100,0.1470,0,88,0.160,999.0,99.0 +1997,4,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.0,-3.0,30,99600,1174,1358,313,820,644,263,86300,65100,29900,11700,260,3.6,3,3,11.3,77777,9,999999999,110,0.1470,0,88,0.160,0.0,6.0 +1997,4,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,-4.0,26,99500,1147,1358,313,857,813,170,89800,81700,20600,6490,240,4.1,2,2,11.3,77777,9,999999999,110,0.1470,0,88,0.160,999.0,99.0 +1997,4,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,-3.0,26,99500,1051,1358,322,732,728,168,78500,74600,20600,5660,210,2.1,3,3,11.3,77777,9,999999999,110,0.1470,0,88,0.160,999.0,99.0 +1997,4,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,-1.0,31,99400,895,1358,321,639,732,157,67700,74100,18700,4080,280,3.6,2,2,11.3,77777,9,999999999,110,0.1470,0,88,0.160,999.0,99.0 +1997,4,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,-2.0,30,99400,687,1358,319,450,657,117,47300,64900,14300,2510,270,3.6,3,3,11.3,77777,9,999999999,120,0.1470,0,88,0.160,999.0,99.0 +1997,4,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,-2.0,28,99400,444,1358,320,217,420,80,23500,38300,10900,1470,210,3.1,2,2,11.3,77777,9,999999999,120,0.1470,0,88,0.160,999.0,99.0 +1997,4,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.0,-2.0,37,99300,182,1358,306,58,175,35,6200,10700,4800,620,230,2.6,3,3,11.3,77777,9,999999999,120,0.1470,0,88,0.160,0.0,6.0 +1997,4,15,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,-2.0,37,99300,6,305,303,0,9,0,0,0,0,0,220,2.1,2,2,11.3,77777,9,999999999,120,0.1470,0,88,0.160,999.0,99.0 +1997,4,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,-1.0,46,99300,0,0,303,0,0,0,0,0,0,0,130,1.5,5,5,11.3,77777,9,999999999,120,0.1470,0,88,0.160,999.0,99.0 +1997,4,15,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,-1.0,52,99300,0,0,294,0,0,0,0,0,0,0,140,1.0,5,5,11.3,77777,9,999999999,129,0.1470,0,88,0.160,999.0,99.0 +1997,4,15,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,-1.0,52,99200,0,0,294,0,0,0,0,0,0,0,180,2.6,5,5,11.3,77777,9,999999999,129,0.1470,0,88,0.160,999.0,99.0 +1997,4,15,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,-1.0,52,99200,0,0,294,0,0,0,0,0,0,0,140,0.5,5,5,11.3,77777,9,999999999,129,0.1470,0,88,0.160,999.0,99.0 +1997,4,16,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.0,-1.0,49,99200,0,0,299,0,0,0,0,0,0,0,120,1.5,5,5,11.3,77777,9,999999999,129,0.1480,0,88,0.160,0.0,6.0 +1997,4,16,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,-1.0,52,99100,0,0,294,0,0,0,0,0,0,0,160,1.5,5,5,11.3,77777,9,999999999,139,0.1480,0,88,0.160,999.0,99.0 +1997,4,16,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,-2.0,48,99000,0,0,293,0,0,0,0,0,0,0,180,2.1,5,5,11.3,77777,9,999999999,139,0.1480,0,88,0.160,999.0,99.0 +1997,4,16,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,-1.0,52,99000,0,0,312,0,0,0,0,0,0,0,170,3.1,9,9,11.3,7500,9,999999999,139,0.1480,0,88,0.160,999.0,99.0 +1997,4,16,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,-1.0,56,99000,0,0,290,0,0,0,0,0,0,0,140,2.1,5,5,11.3,77777,9,999999999,139,0.1480,0,88,0.160,999.0,99.0 +1997,4,16,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,-1.0,52,98900,0,34,312,0,0,0,0,0,0,0,150,2.1,9,9,11.3,7500,9,999999999,150,0.1480,0,88,0.160,999.0,99.0 +1997,4,16,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.0,0.0,53,99000,132,1357,317,23,16,22,2600,1000,2500,560,150,2.1,9,9,11.3,7500,9,999999999,150,0.1480,0,88,0.160,0.0,6.0 +1997,4,16,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,0.0,44,98900,395,1357,331,90,59,73,10100,5400,8500,1620,210,4.6,9,9,11.3,7500,9,999999999,150,0.1480,0,88,0.160,999.0,99.0 +1997,4,16,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,1.0,44,98900,643,1357,346,134,0,134,15600,0,15600,5760,230,5.1,10,10,11.3,3000,9,999999999,139,0.1480,0,88,0.160,999.0,99.0 +1997,4,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.0,2.0,47,98900,859,1357,348,187,0,187,22100,0,22100,8590,260,5.1,10,10,11.3,1200,9,999999999,139,0.1480,0,88,0.160,0.0,3.0 +1997,4,16,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,5.0,66,98900,1027,1357,342,228,0,228,27200,0,27200,10860,230,4.6,10,10,11.3,1500,9,999999999,139,0.1480,0,88,0.160,999.0,99.0 +1997,4,16,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,5.0,55,98800,1136,1357,346,565,93,487,62200,9700,54100,19650,250,5.7,9,9,11.3,1800,9,999999999,139,0.1480,0,88,0.160,999.0,99.0 +1997,4,16,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.0,7.0,67,98800,1178,1357,354,265,0,265,31900,0,31900,12690,240,5.1,10,10,11.3,2100,9,999999999,139,0.1480,0,88,0.160,0.0,6.0 +1997,4,16,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,8.0,72,98800,1150,1357,345,448,147,324,50000,15700,36600,13040,220,5.1,9,9,11.3,900,9,999999999,129,0.1480,0,88,0.160,999.0,99.0 +1997,4,16,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,7.0,63,98700,1054,1357,349,497,119,404,54700,12300,45100,15210,220,5.1,9,9,11.3,4500,9,999999999,129,0.1480,0,88,0.160,999.0,99.0 +1997,4,16,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.0,7.0,63,98700,898,1357,349,260,74,210,28600,7500,23700,7570,230,4.6,9,9,11.3,2100,9,999999999,129,0.1480,0,88,0.160,0.0,3.0 +1997,4,16,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,6.0,59,98600,691,1357,348,288,2,287,31900,200,31800,9880,240,5.1,9,9,11.3,2100,9,999999999,129,0.1480,0,88,0.160,999.0,99.0 +1997,4,16,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,4.0,54,98600,448,1357,340,124,0,124,13900,0,13900,4530,270,4.1,9,9,11.3,2100,9,999999999,129,0.1480,0,88,0.160,999.0,99.0 +1997,4,16,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.0,2.0,47,98600,186,1357,319,72,223,41,7500,13800,5600,730,290,2.6,5,5,11.3,77777,9,999999999,120,0.1480,0,88,0.160,0.0,6.0 +1997,4,16,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,0.0,47,98600,6,328,308,0,7,0,0,0,0,0,300,4.1,5,5,11.3,77777,9,999999999,120,0.1480,0,88,0.160,999.0,99.0 +1997,4,16,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,-1.0,46,98600,0,0,295,0,0,0,0,0,0,0,310,5.1,2,2,11.3,77777,9,999999999,120,0.1480,0,88,0.160,999.0,99.0 +1997,4,16,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,-2.0,48,98600,0,0,289,0,0,0,0,0,0,0,310,4.6,3,3,11.3,77777,9,999999999,120,0.1480,0,88,0.160,999.0,99.0 +1997,4,16,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,-1.0,60,98600,0,0,279,0,0,0,0,0,0,0,320,3.1,2,2,11.3,77777,9,999999999,110,0.1480,0,88,0.160,999.0,99.0 +1997,4,16,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,0.0,65,98600,0,0,283,0,0,0,0,0,0,0,330,3.6,3,3,11.3,77777,9,999999999,110,0.1480,0,88,0.160,999.0,99.0 +1997,4,17,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.0,-1.0,69,98600,0,0,278,0,0,0,0,0,0,0,310,3.1,5,5,11.3,77777,9,999999999,110,0.1490,0,88,0.160,0.0,6.0 +1997,4,17,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,-2.0,68,98600,0,0,273,0,0,0,0,0,0,0,330,5.1,5,5,11.3,77777,9,999999999,110,0.1490,0,88,0.160,999.0,99.0 +1997,4,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-3.0,67,98500,0,0,268,0,0,0,0,0,0,0,310,4.1,5,5,11.3,77777,9,999999999,110,0.1490,0,88,0.160,999.0,99.0 +1997,4,17,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-4.0,67,98500,0,0,279,0,0,0,0,0,0,0,320,5.1,9,9,11.3,1800,9,999999999,100,0.1490,0,88,0.160,999.0,99.0 +1997,4,17,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-4.0,72,98500,0,0,259,0,0,0,0,0,0,0,320,4.6,5,5,11.3,77777,9,999999999,100,0.1490,0,88,0.160,999.0,99.0 +1997,4,17,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-4.0,72,98500,0,79,275,0,0,0,0,0,0,0,310,4.1,9,9,11.3,1800,9,999999999,100,0.1490,0,88,0.160,999.0,99.0 +1997,4,17,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.0,-3.0,72,98600,138,1356,280,28,38,24,3100,2100,2900,500,310,3.6,9,9,11.3,1500,9,999999999,100,0.1490,0,88,0.160,0.0,6.0 +1997,4,17,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-4.0,62,98600,400,1356,283,61,51,46,7000,4700,5600,1020,330,3.6,9,9,11.3,1500,9,999999999,100,0.1490,0,88,0.160,999.0,99.0 +1997,4,17,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-4.0,62,98600,649,1356,283,220,57,193,24200,5600,21500,5740,330,4.6,9,9,11.3,2100,9,999999999,100,0.1490,0,88,0.160,999.0,99.0 +1997,4,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.0,-3.0,67,98700,864,1356,292,185,0,185,21900,0,21900,8540,330,4.6,10,10,11.3,960,9,999999999,100,0.1490,0,88,0.160,0.0,3.0 +1997,4,17,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,-2.0,68,98700,1031,1356,297,227,0,227,27100,0,27100,10840,330,5.1,10,10,9.7,960,9,999999999,100,0.1490,0,88,0.160,999.0,99.0 +1997,4,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,-2.0,68,98700,1140,1356,297,253,0,253,30400,0,30400,12150,310,6.2,10,10,11.3,900,9,999999999,100,0.1490,0,88,0.160,999.0,99.0 +1997,4,17,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.0,-2.0,64,98700,1181,1356,293,565,161,424,62000,17100,47000,18290,310,5.7,9,9,11.3,900,9,999999999,100,0.1490,0,88,0.160,0.0,6.0 +1997,4,17,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,-3.0,63,98700,1153,1356,296,257,0,257,30900,0,30900,12330,310,7.7,10,10,11.3,900,9,999999999,100,0.1490,0,88,0.160,999.0,99.0 +1997,4,17,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-4.0,54,98600,1058,1356,299,233,0,233,27900,0,27900,11160,320,5.7,10,10,11.3,900,9,999999999,100,0.1490,0,88,0.160,999.0,99.0 +1997,4,17,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.0,-3.0,59,98600,901,1356,292,488,215,344,52800,22600,37800,9960,310,5.1,9,9,11.3,900,9,999999999,100,0.1490,0,88,0.160,0.0,3.0 +1997,4,17,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-4.0,54,98600,694,1356,291,193,123,130,21800,12800,15200,3260,320,6.2,9,9,11.3,900,9,999999999,100,0.1490,0,88,0.160,999.0,99.0 +1997,4,17,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-3.0,59,98600,451,1356,301,83,0,83,9600,0,9600,3390,310,6.7,10,10,11.3,900,9,999999999,100,0.1490,0,88,0.160,999.0,99.0 +1997,4,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.0,-2.0,68,98600,190,1356,297,27,0,27,3100,0,3100,1030,300,4.6,10,10,11.3,1500,9,999999999,100,0.1490,0,88,0.160,0.0,6.0 +1997,4,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,-1.0,74,98600,7,350,298,0,0,0,0,0,0,0,300,4.1,10,10,11.3,1500,9,999999999,100,0.1490,0,88,0.160,999.0,99.0 +1997,4,17,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,-2.0,68,98600,0,0,297,0,0,0,0,0,0,0,310,1.5,10,10,11.3,1500,9,999999999,100,0.1490,0,88,0.160,999.0,99.0 +1997,4,17,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.0,-2.0,73,98600,0,0,293,0,0,0,0,0,0,0,310,4.6,10,10,11.3,1500,9,999999999,100,0.1490,0,88,0.160,0.0,3.0 +1997,4,17,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-2.0,73,98600,0,0,293,0,0,0,0,0,0,0,310,5.1,10,10,11.3,1500,9,999999999,100,0.1490,0,88,0.160,999.0,99.0 +1997,4,17,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-2.0,73,98600,0,0,285,0,0,0,0,0,0,0,300,4.1,9,9,11.3,2100,9,999999999,100,0.1490,0,88,0.160,999.0,99.0 +1997,4,18,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-3.0,78,98500,0,0,260,0,0,0,0,0,0,0,270,2.6,5,5,11.3,77777,9,999999999,100,0.1490,0,88,0.160,0.0,6.0 +1997,4,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-3.0,78,98400,0,0,260,0,0,0,0,0,0,0,260,2.1,5,5,11.3,77777,9,999999999,100,0.1490,0,88,0.160,999.0,99.0 +1997,4,18,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-4.0,78,98400,0,0,249,0,0,0,0,0,0,0,300,2.6,2,2,11.3,77777,9,999999999,100,0.1490,0,88,0.160,999.0,99.0 +1997,4,18,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-5.0,78,98400,0,0,247,0,0,0,0,0,0,0,300,2.6,3,3,11.3,77777,9,999999999,100,0.1490,0,88,0.160,999.0,99.0 +1997,4,18,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-6.0,71,98400,0,0,236,0,0,0,0,0,0,0,310,3.1,0,0,11.3,77777,9,999999999,100,0.1490,0,88,0.160,999.0,99.0 +1997,4,18,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-6.0,71,98400,1,102,236,0,0,0,0,0,0,0,310,3.6,0,0,11.3,77777,9,999999999,100,0.1490,0,88,0.160,999.0,99.0 +1997,4,18,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.0,-6.0,66,98500,144,1355,247,51,178,32,5300,9500,4300,570,320,4.1,2,2,11.3,77777,9,999999999,100,0.1490,0,88,0.160,0.0,6.0 +1997,4,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-6.0,56,98500,406,1355,257,174,275,92,18400,24300,11100,1710,320,5.1,3,3,11.3,77777,9,999999999,100,0.1490,0,88,0.160,999.0,99.0 +1997,4,18,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,-4.0,58,98500,654,1355,264,429,673,104,45200,66200,13200,2200,320,4.6,2,2,11.3,77777,9,999999999,100,0.1490,0,88,0.160,999.0,99.0 +1997,4,18,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-3.0,55,98500,869,1355,276,609,693,165,64000,69800,19200,4110,310,4.1,3,3,11.3,77777,9,999999999,100,0.1490,0,88,0.160,999.0,99.0 +1997,4,18,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,-5.0,40,98500,1036,1355,286,657,491,281,70000,51100,30900,9190,320,4.1,5,5,11.3,77777,9,999999999,100,0.1490,0,88,0.160,999.0,99.0 +1997,4,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,-9.0,26,98500,1143,1355,286,789,610,274,82500,61400,30600,11090,320,5.1,5,5,11.3,77777,9,999999999,100,0.1490,0,88,0.160,999.0,99.0 +1997,4,18,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-9.0,23,98400,1184,1355,294,731,430,355,77800,44900,38400,17080,300,5.7,5,5,11.3,77777,9,999999999,100,0.1490,0,88,0.160,0.0,6.0 +1997,4,18,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,-11.0,18,98300,1156,1355,296,849,727,228,90000,74000,26800,9770,300,4.1,5,5,11.3,77777,9,999999999,100,0.1490,0,88,0.160,999.0,99.0 +1997,4,18,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,-9.0,20,98300,1061,1355,302,648,550,218,68300,55700,24600,7320,300,5.1,5,5,11.3,77777,9,999999999,100,0.1490,0,88,0.160,999.0,99.0 +1997,4,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,-8.0,22,98200,904,1355,304,439,334,216,47100,34600,24000,5650,320,4.6,5,5,11.3,77777,9,999999999,100,0.1490,0,88,0.160,999.0,99.0 +1997,4,18,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,-8.0,22,98100,697,1355,322,299,54,271,32800,5400,29900,7780,320,5.1,9,9,11.3,6000,9,999999999,100,0.1490,0,88,0.160,999.0,99.0 +1997,4,18,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,-6.0,26,98100,455,1355,333,94,0,94,10800,0,10800,3750,320,4.1,10,10,11.3,6000,9,999999999,100,0.1490,0,88,0.160,999.0,99.0 +1997,4,18,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.0,-7.0,26,98100,194,1355,327,39,0,39,4400,0,4400,1390,280,3.6,10,10,11.3,6000,9,999999999,100,0.1490,0,88,0.160,0.0,6.0 +1997,4,18,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,-6.0,30,98000,8,373,324,0,0,0,0,0,0,0,300,2.1,10,10,11.3,6000,9,999999999,100,0.1490,0,88,0.160,999.0,99.0 +1997,4,18,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,-6.0,30,98000,0,0,324,0,0,0,0,0,0,0,310,1.5,10,10,11.3,6000,9,999999999,100,0.1490,0,88,0.160,999.0,99.0 +1997,4,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,-2.0,52,97900,0,0,315,0,0,0,0,0,0,0,230,1.0,10,10,11.3,6000,9,999999999,100,0.1490,0,88,0.160,999.0,99.0 +1997,4,18,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,6.5,-3.0,49,97900,0,0,312,0,0,0,0,0,0,0,150,1.0,10,10,11.3,6000,9,999999999,100,0.1490,0,88,0.160,999.0,99.0 +1997,4,18,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,-4.0,47,97800,0,0,308,0,0,0,0,0,0,0,60,1.0,10,10,11.3,6000,9,999999999,100,0.1490,0,88,0.160,999.0,99.0 +1997,4,19,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.0,-1.0,60,97900,0,0,312,0,0,0,0,0,0,0,140,0.5,10,10,11.3,1800,9,999999999,100,0.1500,0,88,0.160,0.0,6.0 +1997,4,19,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,-1.0,60,97800,0,0,312,0,0,0,0,0,0,0,240,1.0,10,10,11.3,1800,9,999999999,100,0.1500,0,88,0.160,999.0,99.0 +1997,4,19,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,5.9,-0.5,63,97800,0,0,312,0,0,0,0,0,0,0,320,1.3,10,10,11.3,1800,9,999999999,100,0.1500,0,88,0.160,999.0,99.0 +1997,4,19,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,0.0,65,97700,0,0,313,0,0,0,0,0,0,0,40,1.5,10,10,11.3,1800,9,999999999,100,0.1500,0,88,0.160,999.0,99.0 +1997,4,19,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,4.7,-1.7,62,97700,0,0,290,0,0,0,0,0,0,0,190,1.5,8,8,11.3,2100,9,999999999,100,0.1500,0,88,0.160,999.0,99.0 +1997,4,19,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,3.9,-2.4,62,97800,1,124,286,0,0,0,0,0,0,0,180,2.1,8,8,11.3,2400,9,999999999,100,0.1500,0,88,0.160,999.0,99.0 +1997,4,19,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,4.1,-2.6,60,97800,150,1355,293,48,6,47,5200,0,5200,1420,210,1.6,9,9,11.3,2700,9,999999999,100,0.1500,0,88,0.160,999.0,99.0 +1997,4,19,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,6.4,-3.4,48,97800,412,1355,296,141,59,123,15400,5400,13800,3220,210,1.7,8,8,11.3,3000,9,999999999,110,0.1500,0,88,0.160,999.0,99.0 +1997,4,19,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,9.1,-2.1,44,97800,659,1355,304,261,156,185,28700,16000,20900,4560,270,2.5,7,7,11.3,3300,9,999999999,110,0.1500,0,88,0.160,999.0,99.0 +1997,4,19,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.8,-3.3,36,97800,873,1355,322,383,168,274,42000,17700,30500,7750,270,1.8,9,9,11.3,3600,9,999999999,110,0.1500,0,88,0.160,999.0,99.0 +1997,4,19,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,-5.0,31,97800,1040,1355,330,276,0,276,32500,0,32500,12630,330,2.6,10,10,11.3,3900,9,999999999,110,0.1500,0,88,0.160,999.0,99.0 +1997,4,19,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,-5.0,29,97800,1147,1355,325,499,124,394,54900,13200,43700,15830,290,2.6,9,9,11.3,6000,9,999999999,110,0.1500,0,88,0.160,999.0,99.0 +1997,4,19,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.0,-3.0,30,97800,1188,1355,337,643,107,549,70800,11200,60900,23600,20,2.1,9,9,11.3,6000,9,999999999,110,0.1500,0,88,0.160,0.0,6.0 +1997,4,19,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,-4.0,27,97800,1159,1355,336,309,86,234,35000,9300,27000,9640,280,2.1,9,9,11.3,6000,9,999999999,110,0.1500,0,88,0.160,999.0,99.0 +1997,4,19,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,-2.0,30,97800,1064,1355,343,469,218,298,51600,23600,33000,9970,340,4.1,9,9,11.3,6000,9,999999999,110,0.1500,0,88,0.160,999.0,99.0 +1997,4,19,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,-4.0,27,97800,907,1355,336,324,4,321,36900,400,36600,12980,300,3.1,9,9,11.3,3600,9,999999999,110,0.1500,0,88,0.160,999.0,99.0 +1997,4,19,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,-6.0,25,97800,701,1355,338,166,0,166,19200,0,19200,7090,340,4.1,10,10,11.3,3600,9,999999999,110,0.1500,0,88,0.160,999.0,99.0 +1997,4,19,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,-4.0,31,97900,458,1355,336,73,0,73,8600,0,8600,3070,310,3.6,10,10,11.3,2100,9,999999999,110,0.1500,0,88,0.160,999.0,99.0 +1997,4,19,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.0,-3.0,36,97900,198,1355,332,34,0,34,3900,0,3900,1250,290,3.6,10,10,11.3,2100,9,999999999,110,0.1500,0,88,0.160,0.0,6.0 +1997,4,19,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,-3.0,36,97900,9,395,323,1,0,1,0,0,0,0,310,2.6,9,9,11.3,2100,9,999999999,120,0.1500,0,88,0.160,999.0,99.0 +1997,4,19,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,0.0,50,98000,0,0,322,0,0,0,0,0,0,0,310,3.1,9,9,11.3,2100,9,999999999,120,0.1500,0,88,0.160,999.0,99.0 +1997,4,19,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,-1.0,52,98000,0,0,312,0,0,0,0,0,0,0,310,2.6,9,9,11.3,2100,9,999999999,120,0.1500,0,88,0.160,999.0,99.0 +1997,4,19,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,-1.0,60,98000,0,0,286,0,0,0,0,0,0,0,40,2.6,5,5,11.3,77777,9,999999999,120,0.1500,0,88,0.160,999.0,99.0 +1997,4,19,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-1.0,64,98000,0,0,275,0,0,0,0,0,0,0,40,0.5,2,2,11.3,77777,9,999999999,120,0.1500,0,88,0.160,999.0,99.0 +1997,4,20,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.0,-1.0,74,98000,0,0,259,0,0,0,0,0,0,0,240,1.5,0,0,11.3,77777,9,999999999,120,0.1510,0,88,0.160,0.0,6.0 +1997,4,20,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-1.0,80,98000,0,0,255,0,0,0,0,0,0,0,60,0.5,0,0,11.3,77777,9,999999999,120,0.1510,0,88,0.160,999.0,99.0 +1997,4,20,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-1.0,80,98000,0,0,255,0,0,0,0,0,0,0,40,1.5,0,0,11.3,77777,9,999999999,120,0.1510,0,88,0.160,999.0,99.0 +1997,4,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-1.0,86,97900,0,0,251,0,0,0,0,0,0,0,50,1.0,0,0,11.3,77777,9,999999999,120,0.1510,0,88,0.160,999.0,99.0 +1997,4,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-2.0,85,98000,0,0,247,0,0,0,0,0,0,0,290,1.0,0,0,11.3,77777,9,999999999,120,0.1510,0,88,0.160,999.0,99.0 +1997,4,20,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-2.0,85,98000,2,169,247,0,0,0,0,0,0,0,220,2.1,0,0,11.3,77777,9,999999999,120,0.1510,0,88,0.160,999.0,99.0 +1997,4,20,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.0,-1.0,86,98100,156,1354,256,52,129,37,5500,6900,4700,670,220,1.0,2,1,11.3,77777,9,999999999,129,0.1510,0,88,0.160,0.0,6.0 +1997,4,20,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-1.0,64,98200,417,1354,266,232,501,77,23900,44400,10200,1440,180,0.5,0,0,11.3,77777,9,999999999,129,0.1510,0,88,0.160,999.0,99.0 +1997,4,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,1.0,54,98200,664,1354,288,441,672,111,46300,66200,13800,2350,250,3.1,0,0,11.3,77777,9,999999999,129,0.1510,0,88,0.160,999.0,99.0 +1997,4,20,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,-1.0,38,98300,878,1354,304,595,694,145,63200,70400,17500,3730,220,2.6,3,1,11.3,77777,9,999999999,129,0.1510,0,88,0.160,999.0,99.0 +1997,4,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,-1.0,38,98200,1044,1354,308,762,686,233,79800,69100,26300,7500,280,4.6,5,2,11.3,77777,9,999999999,129,0.1510,0,88,0.160,999.0,99.0 +1997,4,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,-1.0,33,98200,1150,1354,322,790,607,274,82700,61100,30600,11380,260,4.1,9,4,11.3,7500,9,999999999,129,0.1510,0,88,0.160,999.0,99.0 +1997,4,20,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.0,1.0,36,98200,1191,1354,329,792,589,273,83200,59500,30800,12950,210,2.1,9,4,11.3,1800,9,999999999,139,0.1510,0,88,0.160,0.0,6.0 +1997,4,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,1.0,39,98100,1162,1354,325,808,671,232,85700,68200,27000,10150,250,4.1,9,4,11.3,1800,9,999999999,139,0.1510,0,88,0.160,999.0,99.0 +1997,4,20,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,1.0,39,98100,1067,1354,325,615,415,287,65700,43200,31500,10030,250,3.1,9,4,11.3,1800,9,999999999,139,0.1510,0,88,0.160,999.0,99.0 +1997,4,20,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,3.0,42,98000,910,1354,331,585,471,269,61600,48600,28800,7240,260,3.6,9,4,11.3,2400,9,999999999,139,0.1510,0,88,0.160,999.0,99.0 +1997,4,20,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,2.0,41,98000,704,1354,326,316,194,215,34600,20000,24100,5430,260,2.6,9,4,11.3,2400,9,999999999,139,0.1510,0,88,0.160,999.0,99.0 +1997,4,20,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,2.0,41,98000,462,1354,326,224,269,132,23800,25400,15100,2690,290,2.6,9,4,11.3,2400,9,999999999,139,0.1510,0,88,0.160,999.0,99.0 +1997,4,20,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.0,2.0,44,98000,202,1354,321,86,80,74,9200,5400,8400,1570,260,3.1,9,4,11.3,2700,9,999999999,150,0.1510,0,88,0.160,0.0,6.0 +1997,4,20,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,3.0,54,98000,11,417,313,1,1,1,0,0,0,0,250,2.1,9,4,11.3,2700,9,999999999,150,0.1510,0,88,0.160,999.0,99.0 +1997,4,20,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,3.0,58,98000,0,0,309,0,0,0,0,0,0,0,200,1.5,9,4,11.3,7500,9,999999999,150,0.1510,0,88,0.160,999.0,99.0 +1997,4,20,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,3.0,58,98000,0,0,309,0,0,0,0,0,0,0,200,1.5,9,4,11.3,7500,9,999999999,150,0.1510,0,88,0.160,999.0,99.0 +1997,4,20,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,3.0,66,98000,0,0,309,0,0,0,0,0,0,0,0,0.0,10,7,11.3,7500,9,999999999,150,0.1510,0,88,0.160,999.0,99.0 +1997,4,20,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,3.0,66,97900,0,0,314,0,0,0,0,0,0,0,70,1.0,10,8,11.3,6000,9,999999999,150,0.1510,0,88,0.160,999.0,99.0 +1997,4,21,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.0,4.0,76,97800,0,0,326,0,0,0,0,0,0,0,60,1.0,10,10,11.3,6000,9,999999999,160,0.1520,0,88,0.160,0.0,6.0 +1997,4,21,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,4.0,76,97800,0,0,326,0,0,0,0,0,0,0,30,1.5,10,10,11.3,4500,9,999999999,160,0.1520,0,88,0.160,999.0,99.0 +1997,4,21,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,4.0,81,97700,0,0,322,0,0,0,0,0,0,0,20,1.0,10,10,11.3,3900,9,999999999,160,0.1520,0,88,0.160,999.0,99.0 +1997,4,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,5.0,81,97700,0,0,327,0,0,0,0,0,0,0,240,1.0,10,10,11.3,3000,9,999999999,160,0.1520,0,88,0.160,999.0,99.0 +1997,4,21,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,5.0,81,97700,0,0,327,0,0,0,0,0,0,0,230,0.5,10,10,11.3,1500,9,999999999,160,0.1520,0,88,0.160,999.0,99.0 +1997,4,21,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,6.0,81,97800,2,192,333,0,0,0,0,0,0,0,240,2.6,10,10,11.3,1500,9,999999999,170,0.1520,0,88,0.160,999.0,99.0 +1997,4,21,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,7.0,82,97800,161,1353,339,36,0,36,4000,0,4000,1230,220,3.1,10,10,8.0,3600,9,999999999,170,0.1520,0,88,0.160,0.0,6.0 +1997,4,21,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,7.0,82,97800,422,1353,339,82,0,82,9500,0,9500,3270,280,2.6,10,10,8.0,3600,9,999999999,170,0.1520,0,88,0.160,999.0,99.0 +1997,4,21,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,7.0,82,97800,669,1353,339,156,0,156,18100,0,18100,6610,280,2.1,10,10,9.7,3600,9,999999999,170,0.1520,0,88,0.160,999.0,99.0 +1997,4,21,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.0,7.0,76,97800,882,1353,344,180,0,180,21400,0,21400,8440,300,2.1,10,10,11.3,1200,9,999999999,160,0.1520,0,88,0.160,0.0,3.0 +1997,4,21,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,6.0,67,97800,1047,1353,348,223,0,223,26700,0,26700,10750,260,1.0,10,10,11.3,1200,9,999999999,160,0.1520,0,88,0.160,999.0,99.0 +1997,4,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,5.0,58,97800,1154,1353,342,448,144,325,49900,15400,36700,13270,230,1.0,9,9,11.3,1200,9,999999999,160,0.1520,0,88,0.160,999.0,99.0 +1997,4,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.0,6.0,59,97800,1194,1353,357,260,0,260,31400,0,31400,12540,180,1.0,10,10,11.3,1800,9,999999999,160,0.1520,0,88,0.160,0.0,6.0 +1997,4,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,6.0,59,97700,1165,1353,357,253,0,253,30500,0,30500,12210,130,2.6,10,10,11.3,2100,9,999999999,160,0.1520,0,88,0.160,999.0,99.0 +1997,4,21,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,5.0,51,97700,1069,1353,361,229,0,229,27500,0,27500,11060,140,2.6,10,10,11.3,2100,9,999999999,160,0.1520,0,88,0.160,999.0,99.0 +1997,4,21,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,4.0,51,97600,913,1353,355,188,0,188,22400,0,22400,8880,220,1.5,10,10,11.3,2100,9,999999999,160,0.1520,0,88,0.160,999.0,99.0 +1997,4,21,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,5.0,55,97600,707,1353,356,135,0,135,15900,0,15900,6060,20,1.0,10,10,11.3,1500,9,999999999,160,0.1520,0,88,0.160,999.0,99.0 +1997,4,21,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,5.0,55,97700,466,1353,356,75,0,75,8800,0,8800,3160,360,1.5,10,10,11.3,1500,9,999999999,160,0.1520,0,88,0.160,999.0,99.0 +1997,4,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.0,6.0,62,97700,206,1353,353,35,0,35,4000,0,4000,1300,50,1.5,10,10,11.3,1500,9,999999999,160,0.1520,0,88,0.160,0.0,6.0 +1997,4,21,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,6.0,62,97700,12,440,353,1,0,1,0,0,0,0,40,1.5,10,10,11.3,1200,9,999999999,160,0.1520,0,88,0.160,999.0,99.0 +1997,4,21,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,6.0,67,97700,0,0,348,0,0,0,0,0,0,0,50,1.0,10,10,11.3,1200,9,999999999,160,0.1520,0,88,0.160,999.0,99.0 +1997,4,21,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,6.0,67,97700,0,0,348,0,0,0,0,0,0,0,30,1.5,10,10,11.3,1200,9,999999999,160,0.1520,0,88,0.160,999.0,99.0 +1997,4,21,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,6.0,67,97700,0,0,348,0,0,0,0,0,0,0,0,0.0,10,10,11.3,1200,9,999999999,160,0.1520,0,88,0.160,999.0,99.0 +1997,4,21,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,6.0,71,97700,0,0,343,0,0,0,0,0,0,0,60,1.0,10,10,11.3,1200,9,999999999,160,0.1520,0,88,0.160,999.0,99.0 +1997,4,22,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,7.0,82,97600,0,0,314,0,0,0,0,0,0,0,50,1.5,9,6,11.3,1500,9,999999999,150,0.1530,0,88,0.160,0.0,6.0 +1997,4,22,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,5.0,76,97600,0,0,308,0,0,0,0,0,0,0,310,1.0,9,6,11.3,1500,9,999999999,150,0.1530,0,88,0.160,999.0,99.0 +1997,4,22,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,5.0,76,97600,0,0,332,0,0,0,0,0,0,0,350,3.1,10,10,11.3,1500,9,999999999,150,0.1530,0,88,0.160,999.0,99.0 +1997,4,22,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,5.0,76,97600,0,0,332,0,0,0,0,0,0,0,20,2.6,10,10,11.3,1500,9,999999999,150,0.1530,0,88,0.160,999.0,99.0 +1997,4,22,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,5.0,81,97600,0,0,298,0,0,0,0,0,0,0,30,1.5,5,4,11.3,77777,9,999999999,150,0.1530,0,88,0.160,999.0,99.0 +1997,4,22,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,5.0,81,97700,3,237,327,0,0,0,0,0,0,0,310,3.1,10,10,6.4,1350,9,999999999,150,0.1530,0,88,0.160,999.0,99.0 +1997,4,22,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.0,6.0,87,97800,167,1352,304,58,42,53,6400,3000,6000,1210,300,2.6,9,6,6.4,1350,9,999999999,150,0.1530,0,88,0.160,0.0,6.0 +1997,4,22,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,6.0,81,97700,428,1352,309,202,373,84,21600,33600,11000,1550,350,3.1,9,6,9.7,1200,9,999999999,150,0.1530,0,88,0.160,999.0,99.0 +1997,4,22,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,5.0,66,97800,673,1352,311,345,261,214,36700,27000,23200,4880,330,4.1,5,4,9.7,77777,9,999999999,150,0.1530,0,88,0.160,999.0,99.0 +1997,4,22,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,4.0,62,97800,886,1352,315,461,253,295,49600,27100,31800,7990,340,3.6,9,6,9.7,960,9,999999999,150,0.1530,0,88,0.160,999.0,99.0 +1997,4,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,4.0,62,97800,1051,1352,315,544,313,300,59700,33900,33300,9870,350,6.2,9,6,11.3,750,9,999999999,150,0.1530,0,88,0.160,999.0,99.0 +1997,4,22,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,3.0,54,97800,1157,1352,313,762,684,176,82300,70400,21900,7770,350,5.7,5,4,11.3,77777,9,999999999,150,0.1530,0,88,0.160,999.0,99.0 +1997,4,22,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.0,0.0,41,97800,1197,1352,315,749,595,222,80000,60800,26100,11000,330,5.1,5,4,11.3,77777,9,999999999,139,0.1530,0,88,0.160,0.0,6.0 +1997,4,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,2.0,41,97800,1168,1352,326,755,612,226,80300,62400,26300,10140,340,4.1,5,4,11.3,77777,9,999999999,139,0.1530,0,88,0.160,999.0,99.0 +1997,4,22,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,1.0,41,97800,1072,1352,325,575,170,441,62500,18000,48200,15610,20,5.7,9,6,11.3,7500,9,999999999,139,0.1530,0,88,0.160,999.0,99.0 +1997,4,22,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,0.0,38,97800,916,1352,324,408,249,238,44700,26800,26500,6380,360,5.7,9,6,11.3,7500,9,999999999,139,0.1530,0,88,0.160,999.0,99.0 +1997,4,22,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,0.0,38,97700,710,1352,324,359,325,188,38900,34000,21000,4230,20,5.7,9,6,11.3,7500,9,999999999,139,0.1530,0,88,0.160,999.0,99.0 +1997,4,22,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,0.0,41,97600,469,1352,320,235,239,152,24700,22600,16900,3190,20,6.2,9,6,11.3,7500,9,999999999,139,0.1530,0,88,0.160,999.0,99.0 +1997,4,22,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.0,1.0,47,97600,210,1352,316,84,115,66,9000,7900,7800,1400,20,5.7,9,6,11.3,7500,9,999999999,139,0.1530,0,88,0.160,0.0,6.0 +1997,4,22,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,2.0,54,97700,13,462,338,1,0,1,0,0,0,0,30,5.7,10,10,11.3,6000,9,999999999,139,0.1530,0,88,0.160,999.0,99.0 +1997,4,22,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,9.8,2.0,58,97800,0,0,332,0,0,0,0,0,0,0,50,6.5,10,10,11.3,6000,9,999999999,139,0.1530,0,88,0.160,999.0,99.0 +1997,4,22,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,2.0,61,97800,0,0,329,0,0,0,0,0,0,0,60,7.2,10,10,11.3,6000,9,999999999,129,0.1530,0,88,0.160,999.0,99.0 +1997,4,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,2.0,70,97700,0,0,296,0,0,0,0,0,0,0,40,5.1,9,6,11.3,6000,9,999999999,129,0.1530,0,88,0.160,999.0,99.0 +1997,4,22,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,2.0,70,97700,0,0,296,0,0,0,0,0,0,0,30,4.1,9,6,11.3,6000,9,999999999,129,0.1530,0,88,0.160,999.0,99.0 +1997,4,23,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.0,2.0,75,97700,0,0,292,0,0,0,0,0,0,0,40,4.6,9,6,11.3,6000,9,999999999,129,0.1540,0,88,0.160,0.0,6.0 +1997,4,23,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,3.0,76,97600,0,0,321,0,0,0,0,0,0,0,30,5.7,10,10,11.3,6000,9,999999999,129,0.1540,0,88,0.160,999.0,99.0 +1997,4,23,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,2.0,75,97600,0,0,315,0,0,0,0,0,0,0,30,4.1,10,10,11.3,6000,9,999999999,129,0.1540,0,88,0.160,999.0,99.0 +1997,4,23,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,2.0,75,97500,0,0,315,0,0,0,0,0,0,0,40,4.6,10,10,11.3,6000,9,999999999,129,0.1540,0,88,0.160,999.0,99.0 +1997,4,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,2.0,81,97500,0,0,310,0,0,0,0,0,0,0,360,5.1,10,10,11.3,6000,9,999999999,129,0.1540,0,88,0.160,999.0,99.0 +1997,4,23,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,2.0,87,97500,4,259,306,0,0,0,0,0,0,0,360,4.1,10,10,8.0,6000,9,999999999,129,0.1540,0,88,0.160,999.0,99.0 +1997,4,23,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,3.0,87,97500,173,1352,289,52,69,43,5700,4300,5100,900,10,4.6,9,6,8.0,750,9,999999999,120,0.1540,0,88,0.160,0.0,6.0 +1997,4,23,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,3.0,76,97500,433,1352,297,144,104,111,15800,9700,12700,2500,10,4.1,9,6,9.7,810,9,999999999,120,0.1540,0,88,0.160,999.0,99.0 +1997,4,23,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,2.0,66,97500,678,1352,324,140,0,140,16400,0,16400,6120,40,6.7,10,10,11.3,690,9,999999999,120,0.1540,0,88,0.160,999.0,99.0 +1997,4,23,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,3.0,62,97600,890,1352,310,370,286,181,40300,29600,20700,4610,40,6.2,9,6,11.3,690,9,999999999,120,0.1540,0,88,0.160,999.0,99.0 +1997,4,23,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,3.0,62,97600,1055,1352,310,731,530,316,77200,55100,34100,10890,40,5.1,9,6,11.3,810,9,999999999,120,0.1540,0,88,0.160,999.0,99.0 +1997,4,23,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,3.0,51,97600,1160,1352,318,676,570,186,72800,58600,22400,8280,20,6.2,5,4,11.3,77777,9,999999999,120,0.1540,0,88,0.160,999.0,99.0 +1997,4,23,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,3.0,44,97500,1200,1352,327,872,710,242,92700,72200,28400,12070,30,6.2,5,4,11.3,77777,9,999999999,120,0.1540,0,88,0.160,0.0,6.0 +1997,4,23,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,2.0,41,97400,1171,1352,331,787,620,249,83100,62900,28500,11200,30,7.2,9,6,11.3,1200,9,999999999,120,0.1540,0,88,0.160,999.0,99.0 +1997,4,23,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,2.0,41,97400,1075,1352,331,637,254,434,69200,26900,47700,15440,360,5.7,9,6,11.3,1350,9,999999999,120,0.1540,0,88,0.160,999.0,99.0 +1997,4,23,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.0,3.0,51,97400,919,1352,349,200,0,200,23700,0,23700,9360,30,5.7,10,10,11.3,1500,9,999999999,120,0.1540,0,88,0.160,0.0,3.0 +1997,4,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,2.0,44,97500,713,1352,353,149,0,149,17500,0,17500,6590,10,4.6,10,10,11.3,2400,9,999999999,120,0.1540,0,88,0.160,999.0,99.0 +1997,4,23,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,2.0,44,97500,473,1352,353,90,0,90,10400,0,10400,3680,20,4.1,10,10,11.3,2700,9,999999999,120,0.1540,0,88,0.160,999.0,99.0 +1997,4,23,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.0,1.0,47,97500,214,1352,316,89,128,68,9500,8900,8100,1440,10,4.6,9,6,11.3,2700,9,999999999,120,0.1540,0,88,0.160,0.0,6.0 +1997,4,23,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,1.0,54,97500,14,484,297,4,21,3,0,0,0,0,360,3.6,2,2,11.3,77777,9,999999999,120,0.1540,0,88,0.160,999.0,99.0 +1997,4,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,2.0,57,97600,0,0,289,0,0,0,0,0,0,0,350,3.6,0,0,11.3,77777,9,999999999,120,0.1540,0,88,0.160,999.0,99.0 +1997,4,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,8.9,2.1,62,97600,0,0,284,0,0,0,0,0,0,0,350,3.9,0,0,11.3,77777,9,999999999,120,0.1540,0,88,0.160,999.0,99.0 +1997,4,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,2.0,66,97600,0,0,281,0,0,0,0,0,0,0,350,4.1,0,0,11.3,77777,9,999999999,120,0.1540,0,88,0.160,999.0,99.0 +1997,4,23,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,2.0,70,97600,0,0,277,0,0,0,0,0,0,0,360,3.1,0,0,11.3,77777,9,999999999,120,0.1540,0,88,0.160,999.0,99.0 +1997,4,24,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.0,2.0,75,97600,0,0,273,0,0,0,0,0,0,0,360,3.1,0,0,11.3,77777,9,999999999,120,0.1550,0,88,0.160,0.0,6.0 +1997,4,24,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,2.0,81,97600,0,0,274,0,0,0,0,0,0,0,330,2.6,3,1,11.3,77777,9,999999999,120,0.1550,0,88,0.160,999.0,99.0 +1997,4,24,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,2.0,81,97600,0,0,274,0,0,0,0,0,0,0,330,2.6,2,1,11.3,77777,9,999999999,120,0.1550,0,88,0.160,999.0,99.0 +1997,4,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,3.0,87,97600,0,0,275,0,0,0,0,0,0,0,350,3.1,3,1,11.3,77777,9,999999999,120,0.1550,0,88,0.160,999.0,99.0 +1997,4,24,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,2.0,81,97700,0,0,274,0,0,0,0,0,0,0,340,3.6,2,1,11.3,77777,9,999999999,120,0.1550,0,88,0.160,999.0,99.0 +1997,4,24,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,2.0,81,97700,5,281,274,0,5,0,0,0,0,0,350,3.1,3,1,8.0,77777,9,999999999,120,0.1550,0,88,0.160,999.0,99.0 +1997,4,24,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.0,3.0,76,97800,178,1351,283,72,249,39,7500,15000,5600,690,360,3.1,2,1,11.3,77777,9,999999999,120,0.1550,0,88,0.160,0.0,6.0 +1997,4,24,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,4.0,71,97900,438,1351,292,244,534,71,25500,48400,9800,1360,330,4.1,3,1,11.3,77777,9,999999999,120,0.1550,0,88,0.160,999.0,99.0 +1997,4,24,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,4.0,66,98000,683,1351,296,444,695,93,47500,69300,12400,2050,40,3.6,2,1,11.3,77777,9,999999999,120,0.1550,0,88,0.160,999.0,99.0 +1997,4,24,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,2.0,50,98000,894,1351,310,599,628,183,62700,63100,20800,4680,10,3.6,5,3,11.3,77777,9,999999999,120,0.1550,0,88,0.160,999.0,99.0 +1997,4,24,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,2.0,47,98000,1058,1351,317,665,560,226,69900,56600,25400,7580,350,4.1,9,4,11.3,1200,9,999999999,120,0.1550,0,88,0.160,999.0,99.0 +1997,4,24,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,2.0,50,98000,1164,1351,312,841,685,251,88800,69400,28800,11040,330,2.6,9,4,11.3,1200,9,999999999,120,0.1550,0,88,0.160,999.0,99.0 +1997,4,24,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.0,1.0,44,98100,1203,1351,337,422,81,349,46600,8300,39200,16760,40,2.6,10,9,11.3,1200,9,999999999,120,0.1550,0,88,0.160,0.0,6.0 +1997,4,24,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,4.0,62,98100,1174,1351,331,433,112,335,48200,12000,37700,14350,310,2.6,10,9,11.3,1200,9,999999999,120,0.1550,0,88,0.160,999.0,99.0 +1997,4,24,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,5.0,62,98200,1078,1351,337,553,175,413,60300,18600,45400,14770,240,3.6,10,9,11.3,1050,9,999999999,120,0.1550,0,88,0.160,999.0,99.0 +1997,4,24,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.0,4.0,62,98200,922,1351,331,201,2,199,23800,200,23700,9330,30,2.6,10,9,11.3,2100,9,999999999,120,0.1550,0,88,0.160,1.0,3.0 +1997,4,24,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,5.0,76,98300,716,1351,323,264,61,231,28900,6100,25700,7040,300,5.7,10,9,9.7,1200,9,999999999,120,0.1550,0,88,0.160,999.0,99.0 +1997,4,24,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,5.0,76,98300,476,1351,303,198,199,127,21100,19000,14400,2560,80,2.6,9,4,11.3,1200,9,999999999,120,0.1550,0,88,0.160,999.0,99.0 +1997,4,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.0,5.0,76,98300,218,1351,303,83,106,66,9000,7500,7800,1400,10,1.5,9,4,11.3,3600,9,999999999,120,0.1550,0,88,0.160,2.0,6.0 +1997,4,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,5.0,87,98400,16,507,292,2,9,2,0,0,0,0,350,1.0,5,3,11.3,77777,9,999999999,120,0.1550,0,88,0.160,999.0,99.0 +1997,4,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,4.0,93,98500,0,0,285,0,0,0,0,0,0,0,220,2.6,9,4,11.3,1050,9,999999999,120,0.1550,0,88,0.160,999.0,99.0 +1997,4,24,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,5.0,100,98500,0,0,286,0,0,0,0,0,0,0,30,0.5,9,4,1.6,1050,9,999999999,120,0.1550,0,88,0.160,999.0,99.0 +1997,4,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,3.0,93,98500,0,0,280,0,0,0,0,0,0,0,60,1.0,9,4,0.4,1500,9,999999999,120,0.1550,0,88,0.160,999.0,99.0 +1997,4,24,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,4.0,93,98600,0,0,285,0,0,0,0,0,0,0,110,0.5,9,4,0.4,1500,9,999999999,120,0.1550,0,88,0.160,999.0,99.0 +1997,4,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.0,3.0,93,98600,0,0,299,0,0,0,0,0,0,0,220,2.1,9,9,0.4,1500,9,999999999,120,0.1560,0,88,0.160,0.0,6.0 +1997,4,25,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,5.0,100,98600,0,0,314,0,0,0,0,0,0,0,220,1.5,10,10,8.0,1800,9,999999999,120,0.1560,0,88,0.160,999.0,99.0 +1997,4,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,5.0,100,98600,0,0,314,0,0,0,0,0,0,0,310,2.1,10,10,11.3,1800,9,999999999,120,0.1560,0,88,0.160,999.0,99.0 +1997,4,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,5.0,93,98700,0,0,309,0,0,0,0,0,0,0,300,1.5,9,9,11.3,2100,9,999999999,120,0.1560,0,88,0.160,999.0,99.0 +1997,4,25,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,5.0,100,98700,0,0,305,0,0,0,0,0,0,0,310,1.0,9,9,11.3,2100,9,999999999,120,0.1560,0,88,0.160,999.0,99.0 +1997,4,25,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,4.0,100,98800,6,326,300,0,0,0,0,0,0,0,230,1.0,9,9,8.0,1500,9,999999999,120,0.1560,0,88,0.160,999.0,99.0 +1997,4,25,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.0,4.0,100,98900,184,1350,279,74,159,53,7800,9400,6500,1010,200,1.0,3,3,6.4,77777,9,999999999,110,0.1560,0,88,0.160,0.0,6.0 +1997,4,25,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,6.6,4.2,85,99000,443,1350,289,213,431,71,22200,39200,9300,1370,270,1.6,3,3,6.4,77777,9,999999999,120,0.1560,0,88,0.160,999.0,99.0 +1997,4,25,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,4.0,71,99000,687,1350,299,428,572,136,44400,56100,15800,2850,340,2.1,3,3,11.3,77777,9,999999999,120,0.1560,0,88,0.160,999.0,99.0 +1997,4,25,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,5.0,66,99100,898,1350,306,627,705,158,66400,71400,18800,4150,320,3.1,2,2,11.3,77777,9,999999999,120,0.1560,0,88,0.160,999.0,99.0 +1997,4,25,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,5.0,58,99200,1062,1350,323,741,518,333,78000,53800,35500,11720,310,3.1,5,5,11.3,77777,9,999999999,120,0.1560,0,88,0.160,999.0,99.0 +1997,4,25,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,1.0,41,99200,1167,1350,342,518,118,415,56800,12600,45900,17520,330,3.6,9,9,11.3,1200,9,999999999,120,0.1560,0,88,0.160,999.0,99.0 +1997,4,25,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,1.0,39,99200,1206,1350,346,442,99,354,49300,10600,39800,16460,310,3.1,9,9,11.3,1200,9,999999999,120,0.1560,0,88,0.160,0.0,6.0 +1997,4,25,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.6,0.5,36,99200,1176,1350,349,559,115,458,61600,11900,51200,20150,320,4.4,9,9,11.3,1200,9,999999999,120,0.1560,0,88,0.160,999.0,99.0 +1997,4,25,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,0.0,34,99200,1080,1350,350,484,93,409,53300,9600,45600,15970,330,5.7,9,9,11.3,1200,9,999999999,120,0.1560,0,88,0.160,999.0,99.0 +1997,4,25,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,-3.0,26,99100,925,1350,346,350,145,251,38900,15400,28300,7450,330,6.2,9,9,11.3,1500,9,999999999,120,0.1560,0,88,0.160,999.0,99.0 +1997,4,25,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,-2.0,28,99200,719,1350,348,209,146,131,23300,15400,15100,2800,310,5.1,9,9,11.3,1200,9,999999999,120,0.1560,0,88,0.160,999.0,99.0 +1997,4,25,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,-2.0,30,99200,479,1350,343,157,43,141,17100,4100,15700,3840,290,5.7,9,9,11.3,1200,9,999999999,120,0.1560,0,88,0.160,999.0,99.0 +1997,4,25,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.0,-3.0,30,99200,221,1350,318,67,166,40,7200,11300,5300,700,320,5.1,5,5,11.3,77777,9,999999999,120,0.1560,0,88,0.160,0.0,6.0 +1997,4,25,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,-3.0,34,99300,17,529,301,3,23,2,0,0,0,0,340,3.6,2,2,11.3,77777,9,999999999,120,0.1560,0,88,0.160,999.0,99.0 +1997,4,25,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,-3.0,36,99400,0,0,288,0,0,0,0,0,0,0,330,2.1,0,0,11.3,77777,9,999999999,120,0.1560,0,88,0.160,999.0,99.0 +1997,4,25,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,-3.0,41,99400,0,0,280,0,0,0,0,0,0,0,350,2.1,0,0,11.3,77777,9,999999999,120,0.1560,0,88,0.160,999.0,99.0 +1997,4,25,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,-3.0,48,99400,0,0,272,0,0,0,0,0,0,0,30,1.0,0,0,11.3,77777,9,999999999,120,0.1560,0,88,0.160,999.0,99.0 +1997,4,25,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-3.0,59,99400,0,0,260,0,0,0,0,0,0,0,60,1.5,0,0,11.3,77777,9,999999999,120,0.1560,0,88,0.160,999.0,99.0 +1997,4,26,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.0,-2.0,68,99400,0,0,258,0,0,0,0,0,0,0,200,0.5,0,0,11.3,77777,9,999999999,120,0.1570,0,88,0.160,0.0,6.0 +1997,4,26,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-2.0,79,99500,0,0,250,0,0,0,0,0,0,0,240,1.5,0,0,11.3,77777,9,999999999,120,0.1570,0,88,0.160,999.0,99.0 +1997,4,26,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-2.0,73,99400,0,0,254,0,0,0,0,0,0,0,60,1.0,0,0,11.3,77777,9,999999999,120,0.1570,0,88,0.160,999.0,99.0 +1997,4,26,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-2.0,73,99500,0,0,254,0,0,0,0,0,0,0,30,0.5,0,0,11.3,77777,9,999999999,120,0.1570,0,88,0.160,999.0,99.0 +1997,4,26,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-2.0,85,99600,0,0,247,0,0,0,0,0,0,0,220,1.5,0,0,11.3,77777,9,999999999,129,0.1570,0,88,0.160,999.0,99.0 +1997,4,26,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-2.0,85,99600,8,349,257,0,0,0,0,0,0,0,50,1.5,3,3,11.3,77777,9,999999999,129,0.1570,0,88,0.160,999.0,99.0 +1997,4,26,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.0,0.0,87,99700,189,1349,264,61,47,54,6600,3400,6100,1280,30,1.0,2,2,11.3,77777,9,999999999,129,0.1570,0,88,0.160,0.0,6.0 +1997,4,26,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,0.0,65,99700,448,1349,304,117,27,108,12800,2500,12000,3010,350,1.0,9,9,11.3,7500,9,999999999,129,0.1570,0,88,0.160,999.0,99.0 +1997,4,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,0.0,47,99800,691,1349,326,217,46,193,23800,4600,21500,5980,30,1.5,9,9,11.3,7500,9,999999999,129,0.1570,0,88,0.160,999.0,99.0 +1997,4,26,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,-2.0,30,99800,902,1349,343,375,85,318,41200,8700,35400,10760,80,2.6,9,9,11.3,7500,9,999999999,139,0.1570,0,88,0.160,999.0,99.0 +1997,4,26,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,-2.0,28,99800,1065,1349,348,331,132,227,37500,14200,26200,7970,70,4.1,9,9,11.3,7500,9,999999999,139,0.1570,0,88,0.160,999.0,99.0 +1997,4,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,-2.0,28,99700,1170,1349,348,556,96,472,61200,10000,52500,20440,120,5.1,9,9,11.3,7500,9,999999999,150,0.1570,0,88,0.160,999.0,99.0 +1997,4,26,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.0,-1.0,27,99700,1208,1349,359,492,95,406,54300,9800,45500,19350,100,2.1,9,9,11.3,7500,9,999999999,150,0.1570,0,88,0.160,0.0,6.0 +1997,4,26,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,-2.0,25,99600,1179,1349,357,384,55,335,42400,5600,37500,15560,80,4.6,9,9,11.3,7500,9,999999999,150,0.1570,0,88,0.160,999.0,99.0 +1997,4,26,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,-1.0,26,99500,1083,1349,363,553,85,484,60700,8900,53600,18280,120,6.2,9,9,11.3,7500,9,999999999,160,0.1570,0,88,0.160,999.0,99.0 +1997,4,26,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,-2.0,24,99400,927,1349,362,394,80,339,43300,8200,37700,11600,30,3.6,9,9,11.3,7500,9,999999999,160,0.1570,0,88,0.160,999.0,99.0 +1997,4,26,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,-2.0,24,99400,722,1349,362,220,30,203,24100,3000,22500,6390,60,5.7,9,9,11.3,7500,9,999999999,160,0.1570,0,88,0.160,999.0,99.0 +1997,4,26,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,-3.0,23,99400,483,1349,356,134,33,122,14700,3100,13600,3440,90,6.2,9,9,11.3,4500,9,999999999,170,0.1570,0,88,0.160,999.0,99.0 +1997,4,26,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.0,-2.0,28,99300,225,1349,348,59,5,58,6600,100,6500,1950,100,3.6,9,9,11.3,3600,9,999999999,170,0.1570,0,88,0.160,0.0,6.0 +1997,4,26,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,-2.0,28,99300,19,551,348,3,0,3,0,0,0,0,90,3.1,9,9,11.3,3600,9,999999999,179,0.1570,0,88,0.160,999.0,99.0 +1997,4,26,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,0.0,38,99300,0,0,340,0,0,0,0,0,0,0,70,3.1,9,9,11.3,3600,9,999999999,179,0.1570,0,88,0.160,999.0,99.0 +1997,4,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,0.0,41,99200,0,0,336,0,0,0,0,0,0,0,70,3.6,9,9,11.3,3600,9,999999999,179,0.1570,0,88,0.160,999.0,99.0 +1997,4,26,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,0.0,44,99200,0,0,331,0,0,0,0,0,0,0,90,3.1,9,9,11.3,3600,9,999999999,189,0.1570,0,88,0.160,999.0,99.0 +1997,4,26,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,0.0,44,99200,0,0,331,0,0,0,0,0,0,0,70,3.1,9,9,11.3,3600,9,999999999,189,0.1570,0,88,0.160,999.0,99.0 +1997,4,27,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.0,1.0,47,99100,0,0,314,0,0,0,0,0,0,0,80,2.6,9,5,11.3,3600,9,999999999,200,0.1570,0,88,0.160,0.0,6.0 +1997,4,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,1.0,47,99000,0,0,342,0,0,0,0,0,0,0,70,4.1,10,10,11.3,3600,9,999999999,200,0.1570,0,88,0.160,999.0,99.0 +1997,4,27,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,0.0,44,98900,0,0,340,0,0,0,0,0,0,0,80,4.6,10,10,11.3,3600,9,999999999,200,0.1570,0,88,0.160,999.0,99.0 +1997,4,27,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,11.0,-0.5,45,98800,0,0,335,0,0,0,0,0,0,0,60,3.6,10,10,11.3,3300,9,999999999,209,0.1570,0,88,0.160,999.0,99.0 +1997,4,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,-1.0,46,98700,0,0,330,0,0,0,0,0,0,0,40,2.6,10,10,11.3,3000,9,999999999,209,0.1570,0,88,0.160,999.0,99.0 +1997,4,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,0.0,50,98700,9,371,331,0,0,0,0,0,0,0,60,3.1,10,10,11.3,3000,9,999999999,220,0.1570,0,88,0.160,999.0,99.0 +1997,4,27,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,0.0,50,98700,194,1349,331,36,0,36,4100,0,4100,1310,90,2.1,10,10,11.3,2400,9,999999999,220,0.1570,0,88,0.160,0.0,6.0 +1997,4,27,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,2.0,57,98700,452,1349,333,71,0,71,8400,0,8400,2990,60,2.1,10,10,11.3,2400,9,999999999,220,0.1570,0,88,0.160,999.0,99.0 +1997,4,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,3.0,58,98600,696,1349,339,130,0,130,15400,0,15400,5840,150,3.6,10,10,11.3,2100,9,999999999,220,0.1570,0,88,0.160,999.0,99.0 +1997,4,27,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,4.0,62,98500,906,1349,340,185,0,185,22000,0,22000,8740,150,3.6,10,10,11.3,1800,9,999999999,209,0.1570,0,88,0.160,999.0,99.0 +1997,4,27,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,6.0,67,98500,1068,1349,348,228,0,228,27400,0,27400,11030,140,3.1,10,10,11.3,1800,9,999999999,209,0.1570,0,88,0.160,999.0,99.0 +1997,4,27,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,6.0,67,98400,1173,1349,348,255,0,255,30800,0,30800,12310,140,3.1,10,10,11.3,1500,9,999999999,209,0.1570,0,88,0.160,999.0,99.0 +1997,4,27,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.0,7.0,71,98300,1211,1349,349,265,0,265,32100,0,32100,12780,140,3.1,10,10,11.3,1200,9,999999999,209,0.1570,0,88,0.160,0.0,6.0 +1997,4,27,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,8.0,76,98200,1181,1349,350,257,0,257,31100,0,31100,12410,130,5.1,10,10,11.3,900,9,999999999,209,0.1570,0,88,0.160,999.0,99.0 +1997,4,27,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,9.0,87,98000,1085,1349,346,232,0,232,27900,0,27900,11230,110,5.7,10,10,8.0,600,9,999999999,200,0.1570,0,88,0.160,999.0,99.0 +1997,4,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.0,10.0,94,98100,930,1349,347,191,0,191,22800,0,22800,9070,300,1.5,10,10,8.0,450,9,999999999,200,0.1570,0,88,0.160,1.0,3.0 +1997,4,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,10.0,100,98000,725,1349,343,115,0,115,13800,0,13800,5370,90,2.6,10,10,4.8,330,9,999999999,200,0.1570,0,88,0.160,999.0,99.0 +1997,4,27,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,10.0,100,97900,486,1349,343,66,0,66,7900,0,7900,2880,110,1.5,10,10,2.4,300,9,999999999,200,0.1570,0,88,0.160,999.0,99.0 +1997,4,27,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,10.0,100,97800,229,1349,343,34,0,34,4000,0,4000,1310,30,1.5,10,10,2.4,300,9,999999999,200,0.1570,0,88,0.160,3.0,6.0 +1997,4,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,10.0,100,97800,20,573,343,1,0,1,0,0,0,0,20,1.5,10,10,1.6,180,9,999999999,200,0.1570,0,88,0.160,999.0,99.0 +1997,4,27,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,10.0,100,97800,0,0,343,0,0,0,0,0,0,0,360,2.1,10,10,1.6,180,9,999999999,189,0.1570,0,88,0.160,999.0,99.0 +1997,4,27,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,10.0,100,97800,0,0,343,0,0,0,0,0,0,0,340,2.6,10,10,1.6,180,9,999999999,189,0.1570,0,88,0.160,1.0,3.0 +1997,4,27,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,9.5,9.5,100,97700,0,0,340,0,0,0,0,0,0,0,340,3.4,10,10,1.6,180,9,999999999,189,0.1570,0,88,0.160,999.0,99.0 +1997,4,27,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,9.0,100,97700,0,0,337,0,0,0,0,0,0,0,340,4.1,10,10,3.2,180,9,999999999,189,0.1570,0,88,0.160,999.0,99.0 +1997,4,28,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.0,8.0,100,97700,0,0,331,0,0,0,0,0,0,0,360,4.1,10,10,4.8,240,9,999999999,189,0.1580,0,88,0.160,1.0,6.0 +1997,4,28,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,7.0,100,97700,0,0,325,0,0,0,0,0,0,0,350,4.6,10,10,9.7,240,9,999999999,179,0.1580,0,88,0.160,999.0,99.0 +1997,4,28,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,7.0,100,97700,0,0,325,0,0,0,0,0,0,0,360,4.6,10,10,11.3,240,9,999999999,179,0.1580,0,88,0.160,999.0,99.0 +1997,4,28,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.0,7.0,100,97800,0,0,325,0,0,0,0,0,0,0,360,4.6,10,10,11.3,360,9,999999999,179,0.1580,0,88,0.160,0.0,3.0 +1997,4,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,5.0,87,97900,0,0,323,0,0,0,0,0,0,0,340,5.1,10,10,11.3,360,9,999999999,179,0.1580,0,88,0.160,999.0,99.0 +1997,4,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,5.0,87,97900,11,416,314,1,0,1,0,0,0,0,360,2.6,9,9,6.4,360,9,999999999,179,0.1580,0,88,0.160,999.0,99.0 +1997,4,28,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.0,4.0,81,98000,199,1348,313,67,10,65,7300,200,7200,1970,350,4.1,9,9,9.7,360,9,999999999,179,0.1580,0,88,0.160,0.0,6.0 +1997,4,28,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,5.0,81,98100,457,1348,318,90,39,77,10000,3600,8700,2280,360,5.1,9,9,9.7,450,9,999999999,170,0.1580,0,88,0.160,999.0,99.0 +1997,4,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,5.0,81,98100,700,1348,318,231,59,200,25400,5900,22300,6200,10,5.7,9,9,11.3,450,9,999999999,170,0.1580,0,88,0.160,999.0,99.0 +1997,4,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,5.0,71,98200,909,1348,328,393,179,272,43300,19000,30500,7970,30,5.1,9,9,11.3,600,9,999999999,170,0.1580,0,88,0.160,999.0,99.0 +1997,4,28,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,4.0,62,98200,1072,1348,331,418,91,344,46000,9300,38500,13750,50,4.6,9,9,11.3,600,9,999999999,170,0.1580,0,88,0.160,999.0,99.0 +1997,4,28,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,6.0,59,98200,1175,1348,348,659,96,574,72400,10100,63600,24120,50,5.1,9,9,11.3,960,9,999999999,160,0.1580,0,88,0.160,999.0,99.0 +1997,4,28,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.0,5.0,55,98100,1214,1348,346,505,78,434,55700,8100,48400,20740,70,5.7,9,9,11.3,1050,9,999999999,160,0.1580,0,88,0.160,0.0,6.0 +1997,4,28,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,5.0,51,98100,1184,1348,351,598,88,520,65800,9200,57700,22700,50,5.1,9,9,11.3,1200,9,999999999,160,0.1580,0,88,0.160,999.0,99.0 +1997,4,28,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,6.0,51,98000,1088,1348,337,736,472,355,77300,49100,37600,13340,50,6.7,5,5,11.3,77777,9,999999999,160,0.1580,0,88,0.160,999.0,99.0 +1997,4,28,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,5.0,48,98000,933,1348,356,311,83,253,34300,8400,28400,9200,60,5.7,9,9,11.3,2400,9,999999999,160,0.1580,0,88,0.160,999.0,99.0 +1997,4,28,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,4.0,45,98000,728,1348,355,252,70,214,27700,7000,23900,6710,30,6.2,9,9,11.3,2400,9,999999999,150,0.1580,0,88,0.160,999.0,99.0 +1997,4,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,4.0,45,98000,489,1348,335,216,298,108,23000,27900,12800,2050,40,6.2,5,5,11.3,77777,9,999999999,150,0.1580,0,88,0.160,999.0,99.0 +1997,4,28,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,13.5,3.5,51,98100,233,1348,323,70,113,50,7500,7800,6100,910,30,4.4,5,5,11.3,77777,9,999999999,150,0.1580,0,88,0.160,999.0,99.0 +1997,4,28,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,3.0,58,98100,22,595,311,4,4,3,0,0,0,0,20,2.6,5,5,11.3,77777,9,999999999,150,0.1580,0,88,0.160,999.0,99.0 +1997,4,28,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,3.0,62,98100,0,0,299,0,0,0,0,0,0,0,40,3.6,2,2,11.3,77777,9,999999999,139,0.1580,0,88,0.160,999.0,99.0 +1997,4,28,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,3.0,66,98200,0,0,298,0,0,0,0,0,0,0,40,3.1,3,3,11.3,77777,9,999999999,139,0.1580,0,88,0.160,999.0,99.0 +1997,4,28,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,2.0,75,98100,0,0,282,0,0,0,0,0,0,0,40,1.0,2,2,11.3,77777,9,999999999,139,0.1580,0,88,0.160,999.0,99.0 +1997,4,28,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,2.0,75,98200,0,0,285,0,0,0,0,0,0,0,250,1.0,3,3,11.3,77777,9,999999999,139,0.1580,0,88,0.160,999.0,99.0 +1997,4,29,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.0,0.0,81,98200,0,0,264,0,0,0,0,0,0,0,160,0.5,3,1,11.3,77777,9,999999999,139,0.1590,0,88,0.160,0.0,6.0 +1997,4,29,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,2.0,87,98200,0,0,270,0,0,0,0,0,0,0,300,1.5,2,1,11.3,77777,9,999999999,129,0.1590,0,88,0.160,999.0,99.0 +1997,4,29,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,2.0,87,98200,0,0,270,0,0,0,0,0,0,0,220,1.0,3,1,11.3,77777,9,999999999,129,0.1590,0,88,0.160,999.0,99.0 +1997,4,29,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,1.0,93,98200,0,0,262,0,0,0,0,0,0,0,110,1.5,2,1,9.7,77777,9,999999999,129,0.1590,0,88,0.160,999.0,99.0 +1997,4,29,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,1.0,93,98200,0,0,262,0,0,0,0,0,0,0,30,1.0,3,1,9.7,77777,9,999999999,129,0.1590,0,88,0.160,999.0,99.0 +1997,4,29,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,1.0,93,98300,12,438,262,2,16,1,0,0,0,0,50,1.5,2,1,8.0,77777,9,999999999,129,0.1590,0,88,0.160,999.0,99.0 +1997,4,29,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.0,2.0,87,98300,204,1347,270,89,312,41,9000,21100,5800,730,40,2.1,3,1,11.3,77777,9,999999999,120,0.1590,0,88,0.160,0.0,6.0 +1997,4,29,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,3.0,66,98400,462,1347,291,259,559,68,27300,51600,9600,1340,50,2.6,2,1,11.3,77777,9,999999999,120,0.1590,0,88,0.160,999.0,99.0 +1997,4,29,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,2.0,50,98500,704,1347,312,450,587,143,46700,57700,16500,3030,160,3.6,5,4,11.3,77777,9,999999999,120,0.1590,0,88,0.160,999.0,99.0 +1997,4,29,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,2.0,44,98500,913,1347,321,632,655,188,66200,65900,21400,4940,150,3.6,5,4,11.3,77777,9,999999999,129,0.1590,0,88,0.160,999.0,99.0 +1997,4,29,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.6,2.0,40,98500,1075,1347,331,708,508,302,75400,52900,33100,10900,160,3.4,7,5,11.3,14000,9,999999999,129,0.1590,0,88,0.160,999.0,99.0 +1997,4,29,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,2.0,36,98400,1178,1347,340,367,252,146,42600,26600,19300,6800,160,3.1,9,6,11.3,6000,9,999999999,129,0.1590,0,88,0.160,999.0,99.0 +1997,4,29,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.0,1.0,32,98300,1216,1347,344,881,707,243,93800,72000,28600,13080,180,2.1,9,6,11.3,6000,9,999999999,129,0.1590,0,88,0.160,0.0,6.0 +1997,4,29,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,2.0,32,98300,1186,1347,350,812,577,303,87800,60400,34500,14890,190,3.1,9,6,11.3,6000,9,999999999,129,0.1590,0,88,0.160,999.0,99.0 +1997,4,29,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,2.0,28,98200,1090,1347,360,662,497,259,71800,51900,29600,9600,230,2.6,9,6,11.3,6000,9,999999999,129,0.1590,0,88,0.160,999.0,99.0 +1997,4,29,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,0.0,26,98200,935,1347,352,582,465,260,61800,48100,28300,7250,300,1.0,9,6,11.3,6000,9,999999999,129,0.1590,0,88,0.160,999.0,99.0 +1997,4,29,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,2.0,28,98200,731,1347,360,250,219,131,27900,23100,15400,2820,220,2.6,9,6,11.3,6000,9,999999999,129,0.1590,0,88,0.160,999.0,99.0 +1997,4,29,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,1.0,30,98200,493,1347,349,273,251,181,29300,24000,20500,4170,250,2.6,9,6,11.3,6000,9,999999999,129,0.1590,0,88,0.160,999.0,99.0 +1997,4,29,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.0,2.0,34,98200,236,1347,345,59,43,52,6500,3300,5900,1330,260,2.1,9,6,11.3,6000,9,999999999,129,0.1590,0,88,0.160,0.0,6.0 +1997,4,29,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,0.0,36,98100,24,617,314,5,29,4,600,900,600,70,250,1.5,2,1,11.3,77777,9,999999999,129,0.1590,0,88,0.160,999.0,99.0 +1997,4,29,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,1.0,44,98100,0,0,306,0,0,0,0,0,0,0,150,1.0,3,1,11.3,77777,9,999999999,129,0.1590,0,88,0.160,999.0,99.0 +1997,4,29,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,3.0,58,98100,0,0,300,0,0,0,0,0,0,0,10,1.0,2,1,11.3,77777,9,999999999,129,0.1590,0,88,0.160,999.0,99.0 +1997,4,29,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,2.0,61,98000,0,0,290,0,0,0,0,0,0,0,40,1.0,3,1,11.3,77777,9,999999999,129,0.1590,0,88,0.160,999.0,99.0 +1997,4,29,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,2.0,61,98000,0,0,290,0,0,0,0,0,0,0,60,1.0,2,1,11.3,77777,9,999999999,129,0.1590,0,88,0.160,999.0,99.0 +1997,4,30,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.0,2.0,66,98000,0,0,286,0,0,0,0,0,0,0,20,1.5,2,1,11.3,77777,9,999999999,129,0.1600,0,88,0.160,0.0,6.0 +1997,4,30,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,7.6,2.0,68,98000,0,0,285,0,0,0,0,0,0,0,40,1.5,2,1,11.3,77777,9,999999999,129,0.1600,0,88,0.160,999.0,99.0 +1997,4,30,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,2.0,70,98000,0,0,282,0,0,0,0,0,0,0,50,1.5,2,1,11.3,77777,9,999999999,139,0.1600,0,88,0.160,999.0,99.0 +1997,4,30,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,1.0,70,98000,0,0,277,0,0,0,0,0,0,0,40,1.0,3,1,11.3,77777,9,999999999,139,0.1600,0,88,0.160,999.0,99.0 +1997,4,30,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,1.0,70,98000,0,0,286,0,0,0,0,0,0,0,350,0.5,5,4,11.3,77777,9,999999999,139,0.1600,0,88,0.160,999.0,99.0 +1997,4,30,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,7.4,1.6,67,98000,14,460,295,2,0,2,0,0,0,0,40,0.8,6,5,11.3,16667,9,999999999,139,0.1600,0,88,0.160,999.0,99.0 +1997,4,30,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,9.5,2.7,62,98000,209,1347,305,64,26,60,7000,2000,6700,1430,100,1.2,8,5,11.3,11333,9,999999999,139,0.1600,0,88,0.160,999.0,99.0 +1997,4,30,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,4.0,54,98000,466,1347,324,174,96,141,18900,9100,15800,3220,150,1.5,9,6,11.3,6000,9,999999999,139,0.1600,0,88,0.160,999.0,99.0 +1997,4,30,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,6.0,48,98000,708,1347,345,380,269,238,40400,28100,25600,5610,210,3.1,9,6,11.3,6000,9,999999999,139,0.1600,0,88,0.160,999.0,99.0 +1997,4,30,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,5.0,40,98000,916,1347,382,235,0,235,27500,0,27500,10600,190,4.6,10,10,11.3,6000,9,999999999,139,0.1600,0,88,0.160,999.0,99.0 +1997,4,30,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,5.0,37,97800,1078,1347,358,671,368,376,72700,39800,40700,13450,190,6.2,9,6,11.3,6000,9,999999999,139,0.1600,0,88,0.160,999.0,99.0 +1997,4,30,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,6.0,35,97700,1181,1347,370,676,341,376,74100,37100,41600,16920,170,6.7,9,6,11.3,6000,9,999999999,139,0.1600,0,88,0.160,999.0,99.0 +1997,4,30,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.0,6.0,33,97600,1219,1347,369,695,355,373,76700,38600,41600,18870,180,7.2,5,4,11.3,77777,9,999999999,139,0.1600,0,88,0.160,0.0,6.0 +1997,4,30,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,6.0,31,97500,1189,1347,374,684,432,302,74000,45200,34000,14990,170,7.2,5,4,11.3,77777,9,999999999,139,0.1600,0,88,0.160,999.0,99.0 +1997,4,30,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,7.0,34,97400,1093,1347,381,737,456,367,77200,47400,38700,14020,160,8.2,9,6,11.3,6000,9,999999999,139,0.1600,0,88,0.160,999.0,99.0 +1997,4,30,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,9.0,36,97100,938,1347,389,470,255,292,50900,27500,31800,8300,180,5.1,9,6,11.3,6000,9,999999999,139,0.1600,0,88,0.160,999.0,99.0 +1997,4,30,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,8.0,34,97000,734,1347,387,403,298,241,43100,31300,26000,5750,180,8.7,9,6,11.3,6000,9,999999999,139,0.1600,0,88,0.160,999.0,99.0 +1997,4,30,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,9.0,36,96800,496,1347,382,167,117,123,18300,11400,14100,2830,170,7.2,5,4,11.3,77777,9,999999999,139,0.1600,0,88,0.160,999.0,99.0 +1997,4,30,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.0,9.0,38,96700,240,1347,384,70,17,67,7700,1300,7400,1640,180,6.7,9,6,11.3,6000,9,999999999,139,0.1600,0,88,0.160,0.0,6.0 +1997,4,30,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,10.0,41,96700,25,640,415,4,0,4,500,0,500,160,180,5.1,10,10,11.3,6000,9,999999999,139,0.1600,0,88,0.160,999.0,99.0 +1997,4,30,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,10.0,41,96600,0,0,415,0,0,0,0,0,0,0,200,6.2,10,10,11.3,6000,9,999999999,150,0.1600,0,88,0.160,999.0,99.0 +1997,4,30,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.1,9.4,88,96700,0,0,404,0,0,0,0,0,0,0,260,6.3,10,10,8.0,1500,9,999999999,150,0.1600,0,88,0.160,4.0,3.0 +1997,4,30,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.3,8.9,94,96800,0,0,394,0,0,0,0,0,0,0,230,6.5,10,10,8.0,1500,9,999999999,150,0.1600,0,88,0.160,999.0,99.0 +1997,4,30,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.4,8.3,88,96900,0,0,355,0,0,0,0,0,0,0,240,6.6,9,6,11.3,3000,9,999999999,150,0.1600,0,88,0.160,999.0,99.0 +1997,5,1,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.6,7.7,82,96900,0,0,337,0,0,0,0,0,0,0,240,6.8,5,3,11.3,77777,9,999999999,150,0.1610,0,88,0.190,5.0,6.0 +1997,5,1,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.7,7.1,66,96900,0,0,324,0,0,0,0,0,0,0,260,6.9,5,2,11.3,77777,9,999999999,150,0.1610,0,88,0.190,999.0,99.0 +1997,5,1,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.9,6.6,62,97000,0,0,321,0,0,0,0,0,0,0,250,7.1,9,4,11.3,900,9,999999999,150,0.1610,0,88,0.190,999.0,99.0 +1997,5,1,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,6.0,71,97000,0,0,321,0,0,0,0,0,0,0,240,7.2,10,7,11.3,840,9,999999999,150,0.1610,0,88,0.190,999.0,99.0 +1997,5,1,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,3.0,66,97000,0,0,301,0,0,0,0,0,0,0,250,7.7,9,4,11.3,840,9,999999999,150,0.1610,0,88,0.190,999.0,99.0 +1997,5,1,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,2.0,66,97100,15,505,304,2,0,2,0,0,0,0,250,9.3,10,7,11.3,840,9,999999999,150,0.1610,0,88,0.190,999.0,99.0 +1997,5,1,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.0,2.0,66,97200,214,1346,308,54,7,53,6000,100,6000,1800,250,8.7,10,8,11.3,840,9,999999999,150,0.1610,0,88,0.190,0.0,6.0 +1997,5,1,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,2.0,66,97300,470,1346,304,138,50,120,15100,4700,13500,3360,260,9.8,10,7,11.3,840,9,999999999,150,0.1610,0,88,0.190,999.0,99.0 +1997,5,1,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,2.0,66,97400,711,1346,308,284,144,208,31200,14900,23300,5290,270,9.3,10,8,11.3,840,9,999999999,150,0.1610,0,88,0.190,999.0,99.0 +1997,5,1,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.0,2.0,70,97500,920,1346,299,453,328,228,49900,35400,25700,6130,260,9.3,10,7,11.3,840,9,999999999,150,0.1610,0,88,0.190,0.0,3.0 +1997,5,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,2.0,66,97700,1080,1346,308,572,158,445,62100,16700,48700,16080,280,8.2,10,8,11.3,840,9,999999999,150,0.1610,0,88,0.190,999.0,99.0 +1997,5,1,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,3.0,71,97800,1183,1346,305,674,251,453,73800,26700,50200,20070,260,8.2,10,7,11.3,750,9,999999999,150,0.1610,0,88,0.190,999.0,99.0 +1997,5,1,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.0,3.0,71,97900,1221,1346,310,459,41,422,50700,4200,46900,20640,270,10.3,10,8,11.3,690,9,999999999,150,0.1610,0,88,0.190,0.0,6.0 +1997,5,1,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,4.0,76,98000,1191,1346,306,752,214,562,81200,22600,61100,25390,260,7.2,10,7,11.3,540,9,999999999,150,0.1610,0,88,0.190,999.0,99.0 +1997,5,1,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,4.0,71,98100,1095,1346,315,672,147,552,73800,15400,61200,20570,260,7.7,10,8,11.3,750,9,999999999,150,0.1610,0,88,0.190,999.0,99.0 +1997,5,1,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,4.0,62,98200,940,1346,310,611,516,250,65000,53500,27600,7010,280,7.7,9,4,11.3,840,9,999999999,150,0.1610,0,88,0.190,999.0,99.0 +1997,5,1,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,3.0,54,98300,737,1346,313,499,509,220,52000,51500,23700,4960,290,6.2,9,4,11.3,840,9,999999999,150,0.1610,0,88,0.190,999.0,99.0 +1997,5,1,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,3.0,54,98300,499,1346,304,268,435,107,28600,41000,13400,2030,280,4.6,2,1,11.3,77777,9,999999999,150,0.1610,0,88,0.190,999.0,99.0 +1997,5,1,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.0,3.0,58,98400,244,1346,294,99,219,59,10300,15600,7400,1070,280,5.1,0,0,11.3,77777,9,999999999,150,0.1610,0,88,0.190,0.0,6.0 +1997,5,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,2.0,61,98500,27,662,290,5,3,5,600,100,600,130,270,2.6,2,1,11.3,77777,9,999999999,150,0.1610,0,88,0.190,999.0,99.0 +1997,5,1,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.9,2.7,75,98500,0,0,277,0,0,0,0,0,0,0,230,2.1,0,0,11.3,77777,9,999999999,150,0.1610,0,88,0.190,999.0,99.0 +1997,5,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,3.0,87,98500,0,0,275,0,0,0,0,0,0,0,240,1.5,2,1,11.3,77777,9,999999999,150,0.1610,0,88,0.190,999.0,99.0 +1997,5,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,2.0,81,98600,0,0,274,0,0,0,0,0,0,0,60,2.1,3,1,11.3,77777,9,999999999,150,0.1610,0,88,0.190,999.0,99.0 +1997,5,1,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,1.0,87,98600,0,0,274,0,0,0,0,0,0,0,230,1.5,9,4,11.3,7500,9,999999999,150,0.1610,0,88,0.190,999.0,99.0 +1997,5,2,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.0,1.0,81,98700,0,0,286,0,0,0,0,0,0,0,110,1.0,9,7,11.3,7500,9,999999999,150,0.1620,0,88,0.190,0.0,6.0 +1997,5,2,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,2.0,81,98700,0,0,302,0,0,0,0,0,0,0,110,1.0,9,9,11.3,7500,9,999999999,150,0.1620,0,88,0.190,999.0,99.0 +1997,5,2,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,3.0,81,98700,0,0,307,0,0,0,0,0,0,0,160,2.1,9,9,11.3,7500,9,999999999,150,0.1620,0,88,0.190,999.0,99.0 +1997,5,2,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,3.0,81,98700,0,0,307,0,0,0,0,0,0,0,120,1.5,9,9,11.3,7500,9,999999999,150,0.1620,0,88,0.190,999.0,99.0 +1997,5,2,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,3.0,87,98600,0,0,303,0,0,0,0,0,0,0,90,1.0,9,9,11.3,7500,9,999999999,150,0.1620,0,88,0.190,999.0,99.0 +1997,5,2,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,3.0,87,98500,17,527,303,2,5,2,0,0,0,0,40,3.1,9,9,11.3,7500,9,999999999,150,0.1620,0,88,0.190,999.0,99.0 +1997,5,2,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.0,4.0,76,98600,218,1345,300,54,114,36,6000,7600,4700,620,110,2.1,5,5,11.3,77777,9,999999999,150,0.1620,0,88,0.190,0.0,6.0 +1997,5,2,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,4.0,66,98600,475,1345,326,149,42,134,16300,4000,14900,3680,140,3.1,9,9,11.3,7500,9,999999999,150,0.1620,0,88,0.190,999.0,99.0 +1997,5,2,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,4.0,58,98600,715,1345,336,195,78,153,21800,8100,17400,3900,150,4.6,9,9,11.3,7500,9,999999999,160,0.1620,0,88,0.190,999.0,99.0 +1997,5,2,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,4.0,51,98500,923,1345,345,301,50,266,33100,5100,29600,9520,150,5.1,9,9,11.3,7500,9,999999999,160,0.1620,0,88,0.190,999.0,99.0 +1997,5,2,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.2,2.6,43,98500,1083,1345,359,529,53,486,58100,5500,53700,18430,150,5.6,10,10,11.3,6450,9,999999999,160,0.1620,0,88,0.190,999.0,99.0 +1997,5,2,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,1.0,36,98400,1186,1345,361,336,0,336,39800,0,39800,15240,140,6.2,10,10,11.3,5400,9,999999999,170,0.1620,0,88,0.190,999.0,99.0 +1997,5,2,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.0,1.0,36,98300,1223,1345,361,347,0,347,41200,0,41200,15730,140,5.1,10,10,11.3,4500,9,999999999,170,0.1620,0,88,0.190,0.0,6.0 +1997,5,2,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,0.0,32,98100,1193,1345,365,338,0,338,40100,0,40100,15330,130,4.6,10,10,11.3,4500,9,999999999,170,0.1620,0,88,0.190,999.0,99.0 +1997,5,2,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,2.0,39,97800,1097,1345,362,308,0,308,36300,0,36300,14000,150,6.2,10,10,11.3,4500,9,999999999,179,0.1620,0,88,0.190,999.0,99.0 +1997,5,2,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.0,1.0,34,97700,943,1345,366,207,0,207,24600,0,24600,9740,140,4.6,10,10,11.3,2100,9,999999999,179,0.1620,0,88,0.190,0.0,3.0 +1997,5,2,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,7.0,71,97600,740,1345,349,156,0,156,18300,0,18300,6960,70,1.5,10,10,9.7,1800,9,999999999,179,0.1620,0,88,0.190,999.0,99.0 +1997,5,2,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,9.0,82,97600,502,1345,351,95,0,95,11100,0,11100,3950,60,1.5,10,10,9.7,1800,9,999999999,179,0.1620,0,88,0.190,999.0,99.0 +1997,5,2,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.0,10.0,94,97800,247,1345,347,38,0,38,4400,0,4400,1470,60,4.1,10,10,8.0,1500,9,999999999,189,0.1620,0,88,0.190,14.0,6.0 +1997,5,2,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,9.0,93,97600,29,684,341,4,0,4,500,0,500,160,60,3.6,10,10,4.8,1050,9,999999999,189,0.1620,0,88,0.190,999.0,99.0 +1997,5,2,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,9.0,93,97600,0,0,341,0,0,0,0,0,0,0,30,4.6,10,10,4.8,1050,9,999999999,189,0.1620,0,88,0.190,999.0,99.0 +1997,5,2,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,9.0,93,97400,0,0,341,0,0,0,0,0,0,0,120,4.6,10,10,11.3,2700,9,999999999,200,0.1620,0,88,0.190,24.0,3.0 +1997,5,2,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.7,10.2,97,97300,0,0,346,0,0,0,0,0,0,0,130,4.6,10,10,11.3,2175,9,999999999,200,0.1620,0,88,0.190,999.0,99.0 +1997,5,2,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,11.4,11.2,99,97100,0,0,351,0,0,0,0,0,0,0,140,4.6,10,10,11.3,1650,9,999999999,200,0.1620,0,88,0.190,999.0,99.0 +1997,5,3,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,12.1,12.1,100,97000,0,0,345,0,0,0,0,0,0,0,150,4.6,10,9,11.3,1125,9,999999999,209,0.1620,0,88,0.190,999.0,99.0 +1997,5,3,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,13.0,100,96900,0,0,351,0,0,0,0,0,0,0,160,4.6,10,9,11.3,600,9,999999999,209,0.1620,0,88,0.190,999.0,99.0 +1997,5,3,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,14.0,100,96800,0,0,357,0,0,0,0,0,0,0,180,3.6,10,9,11.3,300,9,999999999,209,0.1620,0,88,0.190,999.0,99.0 +1997,5,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,14.0,94,96800,0,0,362,0,0,0,0,0,0,0,200,7.2,10,9,11.3,300,9,999999999,209,0.1620,0,88,0.190,1.0,3.0 +1997,5,3,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,14.0,94,96800,0,0,362,0,0,0,0,0,0,0,210,7.2,10,9,11.3,300,9,999999999,220,0.1620,0,88,0.190,999.0,99.0 +1997,5,3,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,14.0,94,96900,19,549,362,3,0,3,0,0,0,0,220,7.7,10,9,11.3,300,9,999999999,220,0.1620,0,88,0.190,999.0,99.0 +1997,5,3,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,13.0,88,96900,223,1344,341,73,87,58,7900,6200,6900,1230,240,5.7,9,5,11.3,600,9,999999999,220,0.1620,0,88,0.190,2.0,6.0 +1997,5,3,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,13.0,88,97000,479,1344,341,175,204,102,19000,19600,12000,1970,230,7.2,9,5,11.3,600,9,999999999,220,0.1620,0,88,0.190,999.0,99.0 +1997,5,3,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,10.0,77,97000,719,1344,333,286,184,188,31700,19100,21400,4800,250,9.8,9,5,11.3,720,9,999999999,209,0.1620,0,88,0.190,999.0,99.0 +1997,5,3,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,8.0,63,97100,926,1344,335,548,435,248,58300,45000,27200,6820,250,8.2,9,5,11.3,3000,9,999999999,209,0.1620,0,88,0.190,1.0,3.0 +1997,5,3,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,9.0,87,97100,1086,1344,337,278,87,207,31600,9400,24000,7550,250,10.3,10,9,6.4,1050,9,999999999,209,0.1620,0,88,0.190,999.0,99.0 +1997,5,3,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,10.0,88,97300,1188,1344,343,578,67,518,63600,7000,57400,22940,270,7.2,10,9,11.3,1200,9,999999999,200,0.1620,0,88,0.190,999.0,99.0 +1997,5,3,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,8.0,87,97500,1225,1344,331,574,85,496,63300,8800,55200,23930,300,8.7,10,9,11.3,600,9,999999999,200,0.1620,0,88,0.190,3.0,6.0 +1997,5,3,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,8.0,87,97600,1195,1344,331,670,290,412,73200,31500,45100,19630,290,7.7,10,9,11.3,600,9,999999999,189,0.1620,0,88,0.190,999.0,99.0 +1997,5,3,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,7.0,93,97800,1100,1344,321,487,208,317,53700,22600,35100,11590,280,6.7,10,9,11.3,600,9,999999999,189,0.1620,0,88,0.190,999.0,99.0 +1997,5,3,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.0,7.0,93,97900,945,1344,321,367,63,323,40400,6500,35900,11410,290,6.7,10,9,11.3,450,9,999999999,179,0.1620,0,88,0.190,1.0,3.0 +1997,5,3,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,7.0,93,98000,742,1344,321,297,62,263,32600,6300,29200,8000,290,5.7,10,9,11.3,450,9,999999999,179,0.1620,0,88,0.190,999.0,99.0 +1997,5,3,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,7.0,93,98100,506,1344,321,100,18,93,11000,1700,10400,2790,300,7.2,10,9,11.3,450,9,999999999,179,0.1620,0,88,0.190,999.0,99.0 +1997,5,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.0,5.0,81,98200,251,1344,318,62,39,55,6800,3100,6300,1420,310,5.1,10,9,11.3,600,9,999999999,170,0.1620,0,88,0.190,2.0,6.0 +1997,5,3,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,5.0,76,98400,31,706,323,6,0,6,700,0,700,230,290,5.7,10,9,11.3,600,9,999999999,170,0.1620,0,88,0.190,999.0,99.0 +1997,5,3,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,4.0,71,98500,0,0,322,0,0,0,0,0,0,0,300,4.6,10,9,11.3,1200,9,999999999,160,0.1620,0,88,0.190,999.0,99.0 +1997,5,3,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,4.0,81,98600,0,0,288,0,0,0,0,0,0,0,280,3.6,5,2,11.3,77777,9,999999999,160,0.1620,0,88,0.190,999.0,99.0 +1997,5,3,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,4.0,87,98600,0,0,280,0,0,0,0,0,0,0,240,2.6,3,1,11.3,77777,9,999999999,150,0.1620,0,88,0.190,999.0,99.0 +1997,5,3,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,5.0,87,98600,0,0,314,0,0,0,0,0,0,0,240,3.1,10,9,11.3,3000,9,999999999,150,0.1620,0,88,0.190,999.0,99.0 +1997,5,4,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.0,5.0,87,98600,0,0,314,0,0,0,0,0,0,0,230,3.1,10,9,11.3,3000,9,999999999,139,0.1630,0,88,0.190,0.0,6.0 +1997,5,4,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,5.0,87,98600,0,0,314,0,0,0,0,0,0,0,220,2.6,10,9,11.3,2100,9,999999999,139,0.1630,0,88,0.190,999.0,99.0 +1997,5,4,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,5.0,81,98700,0,0,318,0,0,0,0,0,0,0,250,3.1,10,9,11.3,3000,9,999999999,139,0.1630,0,88,0.190,999.0,99.0 +1997,5,4,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,5.0,81,98700,0,0,318,0,0,0,0,0,0,0,250,1.5,10,9,11.3,3000,9,999999999,129,0.1630,0,88,0.190,999.0,99.0 +1997,5,4,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,5.0,87,98700,0,0,294,0,0,0,0,0,0,0,220,1.5,9,4,11.3,3000,9,999999999,129,0.1630,0,88,0.190,999.0,99.0 +1997,5,4,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,5.0,87,98700,21,571,294,4,8,4,0,0,0,0,250,3.1,9,4,11.3,3000,9,999999999,120,0.1630,0,88,0.190,999.0,99.0 +1997,5,4,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.0,5.0,81,98900,228,1344,298,97,169,69,10200,11500,8200,1340,260,2.6,9,4,11.3,2700,9,999999999,120,0.1630,0,88,0.190,0.0,6.0 +1997,5,4,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,4.0,71,98900,483,1344,292,297,623,73,31200,58100,10300,1440,270,4.1,3,1,11.3,77777,9,999999999,120,0.1630,0,88,0.190,999.0,99.0 +1997,5,4,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,3.0,58,99000,722,1344,294,513,782,92,53900,77300,12200,2030,270,4.6,0,0,11.3,77777,9,999999999,120,0.1630,0,88,0.190,999.0,99.0 +1997,5,4,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,3.0,51,99000,929,1344,302,700,851,111,74600,85800,15100,3010,290,3.6,0,0,11.3,77777,9,999999999,120,0.1630,0,88,0.190,999.0,99.0 +1997,5,4,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,2.0,44,99000,1089,1344,311,790,786,153,83200,79200,18900,5260,290,5.1,2,1,11.3,77777,9,999999999,120,0.1630,0,88,0.190,999.0,99.0 +1997,5,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,-2.0,30,99100,1190,1344,311,835,782,142,89800,79500,19300,6790,300,5.1,3,1,11.3,77777,9,999999999,120,0.1630,0,88,0.190,999.0,99.0 +1997,5,4,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-2.0,30,99100,1228,1344,316,896,746,214,96300,76500,26300,12330,310,6.2,5,2,11.3,77777,9,999999999,120,0.1630,0,88,0.190,0.0,6.0 +1997,5,4,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,-2.0,28,99100,1197,1344,323,756,655,172,82300,67600,21800,8890,310,7.2,5,3,11.3,77777,9,999999999,129,0.1630,0,88,0.190,999.0,99.0 +1997,5,4,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,-2.0,28,99100,1102,1344,320,788,745,177,84700,76500,21900,6840,300,5.7,5,2,11.3,77777,9,999999999,129,0.1630,0,88,0.190,999.0,99.0 +1997,5,4,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,-3.0,26,99000,948,1344,322,590,569,188,62000,57500,21400,5250,300,5.7,5,3,11.3,77777,9,999999999,129,0.1630,0,88,0.190,999.0,99.0 +1997,5,4,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,-2.0,28,99000,745,1344,320,498,613,157,51600,60600,17900,3420,290,5.1,5,2,11.3,77777,9,999999999,129,0.1630,0,88,0.190,999.0,99.0 +1997,5,4,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,-2.0,28,99000,509,1344,323,250,281,144,26700,27400,16300,2970,280,6.2,5,3,11.3,77777,9,999999999,129,0.1630,0,88,0.190,999.0,99.0 +1997,5,4,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.0,-1.0,35,99000,255,1344,312,110,281,56,11500,20600,7600,1010,290,5.7,5,2,11.3,77777,9,999999999,129,0.1630,0,88,0.190,0.0,6.0 +1997,5,4,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,-1.0,38,99100,33,728,304,8,39,6,900,1400,900,100,280,3.6,3,1,11.3,77777,9,999999999,129,0.1630,0,88,0.190,999.0,99.0 +1997,5,4,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,0.0,47,99100,0,0,296,0,0,0,0,0,0,0,260,2.1,2,1,11.3,77777,9,999999999,129,0.1630,0,88,0.190,999.0,99.0 +1997,5,4,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,2.0,70,99100,0,0,282,0,0,0,0,0,0,0,230,2.1,3,1,11.3,77777,9,999999999,129,0.1630,0,88,0.190,999.0,99.0 +1997,5,4,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,7.0,2.6,74,99100,0,0,283,0,0,0,0,0,0,0,220,2.4,2,1,11.3,77777,9,999999999,129,0.1630,0,88,0.190,999.0,99.0 +1997,5,4,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,3.0,76,99100,0,0,278,0,0,0,0,0,0,0,210,2.6,0,0,11.3,77777,9,999999999,139,0.1630,0,88,0.190,999.0,99.0 +1997,5,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.0,2.0,75,99100,0,0,273,0,0,0,0,0,0,0,200,1.5,0,0,11.3,77777,9,999999999,139,0.1640,0,88,0.190,0.0,6.0 +1997,5,5,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,1.0,75,99100,0,0,268,0,0,0,0,0,0,0,90,1.5,0,0,11.3,77777,9,999999999,139,0.1640,0,88,0.190,999.0,99.0 +1997,5,5,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,2.0,75,99100,0,0,273,0,0,0,0,0,0,0,140,1.5,0,0,11.3,77777,9,999999999,139,0.1640,0,88,0.190,999.0,99.0 +1997,5,5,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,1.0,75,99000,0,0,268,0,0,0,0,0,0,0,140,1.5,0,0,11.3,77777,9,999999999,139,0.1640,0,88,0.190,999.0,99.0 +1997,5,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,2.0,87,99000,0,0,270,0,0,0,0,0,0,0,210,1.5,3,1,11.3,77777,9,999999999,139,0.1640,0,88,0.190,999.0,99.0 +1997,5,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,2.0,87,99000,23,593,270,4,6,4,0,0,0,0,220,1.0,2,1,11.3,77777,9,999999999,139,0.1640,0,88,0.190,999.0,99.0 +1997,5,5,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.0,3.0,66,99000,232,1343,314,73,54,64,8000,4200,7300,1560,170,2.6,9,8,11.3,7500,9,999999999,139,0.1640,0,88,0.190,0.0,6.0 +1997,5,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,4.0,54,99100,487,1343,319,268,171,206,28500,16300,22600,4740,240,5.1,5,4,11.3,77777,9,999999999,139,0.1640,0,88,0.190,999.0,99.0 +1997,5,5,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,4.0,45,99100,726,1343,333,472,492,206,49400,49700,22500,4580,230,6.2,5,4,11.3,77777,9,999999999,139,0.1640,0,88,0.190,999.0,99.0 +1997,5,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,3.0,37,99000,932,1343,350,449,261,267,48900,28100,29400,7450,230,8.7,9,7,11.3,2400,9,999999999,139,0.1640,0,88,0.190,999.0,99.0 +1997,5,5,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,4.0,35,98900,1091,1343,386,238,0,238,28600,0,28600,11490,210,8.7,10,10,11.3,2400,9,999999999,139,0.1640,0,88,0.190,999.0,99.0 +1997,5,5,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,5.0,37,98800,1193,1343,387,265,0,265,32000,0,32000,12750,210,10.3,10,10,11.3,2700,9,999999999,139,0.1640,0,88,0.190,999.0,99.0 +1997,5,5,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.0,5.0,35,98600,1230,1343,392,275,0,275,33300,0,33300,13210,210,11.8,10,10,11.3,2400,9,999999999,139,0.1640,0,88,0.190,0.0,6.0 +1997,5,5,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,4.0,35,98500,1199,1343,386,267,0,267,32300,0,32300,12840,210,9.8,10,10,11.3,2400,9,999999999,139,0.1640,0,88,0.190,999.0,99.0 +1997,5,5,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,4.0,37,98400,1104,1343,380,242,0,242,29100,0,29100,11680,210,9.8,10,10,11.3,2400,9,999999999,139,0.1640,0,88,0.190,999.0,99.0 +1997,5,5,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.0,4.0,37,98200,950,1343,380,201,0,201,24000,0,24000,9560,210,10.8,10,10,11.3,2100,9,999999999,139,0.1640,0,88,0.190,0.0,3.0 +1997,5,5,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,4.0,37,98100,748,1343,380,148,0,148,17500,0,17500,6720,210,7.7,10,10,11.3,1800,9,999999999,139,0.1640,0,88,0.190,999.0,99.0 +1997,5,5,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,5.0,40,98100,512,1343,382,87,0,87,10200,0,10200,3710,240,8.7,10,10,11.3,1800,9,999999999,139,0.1640,0,88,0.190,999.0,99.0 +1997,5,5,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.0,11.0,88,98100,258,1343,358,43,0,43,5000,0,5000,1640,210,4.1,10,10,11.3,1800,9,999999999,139,0.1640,0,88,0.190,0.0,6.0 +1997,5,5,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,11.0,88,98100,35,750,336,9,1,9,1100,0,1100,340,220,6.2,9,7,11.3,1800,9,999999999,139,0.1640,0,88,0.190,999.0,99.0 +1997,5,5,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,10.0,77,98100,0,0,345,0,0,0,0,0,0,0,230,7.2,9,8,11.3,3000,9,999999999,139,0.1640,0,88,0.190,999.0,99.0 +1997,5,5,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,13.3,9.5,78,98100,0,0,329,0,0,0,0,0,0,0,230,6.7,6,5,11.3,12500,9,999999999,139,0.1640,0,88,0.190,999.0,99.0 +1997,5,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,9.0,77,98100,0,0,314,0,0,0,0,0,0,0,230,6.2,3,1,11.3,77777,9,999999999,139,0.1640,0,88,0.190,999.0,99.0 +1997,5,5,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,10.0,77,98100,0,0,339,0,0,0,0,0,0,0,230,7.7,9,7,11.3,3300,9,999999999,139,0.1640,0,88,0.190,999.0,99.0 +1997,5,6,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.0,10.0,82,98100,0,0,328,0,0,0,0,0,0,0,240,5.1,5,5,11.3,77777,9,999999999,139,0.1650,0,88,0.190,1.0,6.0 +1997,5,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,9.0,82,98100,0,0,304,0,0,0,0,0,0,0,250,4.1,0,0,11.3,77777,9,999999999,139,0.1650,0,88,0.190,999.0,99.0 +1997,5,6,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,7.0,76,98200,0,0,298,0,0,0,0,0,0,0,270,3.1,0,0,11.3,77777,9,999999999,139,0.1650,0,88,0.190,999.0,99.0 +1997,5,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,5.0,66,98300,0,0,296,0,0,0,0,0,0,0,290,4.1,0,0,11.3,77777,9,999999999,139,0.1650,0,88,0.190,999.0,99.0 +1997,5,6,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,5.0,71,98400,0,0,309,0,0,0,0,0,0,0,280,4.1,5,5,11.3,77777,9,999999999,129,0.1650,0,88,0.190,999.0,99.0 +1997,5,6,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,5.0,71,98600,25,615,328,4,5,4,0,0,0,0,310,4.1,9,9,11.3,750,9,999999999,129,0.1650,0,88,0.190,999.0,99.0 +1997,5,6,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.0,5.0,76,98700,236,1342,297,120,425,45,12300,30800,6800,810,320,3.6,2,2,11.3,77777,9,999999999,129,0.1650,0,88,0.190,0.0,6.0 +1997,5,6,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,4.0,66,98900,490,1342,303,203,286,98,21700,26900,11900,1840,330,4.6,3,3,11.3,77777,9,999999999,129,0.1650,0,88,0.190,999.0,99.0 +1997,5,6,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,11.7,4.0,59,98900,729,1342,311,417,538,125,43900,53600,14800,2780,330,4.9,3,3,11.3,77777,9,999999999,129,0.1650,0,88,0.190,999.0,99.0 +1997,5,6,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,4.0,54,99000,935,1342,317,636,602,217,66100,60300,24100,5810,320,5.1,3,3,11.3,77777,9,999999999,129,0.1650,0,88,0.190,999.0,99.0 +1997,5,6,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,4.0,51,99000,1094,1342,318,783,819,115,80800,82000,13900,3520,310,5.1,2,2,11.3,77777,9,999999999,129,0.1650,0,88,0.190,999.0,99.0 +1997,5,6,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,4.0,48,99100,1195,1342,331,813,599,279,85400,60500,31500,13890,300,3.6,5,5,11.3,77777,9,999999999,129,0.1650,0,88,0.190,999.0,99.0 +1997,5,6,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.0,3.0,42,99100,1232,1342,334,1004,822,250,106800,83700,29900,14600,300,4.6,5,5,11.3,77777,9,999999999,129,0.1650,0,88,0.190,0.0,6.0 +1997,5,6,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,2.0,36,99100,1201,1342,337,814,645,236,86600,65700,27600,12200,270,6.7,5,5,11.3,77777,9,999999999,129,0.1650,0,88,0.190,999.0,99.0 +1997,5,6,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,2.0,34,99100,1106,1342,362,394,87,322,43500,8900,36200,13640,280,6.2,9,9,11.3,1500,9,999999999,129,0.1650,0,88,0.190,999.0,99.0 +1997,5,6,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,1.0,34,99100,952,1342,356,342,91,277,37700,9300,31100,10150,300,6.7,9,9,11.3,1800,9,999999999,129,0.1650,0,88,0.190,999.0,99.0 +1997,5,6,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,2.0,34,99100,751,1342,362,362,263,215,39100,27700,23600,5060,300,6.7,9,9,11.3,2100,9,999999999,129,0.1650,0,88,0.190,999.0,99.0 +1997,5,6,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,0.0,32,99100,515,1342,335,329,551,117,34800,52400,14700,2250,320,6.2,5,5,11.3,77777,9,999999999,129,0.1650,0,88,0.190,999.0,99.0 +1997,5,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.0,-1.0,31,99200,262,1342,329,105,172,71,11000,12700,8600,1350,320,4.6,5,5,11.3,77777,9,999999999,129,0.1650,0,88,0.190,0.0,6.0 +1997,5,6,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,-1.0,38,99200,37,772,311,11,74,7,1200,3300,1000,140,350,3.1,3,3,11.3,77777,9,999999999,129,0.1650,0,88,0.190,999.0,99.0 +1997,5,6,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,-1.0,43,99300,0,0,307,0,0,0,0,0,0,0,10,2.1,5,5,11.3,77777,9,999999999,129,0.1650,0,88,0.190,999.0,99.0 +1997,5,6,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,1.0,50,99300,0,0,292,0,0,0,0,0,0,0,40,1.0,0,0,11.3,77777,9,999999999,129,0.1650,0,88,0.190,999.0,99.0 +1997,5,6,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,8.0,2.1,66,99300,0,0,281,0,0,0,0,0,0,0,130,1.3,0,0,11.3,77777,9,999999999,129,0.1650,0,88,0.190,999.0,99.0 +1997,5,6,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,3.0,87,99300,0,0,270,0,0,0,0,0,0,0,220,1.5,0,0,11.3,77777,9,999999999,129,0.1650,0,88,0.190,999.0,99.0 +1997,5,7,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,3.0,87,99200,0,0,270,0,0,0,0,0,0,0,230,0.5,0,0,11.3,77777,9,999999999,129,0.1650,0,88,0.190,0.0,6.0 +1997,5,7,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,3.0,87,99200,0,0,270,0,0,0,0,0,0,0,40,0.5,0,0,11.3,77777,9,999999999,129,0.1650,0,88,0.190,999.0,99.0 +1997,5,7,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,2.0,87,99200,0,0,265,0,0,0,0,0,0,0,70,1.0,0,0,11.3,77777,9,999999999,129,0.1650,0,88,0.190,999.0,99.0 +1997,5,7,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,1.0,81,99200,0,0,264,0,0,0,0,0,0,0,30,1.0,0,0,11.3,77777,9,999999999,129,0.1650,0,88,0.190,999.0,99.0 +1997,5,7,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,1.0,87,99200,0,0,260,0,0,0,0,0,0,0,40,1.5,0,0,11.3,77777,9,999999999,129,0.1650,0,88,0.190,999.0,99.0 +1997,5,7,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,2.0,87,99400,27,660,265,6,34,5,800,1100,700,80,20,1.5,0,0,11.3,77777,9,999999999,129,0.1650,0,88,0.190,999.0,99.0 +1997,5,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.0,4.0,87,99500,240,1342,287,110,298,56,11400,21200,7600,1010,220,1.0,3,3,11.3,77777,9,999999999,129,0.1650,0,88,0.190,0.0,6.0 +1997,5,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,2.0,54,99500,494,1342,303,298,547,96,30700,50700,12000,1830,140,2.1,2,2,11.3,77777,9,999999999,129,0.1650,0,88,0.190,999.0,99.0 +1997,5,7,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,3.0,47,99500,732,1342,320,470,620,132,49400,61700,15700,2920,210,2.1,3,3,11.3,77777,9,999999999,129,0.1650,0,88,0.190,999.0,99.0 +1997,5,7,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,3.0,42,99500,937,1342,326,656,741,139,70600,75800,17500,3960,230,1.5,2,2,11.3,77777,9,999999999,139,0.1650,0,88,0.190,999.0,99.0 +1997,5,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,3.0,42,99600,1096,1342,334,744,572,277,80400,59700,31400,10550,30,2.6,5,5,11.3,77777,9,999999999,139,0.1650,0,88,0.190,999.0,99.0 +1997,5,7,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,3.0,37,99500,1197,1342,343,829,528,358,88400,55100,39100,18740,330,1.0,5,5,11.3,77777,9,999999999,139,0.1650,0,88,0.190,999.0,99.0 +1997,5,7,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.0,2.0,32,99500,1234,1342,367,591,220,388,65100,23900,43000,21140,180,0.5,9,9,11.3,7500,9,999999999,139,0.1650,0,88,0.190,0.0,6.0 +1997,5,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,19.6,2.0,31,99500,1203,1342,370,517,219,320,57600,23900,36100,15370,270,0.8,9,9,11.3,7500,9,999999999,139,0.1650,0,88,0.190,999.0,99.0 +1997,5,7,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,2.0,30,99400,1108,1342,372,396,125,293,44300,13400,33200,11150,360,1.0,9,9,11.3,7500,9,999999999,150,0.1650,0,88,0.190,999.0,99.0 +1997,5,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,1.0,30,99400,954,1342,376,260,0,260,30400,0,30400,11670,340,1.0,10,10,11.3,7500,9,999999999,150,0.1650,0,88,0.190,999.0,99.0 +1997,5,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,1.0,30,99300,753,1342,376,195,0,195,22600,0,22600,8340,360,2.1,10,10,11.3,7500,9,999999999,150,0.1650,0,88,0.190,999.0,99.0 +1997,5,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,3.0,37,99300,518,1342,374,120,0,120,13800,0,13800,4800,40,2.6,10,10,11.3,7500,9,999999999,150,0.1650,0,88,0.190,999.0,99.0 +1997,5,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.0,3.0,39,99200,265,1342,369,49,0,49,5600,0,5600,1840,70,1.5,10,10,11.3,7500,9,999999999,150,0.1650,0,88,0.190,0.0,6.0 +1997,5,7,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,3.0,39,99200,39,794,369,7,0,7,800,0,800,270,100,2.1,10,10,11.3,3600,9,999999999,160,0.1650,0,88,0.190,999.0,99.0 +1997,5,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,4.0,45,99200,0,0,365,0,0,0,0,0,0,0,90,2.6,10,10,11.3,3000,9,999999999,160,0.1650,0,88,0.190,999.0,99.0 +1997,5,7,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,3.0,44,99100,0,0,359,0,0,0,0,0,0,0,110,4.6,10,10,11.3,3000,9,999999999,160,0.1650,0,88,0.190,0.0,3.0 +1997,5,7,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,3.0,47,99100,0,0,354,0,0,0,0,0,0,0,120,3.1,10,10,11.3,3000,9,999999999,160,0.1650,0,88,0.190,999.0,99.0 +1997,5,7,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,4.0,54,99100,0,0,350,0,0,0,0,0,0,0,120,2.1,10,10,11.3,2700,9,999999999,160,0.1650,0,88,0.190,999.0,99.0 +1997,5,8,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.0,2.0,47,98900,0,0,348,0,0,0,0,0,0,0,110,6.2,10,10,11.3,3000,9,999999999,170,0.1660,0,88,0.190,0.0,6.0 +1997,5,8,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,2.0,47,98900,0,0,348,0,0,0,0,0,0,0,120,3.6,10,10,11.3,3000,9,999999999,170,0.1660,0,88,0.190,999.0,99.0 +1997,5,8,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,3.0,54,98800,0,0,344,0,0,0,0,0,0,0,130,3.6,10,10,11.3,7500,9,999999999,170,0.1660,0,88,0.190,999.0,99.0 +1997,5,8,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,2.0,50,98700,0,0,343,0,0,0,0,0,0,0,140,2.6,10,10,11.3,7500,9,999999999,170,0.1660,0,88,0.190,999.0,99.0 +1997,5,8,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,2.0,50,98700,0,0,343,0,0,0,0,0,0,0,150,3.6,10,10,11.3,3300,9,999999999,170,0.1660,0,88,0.190,999.0,99.0 +1997,5,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,1.0,47,98600,29,682,342,4,0,4,500,0,500,160,130,3.1,10,10,11.3,3000,9,999999999,179,0.1660,0,88,0.190,999.0,99.0 +1997,5,8,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.0,2.0,47,98500,244,1341,348,37,0,37,4300,0,4300,1430,150,2.6,10,10,11.3,3000,9,999999999,179,0.1660,0,88,0.190,0.0,6.0 +1997,5,8,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,2.0,44,98400,498,1341,353,94,0,94,10900,0,10900,3910,130,2.6,10,10,11.3,3000,9,999999999,179,0.1660,0,88,0.190,999.0,99.0 +1997,5,8,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,4.0,51,98400,735,1341,355,154,0,154,18100,0,18100,6880,100,1.5,10,10,11.3,2400,9,999999999,179,0.1660,0,88,0.190,999.0,99.0 +1997,5,8,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.0,10.0,88,98400,940,1341,352,207,0,207,24600,0,24600,9740,210,3.1,10,10,4.8,1050,9,999999999,170,0.1660,0,88,0.190,0.0,3.0 +1997,5,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,11.0,94,98300,1098,1341,353,247,0,247,29600,0,29600,11860,170,2.6,10,10,4.8,450,9,999999999,170,0.1660,0,88,0.190,999.0,99.0 +1997,5,8,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,12.0,94,98300,1199,1341,360,227,0,227,27800,0,27800,11260,200,4.1,10,10,4.8,360,9,999999999,170,0.1660,0,88,0.190,999.0,99.0 +1997,5,8,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.0,13.0,94,98200,1235,1341,366,235,0,235,28800,0,28800,11650,220,3.6,10,10,4.8,300,9,999999999,170,0.1660,0,88,0.190,7.0,6.0 +1997,5,8,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,14.0,100,98200,1205,1341,367,229,0,229,28000,0,28000,11350,240,4.1,10,10,2.4,300,9,999999999,170,0.1660,0,88,0.190,999.0,99.0 +1997,5,8,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,14.0,94,98200,1110,1341,372,174,0,174,21500,0,21500,8880,230,3.6,10,10,3.2,150,9,999999999,170,0.1660,0,88,0.190,999.0,99.0 +1997,5,8,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,14.0,94,98200,957,1341,372,176,0,176,21200,0,21200,8600,260,3.1,10,10,8.0,270,9,999999999,170,0.1660,0,88,0.190,1.0,3.0 +1997,5,8,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,14.0,94,98200,756,1341,372,160,0,160,18800,0,18800,7190,280,4.1,10,10,8.0,450,9,999999999,170,0.1660,0,88,0.190,999.0,99.0 +1997,5,8,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,14.0,82,98300,521,1341,372,210,53,189,22900,5100,21000,5020,280,3.6,9,9,9.7,750,9,999999999,170,0.1660,0,88,0.190,999.0,99.0 +1997,5,8,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.0,14.0,88,98300,269,1341,338,144,335,77,14700,25000,9700,1430,220,2.1,2,2,9.7,77777,9,999999999,160,0.1660,0,88,0.190,1.0,6.0 +1997,5,8,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,12.0,88,98300,41,816,330,10,31,8,1100,1000,1100,130,220,2.1,3,3,9.7,77777,9,999999999,160,0.1660,0,88,0.190,999.0,99.0 +1997,5,8,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,12.0,94,98300,0,0,312,0,0,0,0,0,0,0,200,2.6,0,0,9.7,77777,9,999999999,160,0.1660,0,88,0.190,999.0,99.0 +1997,5,8,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,13.0,94,98300,0,0,356,0,0,0,0,0,0,0,220,2.6,9,9,8.0,1800,9,999999999,160,0.1660,0,88,0.190,999.0,99.0 +1997,5,8,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,14.0,94,98300,0,0,342,0,0,0,0,0,0,0,220,3.6,5,5,9.7,77777,9,999999999,160,0.1660,0,88,0.190,999.0,99.0 +1997,5,8,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,14.0,88,98300,0,0,347,0,0,0,0,0,0,0,230,4.1,5,5,9.7,77777,9,999999999,160,0.1660,0,88,0.190,999.0,99.0 +1997,5,9,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,13.0,88,98300,0,0,361,0,0,0,0,0,0,0,250,3.1,9,9,11.3,3000,9,999999999,160,0.1670,0,88,0.190,0.0,6.0 +1997,5,9,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,11.0,77,98300,0,0,369,0,0,0,0,0,0,0,270,4.1,10,10,11.3,3000,9,999999999,160,0.1670,0,88,0.190,999.0,99.0 +1997,5,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,8.0,67,98200,0,0,360,0,0,0,0,0,0,0,280,3.6,10,10,11.3,3000,9,999999999,160,0.1670,0,88,0.190,999.0,99.0 +1997,5,9,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,7.0,67,98300,0,0,354,0,0,0,0,0,0,0,300,3.6,10,10,11.3,2400,9,999999999,150,0.1670,0,88,0.190,999.0,99.0 +1997,5,9,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,5.0,62,98200,0,0,346,0,0,0,0,0,0,0,270,5.1,10,10,11.3,3000,9,999999999,150,0.1670,0,88,0.190,999.0,99.0 +1997,5,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,5.0,66,98300,31,704,332,5,2,5,600,100,600,130,280,5.7,9,9,11.3,3000,9,999999999,150,0.1670,0,88,0.190,999.0,99.0 +1997,5,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,4.0,66,98400,248,1341,326,94,124,71,10200,9300,8500,1520,270,6.7,9,9,11.3,3000,9,999999999,150,0.1670,0,88,0.190,0.0,6.0 +1997,5,9,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,4.0,66,98300,501,1341,336,96,0,96,11200,0,11200,3990,280,7.2,10,10,11.3,1200,9,999999999,150,0.1670,0,88,0.190,999.0,99.0 +1997,5,9,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.2,4.0,65,98400,738,1341,337,156,0,156,18300,0,18300,6970,290,5.9,10,10,11.3,1275,9,999999999,150,0.1670,0,88,0.190,999.0,99.0 +1997,5,9,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,4.0,66,98400,942,1341,336,208,0,208,24700,0,24700,9790,290,4.6,10,10,11.3,1350,9,999999999,139,0.1670,0,88,0.190,999.0,99.0 +1997,5,9,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,3.0,62,98500,1100,1341,334,247,0,247,29600,0,29600,11860,280,7.2,10,10,11.3,1350,9,999999999,139,0.1670,0,88,0.190,999.0,99.0 +1997,5,9,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,3.0,66,98500,1201,1341,330,272,0,272,32800,0,32800,13040,290,6.7,10,10,11.3,1050,9,999999999,139,0.1670,0,88,0.190,999.0,99.0 +1997,5,9,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.0,4.0,71,98500,1237,1341,331,281,0,281,34000,0,34000,13460,280,6.2,10,10,11.3,1050,9,999999999,139,0.1670,0,88,0.190,0.0,6.0 +1997,5,9,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,3.0,66,98500,1207,1341,330,274,0,274,33100,0,33100,13130,290,6.2,10,10,11.3,1050,9,999999999,139,0.1670,0,88,0.190,999.0,99.0 +1997,5,9,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,3.0,71,98500,1112,1341,325,250,0,250,30000,0,30000,12000,290,7.7,10,10,11.3,900,9,999999999,139,0.1670,0,88,0.190,999.0,99.0 +1997,5,9,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.0,4.0,81,98600,959,1341,322,212,0,212,25200,0,25200,10020,310,7.7,10,10,9.7,900,9,999999999,129,0.1670,0,88,0.190,0.0,3.0 +1997,5,9,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,5.0,81,98600,758,1341,327,161,0,161,18900,0,18900,7230,290,7.7,10,10,11.3,900,9,999999999,129,0.1670,0,88,0.190,999.0,99.0 +1997,5,9,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,4.0,81,98700,524,1341,322,101,0,101,11800,0,11800,4230,300,7.7,10,10,11.3,900,9,999999999,129,0.1670,0,88,0.190,999.0,99.0 +1997,5,9,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.0,4.0,81,98800,272,1341,322,43,0,43,5000,0,5000,1670,290,6.2,10,10,11.3,900,9,999999999,129,0.1670,0,88,0.190,0.0,6.0 +1997,5,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,2.0,70,98800,44,838,319,6,0,6,700,0,700,240,300,7.2,10,10,11.3,1500,9,999999999,129,0.1670,0,88,0.190,999.0,99.0 +1997,5,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,2.0,70,98800,0,0,319,0,0,0,0,0,0,0,290,5.7,10,10,11.3,1500,9,999999999,120,0.1670,0,88,0.190,999.0,99.0 +1997,5,9,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,2.0,70,98800,0,0,319,0,0,0,0,0,0,0,290,5.7,10,10,11.3,1500,9,999999999,120,0.1670,0,88,0.190,999.0,99.0 +1997,5,9,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,2.0,70,98800,0,0,319,0,0,0,0,0,0,0,300,6.7,10,10,11.3,1200,9,999999999,120,0.1670,0,88,0.190,999.0,99.0 +1997,5,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,1.0,66,98800,0,0,318,0,0,0,0,0,0,0,300,5.7,10,10,11.3,2400,9,999999999,120,0.1670,0,88,0.190,999.0,99.0 +1997,5,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.0,1.0,66,98800,0,0,318,0,0,0,0,0,0,0,300,5.7,10,10,11.3,2400,9,999999999,120,0.1680,0,88,0.190,0.0,6.0 +1997,5,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,1.0,66,98800,0,0,318,0,0,0,0,0,0,0,290,4.6,10,10,11.3,2100,9,999999999,110,0.1680,0,88,0.190,999.0,99.0 +1997,5,10,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,1.0,70,98700,0,0,305,0,0,0,0,0,0,0,300,5.7,9,9,11.3,2100,9,999999999,110,0.1680,0,88,0.190,999.0,99.0 +1997,5,10,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,1.0,70,98800,0,0,314,0,0,0,0,0,0,0,300,7.2,10,10,11.3,1050,9,999999999,110,0.1680,0,88,0.190,999.0,99.0 +1997,5,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,1.0,70,98800,0,0,314,0,0,0,0,0,0,0,300,5.7,10,10,11.3,930,9,999999999,110,0.1680,0,88,0.190,999.0,99.0 +1997,5,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,1.0,70,98800,33,726,314,5,0,5,600,0,600,200,320,5.7,10,10,11.3,930,9,999999999,110,0.1680,0,88,0.190,999.0,99.0 +1997,5,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.0,1.0,70,98900,252,1340,314,41,0,41,4700,0,4700,1570,310,5.7,10,10,11.3,930,9,999999999,100,0.1680,0,88,0.190,0.0,6.0 +1997,5,10,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,1.0,70,99000,504,1340,314,86,0,86,10100,0,10100,3660,320,4.6,10,10,11.3,930,9,999999999,100,0.1680,0,88,0.190,999.0,99.0 +1997,5,10,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,1.0,70,99000,741,1340,314,146,0,146,17200,0,17200,6620,310,6.2,10,10,11.3,900,9,999999999,110,0.1680,0,88,0.190,999.0,99.0 +1997,5,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,2.0,66,99100,945,1340,315,404,157,292,44400,16700,32600,8910,320,7.2,9,9,11.3,900,9,999999999,110,0.1680,0,88,0.190,999.0,99.0 +1997,5,10,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,3.0,62,99100,1102,1340,325,453,123,351,50000,13100,39200,13260,340,3.6,9,9,11.3,900,9,999999999,110,0.1680,0,88,0.190,999.0,99.0 +1997,5,10,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,1.0,50,99100,1203,1340,328,508,262,272,57300,28600,31500,12950,310,6.2,9,9,11.3,900,9,999999999,110,0.1680,0,88,0.190,999.0,99.0 +1997,5,10,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.0,1.0,44,99100,1239,1340,318,723,447,309,78700,46800,35300,19280,310,6.7,5,5,11.3,77777,9,999999999,110,0.1680,0,88,0.190,0.0,6.0 +1997,5,10,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,-1.0,35,99100,1209,1340,320,964,715,319,100500,71600,35800,16720,330,7.7,5,5,11.3,77777,9,999999999,110,0.1680,0,88,0.190,999.0,99.0 +1997,5,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,-1.0,35,99100,1114,1340,320,657,522,222,69500,53100,25300,8760,300,7.2,5,5,11.3,77777,9,999999999,110,0.1680,0,88,0.190,999.0,99.0 +1997,5,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,-2.0,30,99000,961,1340,324,682,632,228,70800,63300,25300,6370,300,5.1,5,5,11.3,77777,9,999999999,110,0.1680,0,88,0.190,999.0,99.0 +1997,5,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,-1.0,33,99000,761,1340,317,487,582,156,50700,57800,17800,3470,290,5.1,2,2,11.3,77777,9,999999999,110,0.1680,0,88,0.190,999.0,99.0 +1997,5,10,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,-2.0,30,99000,527,1340,305,323,572,97,33400,53900,12200,1890,290,5.1,0,0,11.3,77777,9,999999999,110,0.1680,0,88,0.190,999.0,99.0 +1997,5,10,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.0,-3.0,30,99000,276,1340,300,127,327,59,13300,24900,8200,1060,300,4.6,0,0,11.3,77777,9,999999999,110,0.1680,0,88,0.190,0.0,6.0 +1997,5,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,-3.0,36,99000,46,860,300,10,8,9,1000,400,1000,230,310,2.6,3,3,11.3,77777,9,999999999,110,0.1680,0,88,0.190,999.0,99.0 +1997,5,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,-2.0,42,99000,0,0,294,0,0,0,0,0,0,0,300,2.6,2,2,11.3,77777,9,999999999,110,0.1680,0,88,0.190,999.0,99.0 +1997,5,10,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,-2.0,42,99000,0,0,285,0,0,0,0,0,0,0,300,3.1,0,0,11.3,77777,9,999999999,110,0.1680,0,88,0.190,999.0,99.0 +1997,5,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,-2.0,48,99000,0,0,277,0,0,0,0,0,0,0,310,2.6,0,0,11.3,77777,9,999999999,110,0.1680,0,88,0.190,999.0,99.0 +1997,5,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,-2.0,52,99000,0,0,273,0,0,0,0,0,0,0,290,2.6,0,0,11.3,77777,9,999999999,110,0.1680,0,88,0.190,999.0,99.0 +1997,5,11,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-1.0,64,98900,0,0,266,0,0,0,0,0,0,0,220,1.5,0,0,11.3,77777,9,999999999,110,0.1680,0,88,0.190,0.0,6.0 +1997,5,11,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-1.0,64,98900,0,0,266,0,0,0,0,0,0,0,210,2.1,0,0,11.3,77777,9,999999999,110,0.1680,0,88,0.190,999.0,99.0 +1997,5,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-1.0,64,98900,0,0,266,0,0,0,0,0,0,0,200,3.1,0,0,11.3,77777,9,999999999,110,0.1680,0,88,0.190,999.0,99.0 +1997,5,11,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-1.0,69,98800,0,0,262,0,0,0,0,0,0,0,0,0.0,0,0,11.3,77777,9,999999999,110,0.1680,0,88,0.190,999.0,99.0 +1997,5,11,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,-1.0,74,98900,0,0,259,0,0,0,0,0,0,0,150,1.5,0,0,11.3,77777,9,999999999,110,0.1680,0,88,0.190,999.0,99.0 +1997,5,11,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,0.0,81,98900,35,748,259,9,49,7,1100,1700,1000,120,130,1.5,0,0,11.3,77777,9,999999999,110,0.1680,0,88,0.190,999.0,99.0 +1997,5,11,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.0,1.0,70,98900,256,1339,272,127,423,46,13000,31800,7000,840,160,1.0,0,0,11.3,77777,9,999999999,110,0.1680,0,88,0.190,0.0,6.0 +1997,5,11,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,3.0,54,99000,507,1339,298,325,664,73,34300,62800,10500,1470,210,2.1,0,0,11.3,77777,9,999999999,110,0.1680,0,88,0.190,999.0,99.0 +1997,5,11,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,1.0,39,99000,744,1339,309,532,783,97,55800,77500,12700,2150,210,5.1,0,0,11.3,77777,9,999999999,120,0.1680,0,88,0.190,999.0,99.0 +1997,5,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,1.0,34,98900,947,1339,328,654,683,171,69300,69400,20200,4850,220,7.2,2,2,11.3,77777,9,999999999,120,0.1680,0,88,0.190,999.0,99.0 +1997,5,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,3.0,37,98900,1104,1339,338,786,693,215,83500,70500,25200,8300,220,7.2,3,3,11.3,77777,9,999999999,120,0.1680,0,88,0.190,999.0,99.0 +1997,5,11,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,3.0,32,98800,1204,1339,360,663,151,527,72000,16000,57600,25100,250,7.7,9,7,11.3,7500,9,999999999,120,0.1680,0,88,0.190,999.0,99.0 +1997,5,11,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,3.0,32,98700,1241,1339,366,739,421,349,79500,44000,38600,22110,230,5.7,9,8,11.3,7500,9,999999999,129,0.1680,0,88,0.190,0.0,6.0 +1997,5,11,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,4.0,33,98500,1210,1339,366,535,227,329,59500,24700,37100,16350,200,7.2,9,7,11.3,7500,9,999999999,129,0.1680,0,88,0.190,999.0,99.0 +1997,5,11,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,3.0,29,98400,1116,1339,363,802,705,215,85300,71800,25300,8560,210,7.2,5,5,11.3,77777,9,999999999,129,0.1680,0,88,0.190,999.0,99.0 +1997,5,11,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,4.0,31,98300,963,1339,364,658,689,163,70200,70200,19600,4780,210,6.7,5,5,11.3,77777,9,999999999,129,0.1680,0,88,0.190,999.0,99.0 +1997,5,11,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,4.0,31,98200,763,1339,364,424,439,174,45500,44800,19900,3910,220,8.2,5,5,11.3,77777,9,999999999,139,0.1680,0,88,0.190,999.0,99.0 +1997,5,11,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,4.0,33,98100,530,1339,366,179,45,161,19600,4300,17900,4490,220,7.2,9,7,11.3,7500,9,999999999,139,0.1680,0,88,0.190,999.0,99.0 +1997,5,11,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,3.0,32,98000,279,1339,366,54,4,53,6200,100,6100,1990,210,6.7,9,8,11.3,7500,9,999999999,139,0.1680,0,88,0.190,0.0,6.0 +1997,5,11,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,3.0,34,98000,48,882,348,11,21,9,1200,700,1100,140,210,5.1,5,5,11.3,77777,9,999999999,150,0.1680,0,88,0.190,999.0,99.0 +1997,5,11,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,3.0,37,98000,0,0,356,0,0,0,0,0,0,0,220,4.1,9,8,11.3,7500,9,999999999,150,0.1680,0,88,0.190,999.0,99.0 +1997,5,11,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,3.0,39,97900,0,0,339,0,0,0,0,0,0,0,210,4.6,5,5,11.3,77777,9,999999999,150,0.1680,0,88,0.190,999.0,99.0 +1997,5,11,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,4.0,45,97800,0,0,330,0,0,0,0,0,0,0,210,4.1,3,3,11.3,77777,9,999999999,150,0.1680,0,88,0.190,999.0,99.0 +1997,5,11,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,4.0,45,97800,0,0,335,0,0,0,0,0,0,0,220,4.1,5,5,11.3,77777,9,999999999,160,0.1680,0,88,0.190,999.0,99.0 +1997,5,12,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.0,4.0,45,97800,0,0,342,0,0,0,0,0,0,0,220,4.6,9,7,11.3,2400,9,999999999,160,0.1690,0,88,0.190,0.0,6.0 +1997,5,12,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,4.0,45,97700,0,0,347,0,0,0,0,0,0,0,240,5.7,9,8,11.3,3600,9,999999999,160,0.1690,0,88,0.190,999.0,99.0 +1997,5,12,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,8.0,67,97800,0,0,360,0,0,0,0,0,0,0,290,5.1,10,10,11.3,2400,9,999999999,160,0.1690,0,88,0.190,999.0,99.0 +1997,5,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.0,10.0,88,97700,0,0,352,0,0,0,0,0,0,0,260,3.6,10,10,11.3,1500,9,999999999,170,0.1690,0,88,0.190,0.0,3.0 +1997,5,12,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,11.0,94,97700,0,0,353,0,0,0,0,0,0,0,250,3.6,10,10,11.3,1800,9,999999999,170,0.1690,0,88,0.190,999.0,99.0 +1997,5,12,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,10.0,94,97700,37,770,347,5,0,5,600,0,600,200,240,4.1,10,10,11.3,2100,9,999999999,170,0.1690,0,88,0.190,999.0,99.0 +1997,5,12,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.0,8.0,76,97800,259,1339,350,56,0,56,6300,0,6300,2020,240,4.6,10,10,11.3,3600,9,999999999,179,0.1690,0,88,0.190,0.0,6.0 +1997,5,12,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,9.0,82,97800,511,1339,351,86,0,86,10100,0,10100,3680,240,5.7,10,10,11.3,600,9,999999999,170,0.1690,0,88,0.190,999.0,99.0 +1997,5,12,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,6.0,62,97800,746,1339,330,313,184,211,34600,19200,23800,5490,270,6.2,9,7,11.3,4200,9,999999999,170,0.1690,0,88,0.190,999.0,99.0 +1997,5,12,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.0,6.0,59,97900,949,1339,340,379,96,311,41800,9800,34800,11160,260,6.7,9,8,11.3,4200,9,999999999,170,0.1690,0,88,0.190,0.0,3.0 +1997,5,12,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,4.0,51,97900,1106,1339,333,586,261,370,63900,28300,40400,14120,250,7.7,9,7,11.3,7500,9,999999999,160,0.1690,0,88,0.190,999.0,99.0 +1997,5,12,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,4.0,51,97900,1206,1339,326,879,659,284,92300,66500,32300,14960,260,6.2,5,5,11.3,77777,9,999999999,160,0.1690,0,88,0.190,999.0,99.0 +1997,5,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,3.0,44,97900,1242,1339,329,843,484,394,89600,50500,42600,25350,270,8.2,5,5,11.3,77777,9,999999999,160,0.1690,0,88,0.190,0.0,6.0 +1997,5,12,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,3.0,42,97900,1212,1339,346,755,467,332,81300,48800,37000,18550,260,6.7,9,8,11.3,7500,9,999999999,160,0.1690,0,88,0.190,999.0,99.0 +1997,5,12,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,2.0,39,97800,1117,1339,340,539,201,371,59400,21400,41500,14440,250,7.2,9,7,11.3,7500,9,999999999,150,0.1690,0,88,0.190,999.0,99.0 +1997,5,12,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,0.0,32,97800,965,1339,347,550,147,443,60300,15300,49300,14900,280,9.3,9,8,11.3,7500,9,999999999,150,0.1690,0,88,0.190,999.0,99.0 +1997,5,12,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,0.0,34,97800,766,1339,337,382,155,293,41300,16100,32100,7720,280,6.2,9,7,11.3,7500,9,999999999,150,0.1690,0,88,0.190,999.0,99.0 +1997,5,12,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,-2.0,30,97900,533,1339,336,228,110,185,25100,10700,20800,5010,280,7.2,9,8,11.3,7500,9,999999999,150,0.1690,0,88,0.190,999.0,99.0 +1997,5,12,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.0,-1.0,35,97800,282,1339,327,89,40,80,9700,3300,9000,1990,250,5.7,9,7,11.3,7500,9,999999999,139,0.1690,0,88,0.190,0.0,6.0 +1997,5,12,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,-1.0,40,97900,50,881,323,11,1,11,1300,0,1300,410,270,3.1,9,8,11.3,7500,9,999999999,139,0.1690,0,88,0.190,999.0,99.0 +1997,5,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,-1.0,46,97900,0,0,309,0,0,0,0,0,0,0,220,2.6,9,7,11.3,7500,9,999999999,139,0.1690,0,88,0.190,999.0,99.0 +1997,5,12,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,-1.0,46,97900,0,0,303,0,0,0,0,0,0,0,230,2.6,5,5,11.3,77777,9,999999999,139,0.1690,0,88,0.190,999.0,99.0 +1997,5,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,0.0,53,97900,0,0,300,0,0,0,0,0,0,0,200,2.1,5,5,11.3,77777,9,999999999,129,0.1690,0,88,0.190,999.0,99.0 +1997,5,12,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,0.0,57,97800,0,0,295,0,0,0,0,0,0,0,90,1.0,5,5,11.3,77777,9,999999999,129,0.1690,0,88,0.190,999.0,99.0 +1997,5,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.0,0.0,57,97800,0,0,295,0,0,0,0,0,0,0,140,2.1,5,5,11.3,77777,9,999999999,129,0.1700,0,88,0.190,0.0,6.0 +1997,5,13,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,0.0,61,97700,0,0,291,0,0,0,0,0,0,0,70,0.5,5,5,11.3,77777,9,999999999,129,0.1700,0,88,0.190,999.0,99.0 +1997,5,13,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,0.0,57,97700,0,0,284,0,0,0,0,0,0,0,150,1.5,3,1,11.3,77777,9,999999999,120,0.1700,0,88,0.190,999.0,99.0 +1997,5,13,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,0.0,70,97700,0,0,272,0,0,0,0,0,0,0,140,0.5,2,1,11.3,77777,9,999999999,120,0.1700,0,88,0.190,999.0,99.0 +1997,5,13,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,1.0,75,97700,0,0,273,0,0,0,0,0,0,0,130,1.5,3,1,11.3,77777,9,999999999,120,0.1700,0,88,0.190,999.0,99.0 +1997,5,13,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,1.0,75,97700,39,792,284,10,39,8,1100,1400,1100,130,160,2.1,5,5,11.3,77777,9,999999999,110,0.1700,0,88,0.190,999.0,99.0 +1997,5,13,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.0,1.0,57,97800,263,1338,301,112,127,87,12000,9800,10100,1870,240,1.5,5,5,11.3,77777,9,999999999,110,0.1700,0,88,0.190,0.0,6.0 +1997,5,13,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,0.0,47,97800,514,1338,315,263,259,163,27800,25300,18000,3450,190,2.1,9,7,11.3,7500,9,999999999,110,0.1700,0,88,0.190,999.0,99.0 +1997,5,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,0.0,38,97800,749,1338,333,197,131,124,22200,13900,14400,2690,230,2.6,9,8,11.3,7500,9,999999999,110,0.1700,0,88,0.190,999.0,99.0 +1997,5,13,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,0.0,38,97800,952,1338,328,565,367,304,61300,39600,33100,8890,220,3.1,9,7,11.3,6600,9,999999999,120,0.1700,0,88,0.190,999.0,99.0 +1997,5,13,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,1.0,34,97800,1108,1338,349,727,329,454,78000,35600,48500,17930,230,4.1,9,8,11.3,6600,9,999999999,120,0.1700,0,88,0.190,999.0,99.0 +1997,5,13,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,-1.0,29,97700,1208,1338,341,747,528,269,78700,53500,30400,14360,200,5.1,9,7,11.3,6600,9,999999999,120,0.1700,0,88,0.190,999.0,99.0 +1997,5,13,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,0.0,36,97700,1244,1338,338,530,191,352,58900,20800,39500,20120,250,4.1,9,8,11.3,1200,9,999999999,120,0.1700,0,88,0.190,0.0,6.0 +1997,5,13,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,1.0,41,97700,1213,1338,329,789,278,536,85600,29400,58900,26300,120,4.6,9,7,11.3,1500,9,999999999,120,0.1700,0,88,0.190,999.0,99.0 +1997,5,13,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,0.0,30,97700,1119,1338,352,554,298,304,61300,32400,34200,11660,240,6.2,9,8,11.3,1500,9,999999999,120,0.1700,0,88,0.190,999.0,99.0 +1997,5,13,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,2.0,34,97700,967,1338,349,593,442,274,62900,45900,29700,8120,270,7.7,9,7,11.3,1500,9,999999999,120,0.1700,0,88,0.190,999.0,99.0 +1997,5,13,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,1.0,36,97700,768,1338,332,423,268,269,45000,28300,28800,6680,280,6.2,5,5,11.3,77777,9,999999999,120,0.1700,0,88,0.190,999.0,99.0 +1997,5,13,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,1.0,39,97700,535,1338,327,266,284,152,28400,28100,17100,3170,300,4.6,5,5,11.3,77777,9,999999999,120,0.1700,0,88,0.190,999.0,99.0 +1997,5,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.0,2.0,47,97800,285,1338,319,117,272,59,12400,21000,7900,1060,270,3.6,5,5,11.3,77777,9,999999999,129,0.1700,0,88,0.190,0.0,6.0 +1997,5,13,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,3.0,58,97800,53,903,311,12,25,10,1300,800,1200,160,250,2.6,5,5,11.3,77777,9,999999999,129,0.1700,0,88,0.190,999.0,99.0 +1997,5,13,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,2.0,54,97900,0,0,299,0,0,0,0,0,0,0,210,1.5,3,1,11.3,77777,9,999999999,129,0.1700,0,88,0.190,999.0,99.0 +1997,5,13,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,4.0,76,97900,0,0,306,0,0,0,0,0,0,0,210,2.1,9,7,11.3,3000,9,999999999,129,0.1700,0,88,0.190,999.0,99.0 +1997,5,13,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,3.0,62,97900,0,0,318,0,0,0,0,0,0,0,130,1.5,9,8,11.3,3000,9,999999999,129,0.1700,0,88,0.190,999.0,99.0 +1997,5,13,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,3.0,66,97900,0,0,303,0,0,0,0,0,0,0,130,1.0,5,5,11.3,77777,9,999999999,129,0.1700,0,88,0.190,999.0,99.0 +1997,5,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.0,2.0,66,97800,0,0,315,0,0,0,0,0,0,0,160,1.5,9,9,11.3,2100,9,999999999,129,0.1700,0,88,0.190,0.0,6.0 +1997,5,14,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,4.0,71,97800,0,0,322,0,0,0,0,0,0,0,140,1.0,9,9,11.3,2100,9,999999999,129,0.1700,0,88,0.190,999.0,99.0 +1997,5,14,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,4.0,71,97800,0,0,322,0,0,0,0,0,0,0,190,1.5,9,9,11.3,3600,9,999999999,129,0.1700,0,88,0.190,999.0,99.0 +1997,5,14,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,4.0,71,97800,0,0,331,0,0,0,0,0,0,0,190,2.1,10,10,11.3,3600,9,999999999,139,0.1700,0,88,0.190,999.0,99.0 +1997,5,14,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,4.0,76,97700,0,0,326,0,0,0,0,0,0,0,150,2.6,10,10,11.3,2700,9,999999999,139,0.1700,0,88,0.190,999.0,99.0 +1997,5,14,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,4.0,71,97700,41,814,322,8,0,8,1000,0,1000,300,170,2.1,9,9,11.3,3000,9,999999999,139,0.1700,0,88,0.190,999.0,99.0 +1997,5,14,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,4.0,66,97800,266,1337,326,60,18,56,6500,1500,6300,1470,190,2.6,9,9,11.3,3000,9,999999999,139,0.1700,0,88,0.190,0.0,6.0 +1997,5,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,4.0,58,97800,516,1337,336,183,40,167,20000,3800,18500,4560,200,2.6,9,9,11.3,5400,9,999999999,139,0.1700,0,88,0.190,999.0,99.0 +1997,5,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,4.0,48,97700,751,1337,350,315,122,246,34300,12700,27200,6420,190,3.6,9,9,11.3,5400,9,999999999,139,0.1700,0,88,0.190,999.0,99.0 +1997,5,14,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,3.0,42,97700,954,1337,364,201,0,201,24000,0,24000,9590,170,3.1,10,10,11.3,2400,9,999999999,139,0.1700,0,88,0.190,999.0,99.0 +1997,5,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,4.0,51,97700,1110,1337,355,243,0,243,29200,0,29200,11740,200,2.6,10,10,11.3,1500,9,999999999,139,0.1700,0,88,0.190,999.0,99.0 +1997,5,14,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,7.0,55,97700,1209,1337,359,458,25,435,53400,2500,51200,18280,180,1.0,9,9,11.3,2400,9,999999999,139,0.1700,0,88,0.190,999.0,99.0 +1997,5,14,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.0,8.0,52,97600,1245,1337,370,561,69,497,61900,7200,55300,25570,240,4.1,9,9,11.3,1350,9,999999999,139,0.1700,0,88,0.190,0.0,6.0 +1997,5,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,9.0,52,97500,1215,1337,376,641,109,541,70500,11400,60200,25450,230,4.1,9,9,11.3,1200,9,999999999,129,0.1700,0,88,0.190,999.0,99.0 +1997,5,14,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,8.0,49,97500,1121,1337,375,664,276,432,71600,29900,46500,17400,200,4.1,9,9,11.3,1200,9,999999999,129,0.1700,0,88,0.190,999.0,99.0 +1997,5,14,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.0,11.0,82,97400,969,1337,364,205,0,205,24500,0,24500,9810,300,4.1,10,10,8.0,1200,9,999999999,129,0.1700,0,88,0.190,2.0,3.0 +1997,5,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.2,12.5,84,97400,770,1337,341,405,378,187,43200,38600,20900,4260,220,1.5,5,5,11.3,77777,9,999999999,129,0.1700,0,88,0.190,999.0,99.0 +1997,5,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,14.0,88,97400,538,1337,367,230,193,153,25300,19100,17600,3590,130,1.5,9,9,11.3,2700,9,999999999,129,0.1700,0,88,0.190,999.0,99.0 +1997,5,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.0,5.0,42,97400,289,1337,366,63,16,60,7000,1300,6700,1590,260,6.7,9,9,11.3,7500,9,999999999,129,0.1700,0,88,0.190,16.0,6.0 +1997,5,14,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,4.0,42,97500,55,925,360,12,1,12,1400,0,1400,440,260,6.7,9,9,11.3,2400,9,999999999,129,0.1700,0,88,0.190,999.0,99.0 +1997,5,14,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,2.0,44,97700,0,0,324,0,0,0,0,0,0,0,280,7.2,5,5,11.3,77777,9,999999999,129,0.1700,0,88,0.190,999.0,99.0 +1997,5,14,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,4.0,58,97700,0,0,336,0,0,0,0,0,0,0,270,5.1,9,9,11.3,2100,9,999999999,129,0.1700,0,88,0.190,999.0,99.0 +1997,5,14,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,4.0,58,97800,0,0,317,0,0,0,0,0,0,0,270,3.6,5,5,11.3,77777,9,999999999,129,0.1700,0,88,0.190,999.0,99.0 +1997,5,14,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,4.0,62,97800,0,0,331,0,0,0,0,0,0,0,290,7.2,9,9,11.3,2100,9,999999999,129,0.1700,0,88,0.190,999.0,99.0 +1997,5,15,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,4.0,66,97800,0,0,320,0,0,0,0,0,0,0,290,6.7,9,8,11.3,2100,9,999999999,129,0.1710,0,88,0.190,0.0,6.0 +1997,5,15,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,3.0,62,97800,0,0,334,0,0,0,0,0,0,0,280,5.7,10,10,11.3,1800,9,999999999,129,0.1710,0,88,0.190,999.0,99.0 +1997,5,15,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,2.0,61,97900,0,0,329,0,0,0,0,0,0,0,300,5.7,10,10,11.3,1800,9,999999999,129,0.1710,0,88,0.190,999.0,99.0 +1997,5,15,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,2.0,70,97900,0,0,286,0,0,0,0,0,0,0,270,5.1,2,2,11.3,77777,9,999999999,120,0.1710,0,88,0.190,999.0,99.0 +1997,5,15,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,2.0,75,97900,0,0,273,0,0,0,0,0,0,0,250,4.1,0,0,11.3,77777,9,999999999,120,0.1710,0,88,0.190,999.0,99.0 +1997,5,15,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,2.0,75,97900,43,836,273,13,86,8,1400,3900,1200,160,230,4.6,0,0,11.3,77777,9,999999999,120,0.1710,0,88,0.190,999.0,99.0 +1997,5,15,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.0,2.0,61,98000,269,1337,285,140,489,42,14600,37900,7000,780,240,6.2,0,0,11.3,77777,9,999999999,120,0.1710,0,88,0.190,0.0,6.0 +1997,5,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,0.0,50,98000,519,1337,287,340,708,65,35600,67000,9500,1350,260,7.2,0,0,11.3,77777,9,999999999,120,0.1710,0,88,0.190,999.0,99.0 +1997,5,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,-2.0,39,98000,753,1337,301,526,707,127,55500,70800,15500,2900,250,9.3,3,3,11.3,77777,9,999999999,120,0.1710,0,88,0.190,999.0,99.0 +1997,5,15,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,-2.0,37,98000,956,1337,310,630,608,195,66200,61400,22200,5540,260,9.8,5,5,11.3,77777,9,999999999,120,0.1710,0,88,0.190,999.0,99.0 +1997,5,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,-5.0,29,98000,1112,1337,318,698,188,542,75200,19800,58700,20940,280,10.3,9,8,11.3,6000,9,999999999,120,0.1710,0,88,0.190,999.0,99.0 +1997,5,15,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,-5.0,25,98000,1211,1337,322,702,530,221,75100,54200,25900,12160,270,10.8,9,7,11.3,6000,9,999999999,120,0.1710,0,88,0.190,999.0,99.0 +1997,5,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.0,-4.0,29,98000,1247,1337,312,947,711,283,99900,71900,32700,18060,290,11.3,5,5,11.3,77777,9,999999999,120,0.1710,0,88,0.190,0.0,6.0 +1997,5,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,-5.0,29,98100,1217,1337,313,641,128,524,70600,13300,58500,24920,270,9.3,9,7,11.3,7500,9,999999999,110,0.1710,0,88,0.190,999.0,99.0 +1997,5,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,-6.0,26,98100,1123,1337,317,529,273,299,58700,29700,33700,11560,270,8.2,9,8,11.3,7500,9,999999999,110,0.1710,0,88,0.190,999.0,99.0 +1997,5,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,-2.0,37,98200,971,1337,317,566,432,252,60600,44900,27900,7480,300,11.3,9,7,11.3,7500,9,999999999,110,0.1710,0,88,0.190,999.0,99.0 +1997,5,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,-3.0,36,98300,773,1337,316,334,235,198,36400,24900,22000,4650,310,9.3,9,8,11.3,7500,9,999999999,110,0.1710,0,88,0.190,999.0,99.0 +1997,5,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,-1.0,49,98300,541,1337,305,165,119,117,18400,11800,13600,2750,300,8.2,9,7,11.3,1500,9,999999999,110,0.1710,0,88,0.190,999.0,99.0 +1997,5,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.0,0.0,57,98400,292,1337,306,105,98,84,11400,7900,9700,1820,320,7.2,9,8,11.3,1500,9,999999999,110,0.1710,0,88,0.190,0.0,6.0 +1997,5,15,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,0.0,57,98500,57,947,301,16,10,16,1800,600,1800,400,310,6.7,9,7,11.3,1110,9,999999999,110,0.1710,0,88,0.190,999.0,99.0 +1997,5,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,0.0,61,98600,0,0,302,0,0,0,0,0,0,0,300,5.1,9,8,11.3,7500,9,999999999,110,0.1710,0,88,0.190,999.0,99.0 +1997,5,15,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,1.0,66,98600,0,0,298,0,0,0,0,0,0,0,300,5.1,9,7,11.3,3000,9,999999999,110,0.1710,0,88,0.190,999.0,99.0 +1997,5,15,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,1.0,70,98600,0,0,299,0,0,0,0,0,0,0,300,5.1,9,8,11.3,7500,9,999999999,100,0.1710,0,88,0.190,999.0,99.0 +1997,5,15,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,1.0,75,98600,0,0,277,0,0,0,0,0,0,0,300,4.6,2,2,11.3,77777,9,999999999,100,0.1710,0,88,0.190,999.0,99.0 +1997,5,16,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,1.0,75,98600,0,0,277,0,0,0,0,0,0,0,290,4.1,2,2,11.3,77777,9,999999999,100,0.1720,0,88,0.190,0.0,6.0 +1997,5,16,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,1.0,75,98700,0,0,280,0,0,0,0,0,0,0,300,4.1,3,3,11.3,77777,9,999999999,100,0.1720,0,88,0.190,999.0,99.0 +1997,5,16,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,1.0,81,98700,0,0,264,0,0,0,0,0,0,0,300,3.6,0,0,11.3,77777,9,999999999,100,0.1720,0,88,0.190,999.0,99.0 +1997,5,16,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,1.0,87,98700,0,0,260,0,0,0,0,0,0,0,280,2.6,0,0,11.3,77777,9,999999999,100,0.1720,0,88,0.190,999.0,99.0 +1997,5,16,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,0.0,81,98800,0,0,259,0,0,0,0,0,0,0,290,2.6,0,0,11.3,77777,9,999999999,100,0.1720,0,88,0.190,999.0,99.0 +1997,5,16,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,0.0,81,98900,45,857,271,10,17,9,1200,700,1100,190,270,2.1,3,3,11.3,77777,9,999999999,100,0.1720,0,88,0.190,999.0,99.0 +1997,5,16,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-1.0,64,99000,272,1336,275,123,289,64,12800,21800,8400,1160,320,3.6,2,2,11.3,77777,9,999999999,100,0.1720,0,88,0.190,0.0,6.0 +1997,5,16,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,-1.0,56,99100,522,1336,290,268,315,145,28700,30900,16600,3000,330,3.1,5,5,11.3,77777,9,999999999,100,0.1720,0,88,0.190,999.0,99.0 +1997,5,16,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,-2.0,48,99100,756,1336,286,410,420,172,44000,42800,19700,3850,330,2.6,2,2,11.3,77777,9,999999999,100,0.1720,0,88,0.190,999.0,99.0 +1997,5,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,-1.0,46,99100,957,1336,298,557,474,217,60400,49300,25000,6230,300,4.1,3,3,11.3,77777,9,999999999,110,0.1720,0,88,0.190,999.0,99.0 +1997,5,16,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,-1.0,43,99000,1113,1336,313,473,153,346,52400,16300,38800,13400,290,5.1,9,7,11.3,1500,9,999999999,110,0.1720,0,88,0.190,999.0,99.0 +1997,5,16,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,-1.0,40,99000,1212,1336,323,502,125,388,55600,13400,43400,19050,280,4.1,9,8,11.3,1500,9,999999999,110,0.1720,0,88,0.190,999.0,99.0 +1997,5,16,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.0,-1.0,40,98900,1248,1336,318,497,165,342,55600,17700,39000,19000,260,5.7,9,7,11.3,1800,9,999999999,120,0.1720,0,88,0.190,0.0,6.0 +1997,5,16,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,0.0,41,98900,1218,1336,329,803,236,587,86700,24900,63900,29360,270,4.6,9,8,11.3,1800,9,999999999,120,0.1720,0,88,0.190,999.0,99.0 +1997,5,16,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,-1.0,38,98800,1124,1336,322,747,323,475,80100,34900,50600,19590,270,5.1,9,7,11.3,1800,9,999999999,129,0.1720,0,88,0.190,999.0,99.0 +1997,5,16,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,0.0,36,98700,973,1336,338,537,368,268,57000,38200,29100,8020,280,7.2,9,8,11.3,1800,9,999999999,129,0.1720,0,88,0.190,999.0,99.0 +1997,5,16,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,0.0,34,98700,775,1336,322,499,630,133,52600,63200,15900,3090,240,5.7,2,2,11.3,77777,9,999999999,129,0.1720,0,88,0.190,999.0,99.0 +1997,5,16,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,-1.0,33,98600,544,1336,337,186,81,153,20400,7800,17200,4380,260,6.2,9,8,11.3,6000,9,999999999,139,0.1720,0,88,0.190,999.0,99.0 +1997,5,16,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.0,0.0,38,98500,295,1336,328,69,42,59,7500,3500,6700,1580,230,4.6,9,7,11.3,6000,9,999999999,139,0.1720,0,88,0.190,0.0,6.0 +1997,5,16,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,0.0,38,98400,60,969,333,13,7,13,1500,400,1500,330,210,3.6,9,8,11.3,3300,9,999999999,150,0.1720,0,88,0.190,999.0,99.0 +1997,5,16,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,0.0,38,98400,0,0,350,0,0,0,0,0,0,0,210,4.1,10,10,11.3,3300,9,999999999,150,0.1720,0,88,0.190,999.0,99.0 +1997,5,16,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,0.0,38,98300,0,0,333,0,0,0,0,0,0,0,210,5.1,9,8,11.3,3300,9,999999999,150,0.1720,0,88,0.190,999.0,99.0 +1997,5,16,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,1.0,41,98300,0,0,329,0,0,0,0,0,0,0,230,3.6,9,7,11.3,2400,9,999999999,160,0.1720,0,88,0.190,999.0,99.0 +1997,5,16,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,3.0,54,98300,0,0,328,0,0,0,0,0,0,0,230,4.1,9,8,11.3,3300,9,999999999,160,0.1720,0,88,0.190,999.0,99.0 +1997,5,17,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.0,2.0,50,98200,0,0,333,0,0,0,0,0,0,0,210,5.7,10,9,11.3,2400,9,999999999,170,0.1720,0,88,0.190,0.0,6.0 +1997,5,17,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,1.0,44,98100,0,0,337,0,0,0,0,0,0,0,220,6.7,10,9,11.3,2400,9,999999999,170,0.1720,0,88,0.190,999.0,99.0 +1997,5,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,2.0,50,98000,0,0,333,0,0,0,0,0,0,0,220,6.2,10,9,11.3,2400,9,999999999,170,0.1720,0,88,0.190,999.0,99.0 +1997,5,17,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,2.0,50,97900,0,0,315,0,0,0,0,0,0,0,240,5.1,9,5,11.3,2400,9,999999999,179,0.1720,0,88,0.190,999.0,99.0 +1997,5,17,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,3.0,54,97900,0,0,311,0,0,0,0,0,0,0,230,4.6,5,3,11.3,77777,9,999999999,179,0.1720,0,88,0.190,999.0,99.0 +1997,5,17,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,3.0,51,98000,47,857,320,11,5,11,1200,300,1200,280,250,5.7,9,5,11.3,3300,9,999999999,179,0.1720,0,88,0.190,999.0,99.0 +1997,5,17,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.0,4.0,51,98100,275,1336,326,77,77,61,8500,6100,7200,1310,250,6.2,9,5,11.3,3300,9,999999999,189,0.1720,0,88,0.190,0.0,6.0 +1997,5,17,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,6.0,51,98100,524,1336,325,307,563,86,32200,53400,11200,1710,260,5.7,2,1,11.3,77777,9,999999999,189,0.1720,0,88,0.190,999.0,99.0 +1997,5,17,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,7.0,49,98200,758,1336,329,530,737,112,56600,74300,14300,2610,260,4.6,0,0,11.3,77777,9,999999999,189,0.1720,0,88,0.190,999.0,99.0 +1997,5,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,6.0,43,98300,959,1336,332,711,805,133,74700,80800,16600,3620,260,4.1,0,0,11.3,77777,9,999999999,189,0.1720,0,88,0.190,999.0,99.0 +1997,5,17,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,7.0,40,98300,1115,1336,342,852,844,147,90500,85300,19100,5580,260,2.6,0,0,11.3,77777,9,999999999,200,0.1720,0,88,0.190,999.0,99.0 +1997,5,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,7.0,38,98300,1214,1336,347,942,865,155,100700,87700,20800,8240,240,4.6,0,0,11.3,77777,9,999999999,200,0.1720,0,88,0.190,999.0,99.0 +1997,5,17,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.0,5.0,33,98200,1249,1336,351,918,796,173,97500,80400,22100,10750,320,4.6,3,1,11.3,77777,9,999999999,200,0.1720,0,88,0.190,0.0,6.0 +1997,5,17,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,6.0,31,98200,1219,1336,362,898,809,158,95800,82000,20800,8590,260,6.2,2,1,11.3,77777,9,999999999,200,0.1720,0,88,0.190,999.0,99.0 +1997,5,17,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,7.0,32,98200,1126,1336,368,849,819,159,89600,82600,19900,6130,240,2.6,3,1,11.3,77777,9,999999999,209,0.1720,0,88,0.190,999.0,99.0 +1997,5,17,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.0,8.0,32,98200,975,1336,374,714,791,137,75000,79400,16900,3810,250,4.6,2,1,11.3,77777,9,999999999,209,0.1720,0,88,0.190,999.0,99.0 +1997,5,17,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,7.0,34,98200,777,1336,378,333,142,250,36400,14800,27800,6640,270,4.1,9,5,11.3,1800,9,999999999,209,0.1720,0,88,0.190,999.0,99.0 +1997,5,17,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,9.0,41,98100,546,1336,375,253,251,150,27100,25000,16900,3120,230,3.1,9,5,11.3,1800,9,999999999,209,0.1720,0,88,0.190,999.0,99.0 +1997,5,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.0,9.0,43,98100,298,1336,364,143,238,89,14900,18800,10700,1750,240,3.1,5,3,11.3,77777,9,999999999,209,0.1720,0,88,0.190,0.0,6.0 +1997,5,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,9.0,49,98100,62,991,360,20,10,19,2200,600,2100,460,210,2.6,9,5,11.3,3600,9,999999999,220,0.1720,0,88,0.190,999.0,99.0 +1997,5,17,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,10.0,53,98200,0,0,361,0,0,0,0,0,0,0,220,2.6,9,5,11.3,2400,9,999999999,220,0.1720,0,88,0.190,999.0,99.0 +1997,5,17,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,10.0,53,98200,0,0,348,0,0,0,0,0,0,0,220,3.1,2,1,11.3,77777,9,999999999,220,0.1720,0,88,0.190,999.0,99.0 +1997,5,17,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,11.0,60,98200,0,0,358,0,0,0,0,0,0,0,200,2.6,9,5,11.3,3000,9,999999999,220,0.1720,0,88,0.190,999.0,99.0 +1997,5,17,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,11.0,64,98100,0,0,344,0,0,0,0,0,0,0,200,2.6,5,2,11.3,77777,9,999999999,220,0.1720,0,88,0.190,999.0,99.0 +1997,5,18,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.0,11.0,68,98100,0,0,335,0,0,0,0,0,0,0,190,2.6,2,1,11.3,77777,9,999999999,229,0.1730,0,88,0.190,0.0,6.0 +1997,5,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,11.0,77,98100,0,0,326,0,0,0,0,0,0,0,150,2.6,3,1,11.3,77777,9,999999999,229,0.1730,0,88,0.190,999.0,99.0 +1997,5,18,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,12.0,77,98100,0,0,342,0,0,0,0,0,0,0,180,2.6,5,4,11.3,77777,9,999999999,229,0.1730,0,88,0.190,999.0,99.0 +1997,5,18,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.9,12.0,78,98100,0,0,341,0,0,0,0,0,0,0,200,2.6,5,4,11.3,77777,9,999999999,229,0.1730,0,88,0.190,999.0,99.0 +1997,5,18,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,12.0,77,98100,0,0,342,0,0,0,0,0,0,0,210,2.6,5,4,11.3,77777,9,999999999,229,0.1730,0,88,0.190,999.0,99.0 +1997,5,18,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,12.0,77,98200,49,879,342,11,20,10,1300,900,1200,210,210,2.6,5,4,11.3,77777,9,999999999,240,0.1730,0,88,0.190,999.0,99.0 +1997,5,18,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.0,13.0,68,98200,278,1335,357,124,283,65,13000,21600,8500,1180,220,3.6,5,4,11.3,77777,9,999999999,240,0.1730,0,88,0.190,0.0,6.0 +1997,5,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,13.0,60,98200,527,1335,367,271,392,116,28800,37500,14000,2240,240,4.6,5,4,11.3,77777,9,999999999,240,0.1730,0,88,0.190,999.0,99.0 +1997,5,18,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,13.0,53,98200,760,1335,377,434,463,171,46700,47300,19800,3840,240,3.6,5,4,11.3,77777,9,999999999,240,0.1730,0,88,0.190,999.0,99.0 +1997,5,18,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,15.0,54,98200,961,1335,396,581,316,353,62300,34000,37800,10730,250,4.6,9,6,11.3,7500,9,999999999,240,0.1730,0,88,0.190,999.0,99.0 +1997,5,18,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.0,15.0,51,98200,1116,1335,402,683,373,371,74600,40500,40700,14540,200,5.7,9,6,11.3,7500,9,999999999,250,0.1730,0,88,0.190,999.0,99.0 +1997,5,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.0,15.0,51,98200,1215,1335,402,732,415,354,78400,43400,38800,20340,230,7.2,9,6,11.3,7500,9,999999999,250,0.1730,0,88,0.190,999.0,99.0 +1997,5,18,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.0,16.0,54,98200,1251,1335,403,715,319,416,78700,34700,46100,25140,220,5.1,9,6,11.3,7500,9,999999999,250,0.1730,0,88,0.190,0.0,6.0 +1997,5,18,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.0,15.0,51,98100,1221,1335,402,921,700,280,97000,70800,32200,15910,210,7.2,9,6,11.3,3600,9,999999999,250,0.1730,0,88,0.190,999.0,99.0 +1997,5,18,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.0,15.0,48,98000,1127,1335,407,729,491,313,78000,51300,34600,13240,210,7.7,9,6,11.3,3600,9,999999999,250,0.1730,0,88,0.190,999.0,99.0 +1997,5,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,16.0,57,97900,977,1335,429,212,0,212,25300,0,25300,10110,220,9.3,10,10,11.3,1500,9,999999999,259,0.1730,0,88,0.190,0.0,3.0 +1997,5,18,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,19.0,69,97900,780,1335,401,288,256,138,31700,26300,16300,3100,240,3.6,9,6,11.3,3600,9,999999999,259,0.1730,0,88,0.190,999.0,99.0 +1997,5,18,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.0,16.0,51,97800,549,1335,408,168,152,105,18500,15200,12200,2060,230,7.2,9,6,11.3,3600,9,999999999,259,0.1730,0,88,0.190,999.0,99.0 +1997,5,18,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.0,15.0,48,97800,301,1335,407,130,168,92,13600,13400,10600,1810,230,5.1,9,6,11.3,3600,9,999999999,259,0.1730,0,88,0.190,0.0,6.0 +1997,5,18,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.0,15.0,51,97800,65,1012,402,15,1,15,1700,0,1700,540,220,5.7,9,6,11.3,4500,9,999999999,270,0.1730,0,88,0.190,999.0,99.0 +1997,5,18,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,16.0,57,97800,0,0,398,0,0,0,0,0,0,0,220,5.1,9,6,11.3,4500,9,999999999,270,0.1730,0,88,0.190,999.0,99.0 +1997,5,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,15.0,54,97800,0,0,390,0,0,0,0,0,0,0,220,6.7,5,4,11.3,77777,9,999999999,270,0.1730,0,88,0.190,999.0,99.0 +1997,5,18,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,14.0,50,97900,0,0,427,0,0,0,0,0,0,0,230,6.7,10,10,11.3,3600,9,999999999,270,0.1730,0,88,0.190,999.0,99.0 +1997,5,18,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,14.0,54,97900,0,0,421,0,0,0,0,0,0,0,230,6.7,10,10,11.3,3600,9,999999999,270,0.1730,0,88,0.190,999.0,99.0 +1997,5,19,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.0,14.0,54,97900,0,0,421,0,0,0,0,0,0,0,230,5.1,10,10,11.3,3600,9,999999999,279,0.1730,0,88,0.190,0.0,6.0 +1997,5,19,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.0,14.0,57,97900,0,0,415,0,0,0,0,0,0,0,230,4.6,10,10,11.3,3300,9,999999999,279,0.1730,0,88,0.190,0.0,6.0 +1997,5,19,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,14.0,57,97900,0,0,415,0,0,0,0,0,0,0,230,5.7,10,10,11.3,3300,9,999999999,279,0.1730,0,88,0.190,999.0,99.0 +1997,5,19,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.0,15.0,78,98100,0,0,395,0,0,0,0,0,0,0,340,4.1,10,10,11.3,1350,9,999999999,279,0.1730,0,88,0.190,0.0,3.0 +1997,5,19,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,16.0,88,98000,0,0,390,0,0,0,0,0,0,0,130,2.1,10,10,11.3,1350,9,999999999,279,0.1730,0,88,0.190,999.0,99.0 +1997,5,19,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,16.0,88,98000,51,901,390,8,0,8,1000,0,1000,310,160,2.6,10,10,11.3,1350,9,999999999,290,0.1730,0,88,0.190,999.0,99.0 +1997,5,19,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.0,16.0,88,98000,281,1335,390,43,0,43,5000,0,5000,1690,140,2.6,10,10,11.3,1350,9,999999999,290,0.1730,0,88,0.190,1.0,6.0 +1997,5,19,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,17.0,78,98000,529,1335,408,100,0,100,11700,0,11700,4220,200,3.1,10,10,11.3,1200,9,999999999,279,0.1730,0,88,0.190,999.0,99.0 +1997,5,19,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,16.0,61,98100,762,1335,392,397,232,264,43200,24100,29400,6950,240,6.7,9,6,11.3,7500,9,999999999,279,0.1730,0,88,0.190,999.0,99.0 +1997,5,19,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,15.0,54,98000,962,1335,396,482,240,308,52200,25900,33500,9160,250,6.7,9,6,11.3,7500,9,999999999,270,0.1730,0,88,0.190,999.0,99.0 +1997,5,19,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.0,15.0,51,98000,1117,1335,402,514,340,230,56800,35600,26900,9320,250,6.2,9,6,11.3,3000,9,999999999,270,0.1730,0,88,0.190,999.0,99.0 +1997,5,19,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.0,14.0,48,98000,1216,1335,400,846,646,257,89700,65600,29800,14430,260,7.2,9,6,11.3,3000,9,999999999,259,0.1730,0,88,0.190,999.0,99.0 +1997,5,19,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.0,14.0,45,98000,1252,1335,406,759,459,328,82300,48100,37100,22420,270,6.2,9,6,11.3,3000,9,999999999,259,0.1730,0,88,0.190,0.0,6.0 +1997,5,19,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.0,14.0,45,98000,1222,1335,406,756,446,347,81200,46600,38400,20580,270,6.7,9,6,11.3,3000,9,999999999,250,0.1730,0,88,0.190,999.0,99.0 +1997,5,19,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.0,14.0,48,97800,1129,1335,432,253,0,253,30400,0,30400,12170,300,6.2,10,10,11.3,2400,9,999999999,250,0.1730,0,88,0.190,999.0,99.0 +1997,5,19,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.0,16.0,65,97900,979,1335,387,456,277,252,50300,30000,28200,7430,300,5.1,9,6,11.3,1800,9,999999999,240,0.1730,0,88,0.190,0.0,3.0 +1997,5,19,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,15.0,64,97900,782,1335,411,165,0,165,19400,0,19400,7500,320,6.2,10,10,11.3,3000,9,999999999,240,0.1730,0,88,0.190,999.0,99.0 +1997,5,19,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,14.0,73,98100,552,1335,393,106,0,106,12400,0,12400,4500,320,6.2,10,10,8.0,1200,9,999999999,229,0.1730,0,88,0.190,999.0,99.0 +1997,5,19,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.0,13.0,73,98200,304,1335,387,48,0,48,5600,0,5600,1900,340,5.7,10,10,8.0,900,9,999999999,229,0.1730,0,88,0.190,1.0,6.0 +1997,5,19,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,12.0,77,98300,67,1034,375,11,0,11,1300,0,1300,420,350,3.1,10,10,6.4,660,9,999999999,220,0.1730,0,88,0.190,999.0,99.0 +1997,5,19,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,11.0,72,98300,0,0,374,0,0,0,0,0,0,0,350,3.6,10,10,11.3,600,9,999999999,220,0.1730,0,88,0.190,999.0,99.0 +1997,5,19,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,9.0,67,98400,0,0,339,0,0,0,0,0,0,0,350,4.6,9,6,11.3,3600,9,999999999,209,0.1730,0,88,0.190,999.0,99.0 +1997,5,19,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,8.0,67,98500,0,0,333,0,0,0,0,0,0,0,350,3.1,9,6,11.3,3600,9,999999999,209,0.1730,0,88,0.190,999.0,99.0 +1997,5,19,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,6.0,67,98500,0,0,322,0,0,0,0,0,0,0,350,3.1,9,6,11.3,3600,9,999999999,200,0.1730,0,88,0.190,999.0,99.0 +1997,5,20,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.0,6.0,71,98500,0,0,307,0,0,0,0,0,0,0,350,3.1,5,2,11.3,77777,9,999999999,200,0.1740,0,88,0.190,0.0,6.0 +1997,5,20,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,6.0,71,98500,0,0,312,0,0,0,0,0,0,0,350,2.6,9,4,11.3,3600,9,999999999,200,0.1740,0,88,0.190,999.0,99.0 +1997,5,20,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,6.0,81,98500,0,0,298,0,0,0,0,0,0,0,350,2.6,5,2,11.3,77777,9,999999999,189,0.1740,0,88,0.190,999.0,99.0 +1997,5,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,6.0,87,98600,0,0,297,0,0,0,0,0,0,0,350,2.6,5,3,11.3,77777,9,999999999,189,0.1740,0,88,0.190,999.0,99.0 +1997,5,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,6.0,87,98600,0,0,294,0,0,0,0,0,0,0,350,2.1,5,2,11.3,77777,9,999999999,179,0.1740,0,88,0.190,999.0,99.0 +1997,5,20,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,5.0,87,98700,53,923,292,14,41,11,1500,1400,1400,180,350,3.1,5,3,11.3,77777,9,999999999,179,0.1740,0,88,0.190,999.0,99.0 +1997,5,20,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.0,4.0,71,98800,283,1334,292,132,397,48,13700,31200,7100,890,10,2.6,2,1,11.3,77777,9,999999999,170,0.1740,0,88,0.190,0.0,6.0 +1997,5,20,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,4.0,62,98900,531,1334,301,323,607,81,34000,57900,10900,1630,30,4.1,3,1,11.3,77777,9,999999999,170,0.1740,0,88,0.190,999.0,99.0 +1997,5,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,3.0,51,98900,763,1334,308,513,719,102,53800,71300,12900,2280,350,4.1,2,1,11.3,77777,9,999999999,170,0.1740,0,88,0.190,999.0,99.0 +1997,5,20,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,1.0,41,99000,964,1334,310,694,798,117,74000,80600,15600,3350,10,5.1,3,1,11.3,77777,9,999999999,170,0.1740,0,88,0.190,999.0,99.0 +1997,5,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,1.0,39,99000,1119,1334,315,806,772,158,85000,77800,19600,5990,360,3.6,2,1,11.3,77777,9,999999999,160,0.1740,0,88,0.190,999.0,99.0 +1997,5,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,1.0,39,99000,1217,1334,315,942,881,138,96700,88300,16000,6120,350,5.1,3,1,11.3,77777,9,999999999,160,0.1740,0,88,0.190,999.0,99.0 +1997,5,20,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.0,1.0,36,98900,1253,1334,323,905,782,170,96300,79100,21800,10890,320,4.1,5,2,11.3,77777,9,999999999,160,0.1740,0,88,0.190,0.0,6.0 +1997,5,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,1.0,36,98900,1223,1334,327,884,714,228,94500,73000,27400,13350,40,5.1,5,3,11.3,77777,9,999999999,160,0.1740,0,88,0.190,999.0,99.0 +1997,5,20,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.1,2.1,36,98900,1130,1334,333,732,582,238,77300,59100,27100,9910,10,5.1,5,3,11.3,77777,9,999999999,160,0.1740,0,88,0.190,999.0,99.0 +1997,5,20,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,3.0,37,99000,980,1334,338,624,617,170,66400,62900,20100,5150,330,5.1,5,3,11.3,77777,9,999999999,150,0.1740,0,88,0.190,999.0,99.0 +1997,5,20,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,2.0,39,99000,784,1334,330,475,355,266,50800,37600,28600,6650,360,4.6,9,4,11.3,1800,9,999999999,150,0.1740,0,88,0.190,999.0,99.0 +1997,5,20,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,2.0,39,99000,554,1334,328,332,543,107,34500,51700,13000,2100,340,3.6,5,3,11.3,77777,9,999999999,150,0.1740,0,88,0.190,999.0,99.0 +1997,5,20,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,2.0,41,98900,307,1334,316,155,447,52,16000,36300,7700,960,300,3.1,2,1,11.3,77777,9,999999999,150,0.1740,0,88,0.190,0.0,6.0 +1997,5,20,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,2.0,47,98900,70,1056,307,21,93,15,2400,3900,2100,260,290,2.1,3,1,11.3,77777,9,999999999,150,0.1740,0,88,0.190,999.0,99.0 +1997,5,20,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,5.0,71,98900,0,0,297,0,0,0,0,0,0,0,280,1.5,2,1,11.3,77777,9,999999999,150,0.1740,0,88,0.190,999.0,99.0 +1997,5,20,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,5.0,58,99000,0,0,320,0,0,0,0,0,0,0,300,3.1,9,4,11.3,1500,9,999999999,139,0.1740,0,88,0.190,999.0,99.0 +1997,5,20,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,2.0,47,99100,0,0,317,0,0,0,0,0,0,0,360,3.6,9,4,11.3,1500,9,999999999,139,0.1740,0,88,0.190,999.0,99.0 +1997,5,20,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,2.0,54,99100,0,0,308,0,0,0,0,0,0,0,340,3.1,9,4,11.3,1800,9,999999999,139,0.1740,0,88,0.190,999.0,99.0 +1997,5,21,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.0,1.0,50,99100,0,0,321,0,0,0,0,0,0,0,340,3.1,9,8,11.3,1800,9,999999999,139,0.1750,0,88,0.190,0.0,6.0 +1997,5,21,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,1.0,57,99100,0,0,301,0,0,0,0,0,0,0,350,3.1,5,5,11.3,77777,9,999999999,139,0.1750,0,88,0.190,999.0,99.0 +1997,5,21,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,2.0,66,99100,0,0,293,0,0,0,0,0,0,0,320,2.6,3,3,11.3,77777,9,999999999,139,0.1750,0,88,0.190,999.0,99.0 +1997,5,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,2.0,70,99100,0,0,286,0,0,0,0,0,0,0,320,2.6,2,2,11.3,77777,9,999999999,129,0.1750,0,88,0.190,999.0,99.0 +1997,5,21,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,2.0,70,99200,0,0,289,0,0,0,0,0,0,0,350,3.6,3,3,11.3,77777,9,999999999,129,0.1750,0,88,0.190,999.0,99.0 +1997,5,21,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,2.0,75,99200,55,945,282,15,50,12,1700,1700,1600,200,340,3.6,2,2,11.3,77777,9,999999999,129,0.1750,0,88,0.190,999.0,99.0 +1997,5,21,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.0,2.0,66,99400,286,1334,281,151,494,45,15700,39200,7300,840,350,4.6,0,0,11.3,77777,9,999999999,129,0.1750,0,88,0.190,0.0,6.0 +1997,5,21,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,1.0,57,99500,533,1334,284,350,702,69,36500,66600,9800,1420,360,5.1,0,0,11.3,77777,9,999999999,129,0.1750,0,88,0.190,999.0,99.0 +1997,5,21,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,1.0,50,99500,765,1334,305,486,602,140,51000,60200,16400,3200,350,5.7,3,3,11.3,77777,9,999999999,129,0.1750,0,88,0.190,999.0,99.0 +1997,5,21,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,0.0,44,99600,965,1334,305,700,782,133,73600,78600,16600,3670,360,5.1,2,2,11.3,77777,9,999999999,129,0.1750,0,88,0.190,999.0,99.0 +1997,5,21,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,1.0,41,99600,1120,1334,318,740,633,208,78900,64600,24500,8520,340,5.1,3,3,11.3,77777,9,999999999,129,0.1750,0,88,0.190,999.0,99.0 +1997,5,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,0.0,38,99500,1218,1334,313,920,834,158,98300,84500,20900,8630,10,6.2,2,2,11.3,77777,9,999999999,129,0.1750,0,88,0.190,999.0,99.0 +1997,5,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.0,-1.0,35,99500,1254,1334,320,809,633,213,87200,65000,26000,14600,360,5.1,5,5,11.3,77777,9,999999999,129,0.1750,0,88,0.190,0.0,6.0 +1997,5,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,0.0,38,99500,1224,1334,321,800,540,304,87100,56600,35100,18210,350,2.6,5,5,11.3,77777,9,999999999,129,0.1750,0,88,0.190,999.0,99.0 +1997,5,21,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,-1.0,35,99500,1132,1334,320,532,441,157,57900,45600,19100,6790,320,3.1,5,5,11.3,77777,9,999999999,129,0.1750,0,88,0.190,999.0,99.0 +1997,5,21,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,2.0,36,99400,982,1334,337,595,500,226,64500,52100,26000,6800,360,5.1,5,5,11.3,77777,9,999999999,129,0.1750,0,88,0.190,999.0,99.0 +1997,5,21,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,1.0,36,99400,786,1334,332,504,636,129,53400,64100,15600,3050,350,4.1,5,5,11.3,77777,9,999999999,129,0.1750,0,88,0.190,999.0,99.0 +1997,5,21,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.2,0.5,37,99400,557,1334,325,317,479,116,33900,46500,14500,2250,360,3.9,4,4,11.3,77777,9,999999999,129,0.1750,0,88,0.190,999.0,99.0 +1997,5,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.0,0.0,38,99400,310,1334,316,152,348,71,16000,27900,9500,1290,360,3.6,3,3,11.3,77777,9,999999999,129,0.1750,0,88,0.190,0.0,6.0 +1997,5,21,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,0.0,41,99400,72,1078,309,21,78,15,2300,3300,2000,260,330,2.1,2,2,11.3,77777,9,999999999,129,0.1750,0,88,0.190,999.0,99.0 +1997,5,21,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,1.0,47,99400,0,0,309,0,0,0,0,0,0,0,320,1.5,3,3,11.3,77777,9,999999999,129,0.1750,0,88,0.190,999.0,99.0 +1997,5,21,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,2.0,61,99500,0,0,294,0,0,0,0,0,0,0,220,1.0,2,2,11.3,77777,9,999999999,129,0.1750,0,88,0.190,999.0,99.0 +1997,5,21,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,2.0,70,99400,0,0,277,0,0,0,0,0,0,0,270,1.0,0,0,11.3,77777,9,999999999,129,0.1750,0,88,0.190,999.0,99.0 +1997,5,21,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,2.0,66,99400,0,0,281,0,0,0,0,0,0,0,290,1.5,0,0,11.3,77777,9,999999999,129,0.1750,0,88,0.190,999.0,99.0 +1997,5,22,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,2.0,81,99400,0,0,269,0,0,0,0,0,0,0,160,2.1,0,0,11.3,77777,9,999999999,129,0.1750,0,88,0.190,0.0,6.0 +1997,5,22,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,3.0,76,99400,0,0,278,0,0,0,0,0,0,0,20,2.1,0,0,11.3,77777,9,999999999,129,0.1750,0,88,0.190,999.0,99.0 +1997,5,22,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,2.0,75,99400,0,0,273,0,0,0,0,0,0,0,140,1.0,0,0,11.3,77777,9,999999999,129,0.1750,0,88,0.190,999.0,99.0 +1997,5,22,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,2.0,81,99400,0,0,269,0,0,0,0,0,0,0,240,2.6,0,0,11.3,77777,9,999999999,129,0.1750,0,88,0.190,999.0,99.0 +1997,5,22,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,1.0,87,99500,0,0,260,0,0,0,0,0,0,0,230,1.5,0,0,11.3,77777,9,999999999,129,0.1750,0,88,0.190,999.0,99.0 +1997,5,22,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,1.0,87,99500,57,944,265,19,79,14,2100,3100,1900,240,240,1.0,3,1,11.3,77777,9,999999999,129,0.1750,0,88,0.190,999.0,99.0 +1997,5,22,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.0,3.0,71,99600,288,1333,287,150,442,54,15400,34800,7800,980,330,2.6,2,1,11.3,77777,9,999999999,120,0.1750,0,88,0.190,0.0,6.0 +1997,5,22,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,3.0,62,99700,535,1333,290,357,732,63,37600,69800,9500,1340,350,1.5,0,0,11.3,77777,9,999999999,120,0.1750,0,88,0.190,999.0,99.0 +1997,5,22,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,4.0,58,99700,767,1333,299,561,831,82,58400,81900,11300,1800,330,2.6,0,0,11.3,77777,9,999999999,129,0.1750,0,88,0.190,999.0,99.0 +1997,5,22,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,2.0,41,99700,967,1333,310,741,887,97,76900,88500,12600,2540,330,3.1,0,0,11.3,77777,9,999999999,129,0.1750,0,88,0.190,999.0,99.0 +1997,5,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,0.0,36,99700,1121,1333,308,882,920,108,91300,92200,13600,3760,330,3.1,0,0,11.3,77777,9,999999999,129,0.1750,0,88,0.190,999.0,99.0 +1997,5,22,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,0.0,34,99700,1219,1333,318,919,867,126,94700,86900,15000,5870,10,2.6,3,1,11.3,77777,9,999999999,129,0.1750,0,88,0.190,999.0,99.0 +1997,5,22,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.0,1.0,34,99700,1255,1333,323,947,836,159,101500,84800,21500,10460,20,4.1,2,1,11.3,77777,9,999999999,129,0.1750,0,88,0.190,0.0,6.0 +1997,5,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,-1.0,29,99600,1226,1333,321,921,864,126,94800,86600,15000,6040,30,3.1,3,1,11.3,77777,9,999999999,129,0.1750,0,88,0.190,999.0,99.0 +1997,5,22,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,-1.0,26,99600,1133,1333,330,845,863,111,87400,86500,13700,3950,350,3.6,2,1,11.3,77777,9,999999999,129,0.1750,0,88,0.190,999.0,99.0 +1997,5,22,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,0.0,28,99500,984,1333,331,684,735,141,71700,73800,17100,3970,40,3.6,3,1,16.1,77777,9,999999999,129,0.1750,0,88,0.190,999.0,99.0 +1997,5,22,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,0.0,30,99500,788,1333,327,538,764,86,57700,76600,12300,2100,360,3.6,2,1,16.1,77777,9,999999999,129,0.1750,0,88,0.190,999.0,99.0 +1997,5,22,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,-1.0,27,99500,559,1333,326,348,661,71,36400,63300,9900,1480,320,2.6,3,1,16.1,77777,9,999999999,129,0.1750,0,88,0.190,999.0,99.0 +1997,5,22,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.0,1.0,32,99500,313,1333,332,139,232,84,14700,18900,10200,1610,350,2.6,5,2,16.1,77777,9,999999999,129,0.1750,0,88,0.190,0.0,6.0 +1997,5,22,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,0.0,38,99400,75,1100,316,24,49,21,2600,1900,2500,370,350,2.6,5,3,16.1,77777,9,999999999,129,0.1750,0,88,0.190,999.0,99.0 +1997,5,22,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,2.0,50,99400,0,0,307,0,0,0,0,0,0,0,10,1.5,5,2,16.1,77777,9,999999999,129,0.1750,0,88,0.190,999.0,99.0 +1997,5,22,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,2.0,54,99400,0,0,306,0,0,0,0,0,0,0,360,1.0,5,3,16.1,77777,9,999999999,129,0.1750,0,88,0.190,999.0,99.0 +1997,5,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,4.0,66,99500,0,0,300,0,0,0,0,0,0,0,360,0.5,5,2,16.1,77777,9,999999999,129,0.1750,0,88,0.190,999.0,99.0 +1997,5,22,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,4.0,81,99500,0,0,291,0,0,0,0,0,0,0,270,1.5,5,3,16.1,77777,9,999999999,129,0.1750,0,88,0.190,999.0,99.0 +1997,5,23,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.0,3.0,71,99500,0,0,299,0,0,0,0,0,0,0,360,1.5,5,5,16.1,77777,9,999999999,129,0.1760,0,88,0.190,0.0,6.0 +1997,5,23,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,6.0,2.0,75,99400,0,0,289,0,0,0,0,0,0,0,310,1.3,5,5,16.1,77777,9,999999999,129,0.1760,0,88,0.190,999.0,99.0 +1997,5,23,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,1.0,81,99400,0,0,280,0,0,0,0,0,0,0,260,1.0,5,5,16.1,77777,9,999999999,129,0.1760,0,88,0.190,999.0,99.0 +1997,5,23,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,2.0,81,99500,0,0,302,0,0,0,0,0,0,0,120,1.0,9,9,16.1,7500,9,999999999,129,0.1760,0,88,0.190,999.0,99.0 +1997,5,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,1.0,87,99500,0,0,292,0,0,0,0,0,0,0,180,1.0,9,9,16.1,7500,9,999999999,129,0.1760,0,88,0.190,999.0,99.0 +1997,5,23,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,2.0,81,99500,59,966,302,19,5,19,2200,0,2200,640,210,1.0,9,9,16.1,7500,9,999999999,129,0.1760,0,88,0.190,999.0,99.0 +1997,5,23,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.0,2.0,66,99600,290,1332,315,49,27,43,5400,2200,4900,1200,350,1.0,9,9,16.1,7500,9,999999999,129,0.1760,0,88,0.190,0.0,6.0 +1997,5,23,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,2.0,50,99700,537,1332,333,201,56,178,22000,5400,19800,4900,150,2.6,9,9,16.1,7500,9,999999999,129,0.1760,0,88,0.190,999.0,99.0 +1997,5,23,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,1.0,39,99700,768,1332,346,183,85,134,20800,9000,15600,3540,180,4.1,9,9,16.1,7500,9,999999999,129,0.1760,0,88,0.190,999.0,99.0 +1997,5,23,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,1.0,34,99700,968,1332,356,356,70,305,39200,7200,34000,11240,160,2.6,9,9,16.1,7500,9,999999999,129,0.1760,0,88,0.190,999.0,99.0 +1997,5,23,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,1.0,34,99600,1122,1332,356,482,105,393,53100,10800,44000,16690,130,3.6,9,9,16.1,7500,9,999999999,139,0.1760,0,88,0.190,999.0,99.0 +1997,5,23,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,2.0,32,99600,1220,1332,367,517,157,373,57500,16800,42100,18990,90,2.1,9,9,16.1,7500,9,999999999,139,0.1760,0,88,0.190,999.0,99.0 +1997,5,23,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,1.0,28,99500,1256,1332,371,530,121,416,58700,12900,46500,24250,110,3.6,9,9,16.1,7500,9,999999999,139,0.1760,0,88,0.190,0.0,6.0 +1997,5,23,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,1.0,26,99400,1227,1332,376,518,147,382,57500,15700,43000,19870,150,3.1,9,9,16.1,7500,9,999999999,139,0.1760,0,88,0.190,999.0,99.0 +1997,5,23,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,1.0,25,99300,1134,1332,381,457,95,375,50400,9800,42000,16350,160,2.6,9,9,16.1,7500,9,999999999,139,0.1760,0,88,0.190,999.0,99.0 +1997,5,23,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,1.0,25,99300,986,1332,381,336,81,276,37100,8200,31000,10530,130,3.1,9,9,16.1,7500,9,999999999,150,0.1760,0,88,0.190,999.0,99.0 +1997,5,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,1.0,25,99200,790,1332,381,391,123,317,42800,12600,35300,9700,110,4.1,9,9,16.1,7500,9,999999999,150,0.1760,0,88,0.190,999.0,99.0 +1997,5,23,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,1.0,26,99100,562,1332,376,301,64,274,32900,6400,30200,6770,130,2.6,9,9,16.1,7500,9,999999999,150,0.1760,0,88,0.190,999.0,99.0 +1997,5,23,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,0.0,26,99100,316,1332,370,93,82,73,10200,6900,8600,1590,120,2.6,9,9,16.1,7500,9,999999999,150,0.1760,0,88,0.190,0.0,6.0 +1997,5,23,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,1.0,32,99100,77,1099,341,21,45,18,2300,1700,2200,310,80,1.5,5,5,16.1,77777,9,999999999,150,0.1760,0,88,0.190,999.0,99.0 +1997,5,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,2.0,39,99000,0,0,333,0,0,0,0,0,0,0,100,1.5,5,5,16.1,77777,9,999999999,160,0.1760,0,88,0.190,999.0,99.0 +1997,5,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,6.0,62,99000,0,0,316,0,0,0,0,0,0,0,50,0.5,2,2,16.1,77777,9,999999999,160,0.1760,0,88,0.190,999.0,99.0 +1997,5,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,5.0,71,99000,0,0,304,0,0,0,0,0,0,0,110,1.0,3,3,16.1,77777,9,999999999,160,0.1760,0,88,0.190,999.0,99.0 +1997,5,23,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,4.0,62,99000,0,0,313,0,0,0,0,0,0,0,50,1.0,5,5,16.1,77777,9,999999999,160,0.1760,0,88,0.190,999.0,99.0 +1997,5,24,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.0,4.0,58,99000,0,0,317,0,0,0,0,0,0,0,60,1.0,5,5,16.1,77777,9,999999999,170,0.1760,0,88,0.190,0.0,6.0 +1997,5,24,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,5.0,76,98900,0,0,323,0,0,0,0,0,0,0,40,1.5,9,9,16.1,4500,9,999999999,170,0.1760,0,88,0.190,999.0,99.0 +1997,5,24,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,4.0,81,98900,0,0,295,0,0,0,0,0,0,0,40,1.0,5,5,16.1,77777,9,999999999,170,0.1760,0,88,0.190,999.0,99.0 +1997,5,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,4.0,87,98800,0,0,291,0,0,0,0,0,0,0,30,1.5,5,5,16.1,77777,9,999999999,170,0.1760,0,88,0.190,999.0,99.0 +1997,5,24,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,5.0,81,98800,0,0,318,0,0,0,0,0,0,0,50,1.0,9,9,16.1,7500,9,999999999,170,0.1760,0,88,0.190,999.0,99.0 +1997,5,24,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,5.0,81,98800,60,988,318,13,6,13,1500,300,1500,330,60,1.0,9,9,16.1,7500,9,999999999,179,0.1760,0,88,0.190,999.0,99.0 +1997,5,24,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.0,6.0,71,98900,292,1332,333,59,21,54,6400,1700,6100,1460,320,0.5,9,9,16.1,7500,9,999999999,179,0.1760,0,88,0.190,0.0,6.0 +1997,5,24,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,6.0,51,98900,539,1332,357,238,57,215,26000,5600,23800,5630,130,1.0,9,9,16.1,7500,9,999999999,189,0.1760,0,88,0.190,999.0,99.0 +1997,5,24,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,6.0,40,98900,770,1332,378,259,92,206,28700,9600,23100,5450,150,2.1,9,9,16.1,7500,9,999999999,189,0.1760,0,88,0.190,999.0,99.0 +1997,5,24,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,6.0,35,98800,969,1332,388,451,119,364,49600,12200,40700,12980,100,1.0,9,9,16.1,7500,9,999999999,200,0.1760,0,88,0.190,999.0,99.0 +1997,5,24,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,6.0,31,98800,1123,1332,399,322,189,163,36800,19900,20000,6670,120,2.1,9,9,16.1,7500,9,999999999,209,0.1760,0,88,0.190,999.0,99.0 +1997,5,24,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,8.0,34,98800,1221,1332,407,402,123,289,45400,13200,33300,14770,200,3.1,9,9,11.3,7500,9,999999999,209,0.1760,0,88,0.190,999.0,99.0 +1997,5,24,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.0,10.0,34,98700,1257,1332,421,415,13,402,49000,1200,47800,17630,200,2.1,9,9,11.3,7500,9,999999999,220,0.1760,0,88,0.190,0.0,6.0 +1997,5,24,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.0,11.0,37,98600,1228,1332,422,337,7,330,40200,600,39700,15220,200,3.1,9,9,11.3,7500,9,999999999,229,0.1760,0,88,0.190,999.0,99.0 +1997,5,24,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.0,11.0,35,98500,1136,1332,428,554,175,405,60900,18600,45000,16530,220,5.1,9,9,11.3,7500,9,999999999,229,0.1760,0,88,0.190,999.0,99.0 +1997,5,24,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.0,11.0,35,98500,987,1332,428,282,84,219,31700,9000,25000,7040,210,4.1,9,9,11.3,7500,9,999999999,240,0.1760,0,88,0.190,999.0,99.0 +1997,5,24,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.0,11.0,37,98400,792,1332,422,261,118,190,29000,12400,21600,5100,250,3.6,9,9,11.3,2100,9,999999999,250,0.1760,0,88,0.190,999.0,99.0 +1997,5,24,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.0,12.0,39,98300,564,1332,423,223,127,169,24300,12700,19000,4010,240,4.1,9,9,11.3,2100,9,999999999,259,0.1760,0,88,0.190,999.0,99.0 +1997,5,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.0,14.0,48,98300,319,1332,420,68,29,61,7500,2500,6900,1660,220,3.1,9,9,11.3,3600,9,999999999,259,0.1760,0,88,0.190,0.0,6.0 +1997,5,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,16.0,57,98300,80,1121,418,18,3,18,2100,0,2100,640,200,4.6,9,9,11.3,3600,9,999999999,270,0.1760,0,88,0.190,999.0,99.0 +1997,5,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,17.0,65,98300,0,0,413,0,0,0,0,0,0,0,220,5.1,9,9,11.3,3600,9,999999999,279,0.1760,0,88,0.190,999.0,99.0 +1997,5,24,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.0,17.0,73,98400,0,0,414,0,0,0,0,0,0,0,230,4.6,10,10,11.3,3600,9,999999999,279,0.1760,0,88,0.190,0.0,3.0 +1997,5,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,17.0,78,98300,0,0,408,0,0,0,0,0,0,0,230,3.6,10,10,11.3,3600,9,999999999,290,0.1760,0,88,0.190,999.0,99.0 +1997,5,24,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,17.0,83,98200,0,0,403,0,0,0,0,0,0,0,230,2.6,10,10,11.3,3600,9,999999999,300,0.1760,0,88,0.190,999.0,99.0 +1997,5,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,17.0,83,98200,0,0,383,0,0,0,0,0,0,0,210,3.1,10,8,11.3,3600,9,999999999,300,0.1770,0,88,0.190,0.0,6.0 +1997,5,25,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,16.0,78,98100,0,0,376,0,0,0,0,0,0,0,210,2.6,10,7,11.3,3300,9,999999999,309,0.1770,0,88,0.190,999.0,99.0 +1997,5,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,17.0,83,98000,0,0,383,0,0,0,0,0,0,0,220,2.6,10,8,11.3,3000,9,999999999,320,0.1770,0,88,0.190,999.0,99.0 +1997,5,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,17.0,83,98000,0,0,377,0,0,0,0,0,0,0,230,3.1,10,7,8.0,330,9,999999999,320,0.1770,0,88,0.190,0.0,3.0 +1997,5,25,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,18.0,88,98000,0,0,384,0,0,0,0,0,0,0,240,4.6,10,8,8.0,330,9,999999999,329,0.1770,0,88,0.190,999.0,99.0 +1997,5,25,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,18.0,88,98000,62,988,378,14,8,14,1600,400,1600,360,230,3.6,10,7,6.4,330,9,999999999,340,0.1770,0,88,0.190,999.0,99.0 +1997,5,25,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,18.0,88,98000,294,1331,384,67,34,59,7300,2800,6700,1580,230,4.1,10,8,4.8,330,9,999999999,350,0.1770,0,88,0.190,0.0,6.0 +1997,5,25,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,18.0,88,98000,540,1331,378,216,241,117,23500,24000,13700,2330,230,4.1,10,7,4.8,330,9,999999999,350,0.1770,0,88,0.190,999.0,99.0 +1997,5,25,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,18.0,88,98000,771,1331,384,213,46,186,23500,4600,20800,6230,230,3.6,10,8,6.4,330,9,999999999,350,0.1770,0,88,0.190,999.0,99.0 +1997,5,25,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.0,19.0,88,97900,970,1331,385,531,289,320,57500,31200,34700,9690,230,5.1,10,7,6.4,330,9,999999999,350,0.1770,0,88,0.190,1.0,3.0 +1997,5,25,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,19.0,88,97900,1124,1331,391,434,180,281,48300,19600,31700,10940,230,4.1,10,8,8.0,330,9,999999999,340,0.1770,0,88,0.190,999.0,99.0 +1997,5,25,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,20.6,18.4,87,97900,1222,1331,388,432,166,279,48700,18100,32100,14690,240,3.9,10,8,8.0,330,9,999999999,340,0.1770,0,88,0.190,999.0,99.0 +1997,5,25,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,18.0,88,97800,1258,1331,384,799,356,462,87300,38700,50600,29650,240,3.6,10,8,9.7,330,9,999999999,340,0.1770,0,88,0.190,999.0,99.0 +1997,5,25,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,18.0,83,97800,1229,1331,384,687,296,413,75400,32200,45600,23040,240,2.1,10,7,16.1,330,9,999999999,340,0.1770,0,88,0.190,999.0,99.0 +1997,5,25,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,17.0,78,97800,1137,1331,388,536,237,333,59100,25800,37100,13630,240,1.0,10,8,16.1,330,9,999999999,340,0.1770,0,88,0.190,999.0,99.0 +1997,5,25,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.0,17.0,94,97800,989,1331,367,529,223,363,57700,23600,40200,11720,50,3.1,10,7,16.1,330,9,999999999,340,0.1770,0,88,0.190,0.0,3.0 +1997,5,25,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,16.0,88,97800,794,1331,372,441,232,303,47800,24200,33400,8160,30,3.6,10,8,16.1,300,9,999999999,340,0.1770,0,88,0.190,999.0,99.0 +1997,5,25,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,15.0,94,97800,566,1331,355,183,131,127,20300,13200,14700,3010,30,5.1,10,7,11.3,210,9,999999999,340,0.1770,0,88,0.190,999.0,99.0 +1997,5,25,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,14.0,94,97900,321,1331,354,81,50,69,8900,4300,7900,1850,30,5.1,10,8,11.3,210,9,999999999,340,0.1770,0,88,0.190,5.0,6.0 +1997,5,25,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,13.0,94,98000,82,1143,343,30,12,30,3400,700,3300,690,30,5.7,10,7,9.7,210,9,999999999,340,0.1770,0,88,0.190,999.0,99.0 +1997,5,25,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,12.0,94,98100,0,0,342,0,0,0,0,0,0,0,40,5.7,10,8,8.0,240,9,999999999,340,0.1770,0,88,0.190,999.0,99.0 +1997,5,25,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,12.8,12.0,95,98100,0,0,341,0,0,0,0,0,0,0,40,5.1,10,8,8.0,525,9,999999999,340,0.1770,0,88,0.190,999.0,99.0 +1997,5,25,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,12.0,94,98200,0,0,342,0,0,0,0,0,0,0,40,4.6,10,8,9.7,810,9,999999999,340,0.1770,0,88,0.190,999.0,99.0 +1997,5,25,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,10.0,82,98200,0,0,335,0,0,0,0,0,0,0,40,6.7,10,7,9.7,990,9,999999999,340,0.1770,0,88,0.190,999.0,99.0 +1997,5,26,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.0,10.0,82,98200,0,0,357,0,0,0,0,0,0,0,40,5.1,10,10,9.7,1050,9,999999999,340,0.1770,0,88,0.190,0.0,6.0 +1997,5,26,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,10.0,82,98300,0,0,357,0,0,0,0,0,0,0,40,5.7,10,10,9.7,1200,9,999999999,340,0.1770,0,88,0.190,999.0,99.0 +1997,5,26,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,9.0,82,98300,0,0,351,0,0,0,0,0,0,0,40,5.7,10,10,9.7,1500,9,999999999,340,0.1770,0,88,0.190,999.0,99.0 +1997,5,26,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,9.0,82,98300,0,0,351,0,0,0,0,0,0,0,30,6.2,10,10,9.7,1500,9,999999999,340,0.1770,0,88,0.190,999.0,99.0 +1997,5,26,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,8.0,76,98400,0,0,350,0,0,0,0,0,0,0,30,4.1,10,10,9.7,1500,9,999999999,340,0.1770,0,88,0.190,999.0,99.0 +1997,5,26,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,8.0,76,98400,63,1009,340,14,2,14,1600,0,1600,510,40,5.1,9,9,9.7,1500,9,999999999,340,0.1770,0,88,0.190,999.0,99.0 +1997,5,26,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.0,8.0,76,98400,296,1331,340,69,14,66,7800,500,7700,2410,50,4.6,9,9,11.3,2400,9,999999999,340,0.1770,0,88,0.190,0.0,6.0 +1997,5,26,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,7.0,71,98500,542,1331,349,93,0,93,11000,0,11000,4020,50,5.1,10,10,11.3,2400,9,999999999,329,0.1770,0,88,0.190,999.0,99.0 +1997,5,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,7.0,63,98500,772,1331,349,173,50,143,19000,5000,16100,4960,40,7.2,9,9,16.1,2400,9,999999999,329,0.1770,0,88,0.190,999.0,99.0 +1997,5,26,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,9.0,63,98500,971,1331,341,574,334,330,62000,36000,35700,10060,60,6.2,5,5,16.1,77777,9,999999999,320,0.1770,0,88,0.190,999.0,99.0 +1997,5,26,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,8.0,52,98600,1125,1331,370,288,81,219,32800,8700,25400,8740,60,4.1,9,9,16.1,3000,9,999999999,320,0.1770,0,88,0.190,999.0,99.0 +1997,5,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,8.0,55,98600,1223,1331,375,273,0,273,33100,0,33100,13150,70,6.2,10,10,16.1,2400,9,999999999,309,0.1770,0,88,0.190,999.0,99.0 +1997,5,26,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.0,9.0,56,98600,1259,1331,371,313,89,228,35900,9600,26800,13520,60,5.1,9,9,16.1,2400,9,999999999,300,0.1770,0,88,0.190,0.0,6.0 +1997,5,26,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,8.0,52,98600,1230,1331,380,275,0,275,33300,0,33300,13240,50,5.7,10,10,16.1,2400,9,999999999,300,0.1770,0,88,0.190,999.0,99.0 +1997,5,26,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,7.0,55,98600,1138,1331,369,250,0,250,30200,0,30200,12080,40,5.1,10,10,16.1,2400,9,999999999,290,0.1770,0,88,0.190,999.0,99.0 +1997,5,26,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.0,11.0,82,98600,990,1331,364,211,0,211,25200,0,25200,10140,30,5.1,10,10,16.1,2100,9,999999999,279,0.1770,0,88,0.190,1.0,3.0 +1997,5,26,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,10.0,88,98700,796,1331,352,159,0,159,18800,0,18800,7350,10,3.6,10,10,16.1,2100,9,999999999,279,0.1770,0,88,0.190,999.0,99.0 +1997,5,26,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,10.0,88,98700,569,1331,352,100,0,100,11800,0,11800,4350,40,4.1,10,10,16.1,2100,9,999999999,270,0.1770,0,88,0.190,999.0,99.0 +1997,5,26,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.0,10.0,94,98700,324,1331,347,56,0,56,6500,0,6500,2200,40,4.1,10,10,16.1,2100,9,999999999,259,0.1770,0,88,0.190,5.0,6.0 +1997,5,26,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,9.0,93,98700,85,1165,332,27,2,26,2900,0,2900,850,30,4.1,9,9,16.1,2100,9,999999999,259,0.1770,0,88,0.190,999.0,99.0 +1997,5,26,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,9.0,93,98800,0,0,332,0,0,0,0,0,0,0,40,3.1,9,9,16.1,2100,9,999999999,250,0.1770,0,88,0.190,999.0,99.0 +1997,5,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,9.0,93,98900,0,0,332,0,0,0,0,0,0,0,40,3.6,9,9,16.1,2700,9,999999999,250,0.1770,0,88,0.190,1.0,3.0 +1997,5,26,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,6.0,71,98800,0,0,333,0,0,0,0,0,0,0,40,4.6,9,9,16.1,3600,9,999999999,240,0.1770,0,88,0.190,999.0,99.0 +1997,5,26,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,6.0,71,98900,0,0,333,0,0,0,0,0,0,0,40,4.6,9,9,16.1,3600,9,999999999,229,0.1770,0,88,0.190,999.0,99.0 +1997,5,27,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.0,5.0,66,98900,0,0,309,0,0,0,0,0,0,0,40,4.6,9,3,16.1,3600,9,999999999,229,0.1780,0,88,0.190,1.0,6.0 +1997,5,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,4.0,66,98900,0,0,300,0,0,0,0,0,0,0,40,5.1,9,2,16.1,3600,9,999999999,220,0.1780,0,88,0.190,999.0,99.0 +1997,5,27,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,4.0,71,98900,0,0,287,0,0,0,0,0,0,0,50,5.1,3,0,16.1,77777,9,999999999,209,0.1780,0,88,0.190,999.0,99.0 +1997,5,27,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,4.0,71,98900,0,0,287,0,0,0,0,0,0,0,50,4.1,0,0,16.1,77777,9,999999999,209,0.1780,0,88,0.190,999.0,99.0 +1997,5,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,3.0,71,99000,0,0,282,0,0,0,0,0,0,0,50,3.6,0,0,16.1,77777,9,999999999,200,0.1780,0,88,0.190,999.0,99.0 +1997,5,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,3.0,66,99000,65,1031,291,17,1,17,2000,0,2000,600,40,4.1,5,1,16.1,77777,9,999999999,189,0.1780,0,88,0.190,999.0,99.0 +1997,5,27,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.0,3.0,54,99100,298,1331,304,119,116,93,12900,9500,10700,2020,60,5.7,5,1,16.1,77777,9,999999999,189,0.1780,0,88,0.190,0.0,6.0 +1997,5,27,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,4.0,51,99100,543,1331,318,283,247,182,29900,24500,19800,3950,70,6.7,9,2,16.1,7500,9,999999999,189,0.1780,0,88,0.190,999.0,99.0 +1997,5,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,5.0,48,99200,773,1331,331,386,194,273,42000,20200,30200,7250,70,6.7,9,3,16.1,7500,9,999999999,189,0.1780,0,88,0.190,999.0,99.0 +1997,5,27,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,5.0,45,99200,972,1331,332,659,467,317,68800,48400,33500,9670,80,7.7,9,2,16.1,7500,9,999999999,189,0.1780,0,88,0.190,999.0,99.0 +1997,5,27,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,5.0,40,99300,1125,1331,345,773,448,393,80800,46600,41300,16950,90,6.2,9,3,16.1,7500,9,999999999,189,0.1780,0,88,0.190,999.0,99.0 +1997,5,27,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,6.0,38,99300,1223,1331,352,895,548,390,95000,57200,42300,23790,70,6.7,9,2,16.1,7500,9,999999999,189,0.1780,0,88,0.190,999.0,99.0 +1997,5,27,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.0,6.0,38,99300,1259,1331,356,962,581,412,102100,60600,44600,30270,80,8.2,9,3,16.1,7500,9,999999999,189,0.1780,0,88,0.190,0.0,6.0 +1997,5,27,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,5.0,33,99200,1231,1331,356,768,349,446,84000,37900,48900,25350,80,8.2,9,2,16.1,7500,9,999999999,189,0.1780,0,88,0.190,999.0,99.0 +1997,5,27,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,5.0,31,99200,1139,1331,364,783,450,397,82000,46800,41800,17850,60,7.7,9,3,16.1,7500,9,999999999,189,0.1780,0,88,0.190,999.0,99.0 +1997,5,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,4.0,31,99200,992,1331,355,659,442,329,68800,45800,34600,10420,60,7.2,9,2,16.1,7500,9,999999999,189,0.1780,0,88,0.190,999.0,99.0 +1997,5,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,4.0,31,99200,798,1331,358,465,325,270,49800,34500,29100,6830,90,6.7,9,3,16.1,7500,9,999999999,189,0.1780,0,88,0.190,999.0,99.0 +1997,5,27,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,3.0,29,99200,571,1331,354,322,262,209,33700,26300,22500,4690,70,6.2,9,2,16.1,7500,9,999999999,189,0.1780,0,88,0.190,999.0,99.0 +1997,5,27,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.0,2.0,28,99300,327,1331,351,131,99,106,14100,8400,12000,2320,80,5.7,9,3,16.1,7500,9,999999999,189,0.1780,0,88,0.190,0.0,6.0 +1997,5,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,2.0,36,99300,87,1186,325,25,3,24,2700,0,2700,810,80,4.6,5,1,16.1,77777,9,999999999,189,0.1780,0,88,0.190,999.0,99.0 +1997,5,27,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,3.0,44,99300,0,0,317,0,0,0,0,0,0,0,50,3.6,5,1,16.1,77777,9,999999999,200,0.1780,0,88,0.190,999.0,99.0 +1997,5,27,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,4.0,58,99300,0,0,305,0,0,0,0,0,0,0,50,3.6,5,1,16.1,77777,9,999999999,200,0.1780,0,88,0.190,999.0,99.0 +1997,5,27,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,4.0,54,99300,0,0,309,0,0,0,0,0,0,0,50,3.1,5,1,16.1,77777,9,999999999,200,0.1780,0,88,0.190,999.0,99.0 +1997,5,27,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,5.0,62,99300,0,0,306,0,0,0,0,0,0,0,50,2.6,5,1,16.1,77777,9,999999999,200,0.1780,0,88,0.190,999.0,99.0 +1997,5,28,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.0,5.0,62,99300,0,0,318,0,0,0,0,0,0,0,70,3.1,5,5,16.1,77777,9,999999999,200,0.1780,0,88,0.190,0.0,6.0 +1997,5,28,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,5.0,62,99200,0,0,318,0,0,0,0,0,0,0,80,3.6,5,5,16.1,77777,9,999999999,200,0.1780,0,88,0.190,999.0,99.0 +1997,5,28,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,5.0,66,99300,0,0,332,0,0,0,0,0,0,0,80,3.6,9,9,16.1,7500,9,999999999,200,0.1780,0,88,0.190,999.0,99.0 +1997,5,28,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,5.0,62,99300,0,0,337,0,0,0,0,0,0,0,110,3.6,9,9,16.1,7500,9,999999999,200,0.1780,0,88,0.190,999.0,99.0 +1997,5,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,6.0,67,99400,0,0,319,0,0,0,0,0,0,0,120,4.1,5,5,16.1,77777,9,999999999,200,0.1780,0,88,0.190,999.0,99.0 +1997,5,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,7.0,71,99400,66,1031,349,14,0,14,1600,0,1600,510,100,5.1,10,10,16.1,7500,9,999999999,200,0.1780,0,88,0.190,999.0,99.0 +1997,5,28,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.0,7.0,63,99400,300,1330,359,55,0,55,6300,0,6300,2110,110,6.2,10,10,16.1,7500,9,999999999,200,0.1780,0,88,0.190,0.0,6.0 +1997,5,28,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,8.0,63,99400,545,1330,365,124,0,124,14300,0,14300,5060,120,6.2,10,10,16.1,7500,9,999999999,209,0.1780,0,88,0.190,999.0,99.0 +1997,5,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,8.0,59,99500,774,1330,370,198,0,198,23000,0,23000,8600,140,6.7,10,10,16.1,7500,9,999999999,209,0.1780,0,88,0.190,999.0,99.0 +1997,5,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,9.0,56,99400,973,1330,382,210,0,210,25100,0,25100,10030,120,7.2,10,10,16.1,3000,9,999999999,220,0.1780,0,88,0.190,999.0,99.0 +1997,5,28,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,9.0,56,99400,1126,1330,382,250,0,250,30100,0,30100,12060,150,5.7,10,10,16.1,1500,9,999999999,220,0.1780,0,88,0.190,999.0,99.0 +1997,5,28,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,8.0,52,99400,1224,1330,380,275,0,275,33300,0,33300,13230,130,5.7,10,10,16.1,1200,9,999999999,229,0.1780,0,88,0.190,999.0,99.0 +1997,5,28,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.0,9.0,52,99400,1260,1330,387,284,0,284,34500,0,34500,13650,120,4.6,10,10,16.1,1200,9,999999999,229,0.1780,0,88,0.190,0.0,6.0 +1997,5,28,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,9.0,52,99300,1232,1330,387,277,0,277,33600,0,33600,13320,140,4.1,10,10,0.0,1200,9,999999999,240,0.1780,0,88,0.190,999.0,99.0 +1997,5,28,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,9.0,52,99300,1141,1330,387,254,0,254,30600,0,30600,12240,150,3.1,10,10,16.1,1200,9,999999999,240,0.1780,0,88,0.190,999.0,99.0 +1997,5,28,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.0,10.0,59,99300,993,1330,383,216,0,216,25800,0,25800,10350,180,5.1,10,10,16.1,1200,9,999999999,250,0.1780,0,88,0.190,0.0,3.0 +1997,5,28,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,11.0,68,99300,800,1330,379,165,0,165,19500,0,19500,7590,140,3.6,10,10,11.3,1200,9,999999999,250,0.1780,0,88,0.190,999.0,99.0 +1997,5,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,11.0,72,99200,573,1330,374,106,0,106,12400,0,12400,4580,130,2.6,10,10,11.3,1200,9,999999999,259,0.1780,0,88,0.190,999.0,99.0 +1997,5,28,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.0,11.0,72,99300,329,1330,374,50,0,50,5900,0,5900,2010,180,2.6,10,10,9.7,1350,9,999999999,259,0.1780,0,88,0.190,0.0,6.0 +1997,5,28,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,12.0,82,99200,90,1186,370,16,0,16,1900,0,1900,590,120,1.5,10,10,11.3,1350,9,999999999,270,0.1780,0,88,0.190,999.0,99.0 +1997,5,28,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,12.0,82,99200,0,0,370,0,0,0,0,0,0,0,140,2.6,10,10,11.3,1350,9,999999999,270,0.1780,0,88,0.190,999.0,99.0 +1997,5,28,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,12.0,82,99200,0,0,370,0,0,0,0,0,0,0,170,2.6,10,10,8.0,1200,9,999999999,270,0.1780,0,88,0.190,0.0,3.0 +1997,5,28,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,11.0,77,99100,0,0,369,0,0,0,0,0,0,0,160,4.6,10,10,8.0,1200,9,999999999,279,0.1780,0,88,0.190,999.0,99.0 +1997,5,28,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,10.0,72,99200,0,0,367,0,0,0,0,0,0,0,180,3.6,10,10,11.3,900,9,999999999,279,0.1780,0,88,0.190,999.0,99.0 +1997,5,29,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,10.0,72,99100,0,0,367,0,0,0,0,0,0,0,180,3.1,10,10,16.1,750,9,999999999,290,0.1790,0,88,0.190,0.0,6.0 +1997,5,29,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,9.0,67,99100,0,0,366,0,0,0,0,0,0,0,160,3.6,10,10,16.1,750,9,999999999,290,0.1790,0,88,0.190,999.0,99.0 +1997,5,29,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,9.0,72,99000,0,0,361,0,0,0,0,0,0,0,170,5.1,10,10,16.1,660,9,999999999,300,0.1790,0,88,0.190,999.0,99.0 +1997,5,29,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,9.0,72,99000,0,0,361,0,0,0,0,0,0,0,170,5.1,10,10,16.1,660,9,999999999,300,0.1790,0,88,0.190,999.0,99.0 +1997,5,29,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,10.0,82,99000,0,0,357,0,0,0,0,0,0,0,170,3.6,10,10,11.3,660,9,999999999,309,0.1790,0,88,0.190,999.0,99.0 +1997,5,29,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,10.0,88,99000,68,1053,352,10,0,10,1200,0,1200,380,160,4.1,10,10,9.7,390,9,999999999,309,0.1790,0,88,0.190,999.0,99.0 +1997,5,29,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.0,10.0,88,99000,301,1330,352,60,0,60,6900,0,6900,2260,160,4.1,10,10,9.7,480,9,999999999,320,0.1790,0,88,0.190,2.0,6.0 +1997,5,29,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,10.0,88,99000,546,1330,352,104,0,104,12200,0,12200,4420,160,3.6,10,10,9.7,480,9,999999999,320,0.1790,0,88,0.190,999.0,99.0 +1997,5,29,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,11.0,88,99000,775,1330,358,153,0,153,18100,0,18100,7040,170,4.1,10,10,11.3,480,9,999999999,309,0.1790,0,88,0.190,999.0,99.0 +1997,5,29,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.0,11.0,88,99000,973,1330,358,173,0,173,21000,0,21000,8560,170,4.6,10,10,11.3,300,9,999999999,309,0.1790,0,88,0.190,1.0,3.0 +1997,5,29,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,12.0,88,99000,1127,1330,365,209,0,209,25500,0,25500,10420,180,3.6,10,10,11.3,300,9,999999999,309,0.1790,0,88,0.190,999.0,99.0 +1997,5,29,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,12.0,88,99000,1225,1330,365,231,0,231,28400,0,28400,11480,180,5.7,10,10,11.3,240,9,999999999,300,0.1790,0,88,0.190,999.0,99.0 +1997,5,29,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,12.0,82,98900,1261,1330,370,239,0,239,29400,0,29400,11870,190,4.1,10,10,11.3,240,9,999999999,300,0.1790,0,88,0.190,1.0,6.0 +1997,5,29,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,12.0,82,98900,1233,1330,370,233,0,233,28600,0,28600,11580,200,4.1,10,10,11.3,240,9,999999999,290,0.1790,0,88,0.190,999.0,99.0 +1997,5,29,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,12.0,77,98900,1142,1330,375,212,0,212,25900,0,25900,10570,190,4.6,10,10,11.3,240,9,999999999,290,0.1790,0,88,0.190,999.0,99.0 +1997,5,29,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,12.0,77,98900,995,1330,375,178,0,178,21600,0,21600,8830,210,3.6,10,10,11.3,300,9,999999999,290,0.1790,0,88,0.190,999.0,99.0 +1997,5,29,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,12.0,77,98900,801,1330,375,134,0,134,16100,0,16100,6400,210,4.6,10,10,11.3,300,9,999999999,279,0.1790,0,88,0.190,999.0,99.0 +1997,5,29,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,12.0,77,98900,575,1330,375,91,0,91,10800,0,10800,4050,190,4.1,10,10,11.3,300,9,999999999,279,0.1790,0,88,0.190,999.0,99.0 +1997,5,29,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.0,12.0,77,98900,332,1330,365,89,16,85,10000,800,9800,3040,180,4.1,9,9,11.3,1800,9,999999999,279,0.1790,0,88,0.190,0.0,6.0 +1997,5,29,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,12.0,77,99000,92,1208,375,17,0,17,2000,0,2000,620,180,2.6,10,10,11.3,1800,9,999999999,270,0.1790,0,88,0.190,999.0,99.0 +1997,5,29,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,12.0,77,99000,0,0,375,0,0,0,0,0,0,0,200,2.6,10,10,11.3,1350,9,999999999,270,0.1790,0,88,0.190,999.0,99.0 +1997,5,29,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,12.0,77,99000,0,0,365,0,0,0,0,0,0,0,190,3.1,9,9,11.3,1350,9,999999999,270,0.1790,0,88,0.190,999.0,99.0 +1997,5,29,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,13.0,88,99000,0,0,371,0,0,0,0,0,0,0,200,2.6,10,10,11.3,300,9,999999999,259,0.1790,0,88,0.190,999.0,99.0 +1997,5,29,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,12.0,82,99000,0,0,360,0,0,0,0,0,0,0,220,2.6,9,9,11.3,1500,9,999999999,259,0.1790,0,88,0.190,999.0,99.0 +1997,5,30,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.0,12.0,88,99000,0,0,355,0,0,0,0,0,0,0,220,2.1,9,9,11.3,1500,9,999999999,250,0.1790,0,88,0.190,0.0,6.0 +1997,5,30,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,10.0,88,99000,0,0,343,0,0,0,0,0,0,0,220,1.5,9,9,11.3,1500,9,999999999,250,0.1790,0,88,0.190,999.0,99.0 +1997,5,30,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,11.0,88,99000,0,0,349,0,0,0,0,0,0,0,220,2.1,9,9,9.7,2100,9,999999999,250,0.1790,0,88,0.190,999.0,99.0 +1997,5,30,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,12.0,88,99000,0,0,335,0,0,0,0,0,0,0,200,2.1,5,5,6.4,77777,9,999999999,240,0.1790,0,88,0.190,999.0,99.0 +1997,5,30,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,12.0,88,99000,0,0,355,0,0,0,0,0,0,0,190,2.1,9,9,6.4,150,9,999999999,240,0.1790,0,88,0.190,999.0,99.0 +1997,5,30,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,12.0,88,99100,69,1052,365,10,0,10,1200,0,1200,380,190,2.6,10,10,6.4,240,9,999999999,240,0.1790,0,88,0.190,999.0,99.0 +1997,5,30,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,12.0,82,99100,303,1329,370,46,0,46,5400,0,5400,1830,180,2.6,10,10,6.4,240,9,999999999,229,0.1790,0,88,0.190,0.0,6.0 +1997,5,30,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,13.0,82,99100,547,1329,376,79,0,79,9400,0,9400,3520,190,3.1,10,10,9.7,240,9,999999999,240,0.1790,0,88,0.190,999.0,99.0 +1997,5,30,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,13.0,82,99200,776,1329,376,128,0,128,15400,0,15400,6080,210,3.6,10,10,9.7,360,9,999999999,240,0.1790,0,88,0.190,999.0,99.0 +1997,5,30,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.0,13.0,77,99100,974,1329,381,173,0,173,21000,0,21000,8560,190,3.6,10,10,9.7,360,9,999999999,240,0.1790,0,88,0.190,0.0,3.0 +1997,5,30,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,13.0,73,99200,1127,1329,387,248,0,248,29900,0,29900,11980,220,4.6,10,10,11.3,480,9,999999999,250,0.1790,0,88,0.190,999.0,99.0 +1997,5,30,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,13.0,73,99100,1225,1329,387,274,0,274,33200,0,33200,13190,230,4.6,10,10,11.3,540,9,999999999,250,0.1790,0,88,0.190,999.0,99.0 +1997,5,30,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,13.0,64,99100,1261,1329,397,283,0,283,34400,0,34400,13620,250,4.1,10,10,11.3,870,9,999999999,250,0.1790,0,88,0.190,0.0,6.0 +1997,5,30,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,12.0,60,99100,1233,1329,396,276,0,276,33500,0,33500,13290,250,3.6,10,10,11.3,1050,9,999999999,259,0.1790,0,88,0.190,999.0,99.0 +1997,5,30,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,20.6,12.6,60,99000,1143,1329,400,252,0,252,30400,0,30400,12170,250,3.6,10,10,11.3,1275,9,999999999,259,0.1790,0,88,0.190,999.0,99.0 +1997,5,30,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.0,13.0,60,99000,996,1329,403,212,0,212,25400,0,25400,10210,250,3.6,10,10,11.3,1500,9,999999999,259,0.1790,0,88,0.190,0.0,3.0 +1997,5,30,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,20.3,13.3,64,99000,803,1329,399,160,0,160,19000,0,19000,7420,200,2.7,10,10,11.3,2000,9,999999999,270,0.1790,0,88,0.190,999.0,99.0 +1997,5,30,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,19.3,13.6,70,99000,577,1329,394,102,0,102,12000,0,12000,4460,140,1.9,10,10,11.3,2500,9,999999999,270,0.1790,0,88,0.190,999.0,99.0 +1997,5,30,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.0,14.0,77,99000,334,1329,388,59,0,59,6800,0,6800,2320,90,1.0,10,10,6.4,3000,9,999999999,279,0.1790,0,88,0.190,0.0,6.0 +1997,5,30,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,14.0,82,98900,95,1230,383,18,0,18,2100,0,2100,650,50,1.5,10,10,6.4,3000,9,999999999,279,0.1790,0,88,0.190,999.0,99.0 +1997,5,30,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,13.0,77,99000,0,0,381,0,0,0,0,0,0,0,360,1.5,10,10,6.4,1500,9,999999999,279,0.1790,0,88,0.190,999.0,99.0 +1997,5,30,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.0,13.0,82,98900,0,0,376,0,0,0,0,0,0,0,30,2.1,10,10,4.8,1500,9,999999999,290,0.1790,0,88,0.190,1.0,3.0 +1997,5,30,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,13.0,82,98900,0,0,376,0,0,0,0,0,0,0,50,1.5,10,10,4.8,3000,9,999999999,290,0.1790,0,88,0.190,999.0,99.0 +1997,5,30,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,13.0,88,98900,0,0,371,0,0,0,0,0,0,0,40,1.0,10,10,4.8,1500,9,999999999,290,0.1790,0,88,0.190,999.0,99.0 +1997,5,31,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,13.0,88,98800,0,0,361,0,0,0,0,0,0,0,20,2.1,10,9,4.8,1500,9,999999999,300,0.1790,0,88,0.190,2.0,6.0 +1997,5,31,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,13.0,88,98700,0,0,361,0,0,0,0,0,0,0,60,2.1,10,9,4.8,1500,9,999999999,300,0.1790,0,88,0.190,999.0,99.0 +1997,5,31,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,13.0,88,98700,0,0,361,0,0,0,0,0,0,0,60,1.0,10,9,4.8,1500,9,999999999,300,0.1790,0,88,0.190,999.0,99.0 +1997,5,31,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,13.0,88,98600,0,0,361,0,0,0,0,0,0,0,70,2.1,10,9,4.8,1500,9,999999999,309,0.1790,0,88,0.190,0.0,3.0 +1997,5,31,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,14.8,12.9,88,98600,0,0,360,0,0,0,0,0,0,0,60,2.4,10,9,4.8,1500,9,999999999,309,0.1790,0,88,0.190,999.0,99.0 +1997,5,31,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,13.0,88,98600,70,1074,361,16,0,16,1800,0,1800,570,50,2.6,10,9,4.0,1500,9,999999999,309,0.1790,0,88,0.190,999.0,99.0 +1997,5,31,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,13.0,88,98600,304,1329,361,68,31,61,7500,2600,6900,1640,50,3.6,10,9,4.8,1500,9,999999999,320,0.1790,0,88,0.190,3.0,6.0 +1997,5,31,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,13.0,88,98500,548,1329,361,185,32,172,20300,3100,19000,4830,60,4.6,10,9,4.8,1200,9,999999999,320,0.1790,0,88,0.190,999.0,99.0 +1997,5,31,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,13.0,88,98500,777,1329,361,251,42,226,27600,4200,25100,7380,60,4.6,10,9,4.0,840,9,999999999,320,0.1790,0,88,0.190,999.0,99.0 +1997,5,31,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,13.0,88,98500,975,1329,361,466,183,332,51200,19400,36900,10560,140,4.6,10,9,4.0,840,9,999999999,320,0.1790,0,88,0.190,16.0,3.0 +1997,5,31,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,13.0,88,98500,1128,1329,361,591,68,533,65000,7100,58900,21570,50,4.6,10,9,4.0,840,9,999999999,320,0.1790,0,88,0.190,999.0,99.0 +1997,5,31,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,13.0,82,98400,1226,1329,366,456,170,299,51300,18600,34100,16220,70,4.1,10,9,8.0,360,9,999999999,320,0.1790,0,88,0.190,999.0,99.0 +1997,5,31,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.0,14.0,88,98400,1262,1329,367,375,145,238,43200,15900,28100,15180,60,5.1,10,9,11.3,360,9,999999999,320,0.1790,0,88,0.190,17.0,6.0 +1997,5,31,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,14.0,82,98300,1234,1329,372,709,208,515,77300,22100,56800,27870,60,4.1,10,9,11.3,360,9,999999999,320,0.1790,0,88,0.190,999.0,99.0 +1997,5,31,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,14.0,88,98300,1144,1329,367,666,226,470,72400,24000,51700,19650,50,4.1,10,9,11.3,360,9,999999999,320,0.1790,0,88,0.190,999.0,99.0 +1997,5,31,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.0,15.0,94,98200,997,1329,368,338,136,235,37900,14600,26900,7680,30,3.6,10,9,8.0,360,9,999999999,320,0.1790,0,88,0.190,3.0,3.0 +1997,5,31,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,15.0,94,98200,805,1329,368,289,66,249,31800,6700,27800,8190,20,3.6,10,9,8.0,300,9,999999999,320,0.1790,0,88,0.190,999.0,99.0 +1997,5,31,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,14.0,88,98200,580,1329,367,215,113,165,23500,11300,18500,3940,10,5.1,10,9,8.0,300,9,999999999,320,0.1790,0,88,0.190,999.0,99.0 +1997,5,31,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.8,13.4,86,98200,337,1329,365,71,19,66,7800,1600,7400,1810,20,5.4,10,9,8.0,300,9,999999999,320,0.1790,0,88,0.190,999.0,99.0 +1997,5,31,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,13.0,88,98100,97,1251,361,23,5,23,2600,0,2600,790,30,5.7,10,9,8.0,300,9,999999999,320,0.1790,0,88,0.190,999.0,99.0 +1997,5,31,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,13.0,88,98100,0,0,361,0,0,0,0,0,0,0,30,5.7,10,9,8.0,300,9,999999999,320,0.1790,0,88,0.190,999.0,99.0 +1997,5,31,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.5,13.5,88,98100,0,0,364,0,0,0,0,0,0,0,40,5.1,10,9,8.0,300,9,999999999,320,0.1790,0,88,0.190,6.0,3.0 +1997,5,31,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.9,14.0,88,98100,0,0,367,0,0,0,0,0,0,0,30,4.5,10,9,8.0,300,9,999999999,320,0.1790,0,88,0.190,999.0,99.0 +1997,5,31,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.4,14.5,94,98000,0,0,370,0,0,0,0,0,0,0,40,3.9,10,9,9.7,300,9,999999999,320,0.1790,0,88,0.190,999.0,99.0 +1994,6,1,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.9,15.1,84,98400,0,0,359,0,0,0,0,0,0,0,60,3.3,10,7,11.3,1800,9,999999999,259,0.1870,0,88,0.190,0.0,6.0 +1994,6,1,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.4,15.6,81,98400,0,0,352,0,0,0,0,0,0,0,10,2.7,9,4,11.3,7500,9,999999999,259,0.1870,0,88,0.190,999.0,99.0 +1994,6,1,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.8,16.1,90,98400,0,0,355,0,0,0,0,0,0,0,210,2.1,9,4,11.3,2100,9,999999999,259,0.1870,0,88,0.190,999.0,99.0 +1994,6,1,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,16.6,90,98400,0,0,358,0,0,0,0,0,0,0,280,1.5,9,4,11.3,2100,9,999999999,259,0.1870,0,88,0.190,999.0,99.0 +1994,6,1,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,14.4,81,98500,0,0,342,0,0,0,0,0,0,0,330,3.0,2,1,11.3,77777,9,999999999,259,0.1870,0,88,0.190,999.0,99.0 +1994,6,1,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.6,13.8,84,98500,71,1074,336,20,38,17,2200,1800,2100,350,320,2.5,3,1,11.3,77777,9,999999999,250,0.1870,0,88,0.190,999.0,99.0 +1994,6,1,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.8,12.2,65,98600,305,1328,344,135,313,63,14300,25000,8600,1130,330,2.5,2,1,11.3,77777,9,999999999,250,0.1870,0,88,0.190,0.0,6.0 +1994,6,1,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,11.6,57,98600,549,1328,345,337,579,98,35200,55200,12300,1940,330,3.6,0,0,11.3,77777,9,999999999,250,0.1870,0,88,0.190,999.0,99.0 +1994,6,1,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,9.4,44,98600,777,1328,351,537,697,129,56900,70100,15800,3030,310,5.6,0,0,11.3,77777,9,999999999,250,0.1870,0,88,0.190,999.0,99.0 +1994,6,1,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,8.3,38,98700,975,1328,361,678,693,169,72200,70700,20200,5110,290,6.6,3,1,11.3,77777,9,999999999,250,0.1870,0,88,0.190,999.0,99.0 +1994,6,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,8.8,37,98700,1128,1328,367,779,711,175,84200,73200,21900,7520,310,5.1,2,1,11.3,77777,9,999999999,250,0.1870,0,88,0.190,999.0,99.0 +1994,6,1,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,7.2,31,98700,1226,1328,371,905,774,190,94900,77800,22900,10660,300,7.2,3,1,11.3,77777,9,999999999,240,0.1870,0,88,0.190,999.0,99.0 +1994,6,1,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,7.2,30,98700,1262,1328,374,927,765,200,97200,76800,24000,13680,290,6.1,2,1,11.3,77777,9,999999999,240,0.1870,0,88,0.190,0.0,6.0 +1994,6,1,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,5.5,27,98700,1235,1328,372,903,766,190,94700,77000,23000,11140,310,6.1,3,1,11.3,77777,9,999999999,240,0.1870,0,88,0.190,999.0,99.0 +1994,6,1,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,6.1,28,98700,1145,1328,384,634,317,360,69600,34500,39800,15250,290,7.7,9,4,11.3,77777,9,999999999,240,0.1870,0,88,0.190,999.0,99.0 +1994,6,1,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,6.1,28,98600,998,1328,384,581,417,267,62100,43400,29400,8430,320,5.6,9,4,11.3,77777,9,999999999,240,0.1870,0,88,0.190,999.0,99.0 +1994,6,1,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,6.1,31,98500,806,1328,376,487,467,204,51900,47900,22800,4860,320,5.1,9,4,16.1,7500,9,999999999,240,0.1870,0,88,0.190,999.0,99.0 +1994,6,1,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,6.1,31,98500,581,1328,376,317,312,181,33800,31500,20000,3930,310,5.1,9,4,16.1,7500,9,999999999,240,0.1870,0,88,0.190,999.0,99.0 +1994,6,1,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,7.2,38,98600,338,1328,366,149,163,108,16200,14000,12600,2370,320,3.6,9,4,16.1,7500,9,999999999,229,0.1870,0,88,0.190,0.0,6.0 +1994,6,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,6.6,40,98600,99,1251,357,29,10,28,3200,600,3100,670,310,3.0,9,4,16.1,7500,9,999999999,229,0.1870,0,88,0.190,999.0,99.0 +1994,6,1,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,6.6,45,98700,0,0,349,0,0,0,0,0,0,0,320,4.1,9,4,16.1,7500,9,999999999,229,0.1870,0,88,0.190,999.0,99.0 +1994,6,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,5.0,44,98800,0,0,329,0,0,0,0,0,0,0,320,5.6,3,1,16.1,77777,9,999999999,229,0.1870,0,88,0.190,999.0,99.0 +1994,6,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,0.5,35,98800,0,0,319,0,0,0,0,0,0,0,330,3.6,2,1,16.1,77777,9,999999999,229,0.1870,0,88,0.190,999.0,99.0 +1994,6,1,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,-1.2,31,98800,0,0,324,0,0,0,0,0,0,0,330,2.5,9,4,16.1,3300,9,999999999,229,0.1870,0,88,0.190,999.0,99.0 +1994,6,2,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-0.6,34,98700,0,0,354,0,0,0,0,0,0,0,340,3.0,10,10,16.1,3000,9,999999999,229,0.1870,0,88,0.190,0.0,6.0 +1994,6,2,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,0.0,37,98800,0,0,352,0,0,0,0,0,0,0,350,4.1,10,10,16.1,2700,9,999999999,229,0.1870,0,88,0.190,999.0,99.0 +1994,6,2,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.3,-0.6,38,98800,0,0,346,0,0,0,0,0,0,0,10,4.1,10,10,16.1,2400,9,999999999,220,0.1870,0,88,0.190,999.0,99.0 +1994,6,2,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.3,0.5,41,98800,0,0,347,0,0,0,0,0,0,0,20,3.6,10,10,16.1,2400,9,999999999,220,0.1870,0,88,0.190,999.0,99.0 +1994,6,2,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.2,0.0,43,98900,0,0,332,0,0,0,0,0,0,0,20,3.6,9,9,16.1,3000,9,999999999,220,0.1870,0,88,0.190,999.0,99.0 +1994,6,2,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.1,0.0,46,98900,72,1073,327,20,1,20,2300,0,2300,680,20,4.1,9,9,16.1,3000,9,999999999,220,0.1870,0,88,0.190,999.0,99.0 +1994,6,2,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,0.5,48,99000,306,1328,327,81,55,68,8900,4600,7900,1480,350,2.5,9,9,16.1,7500,9,999999999,220,0.1870,0,88,0.190,0.0,6.0 +1994,6,2,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.8,-0.6,37,99100,549,1328,339,245,36,230,26900,3300,25500,7480,20,3.6,9,9,16.1,7500,9,999999999,220,0.1870,0,88,0.190,999.0,99.0 +1994,6,2,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.8,0.0,39,99100,778,1328,339,258,117,189,28700,12300,21500,5040,350,3.6,9,9,16.1,77777,9,999999999,220,0.1870,0,88,0.190,999.0,99.0 +1994,6,2,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,-2.3,30,99100,975,1328,342,531,199,384,57600,21000,42200,12240,360,4.6,9,9,16.1,77777,9,999999999,209,0.1870,0,88,0.190,999.0,99.0 +1994,6,2,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,-1.7,26,99200,1128,1328,356,382,64,327,42200,6500,36600,14490,40,4.1,9,9,16.1,7500,9,999999999,209,0.1870,0,88,0.190,999.0,99.0 +1994,6,2,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,-2.3,26,99200,1226,1328,353,411,111,308,46300,11900,35200,16240,30,4.6,9,9,16.1,7500,9,999999999,209,0.1870,0,88,0.190,999.0,99.0 +1994,6,2,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,-3.4,22,99200,1263,1328,357,660,156,511,72200,16600,56400,31360,20,3.0,9,9,16.1,7500,9,999999999,209,0.1870,0,88,0.190,0.0,6.0 +1994,6,2,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,-3.9,21,99100,1235,1328,356,314,119,202,36200,13000,24100,11210,10,3.6,9,9,16.1,7500,9,999999999,209,0.1870,0,88,0.190,999.0,99.0 +1994,6,2,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,-1.7,24,99100,1146,1328,365,720,351,416,78100,38100,45200,17990,340,2.0,9,9,16.1,7500,9,999999999,209,0.1870,0,88,0.190,999.0,99.0 +1994,6,2,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,-2.8,19,99100,1000,1328,372,362,60,316,39800,6100,35200,12010,10,2.5,9,9,16.1,7500,9,999999999,209,0.1870,0,88,0.190,999.0,99.0 +1994,6,2,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,-1.2,23,99000,808,1328,371,217,62,178,23800,6200,20100,6190,40,2.5,9,9,16.1,77777,9,999999999,209,0.1870,0,88,0.190,999.0,99.0 +1994,6,2,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,1.1,28,99000,583,1328,371,185,62,157,20300,6000,17600,4640,10,3.6,9,9,16.1,7500,9,999999999,200,0.1870,0,88,0.190,999.0,99.0 +1994,6,2,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,3.3,34,99000,341,1328,371,82,28,74,8900,2400,8300,2000,20,4.1,9,9,16.1,4200,9,999999999,200,0.1870,0,88,0.190,0.0,6.0 +1994,6,2,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,3.3,39,99100,101,1273,331,32,23,31,3600,1400,3500,720,40,4.6,2,2,16.1,77777,9,999999999,200,0.1870,0,88,0.190,999.0,99.0 +1994,6,2,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,3.8,47,99100,0,0,325,0,0,0,0,0,0,0,20,1.5,3,3,16.1,77777,9,999999999,200,0.1870,0,88,0.190,999.0,99.0 +1994,6,2,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,4.4,51,99200,0,0,320,0,0,0,0,0,0,0,230,2.0,2,2,16.1,77777,9,999999999,200,0.1870,0,88,0.190,999.0,99.0 +1994,6,2,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.5,6.6,77,99100,0,0,308,0,0,0,0,0,0,0,240,0.5,3,3,16.1,77777,9,999999999,200,0.1870,0,88,0.190,999.0,99.0 +1994,6,2,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.5,6.6,77,99200,0,0,296,0,0,0,0,0,0,0,20,2.0,0,0,16.1,77777,9,999999999,200,0.1870,0,88,0.190,999.0,99.0 +1994,6,3,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.6,6.1,69,99200,0,0,300,0,0,0,0,0,0,0,220,0.5,0,0,16.1,77777,9,999999999,200,0.1880,0,88,0.190,0.0,6.0 +1994,6,3,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.7,5.5,86,99100,0,0,283,0,0,0,0,0,0,0,320,1.0,0,0,16.1,77777,9,999999999,200,0.1880,0,88,0.190,999.0,99.0 +1994,6,3,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.7,6.1,90,99100,0,0,284,0,0,0,0,0,0,0,240,1.0,0,0,16.1,77777,9,999999999,189,0.1880,0,88,0.190,999.0,99.0 +1994,6,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.7,6.6,93,99200,0,0,284,0,0,0,0,0,0,0,240,1.0,0,0,16.1,77777,9,999999999,189,0.1880,0,88,0.190,999.0,99.0 +1994,6,3,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.2,5.5,89,99200,0,0,281,0,0,0,0,0,0,0,220,1.0,2,0,16.1,77777,9,999999999,189,0.1880,0,88,0.190,999.0,99.0 +1994,6,3,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.7,6.6,93,99200,73,1095,284,20,21,19,2300,1000,2200,390,250,1.5,3,0,16.1,77777,9,999999999,189,0.1880,0,88,0.190,999.0,99.0 +1994,6,3,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.5,6.6,77,99300,307,1328,296,139,272,76,14500,21700,9400,1390,40,1.0,2,0,16.1,77777,9,999999999,189,0.1880,0,88,0.190,0.0,6.0 +1994,6,3,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,6.6,57,99400,550,1328,315,327,481,128,34700,46600,15400,2510,80,1.0,3,0,16.1,77777,9,999999999,189,0.1880,0,88,0.190,999.0,99.0 +1994,6,3,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,6.1,46,99400,778,1328,337,491,451,226,51400,46000,24400,5310,130,1.5,9,2,16.1,77777,9,999999999,189,0.1880,0,88,0.190,999.0,99.0 +1994,6,3,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,5.0,40,99400,976,1328,344,646,508,272,68700,52800,29800,8270,50,2.0,9,3,16.1,77777,9,999999999,189,0.1880,0,88,0.190,999.0,99.0 +1994,6,3,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,3.8,34,99300,1129,1328,351,730,496,308,78400,51800,34300,13300,90,4.1,10,4,16.1,77777,9,999999999,189,0.1880,0,88,0.190,999.0,99.0 +1994,6,3,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,3.3,32,99300,1227,1328,353,875,574,344,94200,60000,38600,21460,360,4.1,10,4,16.1,77777,9,999999999,189,0.1880,0,88,0.190,999.0,99.0 +1994,6,3,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.6,6.6,38,99300,1263,1328,356,965,677,320,101200,68100,36300,23420,60,3.6,9,2,16.1,7500,9,999999999,200,0.1880,0,88,0.190,0.0,6.0 +1994,6,3,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,4.4,32,99200,1236,1328,357,878,591,327,95100,61900,37400,21300,340,2.0,9,3,16.1,7500,9,999999999,200,0.1880,0,88,0.190,999.0,99.0 +1994,6,3,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,7.2,37,99200,1146,1328,350,864,744,221,92000,75900,26300,9910,300,2.0,2,0,16.1,77777,9,999999999,200,0.1880,0,88,0.190,999.0,99.0 +1994,6,3,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,5.0,30,99100,1001,1328,353,711,667,208,74800,67500,23800,6470,90,3.0,3,0,16.1,77777,9,999999999,200,0.1880,0,88,0.190,999.0,99.0 +1994,6,3,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,6.1,33,99100,809,1328,352,555,631,170,57800,63000,19400,3990,20,3.0,2,0,16.1,77777,9,999999999,200,0.1880,0,88,0.190,999.0,99.0 +1994,6,3,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,5.5,32,99000,585,1328,351,357,505,135,38000,49500,16200,2690,30,3.6,3,0,16.1,77777,9,999999999,200,0.1880,0,88,0.190,999.0,99.0 +1994,6,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,5.0,33,99000,343,1328,346,163,310,83,17100,25900,10400,1530,60,2.0,2,0,16.1,77777,9,999999999,200,0.1880,0,88,0.190,0.0,6.0 +1994,6,3,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,5.5,36,98900,103,1294,341,31,37,28,3400,1900,3300,580,310,1.0,3,0,16.1,77777,9,999999999,200,0.1880,0,88,0.190,999.0,99.0 +1994,6,3,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,6.1,43,98900,0,0,331,0,0,0,0,0,0,0,240,1.0,2,0,16.1,77777,9,999999999,209,0.1880,0,88,0.190,999.0,99.0 +1994,6,3,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,11.1,72,99000,0,0,324,0,0,0,0,0,0,0,310,0.5,3,0,16.1,77777,9,999999999,209,0.1880,0,88,0.190,999.0,99.0 +1994,6,3,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.3,8.3,72,99000,0,0,309,0,0,0,0,0,0,0,250,1.0,2,0,16.1,77777,9,999999999,209,0.1880,0,88,0.190,999.0,99.0 +1994,6,3,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.2,8.8,80,98900,0,0,305,0,0,0,0,0,0,0,230,1.0,3,0,16.1,77777,9,999999999,209,0.1880,0,88,0.190,999.0,99.0 +1994,6,4,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,8.8,80,98900,0,0,305,0,0,0,0,0,0,0,320,1.0,0,0,16.1,77777,9,999999999,209,0.1880,0,88,0.190,0.0,6.0 +1994,6,4,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.3,9.4,77,99000,0,0,310,0,0,0,0,0,0,0,270,1.5,0,0,16.1,77777,9,999999999,209,0.1880,0,88,0.190,999.0,99.0 +1994,6,4,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.7,8.3,75,98900,0,0,307,0,0,0,0,0,0,0,210,1.0,0,0,16.1,77777,9,999999999,209,0.1880,0,88,0.190,999.0,99.0 +1994,6,4,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.5,8.3,86,98900,0,0,297,0,0,0,0,0,0,0,150,1.0,0,0,16.1,77777,9,999999999,209,0.1880,0,88,0.190,999.0,99.0 +1994,6,4,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,7.7,86,99000,0,0,300,0,0,0,0,0,0,0,290,1.0,3,1,16.1,77777,9,999999999,209,0.1880,0,88,0.190,999.0,99.0 +1994,6,4,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.5,8.3,86,99000,74,1095,303,19,15,18,2100,900,2000,450,300,0.5,2,1,16.1,77777,9,999999999,220,0.1880,0,88,0.190,999.0,99.0 +1994,6,4,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.8,8.8,72,99000,308,1327,318,128,218,78,13700,17600,9600,1480,0,0.0,3,1,16.1,77777,9,999999999,220,0.1880,0,88,0.190,0.0,6.0 +1994,6,4,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,9.4,58,99100,551,1327,336,311,432,132,32900,41800,15600,2600,80,1.0,2,1,16.1,77777,9,999999999,220,0.1880,0,88,0.190,999.0,99.0 +1994,6,4,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,8.3,44,99100,779,1327,368,356,248,210,38700,26300,23200,5020,0,0.0,9,6,16.1,2700,9,999999999,220,0.1880,0,88,0.190,999.0,99.0 +1994,6,4,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,8.3,41,99000,976,1327,373,692,528,303,72700,54700,32400,9310,260,2.0,9,6,16.1,2700,9,999999999,220,0.1880,0,88,0.190,999.0,99.0 +1994,6,4,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,7.2,34,99000,1129,1327,363,810,684,227,85800,69600,26500,9620,90,2.5,3,1,16.1,77777,9,999999999,220,0.1880,0,88,0.190,999.0,99.0 +1994,6,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,7.7,36,99000,1227,1327,363,872,692,231,93200,70700,27700,14160,360,1.5,2,1,16.1,77777,9,999999999,220,0.1880,0,88,0.190,999.0,99.0 +1994,6,4,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,8.3,35,98900,1264,1327,388,799,493,329,86800,51600,37500,25120,10,2.5,9,6,16.1,77777,9,999999999,220,0.1880,0,88,0.190,0.0,6.0 +1994,6,4,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,8.9,36,98900,1237,1327,389,745,404,368,79700,42200,40300,24200,340,1.0,9,6,16.0,77777,9,999999999,220,0.1880,0,88,0.190,999.0,99.0 +1994,6,4,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,8.9,35,98800,1147,1327,374,817,679,230,86800,69100,26900,10320,260,1.5,3,1,16.0,77777,9,999999999,220,0.1880,0,88,0.190,999.0,99.0 +1994,6,4,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,7.8,31,98800,1002,1327,375,670,621,201,70700,63000,23100,6300,250,3.1,2,1,16.0,77777,9,999999999,220,0.1880,0,88,0.190,999.0,99.0 +1994,6,4,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,7.7,30,98700,811,1327,377,528,566,181,56900,58200,21200,4290,210,2.5,3,1,16.1,77777,9,999999999,220,0.1880,0,88,0.190,999.0,99.0 +1994,6,4,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,7.2,31,98700,587,1327,371,306,399,130,32700,39200,15400,2580,250,2.5,2,1,16.1,77777,9,999999999,220,0.1880,0,88,0.190,999.0,99.0 +1994,6,4,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.5,8.3,34,98700,345,1327,390,135,160,93,14300,13600,10700,1800,60,1.0,9,6,16.1,77777,9,999999999,220,0.1880,0,88,0.190,0.0,6.0 +1994,6,4,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,8.8,38,98700,106,1294,382,28,5,28,3200,0,3200,920,60,1.5,9,6,16.1,77777,9,999999999,220,0.1880,0,88,0.190,999.0,99.0 +1994,6,4,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,10.5,51,98700,0,0,371,0,0,0,0,0,0,0,20,1.0,9,6,16.1,77777,9,999999999,220,0.1880,0,88,0.190,999.0,99.0 +1994,6,4,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,11.6,70,98700,0,0,336,0,0,0,0,0,0,0,140,0.5,2,1,16.1,77777,9,999999999,220,0.1880,0,88,0.190,999.0,99.0 +1994,6,4,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.6,10.5,67,98700,0,0,332,0,0,0,0,0,0,0,50,2.0,3,1,16.1,77777,9,999999999,220,0.1880,0,88,0.190,999.0,99.0 +1994,6,4,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,10.0,67,98700,0,0,329,0,0,0,0,0,0,0,40,1.0,2,1,16.1,77777,9,999999999,220,0.1880,0,88,0.190,999.0,99.0 +1994,6,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.5,11.1,75,98700,0,0,332,0,0,0,0,0,0,0,50,2.0,2,2,16.1,77777,9,999999999,220,0.1880,0,88,0.190,0.0,6.0 +1994,6,5,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.8,11.1,84,98600,0,0,328,0,0,0,0,0,0,0,80,1.5,3,3,16.1,77777,9,999999999,220,0.1880,0,88,0.190,999.0,99.0 +1994,6,5,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.3,10.5,83,98600,0,0,322,0,0,0,0,0,0,0,60,1.5,2,2,16.1,77777,9,999999999,220,0.1880,0,88,0.190,999.0,99.0 +1994,6,5,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.2,10.0,86,98600,0,0,319,0,0,0,0,0,0,0,60,1.5,3,3,16.1,77777,9,999999999,220,0.1880,0,88,0.190,999.0,99.0 +1994,6,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.2,9.4,83,98600,0,0,316,0,0,0,0,0,0,0,70,1.5,2,2,16.1,77777,9,999999999,220,0.1880,0,88,0.190,999.0,99.0 +1994,6,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.7,10.0,84,98700,75,1095,322,18,6,18,2000,300,2000,450,90,1.5,3,3,16.1,77777,9,999999999,220,0.1880,0,88,0.190,999.0,99.0 +1994,6,5,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.5,12.2,81,98700,309,1327,323,132,235,78,14100,19000,9700,1480,220,1.0,0,0,16.1,77777,9,999999999,220,0.1880,0,88,0.190,0.0,6.0 +1994,6,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,12.7,63,98700,551,1327,344,316,449,129,33500,43500,15400,2530,310,1.0,0,0,16.1,77777,9,999999999,220,0.1880,0,88,0.190,999.0,99.0 +1994,6,5,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,12.2,51,98800,779,1327,368,498,528,188,53300,54000,21500,4340,230,2.0,2,2,16.1,77777,9,999999999,229,0.1880,0,88,0.190,999.0,99.0 +1994,6,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,11.6,43,98800,976,1327,383,582,391,294,63500,42300,32400,8890,240,3.6,3,3,16.1,77777,9,999999999,229,0.1880,0,88,0.190,999.0,99.0 +1994,6,5,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,10.5,36,98800,1129,1327,386,659,503,231,69800,51100,26200,9790,280,2.0,2,2,16.1,77777,9,999999999,229,0.1880,0,88,0.190,999.0,99.0 +1994,6,5,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,10.5,35,98800,1227,1327,393,885,640,292,93100,64600,33200,17680,240,3.6,3,3,16.1,77777,9,999999999,240,0.1880,0,88,0.190,999.0,99.0 +1994,6,5,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,9.4,33,98700,1264,1327,387,860,571,316,93900,59800,36800,24210,220,2.0,2,2,16.1,77777,9,999999999,240,0.1880,0,88,0.190,0.0,6.0 +1994,6,5,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,9.4,31,98700,1237,1327,397,841,591,289,88600,59700,32800,18410,220,5.1,3,3,16.1,77777,9,999999999,240,0.1880,0,88,0.190,999.0,99.0 +1994,6,5,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.9,9.4,30,98600,1148,1327,396,826,643,270,86800,64900,30500,11990,220,3.6,2,2,16.0,77777,9,999999999,250,0.1880,0,88,0.190,999.0,99.0 +1994,6,5,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.8,9.4,30,98500,1003,1327,421,562,259,366,60600,28000,39400,11890,190,5.1,9,8,16.1,77777,9,999999999,250,0.1880,0,88,0.190,999.0,99.0 +1994,6,5,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,9.4,29,98400,812,1327,399,528,523,207,56200,53700,23200,4970,210,4.1,2,2,16.1,77777,9,999999999,250,0.1880,0,88,0.190,999.0,99.0 +1994,6,5,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,10.0,32,98400,589,1327,398,296,339,145,31200,33300,16400,2910,200,4.1,3,3,16.1,77777,9,999999999,250,0.1880,0,88,0.190,999.0,99.0 +1994,6,5,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,10.0,34,98300,347,1327,406,128,44,117,14100,3900,13000,2900,170,4.1,9,7,16.1,77777,9,999999999,259,0.1880,0,88,0.190,0.0,6.0 +1994,6,5,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,10.5,39,98300,108,1316,404,27,0,27,3000,0,3000,900,190,3.6,9,8,16.1,77777,9,999999999,259,0.1880,0,88,0.190,999.0,99.0 +1994,6,5,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,11.6,43,98300,0,0,397,0,0,0,0,0,0,0,180,4.6,9,7,16.1,77777,9,999999999,259,0.1880,0,88,0.190,999.0,99.0 +1994,6,5,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,12.2,51,98300,0,0,391,0,0,0,0,0,0,0,160,2.5,9,8,16.1,77777,9,999999999,270,0.1880,0,88,0.190,999.0,99.0 +1994,6,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,12.2,55,98300,0,0,380,0,0,0,0,0,0,0,160,2.0,9,7,16.1,77777,9,999999999,270,0.1880,0,88,0.190,999.0,99.0 +1994,6,5,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,12.2,53,98200,0,0,369,0,0,0,0,0,0,0,210,2.5,3,3,16.1,77777,9,999999999,270,0.1880,0,88,0.190,999.0,99.0 +1994,6,6,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,13.3,61,98100,0,0,404,0,0,0,0,0,0,0,190,2.5,10,10,16.1,3600,9,999999999,279,0.1890,0,88,0.190,0.0,6.0 +1994,6,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,14.4,59,98100,0,0,414,0,0,0,0,0,0,0,180,3.0,10,10,16.1,3600,9,999999999,279,0.1890,0,88,0.190,999.0,99.0 +1994,6,6,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,16.6,66,98100,0,0,420,0,0,0,0,0,0,0,230,5.6,10,10,16.1,3600,9,999999999,279,0.1890,0,88,0.190,999.0,99.0 +1994,6,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,16.6,71,98100,0,0,414,0,0,0,0,0,0,0,230,4.1,10,10,12.9,3600,9,999999999,279,0.1890,0,88,0.190,999.0,99.0 +1994,6,6,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,17.2,76,98100,0,0,412,0,0,0,0,0,0,0,220,4.6,10,10,11.3,3600,9,999999999,290,0.1890,0,88,0.190,999.0,99.0 +1994,6,6,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,17.7,78,98200,76,1116,386,18,17,16,1900,800,1900,330,220,4.1,9,7,9.7,3600,9,999999999,290,0.1890,0,88,0.190,999.0,99.0 +1994,6,6,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.7,18.3,76,98200,309,1326,399,103,103,79,11300,8600,9300,1720,240,5.6,9,8,9.7,1260,9,999999999,290,0.1890,0,88,0.190,0.0,6.0 +1994,6,6,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,19.4,76,98200,552,1326,377,332,544,105,34400,51800,12800,2060,240,6.1,2,1,9.7,77777,9,999999999,290,0.1890,0,88,0.190,999.0,99.0 +1994,6,6,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,20.0,69,98200,779,1326,390,524,693,117,55900,70000,14700,2790,240,4.6,3,1,9.7,77777,9,999999999,300,0.1890,0,88,0.190,999.0,99.0 +1994,6,6,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,20.5,67,98200,976,1326,396,681,765,118,72800,77400,15700,3490,240,4.6,2,1,9.7,77777,9,999999999,300,0.1890,0,88,0.190,999.0,99.0 +1994,6,6,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,21.1,65,98200,1129,1326,403,809,789,137,86800,80100,18500,5650,230,5.6,3,1,9.7,77777,9,999999999,300,0.1890,0,88,0.190,999.0,99.0 +1994,6,6,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,20.0,57,98200,1228,1326,432,774,459,349,83200,48000,38700,21970,220,4.6,9,7,9.7,1440,9,999999999,300,0.1890,0,88,0.190,999.0,99.0 +1994,6,6,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,20.0,57,98100,1265,1326,407,949,840,148,97200,84200,16800,8710,220,5.1,3,1,9.7,77777,9,999999999,300,0.1890,0,88,0.190,999.0,99.0 +1994,6,6,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,20.5,67,98000,1238,1326,420,777,462,345,83700,48300,38500,22840,230,6.6,9,7,9.7,1260,9,999999999,300,0.1890,0,88,0.190,999.0,99.0 +1994,6,6,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,19.4,82,98000,1149,1326,421,259,0,259,31200,0,31200,12460,230,2.5,10,10,11.3,1140,9,999999999,309,0.1890,0,88,0.190,999.0,99.0 +1994,6,6,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,18.8,74,97900,1005,1326,426,278,0,278,32600,0,32600,12620,200,4.1,10,10,11.3,3900,9,999999999,309,0.1890,0,88,0.190,999.0,99.0 +1994,6,6,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,18.8,76,97900,814,1326,423,217,0,217,25200,0,25200,9460,210,5.1,10,10,11.3,3900,9,999999999,309,0.1890,0,88,0.190,999.0,99.0 +1994,6,6,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,16.6,66,97900,590,1326,394,305,266,186,32400,26900,20400,4070,220,4.6,9,7,16.1,3900,9,999999999,309,0.1890,0,88,0.190,999.0,99.0 +1994,6,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,17.8,69,97900,349,1326,405,62,38,52,6800,3300,6000,1490,220,3.6,9,8,9.6,3900,9,999999999,309,0.1890,0,88,0.190,999.0,99.0 +1994,6,6,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,18.3,76,97900,110,1326,393,39,25,37,4300,1500,4100,820,210,2.5,9,7,11.3,7500,9,999999999,309,0.1890,0,88,0.190,999.0,99.0 +1994,6,6,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,18.8,87,97900,0,11,391,0,0,0,0,0,0,0,190,2.0,9,8,11.3,7500,9,999999999,320,0.1890,0,88,0.190,999.0,99.0 +1994,6,6,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,18.8,87,98000,0,0,363,0,0,0,0,0,0,0,200,2.5,2,1,9.7,77777,9,999999999,320,0.1890,0,88,0.190,999.0,99.0 +1994,6,6,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,19.4,90,98000,0,0,392,0,0,0,0,0,0,0,10,1.5,9,8,9.7,2700,9,999999999,320,0.1890,0,88,0.190,999.0,99.0 +1994,6,6,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,19.4,90,98100,0,0,386,0,0,0,0,0,0,0,90,0.5,9,7,8.0,1200,9,999999999,320,0.1890,0,88,0.190,999.0,99.0 +1994,6,7,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,20.0,91,98000,0,0,381,0,0,0,0,0,0,0,130,2.0,9,5,4.4,900,9,999999999,320,0.1890,0,88,0.190,999.0,99.0 +1994,6,7,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,19.4,90,98000,0,0,378,0,0,0,0,0,0,0,180,2.0,9,5,4.8,990,9,999999999,320,0.1890,0,88,0.190,999.0,99.0 +1994,6,7,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,19.4,93,98000,0,0,383,0,0,0,0,0,0,0,170,1.5,10,7,4.4,1350,9,999999999,320,0.1890,0,88,0.190,999.0,99.0 +1994,6,7,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,19.4,96,98000,0,0,372,0,0,0,0,0,0,0,230,0.5,9,5,4.4,7500,9,999999999,329,0.1890,0,88,0.190,999.0,99.0 +1994,6,7,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,18.8,100,98000,0,0,366,0,0,0,0,0,0,0,40,1.5,9,5,1.6,3000,9,999999999,329,0.1890,0,88,0.190,999.0,99.0 +1994,6,7,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,18.3,100,98000,76,1116,363,28,0,28,3100,0,3100,870,50,1.0,9,5,1.6,7500,9,999999999,329,0.1890,0,88,0.190,999.0,99.0 +1994,6,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,20.0,100,98100,310,1326,373,109,72,92,11900,6200,10500,2310,40,2.0,9,5,1.6,7500,9,999999999,329,0.1890,0,88,0.190,0.0,6.0 +1994,6,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,20.5,90,98100,552,1326,385,232,127,179,25200,12600,20000,4230,60,1.5,9,5,3.2,7500,9,999999999,329,0.1890,0,88,0.190,999.0,99.0 +1994,6,7,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,18.3,74,98200,779,1326,388,318,90,265,35000,9100,29600,8410,40,3.0,9,5,4.8,2700,9,999999999,329,0.1890,0,88,0.190,999.0,99.0 +1994,6,7,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,15.0,54,98200,976,1326,393,619,417,312,67300,45000,34100,9530,70,2.0,9,5,9.7,7500,9,999999999,329,0.1890,0,88,0.190,999.0,99.0 +1994,6,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,18.8,64,98200,1129,1326,412,759,433,390,82800,47000,42700,16130,60,1.5,10,7,9.7,77777,9,999999999,329,0.1890,0,88,0.190,999.0,99.0 +1994,6,7,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.7,16.6,51,98100,1228,1326,425,744,348,422,81700,37800,46600,23960,30,3.0,10,8,11.3,77777,9,999999999,329,0.1890,0,88,0.190,999.0,99.0 +1994,6,7,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,17.2,48,98100,1265,1326,428,638,313,339,71400,34100,38800,22710,190,1.5,10,7,11.3,77777,9,999999999,329,0.1890,0,88,0.190,0.0,6.0 +1994,6,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.5,16.6,43,98000,1238,1326,441,566,236,345,63100,25700,39000,20190,320,2.0,10,8,11.3,77777,9,999999999,329,0.1890,0,88,0.190,999.0,99.0 +1994,6,7,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,13.8,37,98000,1150,1326,427,567,186,405,62400,19800,45100,17250,340,2.5,10,7,11.3,7500,9,999999999,329,0.1890,0,88,0.190,999.0,99.0 +1994,6,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.5,11.6,31,98000,1006,1326,434,531,115,444,58400,11900,49300,15850,50,3.6,10,8,11.3,2400,9,999999999,329,0.1890,0,88,0.190,999.0,99.0 +1994,6,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.8,11.1,33,98000,815,1326,417,475,160,376,50800,16600,40600,10320,50,2.5,10,7,11.3,7500,9,999999999,329,0.1890,0,88,0.190,999.0,99.0 +1994,6,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,11.6,35,98000,592,1326,421,254,173,176,27700,17400,19900,4230,160,3.0,10,8,11.3,2700,9,999999999,329,0.1890,0,88,0.190,999.0,99.0 +1994,6,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.8,18.3,71,98000,351,1326,399,107,27,100,11700,2400,11100,2590,200,5.6,10,7,11.3,2700,9,999999999,329,0.1890,0,88,0.190,0.0,6.0 +1994,6,7,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,18.3,76,98000,112,1326,399,39,0,39,4200,0,4200,1120,210,3.0,10,8,11.3,2700,9,999999999,329,0.1890,0,88,0.190,999.0,99.0 +1994,6,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,18.3,79,98000,0,11,382,0,0,0,0,0,0,0,210,3.6,9,5,11.3,3000,9,999999999,329,0.1890,0,88,0.190,999.0,99.0 +1994,6,7,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,18.8,87,98100,0,0,377,0,0,0,0,0,0,0,200,2.5,9,5,9.7,2700,9,999999999,329,0.1890,0,88,0.190,999.0,99.0 +1994,6,7,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,18.8,93,98100,0,0,372,0,0,0,0,0,0,0,220,1.5,9,5,4.8,2700,9,999999999,329,0.1890,0,88,0.190,999.0,99.0 +1994,6,7,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,17.7,90,98100,0,0,367,0,0,0,0,0,0,0,240,2.5,9,5,6.4,77777,9,999999999,329,0.1890,0,88,0.190,999.0,99.0 +1994,6,8,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,16.6,84,98100,0,0,388,0,0,0,0,0,0,0,330,1.0,9,9,8.0,2400,9,999999999,329,0.1890,0,88,0.190,0.0,6.0 +1994,6,8,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,16.6,84,98100,0,0,357,0,0,0,0,0,0,0,320,1.0,2,2,8.0,77777,9,999999999,329,0.1890,0,88,0.190,999.0,99.0 +1994,6,8,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.6,14.4,87,98100,0,0,344,0,0,0,0,0,0,0,50,4.6,3,3,8.0,77777,9,999999999,329,0.1890,0,88,0.190,999.0,99.0 +1994,6,8,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,12.7,83,98100,0,0,363,0,0,0,0,0,0,0,30,4.6,9,9,11.3,2400,9,999999999,329,0.1890,0,88,0.190,999.0,99.0 +1994,6,8,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,11.6,80,98300,0,0,369,0,0,0,0,0,0,0,30,4.1,10,10,11.3,2400,9,999999999,340,0.1890,0,88,0.190,999.0,99.0 +1994,6,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,11.6,83,98300,77,1116,356,18,5,17,1900,300,1900,430,40,6.1,9,9,11.3,2700,9,999999999,340,0.1890,0,88,0.190,999.0,99.0 +1994,6,8,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,11.6,80,98300,310,1326,369,52,0,52,6000,0,6000,2040,40,6.1,10,10,11.3,450,9,999999999,340,0.1890,0,88,0.190,0.0,6.0 +1994,6,8,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,11.6,78,98400,552,1326,372,97,0,97,11400,0,11400,4200,40,7.2,10,10,11.3,450,9,999999999,329,0.1890,0,88,0.190,999.0,99.0 +1994,6,8,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,11.6,75,98400,780,1326,375,156,0,156,18500,0,18500,7180,70,5.6,10,10,11.3,810,9,999999999,329,0.1890,0,88,0.190,999.0,99.0 +1994,6,8,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.6,11.1,70,98600,976,1326,377,208,0,208,24900,0,24900,9980,10,5.6,10,10,11.3,3000,9,999999999,329,0.1890,0,88,0.190,999.0,99.0 +1994,6,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,11.1,72,98600,1129,1326,374,249,0,249,30000,0,30000,12030,40,7.7,10,10,11.3,3000,9,999999999,329,0.1890,0,88,0.190,999.0,99.0 +1994,6,8,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,11.1,72,98700,1228,1326,374,275,0,275,33400,0,33400,13240,30,7.2,10,10,11.3,2100,9,999999999,329,0.1890,0,88,0.190,999.0,99.0 +1994,6,8,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,12.2,83,98600,1265,1326,370,285,0,285,34600,0,34600,13710,60,6.1,10,10,11.3,2100,9,999999999,329,0.1890,0,88,0.190,999.0,99.0 +1994,6,8,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.6,11.6,72,98700,1239,1326,367,449,85,369,49700,8700,41500,20000,70,6.1,9,9,11.3,540,9,999999999,329,0.1890,0,88,0.190,999.0,99.0 +1994,6,8,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.6,11.6,72,98600,1151,1326,378,255,0,255,30800,0,30800,12310,60,6.1,10,10,11.3,600,9,999999999,329,0.1890,0,88,0.190,999.0,99.0 +1994,6,8,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,11.1,72,98600,1007,1326,374,216,0,216,25900,0,25900,10410,60,5.6,10,10,11.3,2100,9,999999999,329,0.1890,0,88,0.190,999.0,99.0 +1994,6,8,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,10.5,69,98700,817,1326,374,207,0,207,24100,0,24100,9160,50,6.6,10,10,11.3,3300,9,999999999,320,0.1890,0,88,0.190,999.0,99.0 +1994,6,8,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,10.5,74,98700,594,1326,368,134,0,134,15500,0,15500,5610,40,6.1,10,10,11.3,3300,9,999999999,320,0.1890,0,88,0.190,999.0,99.0 +1994,6,8,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,11.1,75,98700,353,1326,371,57,0,57,6700,0,6700,2300,40,3.6,10,10,11.3,2700,9,999999999,320,0.1890,0,88,0.190,999.0,99.0 +1994,6,8,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,11.6,83,98700,114,1326,366,22,0,22,2500,0,2500,770,30,5.1,10,10,11.3,2700,9,999999999,320,0.1890,0,88,0.190,999.0,99.0 +1994,6,8,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,11.1,81,98800,0,33,366,0,0,0,0,0,0,0,40,3.0,10,10,11.3,2700,9,999999999,320,0.1890,0,88,0.190,999.0,99.0 +1994,6,8,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.8,11.1,84,98800,0,0,363,0,0,0,0,0,0,0,40,3.0,10,10,11.3,2700,9,999999999,320,0.1890,0,88,0.190,999.0,99.0 +1994,6,8,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,9.4,72,98800,0,0,364,0,0,0,0,0,0,0,50,3.6,10,10,11.3,2100,9,999999999,320,0.1890,0,88,0.190,999.0,99.0 +1994,6,8,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,5.0,51,98800,0,0,361,0,0,0,0,0,0,0,80,5.1,10,10,11.3,2700,9,999999999,320,0.1890,0,88,0.190,999.0,99.0 +1994,6,9,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,5.0,53,98800,0,0,358,0,0,0,0,0,0,0,80,4.1,10,10,11.3,2700,9,999999999,320,0.1900,0,88,0.190,0.0,6.0 +1994,6,9,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.8,5.0,55,98800,0,0,355,0,0,0,0,0,0,0,70,4.1,10,10,11.3,2100,9,999999999,309,0.1900,0,88,0.190,999.0,99.0 +1994,6,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.3,5.5,59,98800,0,0,353,0,0,0,0,0,0,0,70,4.1,10,10,11.3,1500,9,999999999,309,0.1900,0,88,0.190,999.0,99.0 +1994,6,9,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.3,5.5,59,98800,0,0,353,0,0,0,0,0,0,0,60,3.0,10,10,11.3,2100,9,999999999,309,0.1900,0,88,0.190,999.0,99.0 +1994,6,9,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.2,6.6,69,98800,0,0,327,0,0,0,0,0,0,0,60,3.0,9,7,11.3,3300,9,999999999,309,0.1900,0,88,0.190,999.0,99.0 +1994,6,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.6,6.6,71,98800,77,1116,330,18,0,18,2100,0,2100,640,50,3.6,9,8,11.3,3300,9,999999999,309,0.1900,0,88,0.190,999.0,99.0 +1994,6,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.7,7.2,69,98900,311,1325,352,69,0,69,7800,0,7800,2550,60,3.6,10,10,11.3,77777,9,999999999,309,0.1900,0,88,0.190,0.0,6.0 +1994,6,9,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,7.7,64,98900,552,1325,344,122,22,113,13500,2100,12600,3440,100,2.5,9,8,16.1,77777,9,999999999,309,0.1900,0,88,0.190,999.0,99.0 +1994,6,9,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,8.3,56,98900,780,1325,337,493,511,192,52600,52300,21800,4450,80,4.1,2,2,16.1,77777,9,999999999,300,0.1900,0,88,0.190,999.0,99.0 +1994,6,9,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,8.8,52,98800,976,1325,349,655,583,225,68300,58600,25100,6610,110,4.6,3,3,16.1,77777,9,999999999,300,0.1900,0,88,0.190,999.0,99.0 +1994,6,9,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,9.4,49,98800,1129,1325,354,823,664,257,86500,67100,29200,10830,100,4.6,2,2,16.1,77777,9,999999999,300,0.1900,0,88,0.190,999.0,99.0 +1994,6,9,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,7.7,41,98800,1228,1325,361,829,571,299,87000,57600,33600,18230,100,4.1,3,3,16.1,77777,9,999999999,300,0.1900,0,88,0.190,999.0,99.0 +1994,6,9,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.8,6.1,32,98800,1265,1325,366,846,573,298,89200,57900,33800,22490,100,3.6,2,2,16.1,77777,9,999999999,290,0.1900,0,88,0.190,0.0,6.0 +1994,6,9,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,6.1,30,98800,1239,1325,376,898,685,257,95500,69700,30200,16780,140,4.1,3,3,16.1,77777,9,999999999,290,0.1900,0,88,0.190,999.0,99.0 +1994,6,9,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,3.3,25,98700,1151,1325,366,738,531,276,80400,55600,32000,12790,100,4.1,2,2,16.1,77777,9,999999999,290,0.1900,0,88,0.190,999.0,99.0 +1994,6,9,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,1.1,21,98600,1008,1325,369,651,492,276,69400,51200,30400,8920,70,5.6,3,3,16.1,77777,9,999999999,279,0.1900,0,88,0.190,999.0,99.0 +1994,6,9,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,3.3,24,98600,818,1325,371,529,533,200,56600,54800,22700,4820,60,2.5,2,2,16.1,77777,9,999999999,279,0.1900,0,88,0.190,999.0,99.0 +1994,6,9,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,3.8,25,98600,595,1325,393,222,62,194,24300,6100,21600,5560,20,2.0,9,8,16.1,1800,9,999999999,279,0.1900,0,88,0.190,999.0,99.0 +1994,6,9,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,2.7,24,98700,355,1325,382,120,80,98,13000,7000,11200,2160,30,3.6,9,7,16.1,4200,9,999999999,279,0.1900,0,88,0.190,0.0,6.0 +1994,6,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,6.6,36,98700,116,1325,382,29,2,29,3300,0,3300,950,40,2.0,9,8,16.1,3300,9,999999999,270,0.1900,0,88,0.190,999.0,99.0 +1994,6,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,7.7,42,98700,0,33,371,0,0,0,0,0,0,0,40,2.0,9,7,16.1,7500,9,999999999,270,0.1900,0,88,0.190,999.0,99.0 +1994,6,9,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,6.1,42,98700,0,0,367,0,0,0,0,0,0,0,30,1.0,9,8,16.1,2400,9,999999999,270,0.1900,0,88,0.190,999.0,99.0 +1994,6,9,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,5.5,45,98600,0,0,352,0,0,0,0,0,0,0,20,1.0,9,7,16.1,7500,9,999999999,270,0.1900,0,88,0.190,999.0,99.0 +1994,6,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.6,6.1,50,98600,0,0,353,0,0,0,0,0,0,0,10,1.0,9,8,16.1,77777,9,999999999,259,0.1900,0,88,0.190,999.0,99.0 +1994,6,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,6.6,53,98600,0,0,339,0,0,0,0,0,0,0,20,1.5,9,5,16.1,2700,9,999999999,259,0.1900,0,88,0.190,0.0,6.0 +1994,6,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,7.2,56,98700,0,0,339,0,0,0,0,0,0,0,60,1.5,9,5,16.1,7500,9,999999999,259,0.1900,0,88,0.190,999.0,99.0 +1994,6,10,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,7.7,62,98700,0,0,347,0,0,0,0,0,0,0,20,1.5,10,8,16.1,2700,9,999999999,259,0.1900,0,88,0.190,999.0,99.0 +1994,6,10,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,8.3,64,98700,0,0,342,0,0,0,0,0,0,0,50,1.5,10,7,16.1,3600,9,999999999,250,0.1900,0,88,0.190,999.0,99.0 +1994,6,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,8.3,67,98600,0,0,345,0,0,0,0,0,0,0,20,1.5,10,8,16.1,7500,9,999999999,250,0.1900,0,88,0.190,999.0,99.0 +1994,6,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,8.3,67,98700,78,1115,333,21,0,21,2400,0,2400,720,50,1.0,9,5,16.1,77777,9,999999999,250,0.1900,0,88,0.190,999.0,99.0 +1994,6,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.5,8.8,64,98700,311,1325,338,113,88,92,12200,7300,10500,2000,50,1.5,9,5,16.1,77777,9,999999999,240,0.1900,0,88,0.190,0.0,6.0 +1994,6,10,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,9.4,56,98800,552,1325,352,196,85,160,21500,8200,18000,4590,30,2.0,9,5,16.1,77777,9,999999999,250,0.1900,0,88,0.190,999.0,99.0 +1994,6,10,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,10.0,49,98800,779,1325,367,354,223,223,38400,23700,24400,5390,40,1.5,9,5,16.1,77777,9,999999999,250,0.1900,0,88,0.190,999.0,99.0 +1994,6,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,8.3,36,98800,976,1325,367,639,525,252,68500,54600,28200,7650,110,2.5,2,1,16.1,77777,9,999999999,250,0.1900,0,88,0.190,999.0,99.0 +1994,6,10,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,5.5,29,98800,1129,1325,366,808,609,289,84300,61100,32100,12030,70,1.0,3,1,16.1,77777,9,999999999,250,0.1900,0,88,0.190,999.0,99.0 +1994,6,10,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,6.6,28,98800,1228,1325,376,858,589,311,93300,61700,36000,19640,30,2.0,2,1,16.1,77777,9,999999999,250,0.1900,0,88,0.190,999.0,99.0 +1994,6,10,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.7,5.0,23,98800,1266,1325,379,875,581,319,95400,60900,37100,24930,340,2.5,3,1,16.1,77777,9,999999999,250,0.1900,0,88,0.190,0.0,6.0 +1994,6,10,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,5.0,23,98700,1240,1325,382,903,645,300,95100,65100,34100,19470,330,3.0,2,1,16.1,77777,9,999999999,250,0.1900,0,88,0.190,999.0,99.0 +1994,6,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,4.4,22,98700,1152,1325,396,835,520,383,88100,54200,40900,18120,360,1.5,9,5,16.1,77777,9,999999999,250,0.1900,0,88,0.190,999.0,99.0 +1994,6,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,3.8,21,98600,1009,1325,396,523,264,322,57000,28600,35200,10350,70,2.0,9,5,16.1,77777,9,999999999,250,0.1900,0,88,0.190,999.0,99.0 +1994,6,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,5.5,23,98600,819,1325,398,484,304,296,51600,32300,31600,7740,320,2.0,9,5,16.1,77777,9,999999999,250,0.1900,0,88,0.190,999.0,99.0 +1994,6,10,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.7,5.0,23,98500,597,1325,394,315,228,212,34100,22900,23700,5110,350,1.0,9,5,16.1,77777,9,999999999,250,0.1900,0,88,0.190,999.0,99.0 +1994,6,10,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.6,6.6,28,98500,357,1325,376,152,186,102,16100,16100,11800,2010,220,1.5,3,1,16.1,77777,9,999999999,250,0.1900,0,88,0.190,0.0,6.0 +1994,6,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,8.3,35,98500,118,1325,384,34,3,34,3800,0,3800,1060,220,1.0,9,5,16.1,77777,9,999999999,250,0.1900,0,88,0.190,999.0,99.0 +1994,6,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,12.2,57,98500,0,55,369,0,0,0,0,0,0,0,330,0.5,9,5,16.1,77777,9,999999999,250,0.1900,0,88,0.190,999.0,99.0 +1994,6,10,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,9.4,54,98500,0,0,341,0,0,0,0,0,0,0,60,1.5,2,1,16.1,77777,9,999999999,250,0.1900,0,88,0.190,999.0,99.0 +1994,6,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,11.1,65,98500,0,0,351,0,0,0,0,0,0,0,290,1.0,9,5,16.1,3900,9,999999999,250,0.1900,0,88,0.190,999.0,99.0 +1994,6,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,11.1,63,98500,0,0,354,0,0,0,0,0,0,0,70,1.0,9,5,16.1,77777,9,999999999,250,0.1900,0,88,0.190,999.0,99.0 +1994,6,11,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,11.6,70,98500,0,0,341,0,0,0,0,0,0,0,60,1.5,2,2,16.1,77777,9,999999999,250,0.1900,0,88,0.190,0.0,6.0 +1994,6,11,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,12.7,70,98500,0,0,377,0,0,0,0,0,0,0,190,1.5,9,9,16.1,3600,9,999999999,250,0.1900,0,88,0.190,999.0,99.0 +1994,6,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,13.3,78,98400,0,0,372,0,0,0,0,0,0,0,100,2.0,9,9,16.1,77777,9,999999999,259,0.1900,0,88,0.190,999.0,99.0 +1994,6,11,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.6,13.9,90,98400,0,0,375,0,0,0,0,0,0,0,70,1.0,10,10,11.2,2400,9,999999999,259,0.1900,0,88,0.190,999.0,99.0 +1994,6,11,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.7,13.9,84,98400,0,0,381,0,0,0,0,0,0,0,150,1.5,10,10,9.6,2400,9,999999999,259,0.1900,0,88,0.190,999.0,99.0 +1994,6,11,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.6,13.8,84,98500,78,1115,370,17,10,16,1800,600,1800,410,220,1.0,9,9,11.3,77777,9,999999999,259,0.1900,0,88,0.190,999.0,99.0 +1994,6,11,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.9,15.6,81,98500,311,1325,353,130,315,56,14000,25500,8000,1000,210,1.0,2,2,9.6,77777,9,999999999,259,0.1900,0,88,0.190,999.0,99.0 +1994,6,11,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,15.0,64,98600,552,1325,373,300,407,130,31800,39400,15300,2550,240,3.0,3,3,9.7,77777,9,999999999,259,0.1900,0,88,0.190,999.0,99.0 +1994,6,11,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,12.7,48,98600,779,1325,377,520,671,125,55200,67700,15300,2960,290,3.0,2,2,16.1,77777,9,999999999,259,0.1900,0,88,0.190,999.0,99.0 +1994,6,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,11.6,39,98600,976,1325,391,539,479,186,57000,48600,21100,5610,290,5.1,3,3,16.1,77777,9,999999999,259,0.1900,0,88,0.190,999.0,99.0 +1994,6,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,9.4,33,98600,1129,1325,387,827,806,139,88600,81800,18700,5730,250,4.6,2,2,16.1,77777,9,999999999,270,0.1900,0,88,0.190,999.0,99.0 +1994,6,11,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.7,8.8,30,98600,1228,1325,393,922,847,136,94600,84900,15800,6670,290,3.6,3,3,16.1,77777,9,999999999,270,0.1900,0,88,0.190,999.0,99.0 +1994,6,11,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,7.7,26,98600,1266,1325,431,598,125,478,65700,13300,53000,30210,280,7.2,9,9,16.1,77777,9,999999999,270,0.1900,0,88,0.190,0.0,6.0 +1994,6,11,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.8,6.6,25,98500,1240,1325,426,440,170,280,49800,18600,32300,16390,240,5.1,9,9,16.1,77777,9,999999999,270,0.1900,0,88,0.190,999.0,99.0 +1994,6,11,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,8.3,27,98500,1153,1325,432,480,7,473,55200,700,54500,18890,260,6.1,9,9,16.1,7500,9,999999999,270,0.1900,0,88,0.190,999.0,99.0 +1994,6,11,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.8,8.3,28,98500,1010,1325,398,710,707,171,75900,72300,20700,5550,310,5.1,3,3,16.1,77777,9,999999999,270,0.1900,0,88,0.190,999.0,99.0 +1994,6,11,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,8.3,28,98400,820,1325,426,190,58,154,21000,5800,17400,5510,250,6.1,9,9,16.1,77777,9,999999999,279,0.1900,0,88,0.190,999.0,99.0 +1994,6,11,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,10.6,34,98400,598,1325,396,293,367,127,31400,36200,15100,2530,320,4.1,3,3,16.0,77777,9,999999999,279,0.1900,0,88,0.190,999.0,99.0 +1994,6,11,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,10.6,39,98400,358,1325,369,198,523,56,20600,45000,8400,1060,310,3.6,0,0,16.0,77777,9,999999999,279,0.1900,0,88,0.190,999.0,99.0 +1994,6,11,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,10.6,45,98400,119,1325,373,40,129,28,4100,6200,3600,500,230,1.5,3,3,16.0,77777,9,999999999,279,0.1900,0,88,0.190,999.0,99.0 +1994,6,11,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.7,11.1,51,98500,0,55,362,0,0,0,0,0,0,0,210,3.1,2,2,16.0,77777,9,999999999,279,0.1900,0,88,0.190,999.0,99.0 +1994,6,11,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,12.8,66,98400,0,0,356,0,0,0,0,0,0,0,220,2.1,3,3,16.0,77777,9,999999999,290,0.1900,0,88,0.190,999.0,99.0 +1994,6,11,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,12.8,70,98500,0,0,336,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,290,0.1900,0,88,0.190,999.0,99.0 +1994,6,11,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,12.2,70,98500,0,0,333,0,0,0,0,0,0,0,190,1.5,0,0,16.1,77777,9,999999999,290,0.1900,0,88,0.190,999.0,99.0 +1994,6,12,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,12.7,75,98500,0,0,345,0,0,0,0,0,0,0,190,1.5,3,3,16.1,77777,9,999999999,290,0.1910,0,88,0.190,0.0,6.0 +1994,6,12,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.6,12.2,75,98500,0,0,339,0,0,0,0,0,0,0,190,1.5,2,2,16.1,77777,9,999999999,290,0.1910,0,88,0.190,999.0,99.0 +1994,6,12,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,12.2,81,98500,0,0,337,0,0,0,0,0,0,0,180,1.5,3,3,16.1,77777,9,999999999,290,0.1910,0,88,0.190,999.0,99.0 +1994,6,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.6,12.7,78,98500,0,0,339,0,0,0,0,0,0,0,130,2.0,2,2,16.1,77777,9,999999999,300,0.1910,0,88,0.190,999.0,99.0 +1994,6,12,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,13.3,73,98500,0,0,378,0,0,0,0,0,0,0,180,3.0,9,9,11.3,3300,9,999999999,300,0.1910,0,88,0.190,999.0,99.0 +1994,6,12,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,13.8,75,98600,78,1137,379,22,0,22,2500,0,2500,740,350,3.0,9,9,9.7,3000,9,999999999,300,0.1910,0,88,0.190,999.0,99.0 +1994,6,12,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,14.4,78,98700,311,1325,390,76,0,76,8600,0,8600,2730,220,2.0,10,10,11.3,3900,9,999999999,300,0.1910,0,88,0.190,0.0,6.0 +1994,6,12,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,14.4,73,98700,552,1325,396,125,0,125,14400,0,14400,5140,150,2.0,10,10,11.3,3300,9,999999999,309,0.1910,0,88,0.190,999.0,99.0 +1994,6,12,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,14.4,64,98700,779,1325,397,203,58,169,22400,5800,19000,5790,170,4.6,9,9,11.3,4800,9,999999999,309,0.1910,0,88,0.190,999.0,99.0 +1994,6,12,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,15.0,56,98700,976,1325,380,664,585,233,71800,60900,26800,7030,210,3.6,2,2,16.1,77777,9,999999999,309,0.1910,0,88,0.190,999.0,99.0 +1994,6,12,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,14.4,45,98700,1129,1325,398,778,573,288,84000,59900,32900,12500,230,5.1,3,3,16.1,77777,9,999999999,309,0.1910,0,88,0.190,999.0,99.0 +1994,6,12,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,15.0,44,98700,1228,1325,400,927,712,266,98200,72300,31000,16420,240,5.6,2,2,16.1,77777,9,999999999,320,0.1910,0,88,0.190,999.0,99.0 +1994,6,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,14.4,43,98700,1266,1325,434,556,121,440,61400,12900,49100,27870,230,4.6,9,9,16.1,2700,9,999999999,320,0.1910,0,88,0.190,0.0,6.0 +1994,6,12,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,15.0,38,98600,1241,1325,415,897,657,281,94800,66500,32300,18450,230,7.2,2,2,16.1,77777,9,999999999,320,0.1910,0,88,0.190,999.0,99.0 +1994,6,12,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,15.5,52,98700,1153,1325,435,321,0,321,38100,0,38100,14690,230,5.6,10,10,11.3,3300,9,999999999,329,0.1910,0,88,0.190,999.0,99.0 +1994,6,12,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,17.2,60,98600,1011,1325,422,411,104,331,45200,11100,36700,11060,210,4.6,9,9,11.3,3900,9,999999999,329,0.1910,0,88,0.190,999.0,99.0 +1994,6,12,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,16.6,60,98600,822,1325,418,283,59,247,31200,6000,27500,8270,230,4.1,9,9,11.3,7500,9,999999999,329,0.1910,0,88,0.190,999.0,99.0 +1994,6,12,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,16.1,54,98600,600,1325,436,135,0,135,15600,0,15600,5670,230,5.6,10,10,11.3,77777,9,999999999,340,0.1910,0,88,0.190,999.0,99.0 +1994,6,12,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,16.1,62,98600,360,1325,423,86,0,86,9700,0,9700,3190,220,3.0,10,10,11.3,77777,9,999999999,340,0.1910,0,88,0.190,999.0,99.0 +1994,6,12,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,16.1,66,98600,121,1325,416,30,0,30,3300,0,3300,990,200,3.0,10,10,11.3,7500,9,999999999,340,0.1910,0,88,0.190,999.0,99.0 +1994,6,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,16.6,71,98600,0,77,414,0,0,0,0,0,0,0,160,2.5,10,10,11.3,7500,9,999999999,340,0.1910,0,88,0.190,999.0,99.0 +1994,6,12,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,16.6,78,98600,0,0,394,0,0,0,0,0,0,0,180,1.0,9,9,11.3,7500,9,999999999,350,0.1910,0,88,0.190,999.0,99.0 +1994,6,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,17.2,78,98600,0,0,409,0,0,0,0,0,0,0,170,2.5,10,10,11.3,7500,9,999999999,350,0.1910,0,88,0.190,999.0,99.0 +1994,6,12,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,17.2,84,98600,0,0,403,0,0,0,0,0,0,0,120,1.5,10,10,11.3,7500,9,999999999,350,0.1910,0,88,0.190,999.0,99.0 +1994,6,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,17.7,81,98500,0,0,410,0,0,0,0,0,0,0,180,2.5,10,10,11.3,7500,9,999999999,359,0.1910,0,88,0.190,0.0,6.0 +1994,6,13,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,18.3,79,98600,0,0,416,0,0,0,0,0,0,0,140,2.0,10,10,11.3,7500,9,999999999,359,0.1910,0,88,0.190,999.0,99.0 +1994,6,13,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,18.3,84,98600,0,0,410,0,0,0,0,0,0,0,190,1.0,10,10,9.7,3900,9,999999999,359,0.1910,0,88,0.190,999.0,99.0 +1994,6,13,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,17.7,84,98600,0,0,406,0,0,0,0,0,0,0,190,2.5,10,10,9.7,3900,9,999999999,370,0.1910,0,88,0.190,999.0,99.0 +1994,6,13,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,18.3,90,98600,0,0,404,0,0,0,0,0,0,0,190,1.5,10,10,8.0,3300,9,999999999,370,0.1910,0,88,0.190,999.0,99.0 +1994,6,13,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,18.8,93,98600,78,1137,405,15,0,15,1700,0,1700,550,170,3.0,10,10,6.4,3300,9,999999999,370,0.1910,0,88,0.190,999.0,99.0 +1994,6,13,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,18.9,84,98600,311,1324,388,82,77,64,9100,6500,7600,1390,200,2.6,9,7,6.4,4500,9,999999999,370,0.1910,0,88,0.190,0.0,6.0 +1994,6,13,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,20.5,76,98600,552,1324,415,225,83,191,24700,8100,21300,5260,200,4.6,9,8,6.4,7500,9,999999999,370,0.1910,0,88,0.190,999.0,99.0 +1994,6,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,21.1,65,98700,779,1324,427,362,283,195,39600,30100,21900,4610,240,6.1,9,7,8.0,77777,9,999999999,370,0.1910,0,88,0.190,999.0,99.0 +1994,6,13,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,21.1,61,98700,976,1324,440,516,216,357,56400,22900,39500,11410,240,8.7,9,8,11.3,7500,9,999999999,370,0.1910,0,88,0.190,999.0,99.0 +1994,6,13,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,20.5,59,98600,1129,1324,433,556,211,376,61400,22500,42200,15330,230,9.2,9,7,11.3,7500,9,999999999,359,0.1910,0,88,0.190,999.0,99.0 +1994,6,13,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,19.4,50,98600,1228,1324,448,503,194,322,56200,21200,36500,18020,230,8.7,9,8,11.3,7500,9,999999999,359,0.1910,0,88,0.190,999.0,99.0 +1994,6,13,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.6,19.4,48,98600,1266,1324,424,919,804,150,94100,80600,16900,9010,210,8.7,2,2,11.3,77777,9,999999999,359,0.1910,0,88,0.190,999.0,99.0 +1994,6,13,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,33.3,18.8,42,98600,1241,1324,437,951,795,205,99100,79700,24300,12530,210,9.2,3,3,11.3,77777,9,999999999,359,0.1910,0,88,0.190,999.0,99.0 +1994,6,13,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,33.8,18.8,41,98400,1154,1324,436,853,795,160,90400,80300,20300,6970,200,10.2,2,2,11.3,77777,9,999999999,350,0.1910,0,88,0.190,999.0,99.0 +1994,6,13,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.2,17.7,42,98400,1011,1324,452,459,276,248,51000,30000,28100,7740,220,8.2,9,8,11.3,1350,9,999999999,350,0.1910,0,88,0.190,999.0,99.0 +1994,6,13,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.7,18.3,42,98400,823,1324,449,350,253,193,38600,27100,21800,4700,230,9.2,9,7,11.3,1500,9,999999999,350,0.1910,0,88,0.190,999.0,99.0 +1994,6,13,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.2,18.8,45,98400,601,1324,431,377,552,127,39000,53100,14900,2520,220,8.2,3,3,11.3,77777,9,999999999,350,0.1910,0,88,0.190,999.0,99.0 +1994,6,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.5,18.3,48,98400,361,1324,417,199,483,67,20500,41300,9200,1240,230,6.1,2,2,11.3,77777,9,999999999,340,0.1910,0,88,0.190,0.0,6.0 +1994,6,13,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.8,18.3,53,98500,123,1324,433,24,1,24,2700,0,2700,840,210,4.6,9,8,11.3,7500,9,999999999,340,0.1910,0,88,0.190,999.0,99.0 +1994,6,13,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.7,18.3,57,98500,0,77,420,0,1,0,0,0,0,0,210,3.6,9,7,11.3,7500,9,999999999,340,0.1910,0,88,0.190,999.0,99.0 +1994,6,13,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,18.8,66,98600,0,0,415,0,0,0,0,0,0,0,230,3.0,9,8,11.3,7500,9,999999999,340,0.1910,0,88,0.190,999.0,99.0 +1994,6,13,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,18.8,71,98600,0,0,403,0,0,0,0,0,0,0,220,3.0,9,7,11.3,7500,9,999999999,329,0.1910,0,88,0.190,999.0,99.0 +1994,6,13,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,19.4,69,98600,0,0,416,0,0,0,0,0,0,0,220,4.1,9,8,11.2,7500,9,999999999,329,0.1910,0,88,0.190,999.0,99.0 +1994,6,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,19.4,71,98600,0,0,413,0,0,0,0,0,0,0,240,4.6,9,8,11.3,7500,9,999999999,329,0.1910,0,88,0.190,0.0,6.0 +1994,6,14,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,19.4,74,98600,0,0,403,0,0,0,0,0,0,0,230,5.6,9,7,11.3,7500,9,999999999,329,0.1910,0,88,0.190,999.0,99.0 +1994,6,14,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,19.4,79,98600,0,0,404,0,0,0,0,0,0,0,230,4.6,9,8,11.3,7500,9,999999999,320,0.1910,0,88,0.190,999.0,99.0 +1994,6,14,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,19.4,79,98500,0,0,397,0,0,0,0,0,0,0,230,5.1,9,7,11.3,7500,9,999999999,320,0.1910,0,88,0.190,999.0,99.0 +1994,6,14,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,20.0,85,98500,0,0,401,0,0,0,0,0,0,0,210,4.6,9,8,11.3,7500,9,999999999,320,0.1910,0,88,0.190,999.0,99.0 +1994,6,14,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,20.0,82,98600,78,1136,425,18,0,18,2100,0,2100,640,230,4.1,10,10,11.3,7500,9,999999999,320,0.1910,0,88,0.190,999.0,99.0 +1994,6,14,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,20.5,79,98800,311,1324,411,97,11,95,10800,500,10700,3160,220,5.1,9,8,11.3,7500,9,999999999,309,0.1910,0,88,0.190,0.0,6.0 +1994,6,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,21.1,79,98800,552,1324,409,183,28,171,20600,2200,19600,6400,220,5.6,9,7,11.3,7500,9,999999999,320,0.1910,0,88,0.190,999.0,99.0 +1994,6,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,21.6,72,98800,778,1324,428,450,245,306,48700,25500,33700,8180,220,5.1,9,8,11.3,77777,9,999999999,320,0.1910,0,88,0.190,999.0,99.0 +1994,6,14,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.8,22.2,68,98900,975,1324,461,261,0,261,30700,0,30700,11900,210,5.1,10,10,11.3,77777,9,999999999,329,0.1910,0,88,0.190,999.0,99.0 +1994,6,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,22.2,65,98900,1128,1324,442,453,76,388,50000,7800,43300,16850,220,3.0,9,8,11.3,4200,9,999999999,340,0.1910,0,88,0.190,999.0,99.0 +1994,6,14,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.5,21.6,59,98900,1228,1324,441,869,505,400,92100,52700,43200,25610,220,4.6,9,7,9.7,960,9,999999999,340,0.1910,0,88,0.190,999.0,99.0 +1994,6,14,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.6,21.6,55,98900,1266,1324,454,661,153,514,72300,16300,56700,32680,200,5.6,9,8,9.7,1050,9,999999999,350,0.1910,0,88,0.190,0.0,6.0 +1994,6,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,21.1,55,98800,1241,1324,443,707,300,426,77700,32600,47000,25910,220,5.6,9,7,9.7,1200,9,999999999,350,0.1910,0,88,0.190,999.0,99.0 +1994,6,14,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.2,21.1,52,98800,1155,1324,457,675,349,370,74100,37900,40900,16310,200,5.6,9,8,9.7,1350,9,999999999,359,0.1910,0,88,0.190,999.0,99.0 +1994,6,14,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.6,20.5,52,98800,1012,1324,445,637,292,414,68100,31500,44000,13960,190,5.1,9,7,9.7,1500,9,999999999,359,0.1910,0,88,0.190,999.0,99.0 +1994,6,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,33.3,20.0,46,98800,824,1324,462,291,123,214,32300,13000,24200,5910,230,6.1,9,8,9.7,3900,9,999999999,370,0.1910,0,88,0.190,999.0,99.0 +1994,6,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.6,20.5,52,98800,602,1324,445,311,178,230,33500,17900,25400,5560,220,4.6,9,7,11.3,3900,9,999999999,370,0.1910,0,88,0.190,999.0,99.0 +1994,6,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.1,20.5,53,98800,363,1324,450,132,96,105,14300,8500,12000,2320,200,5.1,9,8,11.3,3900,9,999999999,379,0.1910,0,88,0.190,0.0,6.0 +1994,6,14,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,21.1,61,98900,124,1324,414,37,67,31,4100,3600,3700,640,170,3.6,2,2,11.3,77777,9,999999999,379,0.1910,0,88,0.190,999.0,99.0 +1994,6,14,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,21.1,65,98900,0,99,412,0,0,0,0,0,0,0,170,3.6,3,3,11.3,77777,9,999999999,390,0.1910,0,88,0.190,999.0,99.0 +1994,6,14,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.7,21.1,67,98900,0,0,424,0,0,0,0,0,0,0,170,3.6,9,7,11.3,7500,9,999999999,390,0.1910,0,88,0.190,999.0,99.0 +1994,6,14,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,21.1,69,99000,0,0,428,0,0,0,0,0,0,0,200,3.6,9,8,11.3,7500,9,999999999,400,0.1910,0,88,0.190,999.0,99.0 +1994,6,14,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,21.1,77,99000,0,0,393,0,0,0,0,0,0,0,190,3.0,2,2,11.3,77777,9,999999999,400,0.1910,0,88,0.190,999.0,99.0 +1994,6,15,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,21.1,79,98900,0,0,391,0,0,0,0,0,0,0,200,2.5,2,2,11.3,77777,9,999999999,409,0.1910,0,88,0.190,0.0,6.0 +1994,6,15,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,21.1,85,98900,0,0,388,0,0,0,0,0,0,0,190,2.5,3,3,11.3,77777,9,999999999,409,0.1910,0,88,0.190,999.0,99.0 +1994,6,15,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,21.1,85,99000,0,0,384,0,0,0,0,0,0,0,190,2.0,2,2,9.7,77777,9,999999999,419,0.1910,0,88,0.190,999.0,99.0 +1994,6,15,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,21.1,87,99000,0,0,385,0,0,0,0,0,0,0,140,1.5,3,3,9.7,77777,9,999999999,419,0.1910,0,88,0.190,999.0,99.0 +1994,6,15,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,21.1,91,99000,0,0,379,0,0,0,0,0,0,0,150,2.0,2,2,8.0,77777,9,999999999,430,0.1910,0,88,0.190,999.0,99.0 +1994,6,15,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,21.6,94,99100,78,1136,367,23,76,18,2600,2900,2300,310,160,2.5,0,0,6.4,77777,9,999999999,430,0.1910,0,88,0.190,999.0,99.0 +1994,6,15,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,22.2,88,99200,310,1324,376,154,406,58,15800,33000,8000,1060,160,1.5,0,0,6.4,77777,9,999999999,440,0.1910,0,88,0.190,0.0,6.0 +1994,6,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,22.7,76,99400,551,1324,408,338,538,114,34900,51000,13600,2210,240,4.1,3,3,6.4,77777,9,999999999,440,0.1910,0,88,0.190,999.0,99.0 +1994,6,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,22.2,65,99400,778,1324,402,535,712,116,57100,72000,14700,2770,260,4.1,0,0,8.0,77777,9,999999999,440,0.1910,0,88,0.190,999.0,99.0 +1994,6,15,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,21.1,55,99400,975,1324,428,611,559,199,64300,56600,22600,5940,240,3.0,3,3,11.3,77777,9,999999999,440,0.1910,0,88,0.190,999.0,99.0 +1994,6,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.2,20.5,50,99300,1128,1324,429,792,697,197,84800,71400,23800,8500,300,4.1,2,2,11.3,77777,9,999999999,430,0.1910,0,88,0.190,999.0,99.0 +1994,6,15,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.7,20.0,47,99300,1227,1324,435,818,555,303,89200,58200,35200,19200,250,3.6,3,3,11.3,77777,9,999999999,430,0.1910,0,88,0.190,999.0,99.0 +1994,6,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,33.3,18.8,42,99300,1266,1324,433,934,760,206,97600,76200,24500,14810,250,2.5,2,2,11.3,77777,9,999999999,430,0.1910,0,88,0.190,0.0,6.0 +1994,6,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,33.8,17.7,38,99200,1241,1324,462,451,190,273,51200,20800,31700,16130,230,2.5,9,8,11.3,7500,9,999999999,430,0.1910,0,88,0.190,999.0,99.0 +1994,6,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,34.4,17.2,36,99200,1155,1324,457,559,318,282,60900,33300,31800,13310,230,1.0,9,7,11.3,7500,9,999999999,430,0.1910,0,88,0.190,999.0,99.0 +1994,6,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,33.8,18.3,40,99200,1013,1324,463,455,241,271,50300,26100,30300,8570,210,4.1,9,8,11.3,7500,9,999999999,430,0.1910,0,88,0.190,999.0,99.0 +1994,6,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,33.3,18.3,41,99200,825,1324,452,489,340,276,52400,36200,29800,7150,180,3.6,9,7,11.3,7500,9,999999999,430,0.1910,0,88,0.190,999.0,99.0 +1994,6,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,17.7,60,99200,603,1324,438,115,0,115,13500,0,13500,5010,190,6.1,10,10,4.8,900,9,999999999,419,0.1910,0,88,0.190,999.0,99.0 +1994,6,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,20.5,69,99200,364,1324,445,57,0,57,6700,0,6700,2320,160,4.1,10,10,16.1,3000,9,999999999,419,0.1910,0,88,0.190,999.0,99.0 +1994,6,15,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,21.1,72,99200,126,1324,424,45,16,43,4900,1000,4800,950,170,3.0,9,8,11.3,77777,9,999999999,419,0.1910,0,88,0.190,999.0,99.0 +1994,6,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,20.5,71,99300,1,99,442,0,0,0,0,0,0,0,170,2.5,10,10,16.1,77777,9,999999999,419,0.1910,0,88,0.190,999.0,99.0 +1994,6,15,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,20.0,76,99300,0,0,431,0,0,0,0,0,0,0,240,2.5,10,10,16.1,77777,9,999999999,419,0.1910,0,88,0.190,999.0,99.0 +1994,6,15,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,19.4,71,99300,0,0,407,0,0,0,0,0,0,0,170,2.5,9,7,16.1,77777,9,999999999,419,0.1910,0,88,0.190,999.0,99.0 +1994,6,15,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,19.4,74,99300,0,0,410,0,0,0,0,0,0,0,160,2.0,9,8,16.1,77777,9,999999999,419,0.1910,0,88,0.190,999.0,99.0 +1994,6,16,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,13.8,54,99300,0,0,408,0,0,0,0,0,0,0,180,2.0,10,9,12.9,77777,9,999999999,419,0.1920,0,88,0.190,999.0,99.0 +1994,6,16,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,20.0,82,99300,0,0,413,0,0,0,0,0,0,0,160,1.5,10,9,11.3,77777,9,999999999,409,0.1920,0,88,0.190,999.0,99.0 +1994,6,16,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,20.0,87,99300,0,0,384,0,0,0,0,0,0,0,150,2.0,9,5,9.7,77777,9,999999999,409,0.1920,0,88,0.190,999.0,99.0 +1994,6,16,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,20.0,91,99300,0,0,381,0,0,0,0,0,0,0,140,1.5,9,5,8.0,77777,9,999999999,409,0.1920,0,88,0.190,999.0,99.0 +1994,6,16,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,20.0,93,99300,0,0,379,0,0,0,0,0,0,0,70,1.0,9,5,6.4,77777,9,999999999,409,0.1920,0,88,0.190,999.0,99.0 +1994,6,16,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,20.0,97,99400,78,1136,376,21,17,20,2300,1000,2300,490,50,1.5,9,5,9.7,4500,9,999999999,409,0.1920,0,88,0.190,999.0,99.0 +1994,6,16,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,21.1,87,99400,310,1324,391,97,74,79,10600,6200,9100,1720,60,0.5,9,5,4.8,4500,9,999999999,409,0.1920,0,88,0.190,0.0,6.0 +1994,6,16,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,21.1,82,99500,551,1324,397,291,341,148,31200,34100,17000,3070,80,1.0,9,5,6.4,4500,9,999999999,409,0.1920,0,88,0.190,999.0,99.0 +1994,6,16,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,21.6,74,99500,777,1324,410,483,460,212,50900,47000,23300,4950,110,2.0,9,5,9.7,4500,9,999999999,409,0.1920,0,88,0.190,999.0,99.0 +1994,6,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,21.6,79,99600,974,1324,428,380,137,279,42200,14600,31400,8910,150,4.1,10,9,9.7,7500,9,999999999,409,0.1920,0,88,0.190,999.0,99.0 +1994,6,16,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.7,22.7,74,99600,1128,1324,417,745,555,272,81100,58100,31500,11760,180,5.1,9,5,9.7,4500,9,999999999,409,0.1920,0,88,0.190,999.0,99.0 +1994,6,16,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.7,21.6,69,99600,1227,1324,416,519,227,308,58300,24800,35200,17200,200,5.1,9,5,11.3,4500,9,999999999,409,0.1920,0,88,0.190,999.0,99.0 +1994,6,16,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.1,20.0,52,99400,1266,1324,433,658,358,314,71700,37500,35800,24860,120,3.0,9,5,11.3,7500,9,999999999,419,0.1920,0,88,0.190,0.0,6.0 +1994,6,16,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,18.3,47,99300,1242,1324,431,857,403,478,93200,43700,52100,29500,140,4.1,9,5,11.3,6000,9,999999999,419,0.1920,0,88,0.190,999.0,99.0 +1994,6,16,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.7,16.6,38,99300,1156,1324,437,667,516,216,71200,52700,25100,10120,50,2.0,9,5,16.1,5400,9,999999999,419,0.1920,0,88,0.190,999.0,99.0 +1994,6,16,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,33.3,17.2,38,99300,1014,1324,442,632,427,304,66800,44400,32700,10050,120,1.0,9,5,16.1,77777,9,999999999,419,0.1920,0,88,0.190,999.0,99.0 +1994,6,16,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.7,20.0,47,99200,826,1324,425,544,668,127,58100,67800,15700,3180,110,5.6,3,1,16.1,77777,9,999999999,419,0.1920,0,88,0.190,999.0,99.0 +1994,6,16,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.6,18.8,47,99200,605,1324,434,334,433,136,35600,42800,16100,2730,110,5.1,9,5,16.1,77777,9,999999999,419,0.1920,0,88,0.190,999.0,99.0 +1994,6,16,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.5,17.2,45,99200,366,1324,451,100,27,92,10900,2400,10300,2460,120,3.0,10,9,16.1,77777,9,999999999,419,0.1920,0,88,0.190,0.0,6.0 +1994,6,16,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,18.8,64,99200,127,1324,404,33,12,32,3600,800,3600,760,60,0.5,9,5,16.1,77777,9,999999999,419,0.1920,0,88,0.190,999.0,99.0 +1994,6,16,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,18.8,71,99200,1,99,395,0,0,0,0,0,0,0,40,2.5,9,5,16.1,77777,9,999999999,430,0.1920,0,88,0.190,999.0,99.0 +1994,6,16,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,19.4,76,99200,0,0,415,0,0,0,0,0,0,0,330,2.0,10,9,16.1,77777,9,999999999,430,0.1920,0,88,0.190,999.0,99.0 +1994,6,16,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,17.7,71,99300,0,0,387,0,0,0,0,0,0,0,20,2.5,9,5,16.1,77777,9,999999999,430,0.1920,0,88,0.190,999.0,99.0 +1994,6,16,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,17.7,73,99200,0,0,407,0,0,0,0,0,0,0,200,0.5,10,9,16.1,77777,9,999999999,430,0.1920,0,88,0.190,999.0,99.0 +1994,6,17,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,18.3,79,99200,0,0,405,0,0,0,0,0,0,0,90,1.5,9,9,16.1,77777,9,999999999,430,0.1920,0,88,0.190,0.0,6.0 +1994,6,17,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,18.8,81,99200,0,0,406,0,0,0,0,0,0,0,130,1.0,9,9,16.1,4800,9,999999999,430,0.1920,0,88,0.190,999.0,99.0 +1994,6,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,18.8,81,99200,0,0,406,0,0,0,0,0,0,0,210,1.5,9,9,16.1,77777,9,999999999,430,0.1920,0,88,0.190,999.0,99.0 +1994,6,17,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,19.4,90,99100,0,0,412,0,0,0,0,0,0,0,300,1.5,10,10,16.1,3600,9,999999999,440,0.1920,0,88,0.190,999.0,99.0 +1994,6,17,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,19.4,87,99200,0,0,415,0,0,0,0,0,0,0,310,1.0,10,10,12.9,3600,9,999999999,440,0.1920,0,88,0.190,999.0,99.0 +1994,6,17,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,19.4,87,99200,77,1114,415,18,0,18,2100,0,2100,640,20,1.5,10,10,12.9,3600,9,999999999,440,0.1920,0,88,0.190,999.0,99.0 +1994,6,17,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.7,19.4,82,99300,309,1323,409,69,15,65,7500,1300,7200,1740,40,2.0,9,9,11.3,77777,9,999999999,440,0.1920,0,88,0.190,0.0,6.0 +1994,6,17,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,18.8,66,99300,550,1323,394,316,428,137,33200,41400,16000,2710,20,1.5,3,3,11.3,77777,9,999999999,440,0.1920,0,88,0.190,999.0,99.0 +1994,6,17,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,19.4,65,99300,777,1323,431,354,87,303,38900,8900,33700,9310,40,2.5,9,9,11.3,5400,9,999999999,430,0.1920,0,88,0.190,999.0,99.0 +1994,6,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,18.8,60,99300,974,1323,434,295,100,221,33200,10700,25300,7050,360,3.0,9,9,11.3,5400,9,999999999,430,0.1920,0,88,0.190,999.0,99.0 +1994,6,17,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,19.4,53,99200,1127,1323,415,791,633,251,83300,64100,28600,10590,90,3.0,2,2,11.3,77777,9,999999999,430,0.1920,0,88,0.190,999.0,99.0 +1994,6,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.6,20.0,50,99200,1227,1323,462,722,113,616,79400,11900,68300,30030,30,4.1,9,9,11.3,5400,9,999999999,430,0.1920,0,88,0.190,999.0,99.0 +1994,6,17,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,33.3,18.8,42,99200,1266,1323,470,704,193,519,77000,20500,57300,33110,40,3.0,9,9,11.3,5400,9,999999999,419,0.1920,0,88,0.190,0.0,6.0 +1994,6,17,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,34.4,19.4,41,99200,1242,1323,444,933,707,269,98900,71800,31400,17950,70,2.5,3,3,11.3,77777,9,999999999,419,0.1920,0,88,0.190,999.0,99.0 +1994,6,17,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,33.8,20.5,46,99100,1156,1323,438,751,542,277,81900,56800,32200,13120,50,2.5,2,2,11.3,77777,9,999999999,419,0.1920,0,88,0.190,999.0,99.0 +1994,6,17,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,35.0,18.3,37,99000,1014,1323,446,481,310,243,53500,33700,27700,7610,10,3.6,3,3,11.3,77777,9,999999999,419,0.1920,0,88,0.190,999.0,99.0 +1994,6,17,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,35.0,17.2,35,98900,827,1323,478,275,29,257,31600,2600,30000,10760,30,4.1,9,9,11.3,77777,9,999999999,419,0.1920,0,88,0.190,999.0,99.0 +1994,6,17,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,18.9,58,99000,606,1323,450,110,0,110,13000,0,13000,4840,210,4.1,10,10,11.2,1800,9,999999999,409,0.1920,0,88,0.190,999.0,99.0 +1994,6,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,16.1,60,98900,367,1323,426,59,0,59,6900,0,6900,2400,220,2.0,10,10,16.1,1800,9,999999999,409,0.1920,0,88,0.190,8.0,6.0 +1994,6,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,15.5,58,98900,128,1323,425,31,0,31,3500,0,3500,1030,210,1.5,10,10,16.1,3900,9,999999999,409,0.1920,0,88,0.190,999.0,99.0 +1994,6,17,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,21.6,88,99000,1,121,430,0,0,0,0,0,0,0,250,1.5,10,10,16.1,3900,9,999999999,409,0.1920,0,88,0.190,999.0,99.0 +1994,6,17,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,21.6,84,99000,0,0,433,0,0,0,0,0,0,0,90,1.0,10,10,11.3,7500,9,999999999,400,0.1920,0,88,0.190,999.0,99.0 +1994,6,17,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,21.6,94,99000,0,0,412,0,0,0,0,0,0,0,250,2.0,9,9,11.3,77777,9,999999999,400,0.1920,0,88,0.190,999.0,99.0 +1994,6,17,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,21.1,93,99000,0,0,409,0,0,0,0,0,0,0,70,2.5,9,9,9.7,77777,9,999999999,400,0.1920,0,88,0.190,999.0,99.0 +1994,6,18,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.7,20.5,87,98900,0,0,411,0,0,0,0,0,0,0,350,1.5,9,9,9.7,77777,9,999999999,400,0.1920,0,88,0.190,0.0,6.0 +1994,6,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,21.1,97,98900,0,0,405,0,0,0,0,0,0,0,150,1.5,9,9,9.7,77777,9,999999999,390,0.1920,0,88,0.190,999.0,99.0 +1994,6,18,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,21.1,97,98900,0,0,377,0,0,0,0,0,0,0,0,0.0,3,3,9.7,77777,9,999999999,390,0.1920,0,88,0.190,999.0,99.0 +1994,6,18,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,20.5,96,98900,0,0,370,0,0,0,0,0,0,0,30,1.5,2,2,9.7,77777,9,999999999,390,0.1920,0,88,0.190,999.0,99.0 +1994,6,18,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,20.0,97,98900,0,0,370,0,0,0,0,0,0,0,210,1.5,3,3,8.0,77777,9,999999999,390,0.1920,0,88,0.190,999.0,99.0 +1994,6,18,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,20.0,97,98900,77,1114,366,19,2,19,2200,0,2200,660,60,0.5,2,2,9.7,77777,9,999999999,379,0.1920,0,88,0.190,999.0,99.0 +1994,6,18,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.7,21.6,94,99000,309,1323,367,123,165,85,13100,13400,9900,1640,10,1.0,0,0,4.8,77777,9,999999999,379,0.1920,0,88,0.190,0.0,6.0 +1994,6,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,21.6,81,99100,550,1323,379,297,363,146,31100,35100,16500,2900,60,1.5,0,0,6.4,77777,9,999999999,379,0.1920,0,88,0.190,999.0,99.0 +1994,6,18,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.7,22.7,74,99100,776,1323,394,493,497,201,52300,50800,22400,4670,20,3.0,0,0,8.0,77777,9,999999999,379,0.1920,0,88,0.190,999.0,99.0 +1994,6,18,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,22.7,65,99100,973,1323,419,629,507,255,67300,52700,28400,7730,290,1.0,2,2,8.0,77777,9,999999999,379,0.1920,0,88,0.190,999.0,99.0 +1994,6,18,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.6,22.2,58,99100,1127,1323,432,782,510,347,83000,53200,37600,15180,40,1.5,3,3,8.0,77777,9,999999999,379,0.1920,0,88,0.190,999.0,99.0 +1994,6,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.7,21.6,52,99100,1227,1323,433,871,591,323,94500,61900,37000,20500,100,3.0,2,2,9.7,77777,9,999999999,379,0.1920,0,88,0.190,999.0,99.0 +1994,6,18,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,33.3,18.8,42,99000,1266,1323,437,929,670,287,98300,67900,33200,22120,20,4.1,3,3,11.3,77777,9,999999999,379,0.1920,0,88,0.190,0.0,6.0 +1994,6,18,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,35.5,17.2,34,99000,1242,1323,443,771,477,322,83700,50000,36700,22110,50,5.1,2,2,11.3,77777,9,999999999,379,0.1920,0,88,0.190,999.0,99.0 +1994,6,18,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,35.5,15.0,29,98900,1156,1323,444,854,533,387,89900,55500,41300,18690,20,3.0,3,3,11.3,77777,9,999999999,379,0.1920,0,88,0.190,999.0,99.0 +1994,6,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,35.5,15.5,30,98900,1015,1323,441,609,470,248,65800,49000,28100,8100,70,4.6,2,2,16.1,77777,9,999999999,379,0.1920,0,88,0.190,999.0,99.0 +1994,6,18,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,35.5,15.5,30,98900,827,1323,479,263,50,231,28900,5000,25800,7880,50,5.6,9,9,16.1,77777,9,999999999,379,0.1920,0,88,0.190,999.0,99.0 +1994,6,18,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,34.4,16.6,35,98800,607,1323,474,163,27,151,18000,2600,16800,4600,100,6.1,9,9,16.1,77777,9,999999999,379,0.1920,0,88,0.190,999.0,99.0 +1994,6,18,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.2,20.5,50,98800,368,1323,466,98,13,94,11000,700,10800,3430,140,4.1,9,9,11.3,77777,9,999999999,379,0.1920,0,88,0.190,0.0,6.0 +1994,6,18,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.5,21.1,57,98800,129,1323,456,41,0,40,4400,0,4400,1220,150,2.5,9,9,11.3,77777,9,999999999,379,0.1920,0,88,0.190,999.0,99.0 +1994,6,18,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.8,21.1,63,98800,1,121,446,0,0,0,0,0,0,0,310,1.5,9,9,11.3,77777,9,999999999,379,0.1920,0,88,0.190,999.0,99.0 +1994,6,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.7,21.1,67,98900,0,0,440,0,0,0,0,0,0,0,340,1.5,9,9,11.3,77777,9,999999999,379,0.1920,0,88,0.190,999.0,99.0 +1994,6,18,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,21.6,84,98900,0,0,422,0,0,0,0,0,0,0,310,1.0,9,9,8.0,77777,9,999999999,379,0.1920,0,88,0.190,999.0,99.0 +1994,6,18,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,21.6,88,98900,0,0,418,0,0,0,0,0,0,0,250,1.0,9,9,8.0,77777,9,999999999,379,0.1920,0,88,0.190,999.0,99.0 +1994,6,19,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,21.6,84,98900,0,0,383,0,0,0,0,0,0,0,260,1.0,2,1,8.0,77777,9,999999999,379,0.1920,0,88,0.190,0.0,6.0 +1994,6,19,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,21.6,90,98900,0,0,377,0,0,0,0,0,0,0,360,1.5,3,1,6.4,77777,9,999999999,379,0.1920,0,88,0.190,999.0,99.0 +1994,6,19,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,21.6,94,98900,0,0,374,0,0,0,0,0,0,0,290,1.0,2,1,4.8,77777,9,999999999,379,0.1920,0,88,0.190,999.0,99.0 +1994,6,19,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,21.1,93,98900,0,0,371,0,0,0,0,0,0,0,340,1.5,3,1,4.8,77777,9,999999999,379,0.1920,0,88,0.190,999.0,99.0 +1994,6,19,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,20.5,93,98900,0,0,367,0,0,0,0,0,0,0,330,0.5,2,1,4.8,77777,9,999999999,379,0.1920,0,88,0.190,999.0,99.0 +1994,6,19,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,21.1,97,98900,77,1113,368,21,29,19,2400,1400,2300,390,360,1.5,3,1,4.8,77777,9,999999999,379,0.1920,0,88,0.190,999.0,99.0 +1994,6,19,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.8,21.6,88,99000,308,1323,392,131,205,83,13900,16600,10000,1590,20,1.5,10,4,4.0,77777,9,999999999,379,0.1920,0,88,0.190,0.0,6.0 +1994,6,19,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,21.6,72,99000,549,1323,390,327,530,107,33900,50400,13000,2090,30,2.5,0,0,4.8,77777,9,999999999,379,0.1920,0,88,0.190,999.0,99.0 +1994,6,19,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,21.6,63,99100,776,1323,401,523,650,141,55000,65200,16700,3280,40,2.5,0,0,6.4,77777,9,999999999,379,0.1920,0,88,0.190,999.0,99.0 +1994,6,19,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.6,21.1,54,99100,973,1323,421,670,650,192,70700,65900,22200,5740,50,2.5,3,1,8.0,77777,9,999999999,379,0.1920,0,88,0.190,999.0,99.0 +1994,6,19,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.7,20.5,49,99100,1126,1323,426,797,714,188,85600,73300,23100,8110,100,2.5,2,1,9.7,77777,9,999999999,379,0.1920,0,88,0.190,999.0,99.0 +1994,6,19,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,33.3,18.3,41,99100,1226,1323,426,863,707,208,93200,72600,25700,13020,110,2.0,3,1,9.7,77777,9,999999999,379,0.1920,0,88,0.190,999.0,99.0 +1994,6,19,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,33.3,20.0,46,99000,1266,1323,429,927,720,238,99500,73600,28800,18520,300,1.5,2,1,9.7,77777,9,999999999,390,0.1920,0,88,0.190,0.0,6.0 +1994,6,19,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,35.0,18.3,37,99000,1242,1323,436,893,728,210,96500,74800,26100,14250,20,3.6,3,1,9.7,77777,9,999999999,390,0.1920,0,88,0.190,999.0,99.0 +1994,6,19,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,33.8,18.3,40,98900,1157,1323,443,779,508,334,83300,53100,36800,16020,40,3.6,9,4,9.7,2100,9,999999999,390,0.1920,0,88,0.190,999.0,99.0 +1994,6,19,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.7,20.0,47,98900,1016,1323,439,713,592,258,76700,61700,29300,8460,180,4.6,9,4,9.7,2100,9,999999999,390,0.1920,0,88,0.190,999.0,99.0 +1994,6,19,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,33.3,19.4,44,98900,828,1323,441,429,320,229,46800,34200,25400,5750,190,5.1,9,4,9.7,7500,9,999999999,390,0.1920,0,88,0.190,999.0,99.0 +1994,6,19,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.7,19.4,46,98800,608,1323,438,367,415,176,38100,40900,19300,3640,170,4.1,9,4,8.0,7500,9,999999999,390,0.1920,0,88,0.190,999.0,99.0 +1994,6,19,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.6,20.5,52,98800,369,1323,433,147,169,100,15600,14800,11500,1950,210,2.0,9,4,8.0,7500,9,999999999,400,0.1920,0,88,0.190,0.0,6.0 +1994,6,19,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,20.0,55,98800,130,1323,423,51,18,49,5500,1200,5400,1060,30,5.1,9,4,8.0,2400,9,999999999,400,0.1920,0,88,0.190,999.0,99.0 +1994,6,19,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.7,19.4,61,98900,1,121,410,0,0,0,0,0,0,0,70,3.0,9,4,11.3,15000,9,999999999,400,0.1920,0,88,0.190,999.0,99.0 +1994,6,19,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,18.8,66,98900,0,0,397,0,0,0,0,0,0,0,60,3.0,9,4,11.3,7500,9,999999999,400,0.1920,0,88,0.190,999.0,99.0 +1994,6,19,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,18.8,68,98900,0,0,395,0,0,0,0,0,0,0,20,2.0,9,4,11.3,7500,9,999999999,400,0.1920,0,88,0.190,999.0,99.0 +1994,6,19,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,18.3,66,98900,0,0,382,0,0,0,0,0,0,0,60,2.0,3,1,11.3,77777,9,999999999,400,0.1920,0,88,0.190,999.0,99.0 +1994,6,20,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.8,18.8,74,98900,0,0,385,0,0,0,0,0,0,0,10,1.5,3,3,11.3,77777,9,999999999,409,0.1920,0,88,0.190,0.0,6.0 +1994,6,20,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,18.3,69,98800,0,0,417,0,0,0,0,0,0,0,80,1.5,9,9,11.3,77777,9,999999999,409,0.1920,0,88,0.190,999.0,99.0 +1994,6,20,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,18.8,79,98800,0,0,380,0,0,0,0,0,0,0,20,2.5,3,3,11.3,77777,9,999999999,409,0.1920,0,88,0.190,999.0,99.0 +1994,6,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,18.8,76,98800,0,0,379,0,0,0,0,0,0,0,30,1.0,2,2,11.3,77777,9,999999999,409,0.1920,0,88,0.190,999.0,99.0 +1994,6,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,19.4,87,98900,0,0,375,0,0,0,0,0,0,0,80,1.0,3,3,9.7,77777,9,999999999,409,0.1920,0,88,0.190,999.0,99.0 +1994,6,20,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,19.4,84,98900,76,1113,406,16,6,15,1700,300,1700,380,120,1.0,9,9,8.0,77777,9,999999999,409,0.1920,0,88,0.190,999.0,99.0 +1994,6,20,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.8,20.0,79,98900,307,1323,416,71,29,64,7800,2400,7200,1720,130,1.0,9,9,8.0,77777,9,999999999,419,0.1920,0,88,0.190,0.0,6.0 +1994,6,20,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,20.5,74,98900,548,1323,392,334,586,91,35000,56200,11700,1830,160,1.5,2,2,8.0,77777,9,999999999,419,0.1920,0,88,0.190,999.0,99.0 +1994,6,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.7,21.1,67,98900,775,1323,440,380,140,298,41100,14600,32600,7950,190,2.0,9,9,8.0,77777,9,999999999,419,0.1920,0,88,0.190,999.0,99.0 +1994,6,20,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,21.6,61,98900,972,1323,454,372,94,303,41000,9600,34000,11310,210,3.0,9,9,8.0,77777,9,999999999,419,0.1920,0,88,0.190,999.0,99.0 +1994,6,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.2,21.1,52,98900,1126,1323,467,529,167,386,58200,17800,43000,15680,250,3.0,9,9,8.0,77777,9,999999999,419,0.1920,0,88,0.190,999.0,99.0 +1994,6,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,33.8,20.0,44,98800,1226,1323,475,393,25,369,46500,2300,44400,16530,190,4.6,9,9,8.0,77777,9,999999999,419,0.1920,0,88,0.190,999.0,99.0 +1994,6,20,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,34.4,20.0,43,98800,1266,1323,479,726,272,465,79400,29600,51000,32620,230,3.6,9,9,8.0,7500,9,999999999,419,0.1920,0,88,0.190,0.0,6.0 +1994,6,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,35.0,19.4,40,98700,1242,1323,482,791,347,464,86200,37700,50800,28740,220,5.1,9,9,8.0,7500,9,999999999,419,0.1920,0,88,0.190,999.0,99.0 +1994,6,20,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.5,19.4,52,98600,1157,1323,454,612,120,506,67300,12500,56400,22010,260,4.6,9,9,8.0,1800,9,999999999,419,0.1920,0,88,0.190,999.0,99.0 +1994,6,20,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,19.4,62,98600,1016,1323,447,226,0,226,27000,0,27000,10840,310,6.6,10,10,8.0,1800,9,999999999,430,0.1920,0,88,0.190,999.0,99.0 +1994,6,20,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,19.4,84,98500,829,1323,418,178,0,178,21100,0,21100,8220,140,2.0,10,10,8.0,1800,9,999999999,430,0.1920,0,88,0.190,999.0,99.0 +1994,6,20,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,20.5,87,98600,608,1323,422,122,0,122,14300,0,14300,5280,140,3.0,10,10,9.7,3000,9,999999999,430,0.1920,0,88,0.190,999.0,99.0 +1994,6,20,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.7,21.6,94,98600,370,1323,424,63,0,63,7300,0,7300,2540,60,4.6,10,10,8.0,1800,9,999999999,430,0.1920,0,88,0.190,2.0,6.0 +1994,6,20,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,20.5,84,98600,131,1323,426,26,0,26,3000,0,3000,910,150,2.5,10,10,6.4,3900,9,999999999,430,0.1920,0,88,0.190,999.0,99.0 +1994,6,20,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,21.1,87,98700,1,143,426,0,0,0,0,0,0,0,130,2.0,10,10,6.4,4200,9,999999999,430,0.1920,0,88,0.190,999.0,99.0 +1994,6,20,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,20.5,93,98600,0,0,404,0,0,0,0,0,0,0,220,2.0,9,9,6.4,7500,9,999999999,430,0.1920,0,88,0.190,999.0,99.0 +1994,6,20,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,20.5,93,98500,0,0,376,0,0,0,0,0,0,0,230,1.5,3,3,4.8,77777,9,999999999,430,0.1920,0,88,0.190,999.0,99.0 +1994,6,20,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,20.0,97,98500,0,0,366,0,0,0,0,0,0,0,230,2.0,2,2,4.8,77777,9,999999999,430,0.1920,0,88,0.190,999.0,99.0 +1994,6,21,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,20.0,100,98500,0,0,381,0,0,0,0,0,0,0,240,2.0,9,7,4.8,77777,9,999999999,440,0.1930,0,88,0.190,0.0,6.0 +1994,6,21,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,20.5,100,98500,0,0,390,0,0,0,0,0,0,0,210,1.5,9,8,4.8,77777,9,999999999,440,0.1930,0,88,0.190,999.0,99.0 +1994,6,21,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,20.0,97,98400,0,0,383,0,0,0,0,0,0,0,170,1.0,9,7,4.8,77777,9,999999999,440,0.1930,0,88,0.190,999.0,99.0 +1994,6,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,20.0,100,98400,0,0,387,0,0,0,0,0,0,0,210,1.5,9,8,4.8,77777,9,999999999,440,0.1930,0,88,0.190,999.0,99.0 +1994,6,21,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,20.0,100,98500,0,0,381,0,0,0,0,0,0,0,250,1.0,9,7,3.2,77777,9,999999999,440,0.1930,0,88,0.190,999.0,99.0 +1994,6,21,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,20.0,100,98500,75,1113,387,16,7,15,1700,400,1700,380,200,1.5,9,8,2.0,77777,9,999999999,440,0.1930,0,88,0.190,999.0,99.0 +1994,6,21,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.7,21.1,91,98500,307,1322,396,134,104,110,14400,8600,12400,2400,170,2.0,9,7,2.4,77777,9,999999999,440,0.1930,0,88,0.190,0.0,6.0 +1994,6,21,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,21.6,84,98500,547,1322,413,308,306,181,32500,30400,19900,3920,230,3.0,9,8,3.2,77777,9,999999999,440,0.1930,0,88,0.190,999.0,99.0 +1994,6,21,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,21.1,74,98600,774,1322,415,398,124,325,43600,12700,36200,9770,240,3.0,9,7,4.8,1500,9,999999999,430,0.1930,0,88,0.190,999.0,99.0 +1994,6,21,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,22.2,70,98500,971,1322,435,455,162,336,49900,17200,37200,10700,260,3.0,9,8,4.8,77777,9,999999999,430,0.1930,0,88,0.190,999.0,99.0 +1994,6,21,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.5,22.7,63,98500,1125,1322,442,600,234,401,66000,24900,44700,16280,260,3.0,9,7,4.8,77777,9,999999999,430,0.1930,0,88,0.190,999.0,99.0 +1994,6,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,33.3,22.2,52,98500,1226,1322,465,460,145,325,51600,15600,37100,17400,290,4.1,9,8,4.8,7500,9,999999999,419,0.1930,0,88,0.190,999.0,99.0 +1994,6,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,33.3,20.5,47,98500,1266,1322,455,692,463,249,74000,47300,28700,19340,280,4.6,9,7,6.4,7500,9,999999999,419,0.1930,0,88,0.190,0.0,6.0 +1994,6,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,33.8,20.0,44,98400,1242,1322,465,705,350,376,78200,38100,42300,22910,290,5.1,9,8,6.4,7500,9,999999999,409,0.1930,0,88,0.190,999.0,99.0 +1994,6,21,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,35.0,20.0,42,98300,1157,1322,465,561,393,216,62600,41300,26400,10200,270,7.2,9,7,6.4,1500,9,999999999,409,0.1930,0,88,0.190,999.0,99.0 +1994,6,21,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,20.5,76,98200,1017,1322,435,227,0,227,27100,0,27100,10880,330,1.0,10,10,6.4,1500,9,999999999,409,0.1930,0,88,0.190,999.0,99.0 +1994,6,21,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,22.8,88,98300,830,1322,439,224,0,224,26000,0,26000,9800,320,1.5,10,10,8.0,3600,9,999999999,400,0.1930,0,88,0.190,999.0,99.0 +1994,6,21,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,19.4,69,98300,609,1322,437,153,0,153,17600,0,17600,6280,200,3.6,10,10,11.3,3900,9,999999999,400,0.1930,0,88,0.190,999.0,99.0 +1994,6,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,20.5,76,98200,371,1322,435,80,0,80,9100,0,9100,3060,240,3.0,10,10,12.9,3900,9,999999999,400,0.1930,0,88,0.190,9.0,6.0 +1994,6,21,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,20.5,84,98300,132,1322,426,20,0,20,2300,0,2300,740,260,7.7,10,10,11.3,1350,9,999999999,390,0.1930,0,88,0.190,999.0,99.0 +1994,6,21,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,21.6,94,98300,1,143,424,0,0,0,0,0,0,0,220,2.5,10,10,11.3,3900,9,999999999,390,0.1930,0,88,0.190,999.0,99.0 +1994,6,21,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,21.6,94,98400,0,0,424,0,0,0,0,0,0,0,210,0.5,10,10,11.3,3900,9,999999999,379,0.1930,0,88,0.190,999.0,99.0 +1994,6,21,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,21.6,96,98400,0,0,394,0,0,0,0,0,0,0,110,1.5,9,7,11.3,77777,9,999999999,379,0.1930,0,88,0.190,999.0,99.0 +1994,6,21,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,21.1,100,98400,0,0,394,0,0,0,0,0,0,0,240,2.0,9,8,9.7,77777,9,999999999,379,0.1930,0,88,0.190,999.0,99.0 +1994,6,22,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.5,20.5,100,98400,0,0,398,0,0,0,0,0,0,0,210,2.5,9,9,8.0,2100,9,999999999,370,0.1930,0,88,0.190,5.0,6.0 +1994,6,22,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,21.1,100,98400,0,0,403,0,0,0,0,0,0,0,220,1.0,9,9,6.4,2100,9,999999999,370,0.1930,0,88,0.190,999.0,99.0 +1994,6,22,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,20.5,100,98300,0,0,398,0,0,0,0,0,0,0,20,1.0,9,9,8.0,2100,9,999999999,359,0.1930,0,88,0.190,999.0,99.0 +1994,6,22,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,18.8,93,98300,0,0,362,0,0,0,0,0,0,0,50,1.5,2,2,16.1,77777,9,999999999,359,0.1930,0,88,0.190,999.0,99.0 +1994,6,22,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,18.3,97,98400,0,0,359,0,0,0,0,0,0,0,50,1.5,3,3,12.9,77777,9,999999999,359,0.1930,0,88,0.190,999.0,99.0 +1994,6,22,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,17.7,96,98400,75,1113,353,19,24,17,2100,1100,2000,350,50,2.0,2,2,16.1,77777,9,999999999,350,0.1930,0,88,0.190,999.0,99.0 +1994,6,22,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.5,17.7,84,98500,306,1322,367,133,177,92,14000,14200,10700,1810,60,2.0,3,3,16.1,77777,9,999999999,350,0.1930,0,88,0.190,0.0,6.0 +1994,6,22,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,18.8,79,98500,546,1322,376,320,501,113,34400,48500,14300,2190,60,3.0,2,2,16.1,77777,9,999999999,350,0.1930,0,88,0.190,999.0,99.0 +1994,6,22,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,18.8,71,98500,773,1322,388,415,434,161,45000,44500,19000,3660,50,2.0,3,3,16.1,77777,9,999999999,350,0.1930,0,88,0.190,999.0,99.0 +1994,6,22,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,18.3,58,98500,970,1322,399,667,705,149,71600,72300,18500,4560,20,2.5,2,2,16.1,77777,9,999999999,350,0.1930,0,88,0.190,999.0,99.0 +1994,6,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,17.2,51,98500,1125,1322,407,828,667,260,86900,67400,29500,10870,10,2.0,3,3,16.1,77777,9,999999999,350,0.1930,0,88,0.190,999.0,99.0 +1994,6,22,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,17.2,48,98400,1225,1322,409,853,610,288,89900,61600,32700,17620,20,1.0,2,2,16.1,77777,9,999999999,350,0.1930,0,88,0.190,999.0,99.0 +1994,6,22,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.5,16.1,42,98400,1265,1322,418,914,659,282,96700,66800,32700,21760,320,2.5,3,3,16.1,77777,9,999999999,350,0.1930,0,88,0.190,0.0,6.0 +1994,6,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.5,17.2,45,98400,1242,1322,415,904,691,254,96200,70400,30000,17130,300,2.0,2,2,16.1,77777,9,999999999,350,0.1930,0,88,0.190,999.0,99.0 +1994,6,22,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.6,15.0,37,98300,1158,1322,454,424,41,388,46800,4200,43100,17710,350,2.5,9,9,16.1,77777,9,999999999,340,0.1930,0,88,0.190,999.0,99.0 +1994,6,22,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.6,14.4,35,98300,1017,1322,417,697,540,281,74400,56200,31000,9310,320,2.5,2,2,16.1,77777,9,999999999,340,0.1930,0,88,0.190,999.0,99.0 +1994,6,22,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,14.4,36,98200,830,1322,450,374,65,333,41000,6700,36900,10550,20,2.5,9,9,16.1,77777,9,999999999,340,0.1930,0,88,0.190,999.0,99.0 +1994,6,22,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,14.4,36,98200,610,1322,450,143,8,139,16500,600,16300,5850,360,3.0,9,9,16.1,77777,9,999999999,340,0.1930,0,88,0.190,999.0,99.0 +1994,6,22,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,15.0,42,98200,371,1322,441,117,51,103,12900,4600,11600,2710,360,2.5,9,9,16.1,7500,9,999999999,340,0.1930,0,88,0.190,0.0,6.0 +1994,6,22,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,15.0,44,98200,133,1322,435,31,6,31,3500,0,3500,1040,360,1.5,9,9,16.1,7500,9,999999999,340,0.1930,0,88,0.190,999.0,99.0 +1994,6,22,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,15.5,56,98200,1,143,417,0,0,0,0,0,0,0,330,0.5,9,9,16.1,7500,9,999999999,340,0.1930,0,88,0.190,999.0,99.0 +1994,6,22,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,16.1,60,98300,0,0,414,0,0,0,0,0,0,0,210,1.0,9,9,16.1,7500,9,999999999,340,0.1930,0,88,0.190,999.0,99.0 +1994,6,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,17.2,76,98200,0,0,400,0,0,0,0,0,0,0,250,1.5,9,9,16.1,77777,9,999999999,340,0.1930,0,88,0.190,999.0,99.0 +1994,6,22,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,16.6,66,98200,0,0,420,0,0,0,0,0,0,0,360,1.0,10,10,16.1,1800,9,999999999,340,0.1930,0,88,0.190,999.0,99.0 +1994,6,23,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,16.6,71,98200,0,0,414,0,0,0,0,0,0,0,120,0.5,10,10,16.1,3900,9,999999999,340,0.1930,0,88,0.190,0.0,6.0 +1994,6,23,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,16.1,73,98200,0,0,407,0,0,0,0,0,0,0,10,1.5,10,10,16.1,77777,9,999999999,340,0.1930,0,88,0.190,999.0,99.0 +1994,6,23,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,17.2,78,98200,0,0,409,0,0,0,0,0,0,0,330,1.5,10,10,16.1,77777,9,999999999,340,0.1930,0,88,0.190,999.0,99.0 +1994,6,23,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,17.2,84,98100,0,0,403,0,0,0,0,0,0,0,230,1.0,10,10,12.9,77777,9,999999999,340,0.1930,0,88,0.190,999.0,99.0 +1994,6,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,17.2,81,98100,0,0,394,0,0,0,0,0,0,0,30,1.5,9,9,11.3,77777,9,999999999,340,0.1930,0,88,0.190,999.0,99.0 +1994,6,23,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,17.7,87,98100,74,1091,392,16,2,16,1900,0,1900,580,80,2.0,9,9,11.3,77777,9,999999999,329,0.1930,0,88,0.190,999.0,99.0 +1994,6,23,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.7,20.5,87,98100,305,1322,411,64,22,59,7000,1800,6600,1600,130,3.0,9,9,6.4,4500,9,999999999,329,0.1930,0,88,0.190,0.0,6.0 +1994,6,23,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,21.6,81,98100,545,1322,425,111,55,88,12600,5500,10300,2070,120,3.6,9,9,4.8,77777,9,999999999,340,0.1930,0,88,0.190,999.0,99.0 +1994,6,23,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,21.6,81,98100,772,1322,437,157,0,157,18600,0,18600,7200,160,3.6,10,10,4.8,1800,9,999999999,350,0.1930,0,88,0.190,999.0,99.0 +1994,6,23,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,22.2,91,98100,969,1322,431,209,0,209,25000,0,25000,10000,50,3.0,10,10,4.0,750,9,999999999,350,0.1930,0,88,0.190,999.0,99.0 +1994,6,23,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,22.2,91,98000,1124,1322,431,312,0,312,37000,0,37000,14300,90,3.6,10,10,4.0,3900,9,999999999,359,0.1930,0,88,0.190,999.0,99.0 +1994,6,23,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,22.7,94,98100,1225,1322,431,275,0,275,33400,0,33400,13250,360,2.5,10,10,3.6,750,9,999999999,359,0.1930,0,88,0.190,999.0,99.0 +1994,6,23,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,21.6,96,97900,1265,1322,421,357,0,357,42700,0,42700,16290,120,2.0,10,10,4.0,3900,9,999999999,370,0.1930,0,88,0.190,3.0,6.0 +1994,6,23,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,23.3,94,97800,1242,1322,436,350,0,350,41800,0,41800,15970,60,4.1,10,10,4.0,3900,9,999999999,370,0.1930,0,88,0.190,999.0,99.0 +1994,6,23,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,21.1,79,97700,1158,1322,436,323,0,323,38400,0,38400,14780,160,6.1,10,10,11.3,3900,9,999999999,379,0.1930,0,88,0.190,999.0,99.0 +1994,6,23,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,21.1,72,97600,1017,1322,446,277,0,277,32600,0,32600,12680,140,5.6,10,10,11.3,3900,9,999999999,390,0.1930,0,88,0.190,999.0,99.0 +1994,6,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,21.6,74,97600,831,1322,446,216,0,216,25200,0,25200,9550,130,4.1,10,10,11.3,3900,9,999999999,390,0.1930,0,88,0.190,999.0,99.0 +1994,6,23,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,22.2,77,97600,611,1322,447,144,0,144,16600,0,16600,6010,150,3.0,10,10,9.7,3900,9,999999999,400,0.1930,0,88,0.190,999.0,99.0 +1994,6,23,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,22.2,84,97500,372,1322,438,73,0,73,8400,0,8400,2860,140,3.6,10,10,11.3,3900,9,999999999,400,0.1930,0,88,0.190,2.0,6.0 +1994,6,23,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,22.2,97,97500,133,1322,424,30,0,30,3400,0,3400,1020,130,3.6,10,10,11.3,3900,9,999999999,409,0.1930,0,88,0.190,999.0,99.0 +1994,6,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,22.2,100,97500,1,143,410,0,0,0,0,0,0,0,100,1.5,9,9,8.0,3900,9,999999999,419,0.1930,0,88,0.190,999.0,99.0 +1994,6,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,22.2,97,97400,0,0,424,0,0,0,0,0,0,0,160,3.0,10,10,8.0,3000,9,999999999,419,0.1930,0,88,0.190,999.0,99.0 +1994,6,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,22.2,97,97400,0,0,424,0,0,0,0,0,0,0,170,2.0,10,10,11.3,3000,9,999999999,430,0.1930,0,88,0.190,999.0,99.0 +1994,6,23,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,21.6,90,97400,0,0,427,0,0,0,0,0,0,0,180,3.0,10,10,11.3,1200,9,999999999,430,0.1930,0,88,0.190,999.0,99.0 +1994,6,24,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,21.6,90,97300,0,0,396,0,0,0,0,0,0,0,210,4.1,9,6,11.3,3000,9,999999999,440,0.1930,0,88,0.190,7.0,6.0 +1994,6,24,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,21.6,84,97200,0,0,401,0,0,0,0,0,0,0,210,6.1,9,6,12.9,3300,9,999999999,440,0.1930,0,88,0.190,999.0,99.0 +1994,6,24,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,21.6,88,97100,0,0,380,0,0,0,0,0,0,0,200,6.6,3,1,16.1,77777,9,999999999,450,0.1930,0,88,0.190,999.0,99.0 +1994,6,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,21.1,87,97100,0,0,377,0,0,0,0,0,0,0,200,5.6,2,1,16.1,77777,9,999999999,459,0.1930,0,88,0.190,999.0,99.0 +1994,6,24,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,21.1,87,97100,0,0,377,0,0,0,0,0,0,0,190,6.1,3,1,16.1,77777,9,999999999,459,0.1930,0,88,0.190,999.0,99.0 +1994,6,24,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,21.1,87,97100,73,1091,415,17,0,17,2000,0,2000,600,190,6.1,10,9,16.1,77777,9,999999999,469,0.1930,0,88,0.190,999.0,99.0 +1994,6,24,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,21.1,87,97100,303,1322,395,82,9,80,9200,400,9100,2800,190,5.6,9,6,11.3,1170,9,999999999,469,0.1930,0,88,0.190,0.0,6.0 +1994,6,24,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,21.6,84,97100,544,1322,401,190,99,149,20800,9800,16800,3510,190,6.6,9,6,11.3,570,9,999999999,459,0.1930,0,88,0.190,999.0,99.0 +1994,6,24,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,21.1,82,97100,771,1322,421,292,170,193,32500,17900,22100,5130,190,6.6,10,9,11.3,540,9,999999999,459,0.1930,0,88,0.190,999.0,99.0 +1994,6,24,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,21.6,79,97000,969,1322,428,401,108,321,44000,11500,35600,10190,190,8.2,10,9,11.3,600,9,999999999,450,0.1930,0,88,0.190,999.0,99.0 +1994,6,24,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,21.6,74,97000,1123,1322,434,392,60,340,43200,6100,38000,14980,200,6.1,10,9,11.3,960,9,999999999,440,0.1930,0,88,0.190,999.0,99.0 +1994,6,24,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,21.1,69,97000,1224,1322,437,679,71,612,74600,7400,67700,29740,210,6.6,10,9,11.3,3900,9,999999999,430,0.1930,0,88,0.190,999.0,99.0 +1994,6,24,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.7,21.1,67,96900,1265,1322,419,471,108,367,52600,11600,41500,23390,210,9.7,9,6,11.3,1020,9,999999999,419,0.1930,0,88,0.190,0.0,6.0 +1994,6,24,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,22.2,82,96900,1242,1322,409,864,502,391,91900,52400,42600,27210,210,8.2,9,6,11.2,1020,9,999999999,409,0.1930,0,88,0.190,999.0,99.0 +1994,6,24,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,21.1,82,96800,1158,1322,421,467,59,415,51500,6100,46200,18770,240,9.2,10,9,11.3,3900,9,999999999,400,0.1930,0,88,0.190,999.0,99.0 +1994,6,24,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,21.1,91,96900,1018,1322,411,556,65,506,61100,6800,55800,17780,220,6.6,10,9,11.3,1500,9,999999999,390,0.1930,0,88,0.190,999.0,99.0 +1994,6,24,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,18.8,81,96800,831,1322,386,405,261,240,43900,27900,26400,6090,240,5.1,9,6,16.1,1200,9,999999999,390,0.1930,0,88,0.190,999.0,99.0 +1994,6,24,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,18.3,76,96800,611,1322,388,325,255,206,34300,26000,22300,4620,230,7.2,9,6,11.3,1020,9,999999999,379,0.1930,0,88,0.190,999.0,99.0 +1994,6,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,18.3,93,96900,373,1322,390,89,0,89,10100,0,10100,3320,230,7.2,10,9,6.4,960,9,999999999,370,0.1930,0,88,0.190,2.0,6.0 +1994,6,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,17.7,90,96900,134,1322,389,53,4,53,5700,0,5700,1430,210,6.1,10,9,9.7,600,9,999999999,359,0.1930,0,88,0.190,999.0,99.0 +1994,6,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,17.7,96,97000,1,143,383,0,0,0,0,0,0,0,270,6.1,10,9,8.0,540,9,999999999,350,0.1930,0,88,0.190,999.0,99.0 +1994,6,24,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.6,16.6,100,97000,0,0,373,0,0,0,0,0,0,0,250,5.6,10,9,8.0,600,9,999999999,340,0.1930,0,88,0.190,999.0,99.0 +1994,6,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.6,15.5,93,97100,0,0,372,0,0,0,0,0,0,0,250,5.6,10,9,8.0,540,9,999999999,329,0.1930,0,88,0.190,999.0,99.0 +1994,6,24,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.6,15.0,90,97100,0,0,371,0,0,0,0,0,0,0,260,5.6,10,9,8.0,540,9,999999999,320,0.1930,0,88,0.190,999.0,99.0 +1994,6,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,13.8,86,97200,0,0,378,0,0,0,0,0,0,0,270,6.6,10,10,9.7,600,9,999999999,320,0.1930,0,88,0.190,999.0,99.0 +1994,6,25,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,13.3,87,97200,0,0,374,0,0,0,0,0,0,0,250,7.7,10,10,11.3,600,9,999999999,309,0.1930,0,88,0.190,999.0,99.0 +1994,6,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,13.3,83,97200,0,0,377,0,0,0,0,0,0,0,250,7.7,10,10,16.1,600,9,999999999,300,0.1930,0,88,0.190,999.0,99.0 +1994,6,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,13.8,93,97300,0,0,372,0,0,0,0,0,0,0,250,5.6,10,10,11.3,600,9,999999999,290,0.1930,0,88,0.190,999.0,99.0 +1994,6,25,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,13.3,87,97400,0,0,374,0,0,0,0,0,0,0,250,6.6,10,10,11.3,600,9,999999999,279,0.1930,0,88,0.190,999.0,99.0 +1994,6,25,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,12.7,80,97400,72,1091,376,12,0,12,1400,0,1400,450,250,7.2,10,10,16.1,720,9,999999999,270,0.1930,0,88,0.190,999.0,99.0 +1994,6,25,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,12.7,80,97500,302,1322,376,44,0,44,5200,0,5200,1770,250,7.2,10,10,16.1,750,9,999999999,259,0.1930,0,88,0.190,999.0,99.0 +1994,6,25,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,12.7,75,97600,543,1322,372,173,82,139,19000,7900,15700,4070,270,7.2,9,9,16.1,750,9,999999999,270,0.1930,0,88,0.190,999.0,99.0 +1994,6,25,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,12.7,73,97700,770,1322,374,218,61,182,24000,6100,20500,6140,280,9.7,9,9,16.1,780,9,999999999,270,0.1930,0,88,0.190,999.0,99.0 +1994,6,25,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,13.3,65,97800,968,1322,387,350,140,247,39100,15000,28100,7830,300,9.2,9,9,16.1,900,9,999999999,270,0.1930,0,88,0.190,999.0,99.0 +1994,6,25,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,13.8,70,97900,1122,1322,395,249,0,249,30000,0,30000,12020,270,5.1,10,10,16.1,930,9,999999999,270,0.1930,0,88,0.190,999.0,99.0 +1994,6,25,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,13.8,67,98000,1224,1322,398,275,0,275,33400,0,33400,13240,270,4.6,10,10,16.1,1200,9,999999999,279,0.1930,0,88,0.190,999.0,99.0 +1994,6,25,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.7,15.0,62,98000,1264,1322,404,449,167,288,50800,18200,33300,19530,270,6.1,9,9,16.1,1230,9,999999999,279,0.1930,0,88,0.190,0.0,6.0 +1994,6,25,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,14.4,57,98000,1242,1322,406,416,32,385,45900,3300,42800,21160,280,5.6,9,9,16.1,1350,9,999999999,279,0.1930,0,88,0.190,999.0,99.0 +1994,6,25,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,14.4,52,98000,1158,1322,415,538,308,267,58800,32300,30500,12770,270,7.2,9,9,16.1,1800,9,999999999,279,0.1930,0,88,0.190,999.0,99.0 +1994,6,25,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,13.8,48,98000,1018,1322,417,463,82,399,50900,8500,44400,14890,250,8.7,9,9,16.1,1500,9,999999999,290,0.1930,0,88,0.190,999.0,99.0 +1994,6,25,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,14.4,47,98000,832,1322,424,407,171,299,44300,17900,33000,8320,270,7.7,9,9,16.1,2700,9,999999999,290,0.1930,0,88,0.190,999.0,99.0 +1994,6,25,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,14.4,52,98000,612,1322,386,373,451,164,39100,44500,18500,3370,260,5.6,3,3,16.1,77777,9,999999999,290,0.1930,0,88,0.190,999.0,99.0 +1994,6,25,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,14.4,54,98000,373,1322,379,200,412,83,21100,35700,11000,1520,250,6.6,2,2,16.1,77777,9,999999999,300,0.1930,0,88,0.190,0.0,6.0 +1994,6,25,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,15.0,66,98000,134,1322,370,42,98,32,4500,4800,4000,570,250,3.6,3,3,16.1,77777,9,999999999,300,0.1930,0,88,0.190,999.0,99.0 +1994,6,25,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,15.0,73,98000,1,143,358,0,0,0,0,0,0,0,200,2.5,2,2,16.1,77777,9,999999999,300,0.1930,0,88,0.190,999.0,99.0 +1994,6,25,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,15.0,73,98100,0,0,362,0,0,0,0,0,0,0,140,1.5,3,3,16.1,77777,9,999999999,300,0.1930,0,88,0.190,999.0,99.0 +1994,6,25,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,15.5,90,98100,0,0,345,0,0,0,0,0,0,0,220,2.0,2,2,16.1,77777,9,999999999,309,0.1930,0,88,0.190,999.0,99.0 +1994,6,25,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,15.0,81,98000,0,0,353,0,0,0,0,0,0,0,120,1.5,3,3,16.1,77777,9,999999999,309,0.1930,0,88,0.190,999.0,99.0 +1994,6,26,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.7,15.0,84,98000,0,0,350,0,0,0,0,0,0,0,140,2.0,3,3,16.1,77777,9,999999999,309,0.1930,0,88,0.190,0.0,6.0 +1994,6,26,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,14.4,78,98000,0,0,349,0,0,0,0,0,0,0,170,2.5,2,2,16.1,77777,9,999999999,309,0.1930,0,88,0.190,999.0,99.0 +1994,6,26,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,15.0,84,98000,0,0,350,0,0,0,0,0,0,0,180,3.0,3,3,16.1,77777,9,999999999,320,0.1930,0,88,0.190,999.0,99.0 +1994,6,26,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,15.0,84,97900,0,0,377,0,0,0,0,0,0,0,160,3.0,9,9,16.1,7500,9,999999999,320,0.1930,0,88,0.190,999.0,99.0 +1994,6,26,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,16.1,90,97900,0,0,378,0,0,0,0,0,0,0,190,3.6,9,9,16.1,7500,9,999999999,320,0.1930,0,88,0.190,999.0,99.0 +1994,6,26,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,16.1,87,98000,71,1068,392,15,0,15,1700,0,1700,540,190,3.6,10,10,16.1,4200,9,999999999,329,0.1930,0,88,0.190,999.0,99.0 +1994,6,26,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.7,17.2,97,97900,301,1322,390,57,0,57,6600,0,6600,2180,200,2.5,10,10,9.7,3300,9,999999999,329,0.1930,0,88,0.190,0.0,6.0 +1994,6,26,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,17.7,100,98000,542,1322,391,96,0,96,11300,0,11300,4140,170,2.5,10,10,2.8,1200,9,999999999,329,0.1930,0,88,0.190,999.0,99.0 +1994,6,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,17.2,100,98000,769,1322,388,155,0,155,18300,0,18300,7110,170,3.6,10,10,6.4,1500,9,999999999,329,0.1930,0,88,0.190,999.0,99.0 +1994,6,26,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,18.3,100,98000,967,1322,395,145,0,145,17800,0,17800,7360,190,5.1,10,10,9.7,180,9,999999999,329,0.1930,0,88,0.190,999.0,99.0 +1994,6,26,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,18.3,100,98000,1122,1322,395,208,0,208,25400,0,25400,10380,190,6.6,10,10,8.0,300,9,999999999,329,0.1930,0,88,0.190,999.0,99.0 +1994,6,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,18.3,100,97900,1223,1322,395,230,0,230,28300,0,28300,11450,130,3.6,10,10,6.4,300,9,999999999,329,0.1930,0,88,0.190,999.0,99.0 +1994,6,26,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,18.3,100,97900,1264,1322,395,238,0,238,29300,0,29300,11840,160,2.0,10,10,4.8,300,9,999999999,329,0.1930,0,88,0.190,20.0,6.0 +1994,6,26,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,18.3,100,97800,1242,1322,395,234,0,234,28800,0,28800,11640,310,4.1,10,10,1.6,330,9,999999999,329,0.1930,0,88,0.190,999.0,99.0 +1994,6,26,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,18.3,100,97800,1158,1322,395,216,0,216,26400,0,26400,10770,10,4.1,10,10,4.4,270,9,999999999,329,0.1930,0,88,0.190,999.0,99.0 +1994,6,26,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,18.3,100,97700,1018,1322,395,221,0,221,26500,0,26500,10660,20,3.6,10,10,4.8,600,9,999999999,329,0.1930,0,88,0.190,999.0,99.0 +1994,6,26,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,19.4,100,97700,832,1322,391,271,183,155,30400,19600,18000,3700,10,1.5,9,9,11.3,540,9,999999999,329,0.1930,0,88,0.190,999.0,99.0 +1994,6,26,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,18.3,90,97700,612,1322,393,137,86,97,15600,8800,11500,2350,350,2.0,9,9,11.3,930,9,999999999,329,0.1930,0,88,0.190,999.0,99.0 +1994,6,26,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,18.3,90,97700,373,1322,393,143,41,131,15600,3700,14500,3260,80,2.0,9,9,11.3,2700,9,999999999,329,0.1930,0,88,0.190,45.0,6.0 +1994,6,26,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,17.7,90,97800,135,1322,389,32,6,31,3500,0,3500,1050,230,1.0,9,9,11.3,1200,9,999999999,329,0.1930,0,88,0.190,999.0,99.0 +1994,6,26,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,17.7,100,97700,1,143,380,0,0,0,0,0,0,0,80,1.5,9,9,11.3,1050,9,999999999,329,0.1930,0,88,0.190,999.0,99.0 +1994,6,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,18.3,100,97800,0,0,384,0,0,0,0,0,0,0,130,1.5,9,9,11.3,3900,9,999999999,329,0.1930,0,88,0.190,999.0,99.0 +1994,6,26,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,17.2,100,97800,0,0,377,0,0,0,0,0,0,0,310,1.5,9,9,11.3,7500,9,999999999,329,0.1930,0,88,0.190,999.0,99.0 +1994,6,26,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,15.5,100,97800,0,0,337,0,0,0,0,0,0,0,60,2.0,2,2,8.0,77777,9,999999999,329,0.1930,0,88,0.190,999.0,99.0 +1994,6,27,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,15.0,100,97800,0,0,346,0,0,0,0,0,0,0,290,1.0,9,6,4.0,600,9,999999999,329,0.1930,0,88,0.190,999.0,99.0 +1994,6,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,15.5,100,97800,0,0,333,0,0,0,0,0,0,0,270,2.0,3,1,8.0,77777,9,999999999,329,0.1930,0,88,0.190,999.0,99.0 +1994,6,27,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,17.2,100,97800,0,0,377,0,0,0,0,0,0,0,340,2.5,10,9,4.8,210,9,999999999,329,0.1930,0,88,0.190,999.0,99.0 +1994,6,27,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,17.2,100,97800,0,0,377,0,0,0,0,0,0,0,340,3.0,10,9,4.8,210,9,999999999,340,0.1930,0,88,0.190,999.0,99.0 +1994,6,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,17.2,100,97800,0,0,377,0,0,0,0,0,0,0,320,3.0,10,9,4.0,240,9,999999999,340,0.1930,0,88,0.190,999.0,99.0 +1994,6,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,17.2,97,97900,70,1068,380,16,1,16,1800,0,1800,570,310,3.6,10,9,4.0,390,9,999999999,340,0.1930,0,88,0.190,999.0,99.0 +1994,6,27,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,17.7,100,97900,300,1322,380,93,22,88,10200,1900,9800,2200,310,3.0,10,9,4.0,150,9,999999999,340,0.1930,0,88,0.190,999.0,99.0 +1994,6,27,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,17.7,100,98000,540,1322,380,136,67,109,15300,6700,12500,2560,340,4.1,10,9,4.4,150,9,999999999,340,0.1930,0,88,0.190,999.0,99.0 +1994,6,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,17.2,100,98100,768,1322,377,134,14,126,16100,1000,15500,5980,330,4.1,10,9,4.8,210,9,999999999,340,0.1930,0,88,0.190,999.0,99.0 +1994,6,27,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,17.2,97,98200,966,1322,380,279,65,231,30800,6600,26000,8920,330,4.6,10,9,4.8,240,9,999999999,340,0.1930,0,88,0.190,999.0,99.0 +1994,6,27,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,17.2,90,98200,1121,1322,385,436,92,358,48200,9400,40200,15610,330,4.1,10,9,4.8,270,9,999999999,340,0.1930,0,88,0.190,999.0,99.0 +1994,6,27,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,17.2,81,98300,1222,1322,394,583,173,422,64300,18500,47200,22400,320,2.5,10,9,8.0,390,9,999999999,340,0.1930,0,88,0.190,999.0,99.0 +1994,6,27,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,17.2,73,98300,1264,1322,384,815,448,387,87200,46800,42400,30700,360,3.0,9,6,9.7,990,9,999999999,340,0.1930,0,88,0.190,0.0,6.0 +1994,6,27,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,16.6,66,98300,1242,1322,389,556,211,357,61800,23000,40200,21700,310,4.1,9,6,11.3,1200,9,999999999,340,0.1930,0,88,0.190,999.0,99.0 +1994,6,27,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,15.0,58,98200,1158,1322,390,629,372,303,68000,38900,33800,14580,320,3.6,9,6,11.3,1500,9,999999999,340,0.1930,0,88,0.190,999.0,99.0 +1994,6,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,13.8,54,98200,1018,1322,389,609,387,310,66600,41900,34200,10090,10,6.1,9,6,11.3,1800,9,999999999,340,0.1930,0,88,0.190,999.0,99.0 +1994,6,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,14.4,52,98200,832,1322,396,477,248,321,51700,26000,35400,8940,340,3.6,9,6,11.3,1800,9,999999999,329,0.1930,0,88,0.190,999.0,99.0 +1994,6,27,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,15.0,54,98200,612,1322,396,189,157,116,20900,16100,13400,2340,310,4.1,9,6,11.3,1800,9,999999999,329,0.1930,0,88,0.190,999.0,99.0 +1994,6,27,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.8,14.4,56,98300,374,1322,371,180,367,76,19200,31800,10200,1380,20,2.0,2,1,16.1,77777,9,999999999,329,0.1930,0,88,0.190,0.0,6.0 +1994,6,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,15.0,66,98300,135,1322,361,45,97,35,4700,4700,4300,640,250,1.5,3,1,16.1,77777,9,999999999,329,0.1930,0,88,0.190,999.0,99.0 +1994,6,27,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,16.6,87,98300,1,143,349,0,0,0,0,0,0,0,230,2.0,2,1,16.1,77777,9,999999999,329,0.1930,0,88,0.190,999.0,99.0 +1994,6,27,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,16.6,87,98400,0,0,349,0,0,0,0,0,0,0,270,0.5,3,1,16.1,77777,9,999999999,329,0.1930,0,88,0.190,999.0,99.0 +1994,6,27,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,15.5,84,98400,0,0,346,0,0,0,0,0,0,0,310,0.5,2,1,16.1,77777,9,999999999,329,0.1930,0,88,0.190,999.0,99.0 +1994,6,27,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,15.5,90,98400,0,0,341,0,0,0,0,0,0,0,260,2.0,3,1,16.1,77777,9,999999999,329,0.1930,0,88,0.190,999.0,99.0 +1994,6,28,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.6,15.0,90,98400,0,0,337,0,0,0,0,0,0,0,300,0.5,3,1,16.1,77777,9,999999999,329,0.1930,0,88,0.190,0.0,6.0 +1994,6,28,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,15.5,90,98300,0,0,341,0,0,0,0,0,0,0,220,1.0,2,1,16.1,77777,9,999999999,329,0.1930,0,88,0.190,999.0,99.0 +1994,6,28,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,14.4,93,98300,0,0,331,0,0,0,0,0,0,0,40,1.5,3,1,16.1,77777,9,999999999,329,0.1930,0,88,0.190,999.0,99.0 +1994,6,28,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,14.4,93,98300,0,0,331,0,0,0,0,0,0,0,270,1.5,2,1,16.1,77777,9,999999999,329,0.1930,0,88,0.190,999.0,99.0 +1994,6,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,14.4,93,98300,0,0,331,0,0,0,0,0,0,0,0,0.0,3,1,11.3,77777,9,999999999,329,0.1930,0,88,0.190,999.0,99.0 +1994,6,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.6,14.4,93,98400,69,1068,342,19,18,18,2100,1000,2000,450,220,1.0,9,4,16.0,3600,9,999999999,329,0.1930,0,88,0.190,999.0,99.0 +1994,6,28,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,16.7,100,98400,298,1322,350,125,129,95,13400,10600,11000,2060,320,1.5,9,4,16.0,6000,9,999999999,329,0.1930,0,88,0.190,0.0,6.0 +1994,6,28,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,17.2,93,98300,539,1322,359,210,205,126,22800,20400,14400,2540,200,2.1,9,4,11.2,3900,9,999999999,329,0.1930,0,88,0.190,999.0,99.0 +1994,6,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,18.3,82,98400,766,1322,376,430,409,192,45700,41800,21400,4410,190,4.1,9,4,11.3,3900,9,999999999,329,0.1930,0,88,0.190,999.0,99.0 +1994,6,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,18.3,71,98300,965,1322,388,639,504,271,67900,52300,29700,8150,220,4.1,9,4,11.3,3900,9,999999999,329,0.1930,0,88,0.190,999.0,99.0 +1994,6,28,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,17.7,66,98300,1120,1322,390,765,560,290,82600,58500,32900,12350,190,5.6,9,4,11.3,3300,9,999999999,329,0.1930,0,88,0.190,999.0,99.0 +1994,6,28,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,18.8,66,98300,1222,1322,397,798,493,342,86000,51600,38200,21380,210,6.6,9,4,11.3,900,9,999999999,329,0.1930,0,88,0.190,999.0,99.0 +1994,6,28,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,18.8,64,98300,1263,1322,401,841,597,270,89400,60700,31300,20700,210,5.6,9,4,11.3,1320,9,999999999,320,0.1930,0,88,0.190,999.0,99.0 +1994,6,28,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,17.7,56,98200,1242,1322,393,891,758,178,94300,76500,22300,11340,220,7.7,2,1,11.3,77777,9,999999999,320,0.1930,0,88,0.190,999.0,99.0 +1994,6,28,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.8,17.7,51,98200,1158,1322,401,844,758,179,88300,76200,21500,7790,200,6.6,3,1,16.1,77777,9,999999999,320,0.1930,0,88,0.190,999.0,99.0 +1994,6,28,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,18.3,55,98100,1018,1322,399,715,725,156,77000,74500,19500,5230,210,6.1,2,1,16.1,77777,9,999999999,320,0.1930,0,88,0.190,999.0,99.0 +1994,6,28,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,17.7,53,98000,832,1322,398,549,601,171,57500,60200,19500,4150,200,6.6,3,1,16.1,77777,9,999999999,320,0.1930,0,88,0.190,999.0,99.0 +1994,6,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,17.7,53,98000,612,1322,398,375,574,109,39300,55900,13300,2240,210,7.2,2,1,16.1,77777,9,999999999,320,0.1930,0,88,0.190,999.0,99.0 +1994,6,28,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.6,17.7,58,98000,374,1322,382,197,443,72,20300,38300,9500,1330,210,6.1,0,0,16.1,77777,9,999999999,309,0.1930,0,88,0.190,0.0,6.0 +1994,6,28,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,18.3,66,97900,135,1322,382,44,109,33,4700,5300,4100,600,200,4.6,2,1,16.1,77777,9,999999999,309,0.1930,0,88,0.190,999.0,99.0 +1994,6,28,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,17.7,69,97900,1,143,375,0,0,0,0,0,0,0,200,3.6,3,1,16.1,77777,9,999999999,309,0.1930,0,88,0.190,999.0,99.0 +1994,6,28,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,18.3,74,97900,0,0,373,0,0,0,0,0,0,0,210,3.6,2,1,16.1,77777,9,999999999,309,0.1930,0,88,0.190,999.0,99.0 +1994,6,28,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,19.4,84,97800,0,0,369,0,0,0,0,0,0,0,210,5.1,3,1,16.1,77777,9,999999999,309,0.1930,0,88,0.190,999.0,99.0 +1994,6,28,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,19.4,87,97900,0,0,366,0,0,0,0,0,0,0,200,4.1,2,1,16.1,77777,9,999999999,309,0.1930,0,88,0.190,999.0,99.0 +1994,6,29,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,20.0,87,97800,0,0,407,0,0,0,0,0,0,0,210,4.6,9,9,16.1,2100,9,999999999,300,0.1940,0,88,0.190,2.0,6.0 +1994,6,29,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,20.5,90,97800,0,0,419,0,0,0,0,0,0,0,250,4.1,10,10,16.1,2700,9,999999999,300,0.1940,0,88,0.190,999.0,99.0 +1994,6,29,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,19.4,90,97800,0,0,369,0,0,0,0,0,0,0,240,4.1,2,2,16.1,77777,9,999999999,300,0.1940,0,88,0.190,999.0,99.0 +1994,6,29,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,18.3,97,97800,0,0,359,0,0,0,0,0,0,0,240,3.0,3,3,16.1,77777,9,999999999,300,0.1940,0,88,0.190,999.0,99.0 +1994,6,29,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,17.7,100,97800,0,0,339,0,0,0,0,0,0,0,230,3.0,0,0,16.1,77777,9,999999999,300,0.1940,0,88,0.190,999.0,99.0 +1994,6,29,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,17.7,93,97800,68,1046,359,16,5,16,1800,300,1800,400,220,2.5,3,3,16.1,77777,9,999999999,300,0.1940,0,88,0.190,999.0,99.0 +1994,6,29,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.6,17.7,78,97800,297,1322,357,122,200,77,12900,15900,9400,1460,230,5.6,0,0,16.1,77777,9,999999999,290,0.1940,0,88,0.190,0.0,6.0 +1994,6,29,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,16.6,66,97900,537,1322,364,299,412,131,31500,39700,15400,2570,240,6.6,0,0,16.1,77777,9,999999999,290,0.1940,0,88,0.190,999.0,99.0 +1994,6,29,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,16.6,62,97900,765,1322,382,456,468,184,48700,47800,20900,4200,250,7.7,2,2,16.1,77777,9,999999999,290,0.1940,0,88,0.190,999.0,99.0 +1994,6,29,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,17.2,58,97800,963,1322,395,656,573,238,70700,59600,27100,7070,250,8.2,3,3,16.1,77777,9,999999999,290,0.1940,0,88,0.190,999.0,99.0 +1994,6,29,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.7,17.2,53,97900,1119,1322,400,658,441,284,71200,46100,32100,12050,250,8.2,2,2,16.1,77777,9,999999999,290,0.1940,0,88,0.190,999.0,99.0 +1994,6,29,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,16.6,52,97800,1221,1322,401,920,623,343,99000,65200,38600,21390,260,7.7,3,3,16.1,77777,9,999999999,290,0.1940,0,88,0.190,999.0,99.0 +1994,6,29,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,16.1,48,97800,1263,1322,436,409,93,320,46100,10000,36500,20240,240,9.7,9,9,16.1,1500,9,999999999,290,0.1940,0,88,0.190,0.0,6.0 +1994,6,29,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,16.1,53,97800,1241,1322,427,552,83,473,60900,8600,52800,25280,250,9.2,9,9,16.1,1500,9,999999999,290,0.1940,0,88,0.190,999.0,99.0 +1994,6,29,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,18.3,62,97800,1158,1322,393,791,601,264,83300,60800,29900,12340,270,6.1,2,2,16.1,77777,9,999999999,300,0.1940,0,88,0.190,999.0,99.0 +1994,6,29,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,17.7,84,97800,1019,1322,406,219,0,219,26300,0,26300,10580,270,6.6,10,10,11.3,1500,9,999999999,300,0.1940,0,88,0.190,999.0,99.0 +1994,6,29,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,17.7,84,97800,832,1322,395,372,5,368,41500,500,41100,13330,280,4.6,9,9,11.3,3300,9,999999999,300,0.1940,0,88,0.190,999.0,99.0 +1994,6,29,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,18.8,81,97900,613,1322,406,154,35,138,17000,3400,15400,4280,240,2.5,9,9,16.1,3300,9,999999999,300,0.1940,0,88,0.190,999.0,99.0 +1994,6,29,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,17.2,73,97900,374,1322,404,98,31,89,10700,2800,10000,2420,290,4.1,9,9,16.1,3600,9,999999999,300,0.1940,0,88,0.190,11.0,6.0 +1994,6,29,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,17.2,76,97900,135,1322,400,40,0,40,4400,0,4400,1240,270,9.2,9,9,16.1,3600,9,999999999,300,0.1940,0,88,0.190,999.0,99.0 +1994,6,29,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,17.2,93,97900,1,143,383,0,0,0,0,0,0,0,250,1.5,9,9,16.1,6000,9,999999999,300,0.1940,0,88,0.190,999.0,99.0 +1994,6,29,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,17.7,100,97900,0,0,391,0,0,0,0,0,0,0,260,2.5,10,10,16.1,3600,9,999999999,300,0.1940,0,88,0.190,999.0,99.0 +1994,6,29,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,17.2,97,97900,0,0,349,0,0,0,0,0,0,0,220,1.5,2,2,16.1,77777,9,999999999,300,0.1940,0,88,0.190,999.0,99.0 +1994,6,29,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,17.2,100,98000,0,0,350,0,0,0,0,0,0,0,230,2.0,3,3,16.1,77777,9,999999999,300,0.1940,0,88,0.190,999.0,99.0 +1994,6,30,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,16.1,100,98000,0,0,330,0,0,0,0,0,0,0,230,2.0,3,0,16.1,77777,9,999999999,300,0.1940,0,88,0.190,0.0,6.0 +1994,6,30,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,15.5,100,98000,0,0,326,0,0,0,0,0,0,0,210,1.5,2,0,16.1,77777,9,999999999,300,0.1940,0,88,0.190,999.0,99.0 +1994,6,30,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,15.5,100,98100,0,0,326,0,0,0,0,0,0,0,210,1.5,3,0,16.1,77777,9,999999999,300,0.1940,0,88,0.190,999.0,99.0 +1994,6,30,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,15.5,100,98200,0,0,326,0,0,0,0,0,0,0,240,2.0,0,0,12.9,77777,9,999999999,300,0.1940,0,88,0.190,999.0,99.0 +1994,6,30,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,15.0,100,98200,0,0,324,0,0,0,0,0,0,0,220,1.5,3,0,9.7,77777,9,999999999,300,0.1940,0,88,0.190,999.0,99.0 +1994,6,30,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,15.5,100,98200,66,1046,326,17,1,16,1800,0,1800,570,270,2.5,2,0,11.3,77777,9,999999999,300,0.1940,0,88,0.190,999.0,99.0 +1994,6,30,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.7,16.1,90,98200,295,1321,337,111,123,84,12100,10100,9900,1820,300,3.0,0,0,16.1,77777,9,999999999,300,0.1940,0,88,0.190,0.0,6.0 +1994,6,30,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,15.5,84,98300,536,1321,339,282,304,158,30000,30100,17800,3320,320,5.6,2,0,16.1,77777,9,999999999,290,0.1940,0,88,0.190,999.0,99.0 +1994,6,30,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,15.5,81,98400,764,1321,356,418,279,256,44700,29500,27600,6300,310,5.6,9,3,16.1,600,9,999999999,290,0.1940,0,88,0.190,999.0,99.0 +1994,6,30,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,16.1,78,98500,962,1321,359,650,425,341,70200,45800,36700,10430,320,4.1,9,2,16.1,720,9,999999999,290,0.1940,0,88,0.190,999.0,99.0 +1994,6,30,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,16.1,71,98500,1118,1321,356,809,582,316,86600,60800,35100,13450,300,3.6,3,0,16.1,77777,9,999999999,290,0.1940,0,88,0.190,999.0,99.0 +1994,6,30,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,16.1,64,98500,1220,1321,364,895,614,328,96900,64300,37400,20350,320,3.0,2,0,16.1,77777,9,999999999,290,0.1940,0,88,0.190,999.0,99.0 +1994,6,30,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,15.5,56,98500,1262,1321,371,941,622,346,101800,65100,39400,27140,300,4.6,3,0,16.1,77777,9,999999999,290,0.1940,0,88,0.190,0.0,6.0 +1994,6,30,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,15.5,58,98500,1241,1321,369,917,623,332,99400,65200,38000,22890,270,2.5,2,0,16.1,77777,9,999999999,290,0.1940,0,88,0.190,999.0,99.0 +1994,6,30,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,14.4,48,98600,1158,1321,376,838,586,324,90000,61200,36200,15640,310,4.1,3,0,16.1,77777,9,999999999,279,0.1940,0,88,0.190,999.0,99.0 +1994,6,30,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,15.0,52,98600,1019,1321,373,712,553,285,75900,57600,31400,9490,300,4.1,2,0,16.1,77777,9,999999999,279,0.1940,0,88,0.190,999.0,99.0 +1994,6,30,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,15.0,54,98500,833,1321,371,540,465,247,56700,47800,26600,6180,340,2.5,3,0,16.1,77777,9,999999999,279,0.1940,0,88,0.190,999.0,99.0 +1994,6,30,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,15.0,52,98500,613,1321,373,346,356,180,37000,36400,20100,3920,350,3.0,2,0,16.1,77777,9,999999999,279,0.1940,0,88,0.190,999.0,99.0 +1994,6,30,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.5,15.5,54,98600,374,1321,374,164,179,114,17900,16000,13400,2530,330,2.0,3,0,16.1,77777,9,999999999,279,0.1940,0,88,0.190,0.0,6.0 +1994,6,30,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,16.1,62,98600,135,1321,366,40,13,38,4300,800,4200,890,270,2.0,2,0,16.1,77777,9,999999999,279,0.1940,0,88,0.190,999.0,99.0 +1994,6,30,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,17.7,81,98600,1,143,355,0,0,0,0,0,0,0,220,1.5,3,0,16.1,77777,9,999999999,279,0.1940,0,88,0.190,999.0,99.0 +1994,6,30,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.3,18.2,81,98700,0,0,356,0,0,0,0,0,0,0,70,1.3,2,0,16.1,77777,9,999999999,270,0.1940,0,88,0.190,999.0,99.0 +1994,6,30,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.4,18.7,87,98600,0,0,357,0,0,0,0,0,0,0,80,1.1,3,0,16.1,77777,9,999999999,270,0.1940,0,88,0.190,999.0,99.0 +1994,6,30,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,19.2,93,98700,0,0,359,0,0,0,0,0,0,0,30,0.9,0,0,16.1,77777,9,999999999,270,0.1940,0,88,0.190,999.0,99.0 +1991,7,1,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,19.6,79,98300,0,0,389,0,0,0,0,0,0,0,0,0.6,9,7,11.2,77777,9,999999999,440,0.1870,0,88,0.190,0.0,6.0 +1991,7,1,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.9,20.1,87,98200,0,0,397,0,0,0,0,0,0,0,0,0.4,9,8,9.6,77777,9,999999999,450,0.1870,0,88,0.190,999.0,99.0 +1991,7,1,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,20.6,90,98200,0,0,392,0,0,0,0,0,0,0,0,0.2,9,7,9.6,77777,9,999999999,450,0.1870,0,88,0.190,999.0,99.0 +1991,7,1,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,22.2,21.1,93,98200,0,0,400,0,0,0,0,0,0,0,0,0.0,9,8,9.6,77777,9,999999999,450,0.1870,0,88,0.190,0.0,99.0 +1991,7,1,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.7,20.6,93,98300,0,0,390,0,0,0,0,0,0,0,60,2.1,9,7,6.4,3000,9,999999999,459,0.1870,0,88,0.190,999.0,99.0 +1991,7,1,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,20.6,91,98300,66,1046,399,13,10,13,1500,600,1500,330,50,1.5,9,8,4.8,1500,9,999999999,459,0.1870,0,88,0.190,999.0,99.0 +1991,7,1,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,20.6,87,98300,294,1321,396,153,81,135,16700,7000,15100,2920,70,2.6,9,7,4.8,1500,9,999999999,459,0.1870,0,88,0.190,0.0,6.0 +1991,7,1,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,20.6,82,98400,535,1321,409,239,124,189,25800,12200,20900,4440,60,4.1,9,8,6.4,3000,9,999999999,459,0.1870,0,88,0.190,999.0,99.0 +1991,7,1,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,21.1,79,98400,763,1321,409,400,194,287,43200,20200,31600,7600,110,1.5,9,7,6.4,3000,9,999999999,459,0.1870,0,88,0.190,999.0,99.0 +1991,7,1,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,27.2,21.7,72,98400,961,1321,429,513,296,298,55900,32000,32600,8910,100,1.5,9,8,6.4,77777,9,999999999,459,0.1870,0,88,0.190,0.0,99.0 +1991,7,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.9,21.7,65,98400,1117,1321,412,785,721,176,84800,74200,22000,7460,90,1.0,2,2,8.0,77777,9,999999999,459,0.1870,0,88,0.190,999.0,99.0 +1991,7,1,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.7,21.7,56,98300,1220,1321,432,864,742,179,91200,74800,22000,10160,230,1.0,3,3,9.6,77777,9,999999999,459,0.1870,0,88,0.190,999.0,99.0 +1991,7,1,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,33.3,21.1,49,98300,1262,1321,456,738,436,321,80400,45700,36700,25070,270,1.0,9,7,9.6,77777,9,999999999,459,0.1870,0,88,0.190,0.0,6.0 +1991,7,1,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,33.9,20.0,44,98300,1241,1321,466,732,341,411,80600,37100,45600,25160,290,1.0,9,8,9.6,77777,9,999999999,459,0.1870,0,88,0.190,999.0,99.0 +1991,7,1,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,33.9,20.0,44,98200,1158,1321,458,539,84,465,59400,8700,51700,20630,240,1.0,9,7,9.6,77777,9,999999999,459,0.1870,0,88,0.190,999.0,99.0 +1991,7,1,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,33.9,19.4,43,98100,1018,1321,465,489,249,296,53600,27000,32700,9580,260,3.1,9,8,9.6,7500,9,999999999,459,0.1870,0,88,0.190,0.0,99.0 +1991,7,1,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,33.9,20.0,44,98100,832,1321,458,515,387,271,55500,41300,29400,7040,300,2.6,9,7,9.6,7500,9,999999999,459,0.1870,0,88,0.190,999.0,99.0 +1991,7,1,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.7,22.2,57,98000,613,1321,455,187,85,147,20700,8700,16700,3570,0,0.0,9,8,9.6,77777,9,999999999,450,0.1870,0,88,0.190,999.0,99.0 +1991,7,1,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,33.3,18.9,43,98000,374,1321,433,178,389,68,19200,33800,9600,1230,270,3.1,2,2,11.2,77777,9,999999999,450,0.1870,0,88,0.190,0.0,6.0 +1991,7,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.9,22.2,67,98100,135,1321,417,51,187,32,5300,9700,4300,570,40,0.5,3,3,11.2,77777,9,999999999,450,0.1870,0,88,0.190,999.0,99.0 +1991,7,1,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,22.2,74,98100,1,143,404,0,3,0,0,0,0,0,0,0.0,2,2,11.2,77777,9,999999999,450,0.1870,0,88,0.190,999.0,99.0 +1991,7,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,26.7,21.7,74,98100,0,0,404,0,0,0,0,0,0,0,0,0.0,3,3,11.2,77777,9,999999999,450,0.1870,0,88,0.190,0.0,99.0 +1991,7,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,21.7,77,98100,0,0,397,0,0,0,0,0,0,0,0,0.0,2,2,11.2,77777,9,999999999,450,0.1870,0,88,0.190,999.0,99.0 +1991,7,1,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,21.1,67,98100,0,0,409,0,0,0,0,0,0,0,300,3.1,3,3,11.2,77777,9,999999999,450,0.1870,0,88,0.190,999.0,99.0 +1991,7,2,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,19.4,62,98100,0,0,404,0,0,0,0,0,0,0,0,0.0,3,3,11.2,77777,9,999999999,450,0.1870,0,88,0.190,0.0,6.0 +1991,7,2,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,20.6,79,98200,0,0,387,0,0,0,0,0,0,0,30,5.1,2,2,11.2,77777,9,999999999,450,0.1870,0,88,0.190,999.0,99.0 +1991,7,2,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.8,20.0,84,98100,0,0,382,0,0,0,0,0,0,0,0,0.0,3,3,11.2,77777,9,999999999,450,0.1870,0,88,0.190,999.0,99.0 +1991,7,2,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,22.8,20.6,87,98100,0,0,379,0,0,0,0,0,0,0,0,0.0,2,2,11.2,77777,9,999999999,450,0.1870,0,88,0.190,0.0,99.0 +1991,7,2,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,20.0,87,98100,0,0,399,0,0,0,0,0,0,0,0,0.0,9,8,11.2,1800,9,999999999,450,0.1870,0,88,0.190,999.0,99.0 +1991,7,2,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,20.6,85,98200,64,1024,399,15,8,15,1700,400,1700,380,0,0.0,9,7,11.2,1800,9,999999999,440,0.1870,0,88,0.190,999.0,99.0 +1991,7,2,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,21.1,84,98300,292,1321,389,102,213,55,10900,16800,7200,980,0,0.0,3,3,11.2,77777,9,999999999,440,0.1870,0,88,0.190,0.0,6.0 +1991,7,2,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,21.1,69,98300,533,1321,421,306,194,228,32700,18900,25000,5360,280,1.0,9,7,11.2,1800,9,999999999,440,0.1870,0,88,0.190,999.0,99.0 +1991,7,2,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.9,20.6,61,98300,761,1321,415,459,513,164,49700,52500,19400,3690,330,3.1,3,3,11.2,77777,9,999999999,440,0.1870,0,88,0.190,999.0,99.0 +1991,7,2,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,29.4,20.0,57,98300,960,1321,432,536,284,329,57900,30600,35600,9980,330,3.1,9,7,16.0,77777,9,999999999,440,0.1870,0,88,0.190,0.0,99.0 +1991,7,2,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,18.9,51,98300,1116,1321,441,426,172,280,47500,18700,31600,10920,20,1.5,9,8,16.0,77777,9,999999999,430,0.1870,0,88,0.190,999.0,99.0 +1991,7,2,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.2,18.9,45,98400,1219,1321,447,750,453,331,81000,47400,37100,20430,360,2.1,9,7,16.0,77777,9,999999999,430,0.1870,0,88,0.190,999.0,99.0 +1991,7,2,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.8,16.7,38,98300,1261,1321,431,948,749,233,101900,76700,28500,17800,320,1.5,3,3,16.0,77777,9,999999999,430,0.1870,0,88,0.190,0.0,6.0 +1991,7,2,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,33.3,17.8,40,98300,1240,1321,431,776,540,269,82300,54800,30700,17990,340,2.6,2,2,16.0,77777,9,999999999,419,0.1870,0,88,0.190,999.0,99.0 +1991,7,2,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,33.9,17.8,39,98100,1158,1321,439,818,676,226,87200,68900,26600,10690,350,2.1,3,3,16.0,77777,9,999999999,419,0.1870,0,88,0.190,999.0,99.0 +1991,7,2,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,33.9,18.3,40,98100,1018,1321,436,727,696,191,77200,70900,22500,6280,360,1.5,2,2,16.0,77777,9,999999999,419,0.1870,0,88,0.190,0.0,99.0 +1991,7,2,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,33.3,18.3,41,98200,832,1321,436,523,465,229,55200,47800,25100,5690,330,1.0,3,3,16.0,77777,9,999999999,419,0.1870,0,88,0.190,999.0,99.0 +1991,7,2,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,18.3,84,98200,612,1321,410,116,0,116,13600,0,13600,5080,350,9.8,10,10,8.0,1200,9,999999999,409,0.1870,0,88,0.190,999.0,99.0 +1991,7,2,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,17.2,76,98300,374,1321,412,59,0,59,6900,0,6900,2410,30,1.0,10,10,16.0,1350,9,999999999,409,0.1870,0,88,0.190,2.0,6.0 +1991,7,2,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.7,18.3,81,98300,134,1321,414,30,0,30,3400,0,3400,1020,0,0.0,10,10,16.0,3600,9,999999999,409,0.1870,0,88,0.190,999.0,99.0 +1991,7,2,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,17.2,78,98300,1,143,409,0,0,0,0,0,0,0,0,0.0,10,10,16.0,1500,9,999999999,409,0.1870,0,88,0.190,999.0,99.0 +1991,7,2,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.6,17.2,81,98300,0,0,406,0,0,0,0,0,0,0,0,0.0,10,10,16.0,1500,9,999999999,400,0.1870,0,88,0.190,999.0,99.0 +1991,7,2,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.7,17.2,76,98300,0,0,412,0,0,0,0,0,0,0,0,0.0,10,10,16.0,1500,9,999999999,400,0.1870,0,88,0.190,999.0,99.0 +1991,7,2,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,17.2,73,98200,0,0,415,0,0,0,0,0,0,0,0,0.0,10,10,11.2,1500,9,999999999,400,0.1870,0,88,0.190,999.0,99.0 +1991,7,3,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,17.8,76,98100,0,0,416,0,0,0,0,0,0,0,0,0.0,10,10,11.2,3600,9,999999999,400,0.1870,0,88,0.190,0.0,6.0 +1991,7,3,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.7,17.8,79,98100,0,0,413,0,0,0,0,0,0,0,0,0.0,10,10,11.2,3600,9,999999999,390,0.1870,0,88,0.190,999.0,99.0 +1991,7,3,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.7,17.2,76,98200,0,0,412,0,0,0,0,0,0,0,340,1.0,10,10,11.2,3600,9,999999999,390,0.1870,0,88,0.190,999.0,99.0 +1991,7,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,21.1,17.2,78,98200,0,0,398,0,0,0,0,0,0,0,0,0.0,9,9,11.2,3600,9,999999999,390,0.1870,0,88,0.190,0.0,99.0 +1991,7,3,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,17.2,78,98300,0,0,366,0,0,0,0,0,0,0,0,0.0,2,2,11.2,77777,9,999999999,379,0.1870,0,88,0.190,999.0,99.0 +1991,7,3,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,19.4,90,98300,63,1024,372,15,20,14,1700,900,1700,290,0,0.0,3,3,11.2,77777,9,999999999,379,0.1870,0,88,0.190,999.0,99.0 +1991,7,3,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,18.9,84,98300,290,1321,371,119,215,72,12700,16900,9000,1350,0,0.0,2,2,16.0,77777,9,999999999,379,0.1870,0,88,0.190,0.0,6.0 +1991,7,3,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,18.9,76,98400,532,1321,383,298,410,133,31400,39400,15500,2610,0,0.0,3,3,16.0,77777,9,999999999,379,0.1870,0,88,0.190,999.0,99.0 +1991,7,3,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,18.3,66,98400,760,1321,387,496,577,164,51500,57200,18500,3660,0,0.0,2,2,16.0,77777,9,999999999,379,0.1870,0,88,0.190,999.0,99.0 +1991,7,3,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,26.7,17.2,56,98400,959,1321,399,652,528,268,69300,54800,29400,7980,0,0.0,3,3,16.0,77777,9,999999999,379,0.1870,0,88,0.190,0.0,99.0 +1991,7,3,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,17.8,55,98400,1115,1321,448,307,0,307,36400,0,36400,14100,210,1.0,10,10,16.0,77777,9,999999999,379,0.1870,0,88,0.190,999.0,99.0 +1991,7,3,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,17.2,46,98400,1218,1321,461,341,0,341,40700,0,40700,15590,210,1.5,10,10,16.0,77777,9,999999999,379,0.1870,0,88,0.190,999.0,99.0 +1991,7,3,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,17.2,46,98400,1261,1321,461,355,0,355,42400,0,42400,16210,220,2.1,10,10,16.0,77777,9,999999999,379,0.1870,0,88,0.190,0.0,6.0 +1991,7,3,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.6,16.7,43,98300,1240,1321,464,278,0,278,33800,0,33800,13400,220,4.1,10,10,16.0,1050,9,999999999,379,0.1870,0,88,0.190,999.0,99.0 +1991,7,3,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.7,12.8,32,98200,1157,1321,416,820,663,239,87000,67400,27800,11240,140,4.1,2,2,16.0,77777,9,999999999,390,0.1870,0,88,0.190,999.0,99.0 +1991,7,3,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,31.7,18.3,45,98200,1018,1321,427,736,710,189,78200,72300,22400,6220,180,5.1,3,3,16.0,77777,9,999999999,390,0.1870,0,88,0.190,0.0,99.0 +1991,7,3,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,18.3,51,98100,832,1321,446,305,31,285,34700,2900,32900,11570,180,3.1,9,9,16.0,7500,9,999999999,390,0.1870,0,88,0.190,999.0,99.0 +1991,7,3,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,18.3,50,98100,612,1321,450,273,125,215,29600,12600,23700,5230,180,4.1,9,9,16.0,7500,9,999999999,390,0.1870,0,88,0.190,999.0,99.0 +1991,7,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,18.3,53,98100,373,1321,443,112,63,94,12300,5600,10700,2530,200,3.1,9,9,16.0,7500,9,999999999,390,0.1870,0,88,0.190,0.0,6.0 +1991,7,3,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,19.4,67,98100,134,1321,440,25,0,25,2900,0,2900,890,320,1.0,10,10,16.0,1200,9,999999999,390,0.1870,0,88,0.190,999.0,99.0 +1991,7,3,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,19.4,76,98200,1,143,428,0,0,0,0,0,0,0,0,0.0,10,10,16.0,2400,9,999999999,390,0.1870,0,88,0.190,999.0,99.0 +1991,7,3,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,24.4,19.4,74,98200,0,0,431,0,0,0,0,0,0,0,0,0.0,10,10,11.2,2400,9,999999999,390,0.1870,0,88,0.190,0.0,99.0 +1991,7,3,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.8,20.0,84,98200,0,0,422,0,0,0,0,0,0,0,0,0.0,10,10,16.0,7500,9,999999999,390,0.1870,0,88,0.190,999.0,99.0 +1991,7,3,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,20.0,82,98200,0,0,425,0,0,0,0,0,0,0,0,0.0,10,10,16.0,7500,9,999999999,390,0.1870,0,88,0.190,999.0,99.0 +1991,7,4,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,20.0,84,98200,0,0,410,0,0,0,0,0,0,0,0,0.0,9,9,11.2,7500,9,999999999,390,0.1870,0,88,0.190,0.0,6.0 +1991,7,4,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,20.0,82,98100,0,0,413,0,0,0,0,0,0,0,0,0.0,9,9,11.2,7500,9,999999999,400,0.1870,0,88,0.190,999.0,99.0 +1991,7,4,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.8,20.0,84,98100,0,0,410,0,0,0,0,0,0,0,0,0.0,9,9,11.2,7500,9,999999999,400,0.1870,0,88,0.190,999.0,99.0 +1991,7,4,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,23.3,20.6,85,98100,0,0,414,0,0,0,0,0,0,0,0,0.0,9,9,11.2,7500,9,999999999,400,0.1870,0,88,0.190,0.0,99.0 +1991,7,4,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,20.6,85,98100,0,0,414,0,0,0,0,0,0,0,0,0.0,9,9,8.0,3000,9,999999999,400,0.1870,0,88,0.190,999.0,99.0 +1991,7,4,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,20.0,82,98200,61,1002,413,17,15,16,1900,800,1800,400,0,0.0,9,9,8.0,3000,9,999999999,400,0.1870,0,88,0.190,999.0,99.0 +1991,7,4,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,19.4,79,98300,288,1321,424,45,0,45,5200,0,5200,1770,0,0.0,10,10,8.0,2700,9,999999999,400,0.1870,0,88,0.190,999.0,99.0 +1991,7,4,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.8,19.4,81,98300,530,1321,421,101,0,101,11800,0,11800,4270,20,1.0,10,10,11.2,2700,9,999999999,400,0.1870,0,88,0.190,999.0,99.0 +1991,7,4,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,18.3,79,98300,758,1321,416,160,0,160,18900,0,18900,7250,0,0.0,10,10,11.2,2700,9,999999999,390,0.1870,0,88,0.190,999.0,99.0 +1991,7,4,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,18.9,76,98400,958,1321,424,211,0,211,25100,0,25100,10030,240,2.1,10,10,11.2,1800,9,999999999,390,0.1870,0,88,0.190,999.0,99.0 +1991,7,4,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,18.3,64,98400,1114,1321,436,313,0,313,37000,0,37000,14300,210,2.1,10,10,11.2,3600,9,999999999,390,0.1870,0,88,0.190,999.0,99.0 +1991,7,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,17.2,54,98400,1218,1321,444,346,0,346,41200,0,41200,15760,260,4.6,10,10,16.0,3300,9,999999999,379,0.1870,0,88,0.190,999.0,99.0 +1991,7,4,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,16.7,56,98300,1260,1321,437,359,0,359,42900,0,42900,16340,260,3.1,10,10,16.0,3300,9,999999999,379,0.1870,0,88,0.190,0.0,6.0 +1991,7,4,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,17.2,51,98300,1240,1321,438,547,220,340,61000,24000,38500,20410,300,4.1,9,9,16.0,77777,9,999999999,370,0.1870,0,88,0.190,999.0,99.0 +1991,7,4,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,16.7,46,98300,1157,1321,444,350,14,337,41300,1300,40200,15240,270,2.1,9,9,16.0,77777,9,999999999,370,0.1870,0,88,0.190,999.0,99.0 +1991,7,4,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,30.0,16.7,45,98200,1018,1321,447,287,59,242,31800,6000,27200,9800,230,1.0,9,9,16.0,1050,9,999999999,370,0.1870,0,88,0.190,0.0,99.0 +1991,7,4,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,16.7,45,98200,832,1321,447,343,71,298,37700,7200,33100,9720,220,4.1,9,9,16.0,1200,9,999999999,359,0.1870,0,88,0.190,999.0,99.0 +1991,7,4,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,18.3,55,98100,612,1321,440,295,111,244,32400,11100,27200,6710,210,4.1,9,9,16.0,1200,9,999999999,359,0.1870,0,88,0.190,999.0,99.0 +1991,7,4,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,17.8,58,98100,373,1321,430,121,47,108,13300,4200,12100,2820,220,3.1,9,9,16.0,1200,9,999999999,359,0.1870,0,88,0.190,0.0,6.0 +1991,7,4,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,16.7,60,98100,133,1321,385,43,128,30,4500,6600,3800,530,200,2.1,2,2,16.0,77777,9,999999999,350,0.1870,0,88,0.190,999.0,99.0 +1991,7,4,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,17.2,66,98200,1,143,384,0,2,0,0,0,0,0,200,2.1,3,3,16.0,77777,9,999999999,350,0.1870,0,88,0.190,999.0,99.0 +1991,7,4,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,23.3,17.8,71,98200,0,0,378,0,0,0,0,0,0,0,200,1.0,2,2,16.0,77777,9,999999999,350,0.1870,0,88,0.190,0.0,99.0 +1991,7,4,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,18.3,79,98200,0,0,361,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,340,0.1870,0,88,0.190,999.0,99.0 +1991,7,4,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,18.9,82,98300,0,0,362,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,340,0.1870,0,88,0.190,999.0,99.0 +1991,7,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,18.9,87,98200,0,0,368,0,0,0,0,0,0,0,0,0.0,2,2,11.2,77777,9,999999999,340,0.1870,0,88,0.190,0.0,6.0 +1991,7,5,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.6,18.9,90,98200,0,0,369,0,0,0,0,0,0,0,0,0.0,3,3,11.2,77777,9,999999999,329,0.1870,0,88,0.190,999.0,99.0 +1991,7,5,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,18.9,87,98200,0,0,368,0,0,0,0,0,0,0,0,0.0,2,2,11.2,77777,9,999999999,329,0.1870,0,88,0.190,999.0,99.0 +1991,7,5,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,20.6,18.9,90,98200,0,0,369,0,0,0,0,0,0,0,0,0.0,3,3,8.0,77777,9,999999999,329,0.1870,0,88,0.190,0.0,99.0 +1991,7,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.6,18.9,90,98200,0,0,397,0,0,0,0,0,0,0,0,0.0,9,9,6.4,3000,9,999999999,320,0.1870,0,88,0.190,999.0,99.0 +1991,7,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,18.3,93,98300,60,980,390,12,1,12,1400,0,1400,440,0,0.0,9,9,8.0,77777,9,999999999,320,0.1870,0,88,0.190,999.0,99.0 +1991,7,5,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,18.3,81,98300,286,1321,370,130,299,65,13600,23300,8600,1180,250,1.0,2,2,11.2,77777,9,999999999,320,0.1870,0,88,0.190,0.0,6.0 +1991,7,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,18.3,71,98400,528,1321,369,332,639,76,35100,61200,10600,1550,260,1.5,0,0,11.2,77777,9,999999999,320,0.1870,0,88,0.190,999.0,99.0 +1991,7,5,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,17.2,58,98400,757,1321,379,528,747,100,55400,74200,12900,2250,280,2.1,0,0,16.0,77777,9,999999999,320,0.1870,0,88,0.190,999.0,99.0 +1991,7,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,28.3,16.1,48,98400,956,1321,406,531,493,174,56300,50100,20000,5120,260,3.1,3,3,16.0,77777,9,999999999,320,0.1870,0,88,0.190,0.0,99.0 +1991,7,5,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.9,14.4,41,98400,1113,1321,403,790,760,149,83900,76800,19000,5820,270,4.1,2,2,16.0,77777,9,999999999,320,0.1870,0,88,0.190,999.0,99.0 +1991,7,5,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.6,13.9,36,98400,1217,1321,415,832,707,181,87700,71200,22000,10100,280,2.1,3,3,16.0,77777,9,999999999,320,0.1870,0,88,0.190,999.0,99.0 +1991,7,5,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.6,13.9,36,98400,1260,1321,447,519,77,446,57400,7900,49800,25500,290,3.6,9,9,16.0,1500,9,999999999,320,0.1870,0,88,0.190,0.0,6.0 +1991,7,5,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.2,13.3,32,98400,1239,1321,455,496,148,356,55300,15900,40400,20180,270,4.1,9,9,16.0,1500,9,999999999,320,0.1870,0,88,0.190,999.0,99.0 +1991,7,5,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.2,14.4,34,98400,1157,1321,457,529,100,441,58300,10300,49200,19710,280,2.6,9,9,16.0,1500,9,999999999,320,0.1870,0,88,0.190,999.0,99.0 +1991,7,5,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,32.2,13.9,33,98300,1018,1321,424,698,688,168,74800,70500,20400,5590,300,2.1,3,3,16.0,77777,9,999999999,320,0.1870,0,88,0.190,0.0,99.0 +1991,7,5,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.2,13.9,33,98300,832,1321,420,512,571,152,54000,57600,17700,3750,280,3.6,2,2,16.0,77777,9,999999999,320,0.1870,0,88,0.190,999.0,99.0 +1991,7,5,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.6,13.9,36,98300,612,1321,415,362,528,117,37600,51300,13900,2380,280,1.0,3,3,16.0,77777,9,999999999,320,0.1870,0,88,0.190,999.0,99.0 +1991,7,5,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,14.4,40,98300,372,1321,405,206,441,82,21800,38200,11100,1500,280,1.0,2,2,16.0,77777,9,999999999,320,0.1870,0,88,0.190,0.0,6.0 +1991,7,5,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,14.4,47,98300,132,1321,395,39,103,29,4200,5000,3700,510,270,1.0,3,3,16.0,77777,9,999999999,320,0.1870,0,88,0.190,999.0,99.0 +1991,7,5,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,15.0,54,98300,1,143,371,0,2,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,320,0.1870,0,88,0.190,999.0,99.0 +1991,7,5,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,23.9,15.6,60,98400,0,0,366,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,320,0.1870,0,88,0.190,0.0,99.0 +1991,7,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.7,16.7,73,98400,0,0,368,0,0,0,0,0,0,0,0,0.0,2,2,24.0,77777,9,999999999,320,0.1870,0,88,0.190,999.0,99.0 +1991,7,5,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,16.1,64,98400,0,0,380,0,0,0,0,0,0,0,0,0.0,3,3,24.0,77777,9,999999999,320,0.1870,0,88,0.190,999.0,99.0 +1991,7,6,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,16.1,66,98400,0,0,377,0,0,0,0,0,0,0,0,0.0,3,3,24.0,77777,9,999999999,320,0.1870,0,88,0.190,0.0,6.0 +1991,7,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,16.1,68,98400,0,0,370,0,0,0,0,0,0,0,0,0.0,2,2,24.0,77777,9,999999999,320,0.1870,0,88,0.190,999.0,99.0 +1991,7,6,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.7,16.7,73,98400,0,0,372,0,0,0,0,0,0,0,0,0.0,3,3,24.0,77777,9,999999999,320,0.1870,0,88,0.190,999.0,99.0 +1991,7,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,21.7,16.7,73,98400,0,0,368,0,0,0,0,0,0,0,0,0.0,2,2,24.0,77777,9,999999999,320,0.1870,0,88,0.190,0.0,99.0 +1991,7,6,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,16.7,76,98400,0,0,369,0,0,0,0,0,0,0,0,0.0,3,3,16.0,77777,9,999999999,320,0.1870,0,88,0.190,999.0,99.0 +1991,7,6,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.7,17.2,76,98400,58,980,386,16,12,16,1800,700,1800,400,180,1.0,9,7,11.2,600,9,999999999,320,0.1870,0,88,0.190,999.0,99.0 +1991,7,6,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,18.9,69,98500,284,1321,413,125,40,116,13600,3400,12900,2620,240,3.1,9,8,11.2,2100,9,999999999,320,0.1870,0,88,0.190,0.0,6.0 +1991,7,6,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,18.9,69,98500,526,1321,421,185,51,164,20200,4900,18300,4570,220,3.1,10,9,11.2,77777,9,999999999,320,0.1870,0,88,0.190,999.0,99.0 +1991,7,6,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,19.4,64,98500,755,1321,432,374,89,323,41000,9100,35800,9540,250,2.6,10,9,11.2,77777,9,999999999,329,0.1870,0,88,0.190,999.0,99.0 +1991,7,6,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,27.2,19.4,62,98600,955,1321,435,262,74,208,29500,7900,23800,6500,220,4.6,10,9,11.2,77777,9,999999999,329,0.1870,0,88,0.190,0.0,99.0 +1991,7,6,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,19.4,55,98500,1112,1321,438,488,213,309,54100,23200,34600,12050,240,3.6,9,8,11.2,77777,9,999999999,329,0.1870,0,88,0.190,999.0,99.0 +1991,7,6,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.6,20.0,53,98500,1216,1321,439,636,232,422,69600,25200,46400,23240,250,3.1,9,7,11.2,77777,9,999999999,340,0.1870,0,88,0.190,999.0,99.0 +1991,7,6,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.2,20.0,49,98500,1259,1321,432,776,519,280,82100,52600,31800,20850,250,3.1,3,3,11.2,77777,9,999999999,340,0.1870,0,88,0.190,0.0,6.0 +1991,7,6,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,33.9,20.0,44,98400,1239,1321,438,894,763,178,94600,77000,22300,11170,170,1.0,2,2,11.2,77777,9,999999999,340,0.1870,0,88,0.190,999.0,99.0 +1991,7,6,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,35.0,19.4,40,98400,1156,1321,448,819,660,241,86800,67100,28000,11290,240,5.1,3,3,11.2,77777,9,999999999,350,0.1870,0,88,0.190,999.0,99.0 +1991,7,6,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,33.9,20.0,44,98400,1017,1321,438,648,600,186,68900,61200,21700,6120,260,3.1,2,2,11.2,77777,9,999999999,350,0.1870,0,88,0.190,0.0,99.0 +1991,7,6,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,33.9,20.6,46,98300,831,1321,443,498,527,166,52200,52900,18800,4050,250,2.1,3,3,11.2,77777,9,999999999,350,0.1870,0,88,0.190,999.0,99.0 +1991,7,6,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,33.9,21.1,47,98300,611,1321,460,212,154,140,23500,15700,16200,3400,240,4.1,9,7,11.2,1500,9,999999999,359,0.1870,0,88,0.190,999.0,99.0 +1991,7,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.2,21.1,52,98300,372,1321,457,142,51,128,15600,4600,14300,3200,220,2.1,9,8,11.2,3000,9,999999999,359,0.1870,0,88,0.190,0.0,6.0 +1991,7,6,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,20.0,52,98400,132,1321,442,36,33,33,4000,1800,3800,690,240,1.0,9,7,11.2,3000,9,999999999,359,0.1870,0,88,0.190,999.0,99.0 +1991,7,6,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,20.0,61,98400,1,121,411,0,1,0,0,0,0,0,0,0.0,3,3,11.2,77777,9,999999999,370,0.1870,0,88,0.190,999.0,99.0 +1991,7,6,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,27.2,20.0,65,98500,0,0,401,0,0,0,0,0,0,0,220,1.5,2,2,11.2,77777,9,999999999,370,0.1870,0,88,0.190,0.0,99.0 +1991,7,6,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,20.0,67,98500,0,0,402,0,0,0,0,0,0,0,230,1.0,3,3,11.2,77777,9,999999999,370,0.1870,0,88,0.190,999.0,99.0 +1991,7,6,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,18.9,61,98500,0,0,399,0,0,0,0,0,0,0,240,2.6,2,2,11.2,77777,9,999999999,379,0.1870,0,88,0.190,999.0,99.0 +1991,7,7,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,19.4,67,98500,0,0,382,0,0,0,0,0,0,0,240,2.1,0,0,11.2,77777,9,999999999,379,0.1870,0,88,0.190,0.0,6.0 +1991,7,7,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,19.4,69,98400,0,0,379,0,0,0,0,0,0,0,240,3.1,0,0,11.2,77777,9,999999999,390,0.1870,0,88,0.190,999.0,99.0 +1991,7,7,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,19.4,74,98400,0,0,373,0,0,0,0,0,0,0,240,2.1,0,0,11.2,77777,9,999999999,390,0.1870,0,88,0.190,999.0,99.0 +1991,7,7,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,23.9,19.4,76,98400,0,0,371,0,0,0,0,0,0,0,240,3.1,0,0,11.2,77777,9,999999999,390,0.1870,0,88,0.190,0.0,99.0 +1991,7,7,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,20.0,79,98500,0,0,384,0,0,0,0,0,0,0,240,2.6,2,2,11.2,77777,9,999999999,400,0.1870,0,88,0.190,999.0,99.0 +1991,7,7,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,20.0,76,98500,57,958,390,15,11,15,1700,600,1700,380,250,2.6,3,3,11.2,77777,9,999999999,400,0.1870,0,88,0.190,999.0,99.0 +1991,7,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,20.0,71,98500,282,1321,392,121,251,67,12600,19400,8500,1220,240,4.6,2,2,11.2,77777,9,999999999,400,0.1870,0,88,0.190,0.0,6.0 +1991,7,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,20.0,69,98500,524,1321,429,180,95,142,19700,9400,16000,3320,250,3.6,9,9,11.2,3000,9,999999999,400,0.1870,0,88,0.190,999.0,99.0 +1991,7,7,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.9,20.6,61,98600,753,1321,411,460,533,155,49800,54500,18700,3450,250,3.6,2,2,11.2,77777,9,999999999,400,0.1870,0,88,0.190,999.0,99.0 +1991,7,7,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,30.6,20.0,53,98600,954,1321,423,653,624,202,68500,63000,22900,5800,260,4.1,3,3,11.2,77777,9,999999999,400,0.1870,0,88,0.190,0.0,99.0 +1991,7,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.8,20.6,49,98600,1111,1321,470,342,79,275,38400,8500,31200,10860,240,3.1,9,9,11.2,77777,9,999999999,400,0.1870,0,88,0.190,999.0,99.0 +1991,7,7,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,33.9,20.0,44,98600,1215,1321,476,563,266,318,63000,29000,36300,17040,260,2.1,9,9,11.2,77777,9,999999999,400,0.1870,0,88,0.190,999.0,99.0 +1991,7,7,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,34.4,21.1,46,98500,1258,1321,442,893,739,189,94200,74400,23100,13250,300,2.6,2,2,11.2,77777,9,999999999,400,0.1870,0,88,0.190,0.0,6.0 +1991,7,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,33.9,21.1,47,98500,1238,1321,477,640,173,478,70300,18400,53000,26990,280,2.6,9,9,11.2,1200,9,999999999,400,0.1870,0,88,0.190,999.0,99.0 +1991,7,7,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,34.4,20.6,45,98500,1156,1321,442,825,676,233,87600,68800,27300,10930,280,2.1,2,2,11.2,77777,9,999999999,400,0.1870,0,88,0.190,999.0,99.0 +1991,7,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,35.0,21.1,44,98400,1017,1321,450,667,571,227,69900,57600,25400,7290,240,1.5,3,3,11.2,77777,9,999999999,400,0.1870,0,88,0.190,0.0,99.0 +1991,7,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,34.4,21.7,48,98400,831,1321,481,265,92,207,29500,9700,23400,5750,260,3.1,9,9,11.2,1200,9,999999999,400,0.1870,0,88,0.190,999.0,99.0 +1991,7,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,33.3,21.1,49,98300,611,1321,440,350,443,145,37200,43800,16900,2940,240,3.1,3,3,11.2,77777,9,999999999,400,0.1870,0,88,0.190,999.0,99.0 +1991,7,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.8,20.0,47,98300,371,1321,432,155,285,75,16500,24700,9600,1360,240,3.6,2,2,11.2,77777,9,999999999,400,0.1870,0,88,0.190,0.0,6.0 +1991,7,7,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,18.9,48,98400,131,1321,425,35,31,32,3800,2000,3600,770,260,2.6,3,3,11.2,77777,9,999999999,390,0.1870,0,88,0.190,999.0,99.0 +1991,7,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,18.9,51,98400,1,121,415,0,0,0,0,0,0,0,250,1.5,2,2,11.2,77777,9,999999999,390,0.1870,0,88,0.190,999.0,99.0 +1991,7,7,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,27.8,20.0,63,98400,0,0,408,0,0,0,0,0,0,0,240,1.0,3,3,11.2,77777,9,999999999,390,0.1870,0,88,0.190,0.0,99.0 +1991,7,7,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,20.0,61,98400,0,0,407,0,0,0,0,0,0,0,240,3.1,2,2,11.2,77777,9,999999999,390,0.1870,0,88,0.190,999.0,99.0 +1991,7,7,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,20.0,63,98300,0,0,408,0,0,0,0,0,0,0,240,3.1,3,3,11.2,77777,9,999999999,390,0.1870,0,88,0.190,999.0,99.0 +1991,7,8,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,20.0,63,98300,0,0,399,0,0,0,0,0,0,0,250,5.1,3,1,11.2,77777,9,999999999,390,0.1870,0,88,0.190,0.0,6.0 +1991,7,8,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,20.6,67,98300,0,0,416,0,0,0,0,0,0,0,270,2.1,9,6,11.2,7500,9,999999999,390,0.1870,0,88,0.190,999.0,99.0 +1991,7,8,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,21.1,71,98400,0,0,434,0,0,0,0,0,0,0,270,2.1,10,9,11.2,3000,9,999999999,390,0.1870,0,88,0.190,999.0,99.0 +1991,7,8,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.6,17.2,81,98600,0,0,395,0,0,0,0,0,0,0,300,5.1,10,9,11.2,1500,9,999999999,390,0.1870,0,88,0.190,999.0,99.0 +1991,7,8,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,17.8,87,98600,0,0,392,0,0,0,0,0,0,0,0,0.0,10,9,11.2,1500,9,999999999,390,0.1870,0,88,0.190,999.0,99.0 +1991,7,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,18.9,93,98500,55,958,394,12,4,12,1300,200,1300,310,240,2.1,10,9,6.4,1500,9,999999999,390,0.1870,0,88,0.190,999.0,99.0 +1991,7,8,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,18.3,93,98500,280,1321,390,73,18,69,8000,1500,7700,1780,200,4.1,10,9,11.2,1500,9,999999999,390,0.1870,0,88,0.190,22.0,6.0 +1991,7,8,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,18.3,90,98500,522,1321,393,161,0,161,18100,0,18100,5960,210,2.1,10,9,11.2,3000,9,999999999,390,0.1870,0,88,0.190,999.0,99.0 +1991,7,8,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,18.9,93,98500,752,1321,394,257,41,233,28200,4100,25800,7430,240,1.0,10,9,11.2,1800,9,999999999,390,0.1870,0,88,0.190,999.0,99.0 +1991,7,8,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,20.6,18.9,90,98500,952,1321,397,294,79,236,32400,8000,26600,8980,210,2.1,10,9,11.2,1800,9,999999999,390,0.1870,0,88,0.190,0.0,99.0 +1991,7,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.7,20.0,90,98600,1110,1321,404,411,111,317,45700,11900,35700,12490,280,1.0,10,9,11.2,1500,9,999999999,379,0.1870,0,88,0.190,999.0,99.0 +1991,7,8,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,20.6,85,98600,1214,1321,414,640,342,325,69200,35800,36200,19560,250,3.1,10,9,11.2,900,9,999999999,379,0.1870,0,88,0.190,999.0,99.0 +1991,7,8,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,20.0,71,98600,1257,1321,426,414,82,336,46500,8800,38100,20690,240,3.1,10,9,11.2,900,9,999999999,379,0.1870,0,88,0.190,9.0,6.0 +1991,7,8,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,20.6,69,98500,1237,1321,433,677,164,523,73900,17400,57500,29460,250,2.6,10,9,11.2,900,9,999999999,379,0.1870,0,88,0.190,999.0,99.0 +1991,7,8,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,21.1,74,98500,1155,1321,410,676,302,411,73600,32800,44900,18480,250,1.5,9,6,11.2,900,9,999999999,379,0.1870,0,88,0.190,999.0,99.0 +1991,7,8,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,25.6,20.6,74,98500,1016,1321,407,617,506,228,67300,52800,26600,7450,210,1.5,9,6,11.2,6000,9,999999999,379,0.1870,0,88,0.190,0.0,99.0 +1991,7,8,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,20.0,76,98500,830,1321,400,456,407,200,48900,41900,22500,4890,210,2.6,9,6,11.2,480,9,999999999,379,0.1870,0,88,0.190,999.0,99.0 +1991,7,8,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,19.4,71,98500,610,1321,422,214,46,193,23500,4500,21400,5620,250,2.6,10,9,11.2,840,9,999999999,379,0.1870,0,88,0.190,999.0,99.0 +1991,7,8,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,19.4,74,98500,370,1321,419,83,17,78,9100,1500,8700,2160,220,1.5,10,9,11.2,77777,9,999999999,379,0.1870,0,88,0.190,0.0,6.0 +1991,7,8,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.7,18.9,84,98500,130,1321,366,41,103,31,4400,4900,3900,560,240,0.5,2,1,11.2,77777,9,999999999,370,0.1870,0,88,0.190,999.0,99.0 +1991,7,8,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.7,19.4,87,98500,1,121,384,0,0,0,0,0,0,0,0,0.0,9,6,11.2,7500,9,999999999,370,0.1870,0,88,0.190,999.0,99.0 +1991,7,8,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,20.6,19.4,93,98600,0,0,361,0,0,0,0,0,0,0,0,0.0,2,1,11.2,77777,9,999999999,370,0.1870,0,88,0.190,0.0,99.0 +1991,7,8,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.6,19.4,93,98600,0,0,361,0,0,0,0,0,0,0,0,0.0,3,1,11.2,77777,9,999999999,370,0.1870,0,88,0.190,999.0,99.0 +1991,7,8,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.6,18.9,90,98600,0,0,361,0,0,0,0,0,0,0,0,0.0,2,1,11.2,77777,9,999999999,370,0.1870,0,88,0.190,999.0,99.0 +1991,7,9,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,17.8,87,98700,0,0,361,0,0,0,0,0,0,0,0,0.0,2,2,11.2,77777,9,999999999,370,0.1860,0,88,0.190,0.0,6.0 +1991,7,9,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,17.8,90,98600,0,0,362,0,0,0,0,0,0,0,0,0.0,3,3,11.2,77777,9,999999999,370,0.1860,0,88,0.190,999.0,99.0 +1991,7,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,16.7,90,98600,0,0,352,0,0,0,0,0,0,0,0,0.0,2,2,11.2,77777,9,999999999,370,0.1860,0,88,0.190,999.0,99.0 +1991,7,9,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,17.8,16.1,90,98600,0,0,352,0,0,0,0,0,0,0,0,0.0,3,3,11.2,77777,9,999999999,370,0.1860,0,88,0.190,0.0,99.0 +1991,7,9,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,16.1,93,98500,0,0,346,0,0,0,0,0,0,0,0,0.0,2,2,11.2,77777,9,999999999,370,0.1860,0,88,0.190,999.0,99.0 +1991,7,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,16.1,93,98600,54,936,368,21,8,21,2400,400,2300,500,0,0.0,9,8,9.6,2700,9,999999999,359,0.1860,0,88,0.190,999.0,99.0 +1991,7,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,16.7,87,98700,278,1321,371,140,193,100,14500,14800,11400,2040,0,0.0,9,7,9.6,2700,9,999999999,359,0.1860,0,88,0.190,0.0,6.0 +1991,7,9,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,16.7,84,98700,520,1321,399,99,0,99,11600,0,11600,4170,0,0.0,10,10,11.2,2700,9,999999999,359,0.1860,0,88,0.190,999.0,99.0 +1991,7,9,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.7,18.3,81,98700,750,1321,414,158,0,158,18600,0,18600,7140,0,0.0,10,10,11.2,2700,9,999999999,359,0.1860,0,88,0.190,999.0,99.0 +1991,7,9,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,23.3,17.8,71,98700,951,1321,422,262,0,262,30700,0,30700,11800,0,0.0,10,10,11.2,7500,9,999999999,359,0.1860,0,88,0.190,0.0,99.0 +1991,7,9,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,17.8,64,98700,1108,1321,432,250,0,250,30100,0,30100,12030,0,0.0,10,10,11.2,3000,9,999999999,370,0.1860,0,88,0.190,999.0,99.0 +1991,7,9,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,17.8,62,98800,1213,1321,435,276,0,276,33400,0,33400,13260,0,0.0,10,10,11.2,3000,9,999999999,370,0.1860,0,88,0.190,999.0,99.0 +1991,7,9,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,15.0,47,98800,1257,1321,441,287,0,287,34900,0,34900,13780,300,1.0,10,10,11.2,3000,9,999999999,370,0.1860,0,88,0.190,0.0,6.0 +1991,7,9,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,16.7,51,98700,1237,1321,425,500,212,301,56300,23100,34600,17680,0,0.0,9,8,11.2,3000,9,999999999,370,0.1860,0,88,0.190,999.0,99.0 +1991,7,9,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,16.7,54,98700,1155,1321,440,261,0,261,31500,0,31500,12560,330,1.0,10,10,11.2,3000,9,999999999,370,0.1860,0,88,0.190,999.0,99.0 +1991,7,9,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,26.1,16.7,56,98700,1016,1321,437,226,0,226,27000,0,27000,10840,330,1.0,10,10,11.2,3000,9,999999999,370,0.1860,0,88,0.190,0.0,99.0 +1991,7,9,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,16.1,56,98600,830,1321,433,179,0,179,21200,0,21200,8260,0,0.0,10,10,11.2,3000,9,999999999,370,0.1860,0,88,0.190,999.0,99.0 +1991,7,9,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,15.6,56,98600,609,1321,429,122,0,122,14300,0,14300,5280,340,1.0,10,10,11.2,3000,9,999999999,370,0.1860,0,88,0.190,999.0,99.0 +1991,7,9,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,15.0,56,98600,369,1321,425,63,0,63,7300,0,7300,2540,0,0.0,10,10,11.2,3000,9,999999999,370,0.1860,0,88,0.190,999.0,99.0 +1991,7,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,17.8,71,98600,129,1321,422,20,0,20,2300,0,2300,730,0,0.0,10,10,11.2,3000,9,999999999,370,0.1860,0,88,0.190,999.0,99.0 +1991,7,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,16.7,71,98600,1,99,414,0,0,0,0,0,0,0,0,0.0,10,10,11.2,3000,9,999999999,370,0.1860,0,88,0.190,999.0,99.0 +1991,7,9,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.8,17.8,73,98700,0,0,419,0,0,0,0,0,0,0,0,0.0,10,10,11.2,3000,9,999999999,370,0.1860,0,88,0.190,999.0,99.0 +1991,7,9,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,18.3,79,98600,0,0,416,0,0,0,0,0,0,0,0,0.0,10,10,11.2,3000,9,999999999,370,0.1860,0,88,0.190,999.0,99.0 +1991,7,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.7,18.9,84,98600,0,0,414,0,0,0,0,0,0,0,0,0.0,10,10,11.2,3000,9,999999999,370,0.1860,0,88,0.190,999.0,99.0 +1991,7,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.6,18.9,90,98500,0,0,375,0,0,0,0,0,0,0,0,0.0,10,5,11.2,1500,9,999999999,370,0.1860,0,88,0.190,999.0,99.0 +1991,7,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.6,18.3,87,98500,0,0,374,0,0,0,0,0,0,0,0,0.0,10,5,11.2,3600,9,999999999,370,0.1860,0,88,0.190,999.0,99.0 +1991,7,10,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,18.3,90,98400,0,0,371,0,0,0,0,0,0,0,0,0.0,10,5,11.2,3600,9,999999999,379,0.1860,0,88,0.190,999.0,99.0 +1991,7,10,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,20.6,18.3,87,98400,0,0,374,0,0,0,0,0,0,0,0,0.0,10,5,11.2,3600,9,999999999,379,0.1860,0,88,0.190,0.0,99.0 +1991,7,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,18.3,90,98400,0,0,368,0,0,0,0,0,0,0,0,0.0,9,4,11.2,3600,9,999999999,379,0.1860,0,88,0.190,999.0,99.0 +1991,7,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.6,18.3,87,98400,52,914,374,17,13,16,1800,700,1800,400,0,0.0,10,5,9.6,3600,9,999999999,379,0.1860,0,88,0.190,999.0,99.0 +1991,7,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,18.9,93,98500,276,1322,372,108,167,73,11400,12800,8800,1390,0,0.0,10,5,4.0,2100,9,999999999,379,0.1860,0,88,0.190,999.0,99.0 +1991,7,10,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.9,17.8,93,98500,518,1322,365,217,114,172,23500,11100,19100,4010,0,0.0,10,5,3.2,900,9,999999999,379,0.1860,0,88,0.190,999.0,99.0 +1991,7,10,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,17.8,97,98500,748,1322,362,509,588,176,54500,60000,20500,3950,0,0.0,10,5,3.2,900,9,999999999,370,0.1860,0,88,0.190,999.0,99.0 +1991,7,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,19.4,18.3,93,98400,949,1322,368,575,505,212,62500,52600,24700,6100,0,0.0,10,5,3.2,1800,9,999999999,370,0.1860,0,88,0.190,0.0,99.0 +1991,7,10,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,18.9,87,98500,1107,1322,377,695,509,269,75600,53200,30900,11010,0,0.0,10,5,4.4,1800,9,999999999,370,0.1860,0,88,0.190,999.0,99.0 +1991,7,10,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.7,18.9,84,98500,1212,1322,378,786,492,334,84700,51500,37400,19940,0,0.0,9,4,9.6,2400,9,999999999,370,0.1860,0,88,0.190,999.0,99.0 +1991,7,10,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,18.9,79,98500,1256,1322,386,622,380,260,69100,39900,31100,19400,0,0.0,10,5,9.6,600,9,999999999,370,0.1860,0,88,0.190,11.0,6.0 +1991,7,10,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,18.3,71,98400,1236,1322,391,777,489,320,84500,51200,36500,21450,0,0.0,10,5,9.6,750,9,999999999,370,0.1860,0,88,0.190,999.0,99.0 +1991,7,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,18.9,71,98400,1154,1322,395,641,432,262,70100,45300,30500,12360,0,0.0,10,5,11.2,750,9,999999999,359,0.1860,0,88,0.190,999.0,99.0 +1991,7,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,25.6,19.4,69,98400,1015,1322,402,594,552,169,63500,56500,20000,5590,0,0.0,10,5,11.2,2400,9,999999999,359,0.1860,0,88,0.190,0.0,99.0 +1991,7,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,16.7,54,98400,829,1322,389,583,770,99,62000,77300,13400,2450,0,0.0,3,1,9.6,77777,9,999999999,359,0.1860,0,88,0.190,999.0,99.0 +1991,7,10,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,18.3,62,98400,608,1322,388,365,621,79,39100,61200,10900,1690,0,0.0,2,1,9.6,77777,9,999999999,359,0.1860,0,88,0.190,999.0,99.0 +1991,7,10,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,18.3,64,98400,368,1322,385,195,463,66,20200,40000,9000,1230,0,0.0,3,1,11.2,77777,9,999999999,359,0.1860,0,88,0.190,999.0,99.0 +1991,7,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,18.9,71,98400,127,1322,380,46,201,27,4900,10100,3900,480,0,0.0,2,1,11.2,77777,9,999999999,350,0.1860,0,88,0.190,999.0,99.0 +1991,7,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.8,19.4,81,98400,1,99,372,0,3,0,0,0,0,0,0,0.0,3,1,11.2,77777,9,999999999,350,0.1860,0,88,0.190,999.0,99.0 +1991,7,10,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,21.1,19.4,90,98500,0,0,364,0,0,0,0,0,0,0,0,0.0,2,1,11.2,77777,9,999999999,350,0.1860,0,88,0.190,0.0,99.0 +1991,7,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.6,19.4,93,98500,0,0,354,0,0,0,0,0,0,0,0,0.0,0,0,11.2,77777,9,999999999,350,0.1860,0,88,0.190,999.0,99.0 +1991,7,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,18.3,93,98500,0,0,347,0,0,0,0,0,0,0,0,0.0,0,0,8.0,77777,9,999999999,350,0.1860,0,88,0.190,999.0,99.0 +1991,7,11,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,18.3,93,98500,0,0,347,0,0,0,0,0,0,0,0,0.0,0,0,6.4,77777,9,999999999,350,0.1860,0,88,0.190,0.0,6.0 +1991,7,11,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,18.9,93,98500,0,0,351,0,0,0,0,0,0,0,0,0.0,0,0,4.8,77777,9,999999999,340,0.1860,0,88,0.190,999.0,99.0 +1991,7,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.9,18.3,96,98500,0,0,398,0,0,0,0,0,0,0,0,0.0,10,10,3.2,77777,9,999999999,340,0.1860,0,88,0.190,999.0,99.0 +1991,7,11,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,17.8,17.2,96,98500,0,0,391,0,0,0,0,0,0,0,0,0.0,10,10,3.2,77777,9,999999999,340,0.1860,0,88,0.190,0.0,99.0 +1991,7,11,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,17.8,97,98500,0,0,353,0,0,0,0,0,0,0,0,0.0,2,2,3.2,77777,9,999999999,340,0.1860,0,88,0.190,999.0,99.0 +1991,7,11,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.7,16.1,96,98600,51,914,347,12,32,10,1300,1100,1300,160,0,0.0,3,3,2.8,77777,9,999999999,340,0.1860,0,88,0.190,999.0,99.0 +1991,7,11,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,17.2,87,98600,273,1322,358,131,301,69,13600,22900,8900,1260,0,0.0,2,2,3.2,77777,9,999999999,329,0.1860,0,88,0.190,0.0,6.0 +1991,7,11,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.7,17.8,79,98700,516,1322,373,305,526,99,31600,49500,12200,1920,0,0.0,3,3,4.8,77777,9,999999999,340,0.1860,0,88,0.190,999.0,99.0 +1991,7,11,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,17.8,69,98700,746,1322,399,373,315,195,40600,33300,21800,4520,0,0.0,9,7,8.0,7500,9,999999999,340,0.1860,0,88,0.190,999.0,99.0 +1991,7,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,26.1,16.1,54,98800,948,1322,436,257,0,257,30100,0,30100,11620,120,2.1,10,10,11.2,77777,9,999999999,350,0.1860,0,88,0.190,0.0,99.0 +1991,7,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,15.0,49,98800,1106,1322,438,308,0,308,36400,0,36400,14100,110,2.6,10,10,11.2,77777,9,999999999,350,0.1860,0,88,0.190,999.0,99.0 +1991,7,11,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,15.0,44,98800,1211,1322,447,341,0,341,40600,0,40600,15570,100,2.1,10,10,11.2,4500,9,999999999,359,0.1860,0,88,0.190,999.0,99.0 +1991,7,11,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,15.6,47,98800,1255,1322,445,355,0,355,42400,0,42400,16190,80,1.0,10,10,11.2,4500,9,999999999,359,0.1860,0,88,0.190,0.0,6.0 +1991,7,11,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,16.1,48,98700,1235,1322,427,825,469,386,87900,49000,42000,25950,120,1.5,9,8,11.2,4500,9,999999999,370,0.1860,0,88,0.190,999.0,99.0 +1991,7,11,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,15.6,46,98700,1153,1322,420,496,301,233,55000,31600,27400,10910,0,0.0,9,7,11.2,4500,9,999999999,370,0.1860,0,88,0.190,999.0,99.0 +1991,7,11,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,27.8,15.0,46,98600,1014,1322,423,549,191,402,59700,20200,44200,13550,150,1.0,9,8,11.2,3000,9,999999999,379,0.1860,0,88,0.190,0.0,99.0 +1991,7,11,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,16.1,49,98600,828,1322,418,299,140,211,33300,14800,24000,5850,180,1.0,9,7,11.2,3000,9,999999999,379,0.1860,0,88,0.190,999.0,99.0 +1991,7,11,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,16.1,51,98600,607,1322,421,302,88,261,33000,8800,28900,6990,180,1.0,9,8,11.2,3000,9,999999999,379,0.1860,0,88,0.190,999.0,99.0 +1991,7,11,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,16.7,54,98500,367,1322,394,185,368,83,19500,31700,10700,1520,0,0.0,2,2,11.2,77777,9,999999999,390,0.1860,0,88,0.190,0.0,6.0 +1991,7,11,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,18.3,66,98600,126,1322,412,48,12,46,5100,0,5100,1300,0,0.0,9,8,11.2,3000,9,999999999,390,0.1860,0,88,0.190,999.0,99.0 +1991,7,11,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,17.8,67,98600,0,99,401,0,0,0,0,0,0,0,0,0.0,9,7,11.2,3000,9,999999999,400,0.1860,0,88,0.190,999.0,99.0 +1991,7,11,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,23.3,18.9,76,98600,0,0,403,0,0,0,0,0,0,0,0,0.0,9,8,11.2,3000,9,999999999,400,0.1860,0,88,0.190,0.0,99.0 +1991,7,11,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.8,19.4,81,98600,0,0,421,0,0,0,0,0,0,0,0,0.0,10,10,11.2,3000,9,999999999,409,0.1860,0,88,0.190,999.0,99.0 +1991,7,11,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,19.4,84,98600,0,0,418,0,0,0,0,0,0,0,0,0.0,10,10,11.2,3000,9,999999999,409,0.1860,0,88,0.190,999.0,99.0 +1991,7,12,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,18.9,82,98500,0,0,417,0,0,0,0,0,0,0,0,0.0,10,10,11.2,3000,9,999999999,419,0.1860,0,88,0.190,0.0,6.0 +1991,7,12,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,18.3,79,98500,0,0,416,0,0,0,0,0,0,0,0,0.0,10,10,11.2,3000,9,999999999,419,0.1860,0,88,0.190,999.0,99.0 +1991,7,12,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,18.3,79,98400,0,0,416,0,0,0,0,0,0,0,0,0.0,10,10,11.2,3000,9,999999999,430,0.1860,0,88,0.190,999.0,99.0 +1991,7,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,21.1,18.3,84,98400,0,0,410,0,0,0,0,0,0,0,0,0.0,10,10,11.2,3600,9,999999999,430,0.1860,0,88,0.190,0.0,99.0 +1991,7,12,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.7,18.3,81,98400,0,0,414,0,0,0,0,0,0,0,0,0.0,10,10,9.6,3600,9,999999999,430,0.1860,0,88,0.190,999.0,99.0 +1991,7,12,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,19.4,90,98400,49,892,412,8,0,8,1000,0,1000,310,0,0.0,10,10,4.8,2100,9,999999999,440,0.1860,0,88,0.190,999.0,99.0 +1991,7,12,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,20.0,93,98400,271,1322,412,52,0,52,6000,0,6000,1950,0,0.0,10,10,2.4,1800,9,999999999,440,0.1860,0,88,0.190,3.0,6.0 +1991,7,12,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.7,20.6,93,98300,514,1322,417,90,0,90,10600,0,10600,3840,140,2.1,10,10,2.4,1800,9,999999999,440,0.1860,0,88,0.190,999.0,99.0 +1991,7,12,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,21.1,93,98400,744,1322,420,145,0,145,17200,0,17200,6640,170,1.5,10,10,2.4,2400,9,999999999,440,0.1860,0,88,0.190,999.0,99.0 +1991,7,12,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.8,21.1,90,98400,946,1322,424,199,0,199,23800,0,23800,9530,160,2.1,10,10,3.2,2400,9,999999999,430,0.1860,0,88,0.190,999.0,99.0 +1991,7,12,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,21.7,91,98400,1105,1322,427,243,0,243,29300,0,29300,11750,230,0.5,10,10,3.2,2400,9,999999999,430,0.1860,0,88,0.190,999.0,99.0 +1991,7,12,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,22.2,94,98300,1210,1322,428,227,0,227,27900,0,27900,11300,0,0.0,10,10,3.2,360,9,999999999,430,0.1860,0,88,0.190,999.0,99.0 +1991,7,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,23.9,88,98300,1254,1322,434,662,288,389,73400,31400,43600,25350,250,0.5,9,9,6.4,600,9,999999999,430,0.1860,0,88,0.190,1.0,6.0 +1991,7,12,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,21.7,77,98200,1235,1322,444,277,0,277,33600,0,33600,13340,270,1.0,10,10,11.2,1050,9,999999999,419,0.1860,0,88,0.190,999.0,99.0 +1991,7,12,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,22.2,79,98100,1153,1322,444,255,0,255,30800,0,30800,12320,30,1.0,10,10,11.2,1350,9,999999999,419,0.1860,0,88,0.190,999.0,99.0 +1991,7,12,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,25.6,21.7,79,98100,1014,1322,441,218,0,218,26100,0,26100,10520,0,0.0,10,10,11.2,1350,9,999999999,419,0.1860,0,88,0.190,0.0,99.0 +1991,7,12,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,21.7,69,98100,827,1322,441,335,33,314,37800,3200,35800,12210,260,1.0,9,9,11.2,1350,9,999999999,409,0.1860,0,88,0.190,999.0,99.0 +1991,7,12,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,22.2,74,98100,606,1322,438,234,95,191,25800,9400,21500,5560,0,0.0,9,9,11.2,1350,9,999999999,409,0.1860,0,88,0.190,999.0,99.0 +1991,7,12,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,21.7,72,98100,366,1322,407,176,158,132,18900,13900,15000,2920,270,1.5,3,3,11.2,77777,9,999999999,409,0.1860,0,88,0.190,0.0,6.0 +1991,7,12,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,21.7,79,98100,124,1322,394,36,24,34,4000,1500,3800,800,270,1.0,2,2,11.2,77777,9,999999999,400,0.1860,0,88,0.190,999.0,99.0 +1991,7,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,21.7,85,98100,0,77,422,0,0,0,0,0,0,0,250,1.0,9,9,11.2,77777,9,999999999,400,0.1860,0,88,0.190,999.0,99.0 +1991,7,12,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,23.3,21.1,87,98100,0,0,382,0,0,0,0,0,0,0,240,1.0,2,2,11.2,77777,9,999999999,400,0.1860,0,88,0.190,0.0,99.0 +1991,7,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,21.7,88,98100,0,0,419,0,0,0,0,0,0,0,250,3.1,9,9,11.2,77777,9,999999999,400,0.1860,0,88,0.190,999.0,99.0 +1991,7,12,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,21.1,87,98100,0,0,415,0,0,0,0,0,0,0,250,3.1,9,9,11.2,77777,9,999999999,390,0.1860,0,88,0.190,999.0,99.0 +1991,7,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,20.6,91,98100,0,0,393,0,0,0,0,0,0,0,240,2.1,9,7,16.0,77777,9,999999999,390,0.1860,0,88,0.190,0.0,6.0 +1991,7,13,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,20.0,87,98100,0,0,379,0,0,0,0,0,0,0,240,2.1,3,3,16.0,77777,9,999999999,390,0.1860,0,88,0.190,999.0,99.0 +1991,7,13,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.7,18.9,84,98100,0,0,371,0,0,0,0,0,0,0,280,2.1,2,2,16.0,77777,9,999999999,379,0.1860,0,88,0.190,999.0,99.0 +1991,7,13,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,20.6,18.3,87,98000,0,0,368,0,0,0,0,0,0,0,270,2.1,3,3,16.0,77777,9,999999999,379,0.1860,0,88,0.190,0.0,99.0 +1991,7,13,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,18.3,93,98100,0,0,359,0,0,0,0,0,0,0,0,0.0,2,2,16.0,77777,9,999999999,379,0.1860,0,88,0.190,999.0,99.0 +1991,7,13,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,18.3,93,98100,47,870,382,10,2,10,1200,0,1200,370,0,0.0,9,8,11.2,77777,9,999999999,370,0.1860,0,88,0.190,999.0,99.0 +1991,7,13,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,19.4,84,98100,269,1322,392,91,70,77,9900,5500,8800,1660,240,1.5,9,7,11.2,77777,9,999999999,370,0.1860,0,88,0.190,0.0,6.0 +1991,7,13,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,19.4,76,98200,512,1322,407,212,138,158,23000,13500,17800,3680,250,1.0,9,8,11.2,77777,9,999999999,370,0.1860,0,88,0.190,999.0,99.0 +1991,7,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,18.9,65,98200,743,1322,394,432,441,184,46000,44900,20700,4130,290,2.1,2,2,11.2,77777,9,999999999,370,0.1860,0,88,0.190,999.0,99.0 +1991,7,13,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,27.8,18.3,56,98200,944,1322,406,678,667,201,71100,67300,22900,5680,290,3.1,3,3,11.2,77777,9,999999999,359,0.1860,0,88,0.190,0.0,99.0 +1991,7,13,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.9,17.8,51,98200,1103,1322,426,626,407,286,67600,42500,32000,11610,290,3.6,9,7,11.2,1200,9,999999999,359,0.1860,0,88,0.190,999.0,99.0 +1991,7,13,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,17.2,48,98200,1209,1322,435,446,257,210,50200,27000,25500,12150,300,4.1,9,8,19.2,1200,9,999999999,359,0.1860,0,88,0.190,999.0,99.0 +1991,7,13,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,16.7,45,98200,1253,1322,412,914,729,222,98400,74800,27300,16100,290,3.1,2,2,19.2,77777,9,999999999,350,0.1860,0,88,0.190,0.0,6.0 +1991,7,13,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.6,16.1,42,98200,1234,1322,418,937,768,220,100800,78700,27100,14330,300,4.1,3,3,16.0,77777,9,999999999,350,0.1860,0,88,0.190,999.0,99.0 +1991,7,13,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,17.2,48,98100,1152,1322,409,840,745,190,90500,76500,23600,8910,300,3.6,2,2,16.0,77777,9,999999999,350,0.1860,0,88,0.190,999.0,99.0 +1991,7,13,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,28.9,18.9,55,98200,1013,1322,413,509,448,165,54500,45900,19300,5440,340,4.1,3,3,16.0,77777,9,999999999,340,0.1860,0,88,0.190,0.0,99.0 +1991,7,13,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.9,16.7,48,98200,826,1322,406,578,701,140,61300,70900,16900,3470,340,5.1,2,2,16.0,77777,9,999999999,340,0.1860,0,88,0.190,999.0,99.0 +1991,7,13,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,17.2,54,98200,605,1322,401,354,464,141,37600,45800,16600,2850,320,7.2,3,3,16.0,77777,9,999999999,340,0.1860,0,88,0.190,999.0,99.0 +1991,7,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,18.3,69,98300,364,1322,402,78,32,69,8600,2800,7800,1930,360,5.1,9,7,16.0,1350,9,999999999,329,0.1860,0,88,0.190,0.0,6.0 +1991,7,13,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,17.8,71,98300,123,1322,402,44,20,42,4800,1300,4700,930,360,3.1,9,8,16.0,1050,9,999999999,329,0.1860,0,88,0.190,999.0,99.0 +1991,7,13,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,18.3,84,98400,0,77,410,0,0,0,0,0,0,0,10,2.1,10,10,11.2,1050,9,999999999,329,0.1860,0,88,0.190,999.0,99.0 +1991,7,13,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,20.6,18.3,87,98400,0,0,388,0,0,0,0,0,0,0,360,2.1,9,8,11.2,1050,9,999999999,320,0.1860,0,88,0.190,0.0,99.0 +1991,7,13,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,17.8,87,98500,0,0,361,0,0,0,0,0,0,0,360,2.1,2,2,9.6,77777,9,999999999,320,0.1860,0,88,0.190,999.0,99.0 +1991,7,13,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,17.8,87,98600,0,0,384,0,0,0,0,0,0,0,360,2.1,9,8,9.6,1050,9,999999999,320,0.1860,0,88,0.190,999.0,99.0 +1991,7,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,17.2,87,98600,0,0,389,0,0,0,0,0,0,0,350,1.0,9,9,9.6,990,9,999999999,309,0.1860,0,88,0.190,0.0,6.0 +1991,7,14,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,17.2,87,98600,0,0,389,0,0,0,0,0,0,0,350,1.0,9,9,9.6,1050,9,999999999,309,0.1860,0,88,0.190,999.0,99.0 +1991,7,14,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,17.2,87,98600,0,0,389,0,0,0,0,0,0,0,350,1.0,9,9,9.6,1050,9,999999999,309,0.1860,0,88,0.190,999.0,99.0 +1991,7,14,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,19.4,17.2,87,98600,0,0,389,0,0,0,0,0,0,0,350,1.5,9,9,9.6,1050,9,999999999,300,0.1860,0,88,0.190,0.0,99.0 +1991,7,14,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,17.2,87,98600,0,0,389,0,0,0,0,0,0,0,350,1.5,9,9,9.6,1050,9,999999999,300,0.1860,0,88,0.190,999.0,99.0 +1991,7,14,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.9,16.7,87,98700,46,870,385,9,0,9,1100,0,1100,340,360,1.0,9,9,8.0,1800,9,999999999,300,0.1860,0,88,0.190,999.0,99.0 +1991,7,14,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,17.2,84,98800,266,1322,364,95,134,68,10100,10100,8100,1280,360,1.0,3,3,6.4,77777,9,999999999,290,0.1860,0,88,0.190,0.0,6.0 +1991,7,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,16.7,76,98800,510,1322,365,270,350,135,28200,33200,15400,2640,30,2.1,2,2,9.6,77777,9,999999999,290,0.1860,0,88,0.190,999.0,99.0 +1991,7,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,15.6,62,98900,741,1322,379,441,435,197,46600,44200,21800,4440,360,3.1,3,3,11.2,77777,9,999999999,290,0.1860,0,88,0.190,999.0,99.0 +1991,7,14,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,25.0,14.4,52,98900,943,1322,382,647,566,242,69200,58800,27200,6960,360,2.6,2,2,11.2,77777,9,999999999,290,0.1860,0,88,0.190,0.0,99.0 +1991,7,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,13.3,47,99000,1102,1322,388,782,571,306,83800,59600,34000,12420,30,1.5,3,3,19.2,77777,9,999999999,290,0.1860,0,88,0.190,999.0,99.0 +1991,7,14,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,13.3,45,99000,1207,1322,420,334,117,227,38300,12600,26700,11430,360,3.1,9,9,19.2,1200,9,999999999,279,0.1860,0,88,0.190,999.0,99.0 +1991,7,14,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,12.8,42,99000,1252,1322,393,868,547,349,93600,57200,39300,25630,340,3.1,3,3,19.2,77777,9,999999999,279,0.1860,0,88,0.190,0.0,6.0 +1991,7,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,13.3,44,99000,1233,1322,390,884,641,286,93300,64800,32700,18250,40,2.6,2,2,19.2,77777,9,999999999,279,0.1860,0,88,0.190,999.0,99.0 +1991,7,14,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,12.2,41,99000,1151,1322,392,805,575,304,86900,60100,34500,14280,40,3.1,3,3,19.2,77777,9,999999999,279,0.1860,0,88,0.190,999.0,99.0 +1991,7,14,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,27.8,12.8,40,99000,1012,1322,395,667,586,218,70000,59200,24600,6960,50,3.6,2,2,19.2,77777,9,999999999,279,0.1860,0,88,0.190,0.0,99.0 +1991,7,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,12.2,38,99000,825,1322,398,527,452,244,55300,46400,26200,6050,20,2.6,3,3,19.2,77777,9,999999999,270,0.1860,0,88,0.190,999.0,99.0 +1991,7,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,12.8,42,99000,604,1322,389,335,367,167,36000,37400,18900,3580,40,2.6,2,2,19.2,77777,9,999999999,270,0.1860,0,88,0.190,999.0,99.0 +1991,7,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,13.9,47,99000,363,1322,391,161,245,94,17200,21400,11300,1820,10,1.0,3,3,19.2,77777,9,999999999,270,0.1860,0,88,0.190,999.0,99.0 +1991,7,14,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,14.4,55,99000,121,1322,377,34,30,31,3700,1900,3500,740,0,0.0,2,2,19.2,77777,9,999999999,270,0.1860,0,88,0.190,999.0,99.0 +1991,7,14,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.7,16.1,70,99000,0,55,356,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,270,0.1860,0,88,0.190,999.0,99.0 +1991,7,14,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,21.1,15.6,71,99100,0,0,353,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,259,0.1860,0,88,0.190,0.0,99.0 +1991,7,14,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.6,16.7,78,99100,0,0,351,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,259,0.1860,0,88,0.190,999.0,99.0 +1991,7,14,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.9,15.6,81,99100,0,0,342,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,259,0.1860,0,88,0.190,999.0,99.0 +1991,7,15,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,15.6,84,99200,0,0,339,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,259,0.1860,0,88,0.190,0.0,6.0 +1991,7,15,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,15.6,90,99200,0,0,334,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,250,0.1860,0,88,0.190,999.0,99.0 +1991,7,15,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.8,15.0,84,99200,0,0,336,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,250,0.1860,0,88,0.190,999.0,99.0 +1991,7,15,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,16.7,14.4,86,99200,0,0,331,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,250,0.1860,0,88,0.190,0.0,99.0 +1991,7,15,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,13.3,83,99200,0,0,327,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,250,0.1860,0,88,0.190,999.0,99.0 +1991,7,15,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.7,12.8,78,99300,44,848,329,10,25,9,1200,800,1100,140,0,0.0,0,0,16.0,77777,9,999999999,250,0.1860,0,88,0.190,999.0,99.0 +1991,7,15,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,13.3,73,99400,263,1322,337,119,316,56,12600,23700,7900,1000,70,1.0,0,0,16.0,77777,9,999999999,240,0.1860,0,88,0.190,0.0,6.0 +1991,7,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,13.3,61,99500,507,1322,350,304,552,91,31500,51900,11600,1770,90,1.0,0,0,16.0,77777,9,999999999,240,0.1860,0,88,0.190,999.0,99.0 +1991,7,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,12.2,50,99500,739,1322,359,504,681,123,53300,68200,15100,2800,100,3.1,0,0,16.0,77777,9,999999999,240,0.1860,0,88,0.190,999.0,99.0 +1991,7,15,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,24.4,12.2,46,99600,941,1322,365,686,756,147,73500,77300,18300,4280,120,3.1,0,0,16.0,77777,9,999999999,240,0.1860,0,88,0.190,0.0,99.0 +1991,7,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,12.2,43,99600,1101,1322,371,831,801,164,87200,80600,20000,6010,120,2.1,0,0,16.0,77777,9,999999999,229,0.1860,0,88,0.190,999.0,99.0 +1991,7,15,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,14.4,47,99600,1206,1322,386,877,754,189,91900,75700,22600,9920,120,1.0,3,1,16.0,77777,9,999999999,229,0.1860,0,88,0.190,999.0,99.0 +1991,7,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,13.9,44,99600,1251,1322,388,912,771,181,96400,77800,22600,12150,20,1.0,2,1,16.0,77777,9,999999999,229,0.1860,0,88,0.190,0.0,6.0 +1991,7,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,15.0,44,99500,1232,1322,395,912,763,200,95200,76500,23700,11820,30,1.0,3,1,19.2,77777,9,999999999,220,0.1860,0,88,0.190,999.0,99.0 +1991,7,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,11.1,34,99400,1150,1322,390,835,762,172,87800,76700,20900,7320,30,2.1,2,1,19.2,77777,9,999999999,220,0.1860,0,88,0.190,999.0,99.0 +1991,7,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,28.9,10.0,31,99400,1011,1322,392,718,723,165,77000,74100,20200,5420,10,1.0,3,1,19.2,77777,9,999999999,220,0.1860,0,88,0.190,0.0,99.0 +1991,7,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.9,10.6,32,99400,824,1322,393,545,645,142,57600,65200,16900,3500,30,1.0,2,1,19.2,77777,9,999999999,209,0.1860,0,88,0.190,999.0,99.0 +1991,7,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,11.1,34,99400,602,1322,390,359,540,112,37300,52400,13500,2280,360,0.5,3,1,19.2,77777,9,999999999,209,0.1860,0,88,0.190,999.0,99.0 +1991,7,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,11.7,38,99300,361,1322,378,188,432,70,19300,36900,9300,1280,30,1.0,0,0,19.2,77777,9,999999999,209,0.1860,0,88,0.190,0.0,6.0 +1991,7,15,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,12.8,47,99300,119,1322,368,38,107,29,4100,4700,3700,520,120,1.0,0,0,19.2,77777,9,999999999,200,0.1860,0,88,0.190,999.0,99.0 +1991,7,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.7,12.8,57,99300,0,55,352,0,0,0,0,0,0,0,0,0.0,0,0,19.2,77777,9,999999999,200,0.1860,0,88,0.190,999.0,99.0 +1991,7,15,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,20.6,15.0,70,99400,0,0,349,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,200,0.1860,0,88,0.190,0.0,99.0 +1991,7,15,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.9,14.4,75,99400,0,0,341,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,189,0.1860,0,88,0.190,999.0,99.0 +1991,7,15,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.7,14.4,86,99400,0,0,331,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,189,0.1860,0,88,0.190,999.0,99.0 +1991,7,16,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,14.4,80,99400,0,0,336,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,189,0.1870,0,88,0.190,0.0,6.0 +1991,7,16,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.6,13.9,90,99400,0,0,325,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,179,0.1870,0,88,0.190,999.0,99.0 +1991,7,16,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,13.9,87,99500,0,0,327,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,179,0.1870,0,88,0.190,999.0,99.0 +1991,7,16,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,13.9,12.8,93,99400,0,0,316,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,179,0.1870,0,88,0.190,0.0,99.0 +1991,7,16,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,12.8,90,99500,0,0,319,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,179,0.1870,0,88,0.190,999.0,99.0 +1991,7,16,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.9,12.2,89,99400,42,826,316,9,8,9,1000,400,1000,230,0,0.0,0,0,11.2,77777,9,999999999,170,0.1870,0,88,0.190,999.0,99.0 +1991,7,16,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,12.8,73,99500,261,1322,334,108,223,64,11500,16600,8200,1190,0,0.0,0,0,16.0,77777,9,999999999,170,0.1870,0,88,0.190,0.0,6.0 +1991,7,16,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.6,13.9,65,99600,505,1322,348,288,464,111,30700,44100,13800,2120,0,0.0,0,0,16.0,77777,9,999999999,170,0.1870,0,88,0.190,999.0,99.0 +1991,7,16,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,13.3,50,99600,737,1322,366,490,606,152,51000,60100,17500,3340,0,0.0,0,0,16.0,77777,9,999999999,170,0.1870,0,88,0.190,999.0,99.0 +1991,7,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,26.1,11.7,41,99700,939,1322,372,676,691,184,71200,70000,21400,5210,110,1.5,0,0,16.0,77777,9,999999999,170,0.1870,0,88,0.190,0.0,99.0 +1991,7,16,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,10.0,33,99600,1099,1322,379,824,742,206,87700,75700,24600,8180,90,1.5,0,0,16.0,77777,9,999999999,179,0.1870,0,88,0.190,999.0,99.0 +1991,7,16,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,10.0,32,99600,1205,1322,381,922,770,220,98900,78800,26900,12500,120,2.1,0,0,16.0,77777,9,999999999,179,0.1870,0,88,0.190,999.0,99.0 +1991,7,16,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,8.9,29,99600,1250,1322,383,964,781,225,103600,80000,27800,15980,120,2.1,0,0,16.0,77777,9,999999999,179,0.1870,0,88,0.190,0.0,6.0 +1991,7,16,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,10.0,30,99500,1231,1322,387,946,776,223,101600,79500,27400,14280,160,1.0,0,0,16.0,77777,9,999999999,179,0.1870,0,88,0.190,999.0,99.0 +1991,7,16,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,10.0,30,99400,1149,1322,387,869,755,213,92900,77200,25700,9810,210,1.0,0,0,16.0,77777,9,999999999,179,0.1870,0,88,0.190,999.0,99.0 +1991,7,16,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,30.6,7.8,24,99400,1010,1322,390,740,714,194,78300,72600,22800,6250,160,2.1,0,0,16.0,77777,9,999999999,189,0.1870,0,88,0.190,0.0,99.0 +1991,7,16,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,10.6,30,99400,823,1322,391,568,644,166,59400,64600,19100,4000,0,0.0,0,0,16.0,77777,9,999999999,189,0.1870,0,88,0.190,999.0,99.0 +1991,7,16,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,11.7,34,99300,601,1322,389,369,529,128,39600,52200,15800,2550,150,1.0,0,0,16.0,77777,9,999999999,189,0.1870,0,88,0.190,999.0,99.0 +1991,7,16,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,12.2,36,99300,360,1322,387,174,333,83,18300,28400,10500,1530,150,1.0,0,0,16.0,77777,9,999999999,189,0.1870,0,88,0.190,0.0,6.0 +1991,7,16,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,12.8,41,99300,117,1322,379,34,50,30,3800,2600,3500,620,0,0.0,0,0,16.0,77777,9,999999999,189,0.1870,0,88,0.190,999.0,99.0 +1991,7,16,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,15.6,71,99200,0,33,353,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,200,0.1870,0,88,0.190,999.0,99.0 +1991,7,16,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,20.6,15.6,73,99200,0,0,350,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,200,0.1870,0,88,0.190,0.0,99.0 +1991,7,16,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.6,16.1,75,99200,0,0,351,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,200,0.1870,0,88,0.190,999.0,99.0 +1991,7,16,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,15.0,81,99200,0,0,339,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,200,0.1870,0,88,0.190,999.0,99.0 +1991,7,17,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,15.0,90,99100,0,0,331,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,200,0.1880,0,88,0.190,0.0,6.0 +1991,7,17,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.8,15.6,87,99100,0,0,337,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,200,0.1880,0,88,0.190,999.0,99.0 +1991,7,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,14.4,84,99000,0,0,333,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,209,0.1880,0,88,0.190,999.0,99.0 +1991,7,17,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,15.6,13.9,90,99000,0,0,325,0,0,0,0,0,0,0,0,0.0,0,0,6.4,77777,9,999999999,209,0.1880,0,88,0.190,0.0,99.0 +1991,7,17,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,15.0,93,99100,0,0,329,0,0,0,0,0,0,0,0,0.0,0,0,4.8,77777,9,999999999,209,0.1880,0,88,0.190,999.0,99.0 +1991,7,17,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.6,13.9,90,99100,40,804,325,9,4,8,900,200,900,210,0,0.0,0,0,4.8,77777,9,999999999,209,0.1880,0,88,0.190,999.0,99.0 +1991,7,17,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,15.6,87,99100,258,1322,337,103,186,66,10900,13800,8200,1240,0,0.0,0,0,6.4,77777,9,999999999,209,0.1880,0,88,0.190,0.0,6.0 +1991,7,17,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.7,16.1,70,99200,503,1322,356,278,421,118,29400,39900,14200,2270,0,0.0,0,0,6.4,77777,9,999999999,220,0.1880,0,88,0.190,999.0,99.0 +1991,7,17,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,15.6,51,99200,735,1322,380,479,567,164,51500,57700,19400,3620,0,0.0,0,0,9.6,77777,9,999999999,220,0.1880,0,88,0.190,999.0,99.0 +1991,7,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,28.9,17.8,51,99200,938,1322,394,664,655,199,69600,66000,22600,5560,180,0.5,0,0,9.6,77777,9,999999999,220,0.1880,0,88,0.190,0.0,99.0 +1991,7,17,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,12.8,35,99200,1098,1322,407,768,603,267,80200,60700,29800,10280,330,0.5,2,2,9.6,77777,9,999999999,220,0.1880,0,88,0.190,999.0,99.0 +1991,7,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.6,13.9,36,99100,1204,1322,415,868,614,308,90700,61700,34500,16970,300,1.0,3,3,9.6,77777,9,999999999,220,0.1880,0,88,0.190,999.0,99.0 +1991,7,17,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.1,17.2,43,99100,1249,1322,418,735,525,238,78600,53700,27800,16730,250,2.1,2,2,9.6,77777,9,999999999,220,0.1880,0,88,0.190,0.0,6.0 +1991,7,17,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.2,13.9,33,99000,1230,1322,424,903,599,345,97200,62700,38800,22380,250,2.1,3,3,9.6,77777,9,999999999,229,0.1880,0,88,0.190,999.0,99.0 +1991,7,17,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.2,14.4,34,99000,1148,1322,421,796,651,230,84500,66300,26800,10490,320,2.1,2,2,9.6,77777,9,999999999,229,0.1880,0,88,0.190,999.0,99.0 +1991,7,17,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,31.7,14.4,35,98900,1009,1322,422,696,542,282,74100,56400,31000,9190,270,1.5,3,3,9.6,77777,9,999999999,229,0.1880,0,88,0.190,0.0,99.0 +1991,7,17,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,15.6,39,98800,822,1322,416,535,467,244,56100,47900,26200,6030,280,1.0,2,2,9.6,77777,9,999999999,229,0.1880,0,88,0.190,999.0,99.0 +1991,7,17,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.6,13.9,36,98800,599,1322,398,359,488,137,38200,48100,16300,2750,250,1.0,0,0,9.6,77777,9,999999999,229,0.1880,0,88,0.190,999.0,99.0 +1991,7,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.9,15.0,43,98800,358,1322,404,149,202,94,15800,17500,11100,1820,240,1.0,2,2,11.2,77777,9,999999999,229,0.1880,0,88,0.190,999.0,99.0 +1991,7,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,15.6,51,98800,115,1322,397,31,19,29,3400,1200,3300,690,0,0.0,3,3,11.2,77777,9,999999999,240,0.1880,0,88,0.190,999.0,99.0 +1991,7,17,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,16.1,60,98800,0,11,381,0,0,0,0,0,0,0,0,0.0,2,2,11.2,77777,9,999999999,240,0.1880,0,88,0.190,999.0,99.0 +1991,7,17,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,23.3,17.8,71,98800,0,0,382,0,0,0,0,0,0,0,0,0.0,3,3,11.2,77777,9,999999999,240,0.1880,0,88,0.190,0.0,99.0 +1991,7,17,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.8,17.2,71,98800,0,0,375,0,0,0,0,0,0,0,0,0.0,2,2,11.2,77777,9,999999999,240,0.1880,0,88,0.190,999.0,99.0 +1991,7,17,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,17.2,78,98700,0,0,370,0,0,0,0,0,0,0,0,0.0,3,3,9.6,77777,9,999999999,240,0.1880,0,88,0.190,999.0,99.0 +1991,7,18,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,16.7,84,98700,0,0,361,0,0,0,0,0,0,0,0,0.0,3,3,9.6,77777,9,999999999,240,0.1890,0,88,0.190,0.0,6.0 +1991,7,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,16.7,90,98700,0,0,352,0,0,0,0,0,0,0,0,0.0,2,2,9.6,77777,9,999999999,250,0.1890,0,88,0.190,999.0,99.0 +1991,7,18,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.8,17.2,96,98700,0,0,339,0,0,0,0,0,0,0,0,0.0,0,0,6.4,77777,9,999999999,250,0.1890,0,88,0.190,999.0,99.0 +1991,7,18,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,18.3,16.7,90,98700,0,0,340,0,0,0,0,0,0,0,0,0.0,0,0,6.4,77777,9,999999999,250,0.1890,0,88,0.190,0.0,99.0 +1991,7,18,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,16.1,87,98700,0,0,340,0,0,0,0,0,0,0,0,0.0,0,0,4.8,77777,9,999999999,250,0.1890,0,88,0.190,999.0,99.0 +1991,7,18,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.7,15.6,93,98700,39,782,332,9,30,8,1100,900,1000,130,0,0.0,0,0,3.2,77777,9,999999999,250,0.1890,0,88,0.190,999.0,99.0 +1991,7,18,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,17.2,87,98800,256,1322,346,118,341,52,12500,25200,7600,930,0,0.0,0,0,3.2,77777,9,999999999,250,0.1890,0,88,0.190,0.0,6.0 +1991,7,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.8,18.3,76,98800,500,1322,364,303,579,84,31700,54400,11100,1650,0,0.0,0,0,4.8,77777,9,999999999,259,0.1890,0,88,0.190,999.0,99.0 +1991,7,18,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,17.8,60,98900,732,1322,380,503,704,112,53400,70700,14200,2560,0,0.0,0,0,8.0,77777,9,999999999,259,0.1890,0,88,0.190,999.0,99.0 +1991,7,18,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,28.3,16.1,48,98800,936,1322,389,684,776,135,71600,77800,16500,3560,0,0.0,0,0,8.0,77777,9,999999999,259,0.1890,0,88,0.190,0.0,99.0 +1991,7,18,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.6,15.0,39,98900,1096,1322,417,768,669,213,81600,68200,25000,8360,0,0.0,3,3,8.0,77777,9,999999999,270,0.1890,0,88,0.190,999.0,99.0 +1991,7,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,15.6,39,98800,1203,1322,416,817,682,196,88200,70200,24300,11070,250,1.0,2,2,9.6,77777,9,999999999,270,0.1890,0,88,0.190,999.0,99.0 +1991,7,18,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.7,13.9,34,98800,1248,1322,421,845,673,210,91300,69200,25900,14740,300,1.0,3,3,9.6,77777,9,999999999,270,0.1890,0,88,0.190,0.0,6.0 +1991,7,18,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.2,16.1,38,98700,1229,1322,423,916,792,180,96800,79800,22400,10640,330,1.0,2,2,9.6,77777,9,999999999,279,0.1890,0,88,0.190,999.0,99.0 +1991,7,18,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,33.3,15.0,33,98700,1147,1322,432,857,660,284,89600,66400,31900,12650,330,1.0,3,3,9.6,77777,9,999999999,279,0.1890,0,88,0.190,999.0,99.0 +1991,7,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,32.2,15.0,35,98600,1007,1322,422,494,439,159,53000,45000,18600,5200,330,1.0,2,2,9.6,77777,9,999999999,279,0.1890,0,88,0.190,0.0,99.0 +1991,7,18,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.2,15.6,37,98600,820,1322,427,579,657,171,60400,65700,19600,4080,310,1.0,3,3,9.6,77777,9,999999999,279,0.1890,0,88,0.190,999.0,99.0 +1991,7,18,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.7,16.1,39,98600,598,1322,407,384,636,96,40400,62000,12400,1990,280,2.1,0,0,9.6,77777,9,999999999,290,0.1890,0,88,0.190,999.0,99.0 +1991,7,18,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,16.7,46,98500,356,1322,395,188,455,65,19400,38800,8900,1200,0,0.0,0,0,11.2,77777,9,999999999,290,0.1890,0,88,0.190,0.0,6.0 +1991,7,18,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,16.7,51,98500,113,1322,387,37,121,27,3900,5600,3400,480,0,0.0,0,0,11.2,77777,9,999999999,290,0.1890,0,88,0.190,999.0,99.0 +1991,7,18,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,17.8,64,98600,0,11,374,0,0,0,0,0,0,0,0,0.0,0,0,11.2,77777,9,999999999,300,0.1890,0,88,0.190,999.0,99.0 +1991,7,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,23.9,17.2,66,98600,0,0,368,0,0,0,0,0,0,0,0,0.0,0,0,11.2,77777,9,999999999,300,0.1890,0,88,0.190,0.0,99.0 +1991,7,18,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.7,17.8,79,98600,0,0,358,0,0,0,0,0,0,0,0,0.0,0,0,11.2,77777,9,999999999,300,0.1890,0,88,0.190,999.0,99.0 +1991,7,18,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.7,17.2,76,98600,0,0,357,0,0,0,0,0,0,0,0,0.0,0,0,9.6,77777,9,999999999,309,0.1890,0,88,0.190,999.0,99.0 +1991,7,19,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,17.2,78,98600,0,0,354,0,0,0,0,0,0,0,0,0.0,0,0,8.0,77777,9,999999999,309,0.1900,0,88,0.190,0.0,6.0 +1991,7,19,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,17.8,87,98600,0,0,350,0,0,0,0,0,0,0,0,0.0,0,0,6.4,77777,9,999999999,309,0.1900,0,88,0.190,999.0,99.0 +1991,7,19,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,17.8,87,98600,0,0,350,0,0,0,0,0,0,0,0,0.0,0,0,6.4,77777,9,999999999,320,0.1900,0,88,0.190,999.0,99.0 +1991,7,19,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,19.4,17.8,90,98600,0,0,400,0,0,0,0,0,0,0,0,0.0,10,10,6.4,77777,9,999999999,320,0.1900,0,88,0.190,0.0,99.0 +1991,7,19,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.9,17.2,90,98600,0,0,397,0,0,0,0,0,0,0,0,0.0,10,10,6.4,77777,9,999999999,320,0.1900,0,88,0.190,999.0,99.0 +1991,7,19,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.9,17.2,90,98600,37,783,359,8,13,7,900,500,900,140,0,0.0,3,3,3.2,77777,9,999999999,329,0.1900,0,88,0.190,999.0,99.0 +1991,7,19,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,18.9,90,98700,253,1323,366,101,252,53,10700,18500,7200,950,0,0.0,2,2,4.0,77777,9,999999999,329,0.1900,0,88,0.190,0.0,6.0 +1991,7,19,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,20.0,76,98800,498,1323,390,227,333,102,24400,31600,12500,1930,0,0.0,3,3,4.8,77777,9,999999999,329,0.1900,0,88,0.190,999.0,99.0 +1991,7,19,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,21.7,74,98800,730,1323,400,468,590,143,49000,58600,16600,3150,240,1.0,2,2,4.8,77777,9,999999999,340,0.1900,0,88,0.190,999.0,99.0 +1991,7,19,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,27.8,21.1,67,98800,934,1323,453,200,0,200,23800,0,23800,9510,0,0.0,10,10,6.4,3000,9,999999999,340,0.1900,0,88,0.190,0.0,99.0 +1991,7,19,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,21.1,65,98900,1095,1323,443,461,80,394,50800,8200,43900,16270,0,0.0,9,9,8.0,3000,9,999999999,350,0.1900,0,88,0.190,999.0,99.0 +1991,7,19,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,21.1,59,98900,1201,1323,466,269,0,269,32600,0,32600,12960,270,1.0,10,10,8.0,1350,9,999999999,350,0.1900,0,88,0.190,999.0,99.0 +1991,7,19,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,20.0,55,98800,1247,1323,465,281,0,281,34100,0,34100,13520,240,1.0,10,10,8.0,1350,9,999999999,359,0.1900,0,88,0.190,0.0,6.0 +1991,7,19,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.9,20.6,61,98800,1228,1323,446,429,126,311,48200,13600,35600,16770,180,1.0,9,9,8.0,1350,9,999999999,359,0.1900,0,88,0.190,999.0,99.0 +1991,7,19,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.7,21.1,54,98800,1146,1323,477,255,0,255,30800,0,30800,12300,150,1.0,10,10,8.0,1350,9,999999999,359,0.1900,0,88,0.190,999.0,99.0 +1991,7,19,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,31.7,20.0,50,98700,1006,1323,475,219,0,219,26200,0,26200,10530,0,0.0,10,10,8.0,3000,9,999999999,370,0.1900,0,88,0.190,0.0,99.0 +1991,7,19,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,20.0,52,98700,819,1323,459,268,90,212,29800,9500,23900,5830,210,1.0,9,9,11.2,1500,9,999999999,370,0.1900,0,88,0.190,999.0,99.0 +1991,7,19,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.6,21.7,59,98700,596,1323,471,139,0,139,16100,0,16100,5780,200,1.0,10,10,11.2,77777,9,999999999,379,0.1900,0,88,0.190,999.0,99.0 +1991,7,19,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,22.8,68,98700,354,1323,416,185,361,88,19300,30600,11100,1630,180,1.0,2,2,11.2,77777,9,999999999,379,0.1900,0,88,0.190,0.0,6.0 +1991,7,19,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,22.2,79,98700,111,1312,385,35,105,26,3800,4600,3400,460,0,0.0,0,0,11.2,77777,9,999999999,390,0.1900,0,88,0.190,999.0,99.0 +1991,7,19,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,22.8,82,98800,0,0,386,0,0,0,0,0,0,0,0,0.0,0,0,11.2,77777,9,999999999,390,0.1900,0,88,0.190,999.0,99.0 +1991,7,19,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,25.6,22.2,82,98900,0,0,382,0,0,0,0,0,0,0,0,0.0,0,0,9.6,77777,9,999999999,400,0.1900,0,88,0.190,0.0,99.0 +1991,7,19,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,22.2,82,98900,0,0,382,0,0,0,0,0,0,0,0,0.0,0,0,9.6,77777,9,999999999,400,0.1900,0,88,0.190,999.0,99.0 +1991,7,19,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,21.7,85,98900,0,0,376,0,0,0,0,0,0,0,0,0.0,0,0,8.0,77777,9,999999999,409,0.1900,0,88,0.190,999.0,99.0 +1991,7,20,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,21.7,91,98900,0,0,415,0,0,0,0,0,0,0,0,0.0,10,9,6.4,77777,9,999999999,409,0.1920,0,88,0.190,0.0,6.0 +1991,7,20,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.7,21.1,96,98900,0,0,406,0,0,0,0,0,0,0,0,0.0,10,9,4.8,77777,9,999999999,409,0.1920,0,88,0.190,999.0,99.0 +1991,7,20,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,21.7,91,98900,0,0,415,0,0,0,0,0,0,0,0,0.0,10,9,4.8,77777,9,999999999,419,0.1920,0,88,0.190,999.0,99.0 +1991,7,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,22.8,21.7,94,98900,0,0,413,0,0,0,0,0,0,0,0,0.0,10,9,4.0,77777,9,999999999,419,0.1920,0,88,0.190,0.0,99.0 +1991,7,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,21.1,100,98900,0,0,403,0,0,0,0,0,0,0,0,0.0,10,9,2.4,77777,9,999999999,430,0.1920,0,88,0.190,999.0,99.0 +1991,7,20,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,21.1,93,99000,35,761,409,7,0,7,800,0,800,270,0,0.0,10,9,1.6,77777,9,999999999,430,0.1920,0,88,0.190,999.0,99.0 +1991,7,20,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,21.7,91,99100,250,1323,415,57,0,57,6400,0,6400,2030,0,0.0,10,9,2.0,77777,9,999999999,440,0.1920,0,88,0.190,0.0,6.0 +1991,7,20,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,22.2,82,99100,495,1323,429,163,41,148,17900,3900,16500,4100,0,0.0,10,9,3.2,77777,9,999999999,430,0.1920,0,88,0.190,999.0,99.0 +1991,7,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,22.2,72,99100,728,1323,394,477,612,140,49900,60800,16400,3090,230,0.5,0,0,4.8,77777,9,999999999,430,0.1920,0,88,0.190,999.0,99.0 +1991,7,20,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,30.0,20.6,57,99200,932,1323,411,623,641,171,66000,65100,20000,4820,260,0.5,2,1,6.4,77777,9,999999999,430,0.1920,0,88,0.190,0.0,99.0 +1991,7,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.7,20.0,50,99200,1093,1323,420,726,615,218,77000,62600,25200,8450,240,2.6,3,1,8.0,77777,9,999999999,419,0.1920,0,88,0.190,999.0,99.0 +1991,7,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.2,18.9,45,99200,1200,1323,421,853,698,220,91500,71400,26500,12190,240,2.1,2,1,8.0,77777,9,999999999,419,0.1920,0,88,0.190,999.0,99.0 +1991,7,20,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.2,18.9,45,99100,1245,1323,421,887,710,218,95500,72800,26800,15040,250,1.5,3,1,8.0,77777,9,999999999,419,0.1920,0,88,0.190,0.0,6.0 +1991,7,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,33.9,18.3,40,99100,1226,1323,451,716,399,346,77100,41700,38300,22020,240,2.6,9,6,8.0,1050,9,999999999,419,0.1920,0,88,0.190,999.0,99.0 +1991,7,20,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.2,18.3,44,99000,1144,1323,441,457,122,351,50700,13100,39400,14850,250,2.1,9,6,8.0,1500,9,999999999,409,0.1920,0,88,0.190,999.0,99.0 +1991,7,20,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,32.2,19.4,47,99000,1005,1323,442,414,251,223,46300,27300,25600,6810,180,2.1,9,6,9.6,1500,9,999999999,409,0.1920,0,88,0.190,0.0,99.0 +1991,7,20,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,33.3,20.0,46,99000,817,1323,449,520,449,243,54600,46000,26100,5970,240,2.1,9,6,9.6,1500,9,999999999,409,0.1920,0,88,0.190,999.0,99.0 +1991,7,20,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.2,18.9,45,99000,594,1323,442,294,196,206,31900,19700,23000,4970,240,2.1,9,6,9.6,1800,9,999999999,400,0.1920,0,88,0.190,999.0,99.0 +1991,7,20,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.1,20.6,54,99000,351,1323,417,159,295,81,16800,25000,10100,1490,200,2.1,3,1,9.6,77777,9,999999999,400,0.1920,0,88,0.190,0.0,6.0 +1991,7,20,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,21.1,61,99000,108,1290,401,32,57,27,3500,2900,3300,560,190,1.0,0,0,11.2,77777,9,999999999,400,0.1920,0,88,0.190,999.0,99.0 +1991,7,20,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.9,21.1,63,99000,0,0,398,0,0,0,0,0,0,0,200,1.0,0,0,11.2,77777,9,999999999,390,0.1920,0,88,0.190,999.0,99.0 +1991,7,20,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,27.8,21.1,67,99000,0,0,392,0,0,0,0,0,0,0,200,1.0,0,0,11.2,77777,9,999999999,390,0.1920,0,88,0.190,0.0,99.0 +1991,7,20,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,21.1,79,99000,0,0,378,0,0,0,0,0,0,0,0,0.0,0,0,11.2,77777,9,999999999,390,0.1920,0,88,0.190,999.0,99.0 +1991,7,20,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,20.6,79,99000,0,0,374,0,0,0,0,0,0,0,0,0.0,0,0,11.2,77777,9,999999999,379,0.1920,0,88,0.190,999.0,99.0 +1991,7,21,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,20.6,79,99000,0,0,374,0,0,0,0,0,0,0,0,0.0,0,0,11.2,77777,9,999999999,379,0.1930,0,88,0.190,0.0,6.0 +1991,7,21,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,20.6,79,98900,0,0,374,0,0,0,0,0,0,0,0,0.0,0,0,11.2,77777,9,999999999,379,0.1930,0,88,0.190,999.0,99.0 +1991,7,21,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,20.6,82,98900,0,0,372,0,0,0,0,0,0,0,0,0.0,0,0,8.0,77777,9,999999999,370,0.1930,0,88,0.190,999.0,99.0 +1991,7,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,23.9,20.6,82,99000,0,0,372,0,0,0,0,0,0,0,260,2.1,0,0,8.0,77777,9,999999999,370,0.1930,0,88,0.190,0.0,99.0 +1991,7,21,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.8,20.0,84,99000,0,0,366,0,0,0,0,0,0,0,0,0.0,0,0,6.4,77777,9,999999999,370,0.1930,0,88,0.190,999.0,99.0 +1991,7,21,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.8,20.0,84,99000,34,739,373,8,15,7,900,600,900,140,220,0.5,3,1,9.6,77777,9,999999999,359,0.1930,0,88,0.190,999.0,99.0 +1991,7,21,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,21.1,82,99100,247,1323,375,110,307,52,11600,22300,7400,930,0,0.0,0,0,11.2,77777,9,999999999,359,0.1930,0,88,0.190,0.0,6.0 +1991,7,21,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,20.6,67,99100,493,1323,396,279,489,97,28900,45400,11900,1850,250,2.6,3,1,11.2,77777,9,999999999,359,0.1930,0,88,0.190,999.0,99.0 +1991,7,21,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,21.1,61,99200,726,1323,409,476,652,118,50400,65200,14500,2670,250,3.1,2,1,11.2,77777,9,999999999,370,0.1930,0,88,0.190,999.0,99.0 +1991,7,21,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,29.4,21.1,61,99200,930,1323,409,611,609,182,64300,61600,20900,5080,240,2.6,3,1,11.2,77777,9,999999999,370,0.1930,0,88,0.190,0.0,99.0 +1991,7,21,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,20.6,54,99200,1091,1323,434,681,454,306,72800,47400,33700,12050,240,2.6,9,5,11.2,1050,9,999999999,370,0.1930,0,88,0.190,999.0,99.0 +1991,7,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.8,20.0,47,99100,1198,1323,443,785,538,298,85600,56400,34400,16610,240,3.1,9,5,11.2,1500,9,999999999,379,0.1930,0,88,0.190,999.0,99.0 +1991,7,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,33.3,19.4,44,99100,1244,1323,445,822,427,421,87000,44500,45000,29560,260,3.6,9,5,11.2,7500,9,999999999,379,0.1930,0,88,0.190,0.0,6.0 +1991,7,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.8,20.0,47,99000,1225,1323,443,858,445,445,93700,48300,48800,25440,260,4.1,9,5,9.6,7500,9,999999999,379,0.1930,0,88,0.190,999.0,99.0 +1991,7,21,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.8,18.3,42,99000,1143,1323,440,700,459,303,75500,48000,33900,13830,260,3.1,9,5,9.6,7500,9,999999999,379,0.1930,0,88,0.190,999.0,99.0 +1991,7,21,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,34.4,20.6,45,98900,1003,1323,453,677,547,262,72600,57000,29400,8400,270,2.6,9,5,9.6,7500,9,999999999,390,0.1930,0,88,0.190,0.0,99.0 +1991,7,21,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,33.9,19.4,43,98900,815,1323,457,356,202,232,39400,21300,26300,6370,280,3.1,10,7,9.6,77777,9,999999999,390,0.1930,0,88,0.190,999.0,99.0 +1991,7,21,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.2,20.0,49,98900,592,1323,455,246,130,187,26700,13100,20900,4500,270,2.1,10,8,9.6,77777,9,999999999,390,0.1930,0,88,0.190,999.0,99.0 +1991,7,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.6,20.6,55,98900,349,1323,440,116,56,101,12700,4900,11400,2600,260,1.0,10,7,9.6,77777,9,999999999,400,0.1930,0,88,0.190,0.0,6.0 +1991,7,21,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.9,21.1,63,98900,106,1290,422,29,23,27,3200,1400,3100,650,0,0.0,9,5,11.2,77777,9,999999999,400,0.1930,0,88,0.190,999.0,99.0 +1991,7,21,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.9,20.6,61,98900,0,0,421,0,0,0,0,0,0,0,0,0.0,9,5,11.2,77777,9,999999999,400,0.1930,0,88,0.190,999.0,99.0 +1991,7,21,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,28.3,21.1,65,99000,0,0,419,0,0,0,0,0,0,0,0,0.0,9,5,11.2,77777,9,999999999,400,0.1930,0,88,0.190,0.0,99.0 +1991,7,21,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,21.1,76,99000,0,0,404,0,0,0,0,0,0,0,0,0.0,9,5,11.2,77777,9,999999999,409,0.1930,0,88,0.190,999.0,99.0 +1991,7,21,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,21.1,71,99000,0,0,410,0,0,0,0,0,0,0,0,0.0,9,5,11.2,77777,9,999999999,409,0.1930,0,88,0.190,999.0,99.0 +1991,7,22,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,21.7,82,98900,0,0,398,0,0,0,0,0,0,0,0,0.0,9,4,11.2,77777,9,999999999,409,0.1940,0,88,0.190,0.0,6.0 +1991,7,22,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,21.1,82,98800,0,0,394,0,0,0,0,0,0,0,0,0.0,9,4,9.6,77777,9,999999999,419,0.1940,0,88,0.190,999.0,99.0 +1991,7,22,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,21.7,82,98900,0,0,398,0,0,0,0,0,0,0,0,0.0,9,4,9.6,77777,9,999999999,419,0.1940,0,88,0.190,999.0,99.0 +1991,7,22,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,25.0,21.1,79,98900,0,0,398,0,0,0,0,0,0,0,0,0.0,9,4,9.6,77777,9,999999999,419,0.1940,0,88,0.190,0.0,99.0 +1991,7,22,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,21.1,87,98900,0,0,389,0,0,0,0,0,0,0,0,0.0,9,4,8.0,77777,9,999999999,430,0.1940,0,88,0.190,999.0,99.0 +1991,7,22,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,21.1,93,98900,32,717,383,7,8,7,900,300,800,140,0,0.0,9,4,8.0,77777,9,999999999,430,0.1940,0,88,0.190,999.0,99.0 +1991,7,22,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,22.2,88,99000,244,1323,396,91,195,55,9700,14000,7200,1000,0,0.0,9,4,8.0,77777,9,999999999,430,0.1940,0,88,0.190,0.0,6.0 +1991,7,22,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,22.2,76,99000,490,1323,408,234,272,133,25000,26300,15300,2700,0,0.0,10,4,8.0,3600,9,999999999,430,0.1940,0,88,0.190,999.0,99.0 +1991,7,22,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,21.7,67,99000,724,1323,416,378,367,177,40200,37200,19800,3900,250,1.5,9,4,8.0,7500,9,999999999,430,0.1940,0,88,0.190,999.0,99.0 +1991,7,22,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,30.0,21.7,61,99000,928,1323,426,504,297,295,54600,32000,32100,8460,250,1.5,9,4,9.6,77777,9,999999999,430,0.1940,0,88,0.190,0.0,99.0 +1991,7,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,33.3,20.6,47,99000,1090,1323,443,721,573,248,75600,57900,27800,9400,280,3.1,9,4,11.2,77777,9,999999999,430,0.1940,0,88,0.190,999.0,99.0 +1991,7,22,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,33.9,20.6,46,99000,1197,1323,446,841,609,290,88300,61400,32700,15540,250,4.1,9,4,11.2,77777,9,999999999,430,0.1940,0,88,0.190,999.0,99.0 +1991,7,22,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,36.1,19.4,38,98900,1243,1323,458,833,544,322,90600,57000,36900,22200,250,5.1,9,4,11.2,1500,9,999999999,430,0.1940,0,88,0.190,0.0,6.0 +1991,7,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,35.6,18.9,38,98800,1224,1323,454,877,670,257,93200,68100,30000,15690,250,4.1,9,4,11.2,77777,9,999999999,430,0.1940,0,88,0.190,999.0,99.0 +1991,7,22,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,35.6,18.9,38,98800,1142,1323,432,859,805,164,90600,81200,20400,6830,250,3.1,3,0,11.2,77777,9,999999999,430,0.1940,0,88,0.190,999.0,99.0 +1991,7,22,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,36.1,17.2,33,98700,1002,1323,432,714,756,142,75100,76000,17500,4200,260,3.6,2,0,11.2,77777,9,999999999,430,0.1940,0,88,0.190,0.0,99.0 +1991,7,22,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,35.6,18.3,36,98700,814,1323,431,567,714,128,60400,72300,15900,3150,260,3.1,3,0,11.2,77777,9,999999999,430,0.1940,0,88,0.190,999.0,99.0 +1991,7,22,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,34.4,18.9,40,98600,590,1323,425,373,624,95,39300,60700,12200,1960,270,3.6,2,0,11.2,77777,9,999999999,430,0.1940,0,88,0.190,999.0,99.0 +1991,7,22,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,33.3,19.4,44,98600,347,1323,420,181,438,66,18600,36900,8900,1210,250,1.5,3,0,11.2,77777,9,999999999,419,0.1940,0,88,0.190,0.0,6.0 +1991,7,22,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,20.0,55,98600,103,1268,403,34,129,23,3600,6000,3100,400,250,1.0,0,0,11.2,77777,9,999999999,419,0.1940,0,88,0.190,999.0,99.0 +1991,7,22,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,20.0,57,98600,0,0,400,0,0,0,0,0,0,0,240,1.0,0,0,11.2,77777,9,999999999,419,0.1940,0,88,0.190,999.0,99.0 +1991,7,22,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,27.8,20.0,63,98700,0,0,391,0,0,0,0,0,0,0,240,1.0,0,0,11.2,77777,9,999999999,419,0.1940,0,88,0.190,0.0,99.0 +1991,7,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,20.0,65,98700,0,0,388,0,0,0,0,0,0,0,240,1.0,3,0,11.2,77777,9,999999999,419,0.1940,0,88,0.190,999.0,99.0 +1991,7,22,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,20.6,69,98700,0,0,386,0,0,0,0,0,0,0,240,1.0,2,0,11.2,77777,9,999999999,419,0.1940,0,88,0.190,999.0,99.0 +1991,7,23,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,21.1,76,98600,0,0,394,0,0,0,0,0,0,0,220,1.0,2,2,11.2,77777,9,999999999,419,0.1950,0,88,0.190,0.0,6.0 +1991,7,23,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,21.1,76,98500,0,0,381,0,0,0,0,0,0,0,240,1.0,0,0,11.2,77777,9,999999999,419,0.1950,0,88,0.190,999.0,99.0 +1991,7,23,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,21.1,79,98500,0,0,378,0,0,0,0,0,0,0,240,1.0,0,0,11.2,77777,9,999999999,419,0.1950,0,88,0.190,999.0,99.0 +1991,7,23,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,24.4,20.6,79,98500,0,0,374,0,0,0,0,0,0,0,240,1.0,0,0,11.2,77777,9,999999999,419,0.1950,0,88,0.190,0.0,99.0 +1991,7,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,20.6,82,98500,0,0,384,0,0,0,0,0,0,0,240,1.0,2,2,11.2,77777,9,999999999,419,0.1950,0,88,0.190,999.0,99.0 +1991,7,23,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,20.6,79,98500,31,695,420,7,9,7,900,300,800,140,230,1.0,9,9,11.2,77777,9,999999999,419,0.1950,0,88,0.190,999.0,99.0 +1991,7,23,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,20.6,69,98500,241,1323,446,36,0,36,4200,0,4200,1400,250,3.1,10,10,16.0,2400,9,999999999,419,0.1950,0,88,0.190,0.0,6.0 +1991,7,23,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.9,20.6,61,98600,488,1323,459,115,0,115,13200,0,13200,4550,270,3.1,10,10,16.0,77777,9,999999999,409,0.1950,0,88,0.190,999.0,99.0 +1991,7,23,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,21.1,61,98600,722,1323,450,243,119,178,27000,12400,20200,4580,260,3.1,9,9,16.0,7500,9,999999999,409,0.1950,0,88,0.190,999.0,99.0 +1991,7,23,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,30.6,21.1,57,98500,926,1323,457,330,80,274,36400,8100,30700,9940,250,3.1,9,9,16.0,7500,9,999999999,409,0.1950,0,88,0.190,0.0,99.0 +1991,7,23,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,21.7,57,98500,1088,1323,461,403,65,349,44400,6700,39000,14560,250,3.1,9,9,16.0,7500,9,999999999,400,0.1950,0,88,0.190,999.0,99.0 +1991,7,23,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.6,22.2,61,98500,1196,1323,472,271,0,271,32800,0,32800,13020,280,4.6,10,10,9.6,900,9,999999999,400,0.1950,0,88,0.190,999.0,99.0 +1991,7,23,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.2,22.2,56,98500,1241,1323,468,740,271,486,80500,29400,52800,30030,290,4.1,9,9,9.6,1050,9,999999999,390,0.1950,0,88,0.190,0.0,6.0 +1991,7,23,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,33.3,21.1,49,98400,1223,1323,474,505,85,426,55800,8800,47700,21870,300,3.6,9,9,11.2,1050,9,999999999,390,0.1950,0,88,0.190,999.0,99.0 +1991,7,23,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,21.1,76,98400,1140,1323,428,527,92,447,58000,9500,49800,19320,0,0.0,9,9,16.0,900,9,999999999,390,0.1950,0,88,0.190,999.0,99.0 +1991,7,23,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,26.7,22.8,79,98400,1000,1323,436,357,84,293,39400,8600,32900,11320,260,4.1,9,9,16.0,3600,9,999999999,379,0.1950,0,88,0.190,0.0,99.0 +1991,7,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.6,21.7,59,98400,812,1323,458,249,98,189,27900,10400,21500,5170,300,5.1,9,9,16.0,77777,9,999999999,379,0.1950,0,88,0.190,999.0,99.0 +1991,7,23,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,18.3,47,98400,588,1323,456,137,73,104,15400,7400,12100,2490,330,4.6,9,9,16.0,77777,9,999999999,370,0.1950,0,88,0.190,999.0,99.0 +1991,7,23,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,16.7,46,98400,344,1323,444,115,27,108,12600,2400,12000,2720,350,3.6,9,9,16.0,77777,9,999999999,370,0.1950,0,88,0.190,6.0,6.0 +1991,7,23,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,16.1,52,98400,101,1246,427,23,36,20,2600,1800,2400,410,360,3.1,9,9,16.0,77777,9,999999999,370,0.1950,0,88,0.190,999.0,99.0 +1991,7,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,15.6,54,98500,0,0,387,0,0,0,0,0,0,0,350,3.1,2,2,16.0,77777,9,999999999,359,0.1950,0,88,0.190,999.0,99.0 +1991,7,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,23.9,13.9,54,98500,0,0,380,0,0,0,0,0,0,0,350,2.1,3,3,16.0,77777,9,999999999,359,0.1950,0,88,0.190,0.0,99.0 +1991,7,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,12.8,55,98600,0,0,355,0,0,0,0,0,0,0,360,1.0,0,0,16.0,77777,9,999999999,350,0.1950,0,88,0.190,999.0,99.0 +1991,7,23,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,12.2,57,98600,0,0,364,0,0,0,0,0,0,0,10,1.0,3,3,16.0,77777,9,999999999,350,0.1950,0,88,0.190,999.0,99.0 +1991,7,24,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,12.2,68,98500,0,0,350,0,0,0,0,0,0,0,0,0.0,3,3,11.2,77777,9,999999999,350,0.1960,0,88,0.190,0.0,6.0 +1991,7,24,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.9,13.3,70,98500,0,0,381,0,0,0,0,0,0,0,0,0.0,9,9,11.2,3600,9,999999999,340,0.1960,0,88,0.190,999.0,99.0 +1991,7,24,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,11.7,65,98500,0,0,350,0,0,0,0,0,0,0,0,0.0,3,3,11.2,77777,9,999999999,340,0.1960,0,88,0.190,999.0,99.0 +1991,7,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,16.7,12.8,78,98500,0,0,340,0,0,0,0,0,0,0,0,0.0,2,2,11.2,77777,9,999999999,329,0.1960,0,88,0.190,0.0,99.0 +1991,7,24,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.6,12.8,83,98500,0,0,338,0,0,0,0,0,0,0,0,0.0,3,3,11.2,77777,9,999999999,329,0.1960,0,88,0.190,999.0,99.0 +1991,7,24,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,12.2,83,98500,29,695,360,5,0,5,600,0,600,200,0,0.0,9,9,16.0,77777,9,999999999,329,0.1960,0,88,0.190,999.0,99.0 +1991,7,24,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,14.4,84,98500,238,1324,347,85,143,59,9000,10100,7200,1100,0,0.0,3,3,16.0,77777,9,999999999,320,0.1960,0,88,0.190,0.0,6.0 +1991,7,24,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.6,12.8,61,98600,485,1324,358,269,387,127,28100,36300,14800,2460,0,0.0,2,2,16.0,77777,9,999999999,320,0.1960,0,88,0.190,999.0,99.0 +1991,7,24,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.8,12.8,53,98700,719,1324,373,372,395,158,40100,40100,18300,3430,0,0.0,3,3,16.0,77777,9,999999999,320,0.1960,0,88,0.190,999.0,99.0 +1991,7,24,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,24.4,11.7,45,98700,924,1324,420,244,0,244,28600,0,28600,11040,360,1.0,10,10,16.0,77777,9,999999999,320,0.1960,0,88,0.190,0.0,99.0 +1991,7,24,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,10.6,38,98700,1086,1324,416,518,175,374,57000,18600,41600,14060,310,2.1,9,9,16.0,77777,9,999999999,329,0.1960,0,88,0.190,999.0,99.0 +1991,7,24,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,11.7,38,98700,1194,1324,424,467,89,386,51600,9100,43300,18840,310,1.0,9,9,16.0,77777,9,999999999,329,0.1960,0,88,0.190,999.0,99.0 +1991,7,24,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,11.1,37,98700,1240,1324,423,534,239,310,60100,26100,35600,18350,310,3.1,9,9,16.0,6000,9,999999999,329,0.1960,0,88,0.190,0.0,6.0 +1991,7,24,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,11.1,34,98700,1221,1324,395,919,749,228,98500,76600,27600,13810,330,2.1,2,2,32.0,77777,9,999999999,329,0.1960,0,88,0.190,999.0,99.0 +1991,7,24,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,9.4,31,98600,1139,1324,427,458,195,290,51100,21200,32800,11960,290,1.5,9,9,32.0,7500,9,999999999,329,0.1960,0,88,0.190,999.0,99.0 +1991,7,24,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,27.8,10.0,33,98500,998,1324,425,540,212,380,58900,22500,41900,12510,320,2.1,9,9,32.0,2700,9,999999999,329,0.1960,0,88,0.190,0.0,99.0 +1991,7,24,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,10.6,36,98500,810,1324,432,164,0,164,19500,0,19500,7610,340,1.5,10,10,32.0,2700,9,999999999,329,0.1960,0,88,0.190,999.0,99.0 +1991,7,24,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,12.2,43,98500,586,1324,428,132,0,132,15300,0,15300,5510,360,2.1,10,10,32.0,3600,9,999999999,329,0.1960,0,88,0.190,999.0,99.0 +1991,7,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,12.8,48,98500,341,1324,410,72,12,69,8300,500,8100,2650,360,2.1,9,9,32.0,2700,9,999999999,329,0.1960,0,88,0.190,0.0,6.0 +1991,7,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,13.3,53,98500,98,1224,405,23,3,23,2600,0,2600,790,10,1.5,9,9,32.0,2700,9,999999999,329,0.1960,0,88,0.190,999.0,99.0 +1991,7,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.8,13.9,57,98600,0,0,403,0,0,0,0,0,0,0,0,0.0,9,9,32.0,2700,9,999999999,329,0.1960,0,88,0.190,999.0,99.0 +1991,7,24,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,22.2,14.4,61,98600,0,0,400,0,0,0,0,0,0,0,0,0.0,9,9,16.0,2700,9,999999999,340,0.1960,0,88,0.190,0.0,99.0 +1991,7,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.7,13.3,59,98600,0,0,396,0,0,0,0,0,0,0,0,0.0,9,9,16.0,3600,9,999999999,340,0.1960,0,88,0.190,999.0,99.0 +1991,7,24,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.7,14.4,63,98600,0,0,397,0,0,0,0,0,0,0,0,0.0,9,9,16.0,3600,9,999999999,340,0.1960,0,88,0.190,999.0,99.0 +1991,7,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,16.1,73,98500,0,0,377,0,0,0,0,0,0,0,0,0.0,9,6,16.0,3600,9,999999999,340,0.1970,0,88,0.190,0.0,6.0 +1991,7,25,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,14.4,66,98600,0,0,375,0,0,0,0,0,0,0,0,0.0,9,6,16.0,3600,9,999999999,340,0.1970,0,88,0.190,999.0,99.0 +1991,7,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.6,15.0,70,98500,0,0,374,0,0,0,0,0,0,0,0,0.0,9,6,16.0,3600,9,999999999,340,0.1970,0,88,0.190,999.0,99.0 +1991,7,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,19.4,15.6,79,98500,0,0,368,0,0,0,0,0,0,0,0,0.0,9,6,16.0,3600,9,999999999,340,0.1970,0,88,0.190,0.0,99.0 +1991,7,25,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,16.1,81,98600,0,0,369,0,0,0,0,0,0,0,0,0.0,9,6,16.0,3600,9,999999999,340,0.1970,0,88,0.190,999.0,99.0 +1991,7,25,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,14.4,70,98600,27,673,388,5,1,5,600,0,600,200,0,0.0,10,9,16.0,2100,9,999999999,340,0.1970,0,88,0.190,999.0,99.0 +1991,7,25,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,15.0,73,98600,235,1324,389,86,73,73,9300,5400,8300,1560,0,0.0,10,9,11.2,2100,9,999999999,340,0.1970,0,88,0.190,999.0,99.0 +1991,7,25,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,14.4,66,98700,482,1324,375,240,105,201,26200,10100,22500,5040,340,2.1,9,6,11.2,2100,9,999999999,340,0.1970,0,88,0.190,999.0,99.0 +1991,7,25,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,14.4,66,98700,717,1324,375,403,350,213,43400,36700,23400,4950,360,2.1,9,6,11.2,2100,9,999999999,340,0.1970,0,88,0.190,999.0,99.0 +1991,7,25,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,22.2,13.9,59,98800,922,1324,380,380,293,176,41900,30500,20600,4790,360,2.1,9,6,11.2,2100,9,999999999,340,0.1970,0,88,0.190,0.0,99.0 +1991,7,25,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,13.3,51,98800,1085,1324,388,564,402,234,61900,42100,27300,8910,360,1.0,9,6,19.2,3600,9,999999999,329,0.1970,0,88,0.190,999.0,99.0 +1991,7,25,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,13.3,44,98800,1192,1324,385,875,816,140,89800,81700,16100,5750,0,0.0,3,1,19.2,77777,9,999999999,329,0.1970,0,88,0.190,999.0,99.0 +1991,7,25,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,12.2,41,98800,1239,1324,402,897,604,332,97200,63200,37900,22320,360,2.6,9,6,19.2,3600,9,999999999,329,0.1970,0,88,0.190,0.0,6.0 +1991,7,25,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,12.2,39,98800,1220,1324,405,784,568,260,83100,57700,29800,15500,240,2.1,9,6,19.2,3600,9,999999999,329,0.1970,0,88,0.190,999.0,99.0 +1991,7,25,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.9,11.7,35,98800,1137,1324,413,635,378,310,68300,39500,34300,13870,290,2.1,9,6,19.2,3600,9,999999999,320,0.1970,0,88,0.190,999.0,99.0 +1991,7,25,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,28.3,10.6,33,98700,997,1324,408,584,480,222,63600,50100,25800,6940,330,3.1,9,6,19.2,3600,9,999999999,320,0.1970,0,88,0.190,0.0,99.0 +1991,7,25,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,8.9,28,98700,808,1324,412,526,524,207,56100,53800,23200,4960,10,0.5,9,6,19.2,3600,9,999999999,320,0.1970,0,88,0.190,999.0,99.0 +1991,7,25,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,8.3,28,98700,583,1324,386,351,590,90,37000,57400,11700,1860,0,0.0,3,1,24.0,77777,9,999999999,309,0.1970,0,88,0.190,999.0,99.0 +1991,7,25,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,9.4,33,98700,339,1324,382,180,430,70,18400,35800,9200,1260,0,0.0,2,1,24.0,77777,9,999999999,309,0.1970,0,88,0.190,0.0,6.0 +1991,7,25,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,12.8,47,98700,95,1225,375,32,139,21,3500,6400,2900,370,0,0.0,3,1,24.0,77777,9,999999999,309,0.1970,0,88,0.190,999.0,99.0 +1991,7,25,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,13.9,63,98800,0,0,357,0,0,0,0,0,0,0,0,0.0,2,1,24.0,77777,9,999999999,309,0.1970,0,88,0.190,999.0,99.0 +1991,7,25,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,20.6,15.0,70,98900,0,0,356,0,0,0,0,0,0,0,0,0.0,3,1,24.0,77777,9,999999999,300,0.1970,0,88,0.190,0.0,99.0 +1991,7,25,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,13.9,70,98900,0,0,349,0,0,0,0,0,0,0,0,0.0,2,1,24.0,77777,9,999999999,300,0.1970,0,88,0.190,999.0,99.0 +1991,7,25,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,13.9,70,98900,0,0,349,0,0,0,0,0,0,0,0,0.0,3,1,24.0,77777,9,999999999,300,0.1970,0,88,0.190,999.0,99.0 +1991,7,26,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,14.4,75,98900,0,0,356,0,0,0,0,0,0,0,0,0.0,3,3,24.0,77777,9,999999999,300,0.1980,0,88,0.190,0.0,6.0 +1991,7,26,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,13.9,81,98900,0,0,332,0,0,0,0,0,0,0,0,0.0,0,0,24.0,77777,9,999999999,290,0.1980,0,88,0.190,999.0,99.0 +1991,7,26,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,13.9,81,98900,0,0,332,0,0,0,0,0,0,0,0,0.0,0,0,24.0,77777,9,999999999,290,0.1980,0,88,0.190,999.0,99.0 +1991,7,26,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,16.1,13.9,87,98900,0,0,338,0,0,0,0,0,0,0,0,0.0,2,2,24.0,77777,9,999999999,290,0.1980,0,88,0.190,0.0,99.0 +1991,7,26,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,12.8,81,98900,0,0,340,0,0,0,0,0,0,0,0,0.0,3,3,24.0,77777,9,999999999,290,0.1980,0,88,0.190,999.0,99.0 +1991,7,26,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,12.8,87,99000,26,651,347,5,1,5,600,0,600,190,0,0.0,9,7,24.0,77777,9,999999999,279,0.1980,0,88,0.190,999.0,99.0 +1991,7,26,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,13.3,78,99100,232,1324,364,62,32,56,6800,2500,6300,1410,0,0.0,9,8,24.0,77777,9,999999999,279,0.1980,0,88,0.190,0.0,6.0 +1991,7,26,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,15.0,73,99200,480,1324,375,169,125,124,18600,12100,14300,2850,30,2.1,9,7,24.0,77777,9,999999999,279,0.1980,0,88,0.190,999.0,99.0 +1991,7,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,15.6,66,99200,715,1324,373,426,513,149,46100,52100,17900,3210,50,2.1,3,3,24.0,77777,9,999999999,279,0.1980,0,88,0.190,999.0,99.0 +1991,7,26,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,25.6,15.0,52,99200,920,1324,386,622,606,201,65100,60900,22600,5430,40,3.6,2,2,24.0,77777,9,999999999,279,0.1980,0,88,0.190,0.0,99.0 +1991,7,26,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,13.9,44,99200,1083,1324,397,755,698,184,80900,71500,22300,7030,40,4.1,3,3,24.0,77777,9,999999999,279,0.1980,0,88,0.190,999.0,99.0 +1991,7,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,13.9,41,99200,1191,1324,418,419,170,266,47400,18600,30600,12740,30,3.1,9,7,24.0,7500,9,999999999,279,0.1980,0,88,0.190,999.0,99.0 +1991,7,26,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,12.8,42,99200,1237,1324,414,478,113,373,53300,12100,42000,20750,30,3.1,9,8,24.0,1200,9,999999999,279,0.1980,0,88,0.190,0.0,6.0 +1991,7,26,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.9,12.8,37,99200,1218,1324,419,682,358,353,73200,37400,38700,21490,60,2.6,9,7,24.0,1200,9,999999999,279,0.1980,0,88,0.190,999.0,99.0 +1991,7,26,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,12.2,38,99100,1135,1324,419,540,241,332,59500,26200,37000,13740,40,4.1,9,8,24.0,1200,9,999999999,279,0.1980,0,88,0.190,999.0,99.0 +1991,7,26,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,27.8,13.3,41,99100,995,1324,414,498,244,314,54200,26400,34300,9860,30,3.1,9,7,24.0,1200,9,999999999,279,0.1980,0,88,0.190,0.0,99.0 +1991,7,26,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,12.8,38,99100,805,1324,401,526,542,196,56300,55700,22300,4660,30,2.6,3,3,24.0,77777,9,999999999,279,0.1980,0,88,0.190,999.0,99.0 +1991,7,26,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,13.9,45,99100,581,1324,409,275,111,226,30100,11000,25300,6130,40,4.1,9,7,24.0,1350,9,999999999,270,0.1980,0,88,0.190,999.0,99.0 +1991,7,26,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,13.3,48,99200,336,1324,385,123,224,66,13100,18700,8400,1190,50,5.1,3,3,24.0,77777,9,999999999,270,0.1980,0,88,0.190,0.0,6.0 +1991,7,26,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,13.3,53,99200,92,1203,372,26,57,22,2900,2400,2700,380,20,2.1,2,2,24.0,77777,9,999999999,270,0.1980,0,88,0.190,999.0,99.0 +1991,7,26,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.6,13.3,63,99200,0,0,363,0,0,0,0,0,0,0,20,2.1,3,3,24.0,77777,9,999999999,270,0.1980,0,88,0.190,999.0,99.0 +1991,7,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,18.9,13.3,70,99300,0,0,351,0,0,0,0,0,0,0,30,2.6,2,2,24.0,77777,9,999999999,270,0.1980,0,88,0.190,0.0,99.0 +1991,7,26,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.9,13.3,70,99300,0,0,354,0,0,0,0,0,0,0,30,2.1,3,3,24.0,77777,9,999999999,270,0.1980,0,88,0.190,999.0,99.0 +1991,7,26,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.8,12.2,70,99300,0,0,344,0,0,0,0,0,0,0,40,0.5,2,2,24.0,77777,9,999999999,270,0.1980,0,88,0.190,999.0,99.0 +1991,7,27,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,11.7,72,99300,0,0,339,0,0,0,0,0,0,0,30,1.0,2,2,24.0,77777,9,999999999,270,0.1990,0,88,0.190,0.0,6.0 +1991,7,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.7,10.6,67,99300,0,0,341,0,0,0,0,0,0,0,30,1.0,3,3,24.0,77777,9,999999999,270,0.1990,0,88,0.190,999.0,99.0 +1991,7,27,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,11.1,72,99300,0,0,335,0,0,0,0,0,0,0,40,1.5,2,2,24.0,77777,9,999999999,270,0.1990,0,88,0.190,999.0,99.0 +1991,7,27,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,15.6,10.6,72,99300,0,0,336,0,0,0,0,0,0,0,30,1.5,3,3,24.0,77777,9,999999999,270,0.1990,0,88,0.190,0.0,99.0 +1991,7,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.6,10.6,72,99300,0,0,361,0,0,0,0,0,0,0,0,0.0,9,9,24.0,1800,9,999999999,270,0.1990,0,88,0.190,999.0,99.0 +1991,7,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,11.1,72,99300,24,629,364,4,0,4,0,0,0,0,30,0.5,9,9,32.0,1800,9,999999999,270,0.1990,0,88,0.190,999.0,99.0 +1991,7,27,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,11.7,70,99400,229,1324,370,47,15,44,5100,1200,4900,1150,0,0.0,9,9,32.0,1800,9,999999999,270,0.1990,0,88,0.190,0.0,6.0 +1991,7,27,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,11.1,57,99500,477,1324,357,261,415,111,27500,38800,13600,2110,60,2.6,3,3,32.0,77777,9,999999999,270,0.1990,0,88,0.190,999.0,99.0 +1991,7,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,10.6,48,99500,712,1324,364,461,559,160,49500,56700,18900,3460,70,4.1,2,2,32.0,77777,9,999999999,270,0.1990,0,88,0.190,999.0,99.0 +1991,7,27,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,23.9,10.6,43,99500,918,1324,376,442,332,211,47800,34500,23800,5770,90,4.6,3,3,32.0,77777,9,999999999,270,0.1990,0,88,0.190,0.0,99.0 +1991,7,27,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,10.0,39,99500,1081,1324,377,777,738,174,83600,75800,21600,6650,60,3.1,2,2,32.0,77777,9,999999999,259,0.1990,0,88,0.190,999.0,99.0 +1991,7,27,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,9.4,36,99400,1189,1324,383,782,636,211,84000,65200,25300,11170,80,3.1,3,3,32.0,77777,9,999999999,259,0.1990,0,88,0.190,999.0,99.0 +1991,7,27,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,9.4,34,99400,1235,1324,385,910,759,201,95000,76100,23800,11960,100,3.6,2,2,32.0,77777,9,999999999,259,0.1990,0,88,0.190,0.0,6.0 +1991,7,27,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,9.4,33,99400,1217,1324,391,856,692,220,91900,70900,26600,13030,30,3.1,3,3,32.0,77777,9,999999999,259,0.1990,0,88,0.190,999.0,99.0 +1991,7,27,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,9.4,32,99300,1134,1324,391,821,699,223,87300,71200,26200,9680,90,2.1,2,2,32.0,77777,9,999999999,259,0.1990,0,88,0.190,999.0,99.0 +1991,7,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,27.8,8.3,29,99300,993,1324,393,709,715,173,75600,73000,20800,5430,40,2.6,3,3,32.0,77777,9,999999999,259,0.1990,0,88,0.190,0.0,99.0 +1991,7,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,7.8,28,99300,803,1324,388,520,627,140,55000,63200,16600,3360,80,3.1,2,2,32.0,77777,9,999999999,259,0.1990,0,88,0.190,999.0,99.0 +1991,7,27,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,8.9,32,99200,578,1324,391,262,337,114,28200,33000,13800,2230,70,2.1,3,3,32.0,77777,9,999999999,259,0.1990,0,88,0.190,999.0,99.0 +1991,7,27,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,9.4,35,99300,333,1324,415,67,42,56,7300,3600,6400,1570,30,2.6,9,9,32.0,77777,9,999999999,259,0.1990,0,88,0.190,0.0,6.0 +1991,7,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.7,10.6,49,99200,89,1181,365,31,65,26,3300,2600,3100,460,40,2.1,3,3,32.0,77777,9,999999999,259,0.1990,0,88,0.190,999.0,99.0 +1991,7,27,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,11.1,57,99300,0,0,354,0,0,0,0,0,0,0,50,3.1,2,2,32.0,77777,9,999999999,259,0.1990,0,88,0.190,999.0,99.0 +1991,7,27,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,20.0,10.0,53,99300,0,0,356,0,0,0,0,0,0,0,50,4.1,3,3,32.0,77777,9,999999999,259,0.1990,0,88,0.190,0.0,99.0 +1991,7,27,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,9.4,56,99300,0,0,344,0,0,0,0,0,0,0,50,3.1,2,2,32.0,77777,9,999999999,259,0.1990,0,88,0.190,999.0,99.0 +1991,7,27,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.7,9.4,62,99300,0,0,339,0,0,0,0,0,0,0,30,2.1,3,3,32.0,77777,9,999999999,259,0.1990,0,88,0.190,999.0,99.0 +1991,7,28,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,8.3,60,99300,0,0,328,0,0,0,0,0,0,0,30,2.1,3,1,32.0,77777,9,999999999,259,0.2000,0,88,0.190,0.0,6.0 +1991,7,28,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.6,8.3,62,99200,0,0,325,0,0,0,0,0,0,0,40,1.5,2,1,32.0,77777,9,999999999,259,0.2000,0,88,0.190,999.0,99.0 +1991,7,28,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.6,8.3,62,99200,0,0,325,0,0,0,0,0,0,0,40,1.5,3,1,32.0,77777,9,999999999,259,0.2000,0,88,0.190,999.0,99.0 +1991,7,28,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,14.4,8.3,67,99200,0,0,320,0,0,0,0,0,0,0,50,2.1,2,1,32.0,77777,9,999999999,259,0.2000,0,88,0.190,0.0,99.0 +1991,7,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,8.3,67,99100,0,0,330,0,0,0,0,0,0,0,30,0.5,9,4,32.0,77777,9,999999999,259,0.2000,0,88,0.190,999.0,99.0 +1991,7,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.9,8.9,72,99100,23,607,328,5,0,5,0,0,0,0,50,1.0,9,4,32.0,4200,9,999999999,259,0.2000,0,88,0.190,999.0,99.0 +1991,7,28,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,9.4,69,99100,226,1325,334,77,11,75,8400,400,8300,2300,50,1.5,9,4,32.0,4200,9,999999999,259,0.2000,0,88,0.190,0.0,6.0 +1991,7,28,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,9.4,56,99200,474,1325,350,219,126,174,23600,12000,19300,3990,60,2.1,9,4,32.0,4200,9,999999999,259,0.2000,0,88,0.190,999.0,99.0 +1991,7,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,9.4,52,99200,710,1325,358,416,203,308,44700,20800,33500,7880,60,2.6,10,5,32.0,4200,9,999999999,259,0.2000,0,88,0.190,999.0,99.0 +1991,7,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,20.6,10.6,53,99200,916,1325,365,590,280,396,63600,29400,43300,11870,50,2.1,10,5,32.0,4200,9,999999999,259,0.2000,0,88,0.190,0.0,99.0 +1991,7,28,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.8,10.6,46,99200,1079,1325,376,696,325,431,74800,35100,46100,16310,30,2.1,10,5,32.0,4200,9,999999999,259,0.2000,0,88,0.190,999.0,99.0 +1991,7,28,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,11.1,46,99100,1188,1325,379,799,287,541,86600,30400,59300,25480,50,2.6,10,5,32.0,4200,9,999999999,259,0.2000,0,88,0.190,999.0,99.0 +1991,7,28,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,11.1,43,99100,1234,1325,385,856,364,516,92500,39500,55600,30850,30,2.1,10,5,32.0,4200,9,999999999,270,0.2000,0,88,0.190,0.0,6.0 +1991,7,28,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,11.1,42,99100,1215,1325,388,698,215,500,76200,22800,55200,25610,20,3.1,10,5,32.0,4200,9,999999999,270,0.2000,0,88,0.190,999.0,99.0 +1991,7,28,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,11.1,40,99000,1132,1325,388,681,339,392,74400,36800,42800,16380,40,3.1,9,4,32.0,4200,9,999999999,270,0.2000,0,88,0.190,999.0,99.0 +1991,7,28,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,25.6,11.1,40,98900,991,1325,388,627,345,369,67400,37200,39600,11830,30,1.0,9,4,32.0,4200,9,999999999,270,0.2000,0,88,0.190,0.0,99.0 +1991,7,28,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,11.1,38,98900,801,1325,382,452,335,250,48800,35600,27200,6250,60,2.1,3,1,32.0,77777,9,999999999,270,0.2000,0,88,0.190,999.0,99.0 +1991,7,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,10.6,39,98800,575,1325,376,278,234,176,29600,23600,19300,3800,40,1.0,2,1,32.0,77777,9,999999999,270,0.2000,0,88,0.190,999.0,99.0 +1991,7,28,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,11.1,40,98900,330,1325,376,124,89,101,13300,7600,11500,2210,50,1.0,3,1,32.0,77777,9,999999999,270,0.2000,0,88,0.190,0.0,6.0 +1991,7,28,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,11.7,46,98800,86,1159,368,22,1,22,2500,0,2500,760,50,1.0,2,1,32.0,77777,9,999999999,270,0.2000,0,88,0.190,999.0,99.0 +1991,7,28,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.7,12.2,55,98900,0,0,358,0,0,0,0,0,0,0,0,0.0,3,1,32.0,77777,9,999999999,279,0.2000,0,88,0.190,999.0,99.0 +1991,7,28,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,20.0,13.3,65,98800,0,0,351,0,0,0,0,0,0,0,0,0.0,2,1,32.0,77777,9,999999999,279,0.2000,0,88,0.190,0.0,99.0 +1991,7,28,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.6,12.8,61,98800,0,0,354,0,0,0,0,0,0,0,0,0.0,3,1,32.0,77777,9,999999999,279,0.2000,0,88,0.190,999.0,99.0 +1991,7,28,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.8,13.3,75,98800,0,0,341,0,0,0,0,0,0,0,0,0.0,2,1,32.0,77777,9,999999999,279,0.2000,0,88,0.190,999.0,99.0 +1991,7,29,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,13.3,83,98700,0,0,338,0,0,0,0,0,0,0,0,0.0,2,2,32.0,77777,9,999999999,279,0.2010,0,88,0.190,0.0,6.0 +1991,7,29,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,13.3,83,98600,0,0,341,0,0,0,0,0,0,0,0,0.0,3,3,32.0,77777,9,999999999,279,0.2010,0,88,0.190,999.0,99.0 +1991,7,29,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.8,12.8,73,98600,0,0,345,0,0,0,0,0,0,0,0,0.0,2,2,32.0,77777,9,999999999,279,0.2010,0,88,0.190,999.0,99.0 +1991,7,29,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,17.8,12.8,73,98600,0,0,348,0,0,0,0,0,0,0,0,0.0,3,3,32.0,77777,9,999999999,279,0.2010,0,88,0.190,0.0,99.0 +1991,7,29,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.8,12.8,73,98600,0,0,361,0,0,0,0,0,0,0,0,0.0,9,7,16.0,3000,9,999999999,290,0.2010,0,88,0.190,999.0,99.0 +1991,7,29,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,13.3,83,98600,21,585,341,3,0,3,0,0,0,0,0,0.0,3,3,16.0,77777,9,999999999,290,0.2010,0,88,0.190,999.0,99.0 +1991,7,29,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,14.4,86,98600,223,1325,342,75,96,58,8100,6900,6900,1230,0,0.0,2,2,16.0,77777,9,999999999,290,0.2010,0,88,0.190,0.0,6.0 +1991,7,29,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.6,13.3,63,98600,471,1325,363,200,242,114,21600,23200,13300,2250,0,0.0,3,3,16.0,77777,9,999999999,290,0.2010,0,88,0.190,999.0,99.0 +1991,7,29,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,13.9,54,98700,708,1325,364,449,535,163,48100,54200,19100,3520,0,0.0,0,0,16.0,77777,9,999999999,290,0.2010,0,88,0.190,999.0,99.0 +1991,7,29,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,26.1,12.2,42,98700,914,1325,389,535,449,225,57500,46600,25300,6150,0,0.0,3,3,16.0,77777,9,999999999,290,0.2010,0,88,0.190,0.0,99.0 +1991,7,29,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,12.8,41,98600,1077,1325,392,779,610,282,83800,63700,31900,10630,220,2.1,2,2,16.0,77777,9,999999999,290,0.2010,0,88,0.190,999.0,99.0 +1991,7,29,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.9,12.2,36,98600,1186,1325,404,812,539,329,87300,56400,36800,17400,230,3.1,3,3,16.0,77777,9,999999999,290,0.2010,0,88,0.190,999.0,99.0 +1991,7,29,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,10.0,30,98600,1232,1325,400,929,724,255,98800,73700,30100,16100,280,2.1,2,2,16.0,77777,9,999999999,290,0.2010,0,88,0.190,0.0,6.0 +1991,7,29,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.6,10.0,28,98600,1213,1325,410,880,616,316,92000,61800,35300,17930,220,2.6,3,3,11.2,77777,9,999999999,290,0.2010,0,88,0.190,999.0,99.0 +1991,7,29,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.7,15.0,36,98500,1130,1325,419,783,557,307,84100,58200,34400,13400,240,3.1,2,2,11.2,77777,9,999999999,290,0.2010,0,88,0.190,999.0,99.0 +1991,7,29,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,30.6,14.4,37,98400,989,1325,438,325,90,257,36200,9600,29000,8340,270,2.6,9,8,11.2,1800,9,999999999,290,0.2010,0,88,0.190,0.0,99.0 +1991,7,29,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,12.8,36,98400,798,1325,451,199,0,199,23200,0,23200,8790,260,3.1,10,10,9.6,3600,9,999999999,290,0.2010,0,88,0.190,999.0,99.0 +1991,7,29,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,13.9,41,98400,572,1325,446,126,0,126,14600,0,14600,5260,270,2.1,10,10,11.2,3600,9,999999999,290,0.2010,0,88,0.190,999.0,99.0 +1991,7,29,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,14.4,44,98400,326,1325,416,121,101,96,13100,8600,11000,2100,230,2.1,9,7,11.2,7500,9,999999999,290,0.2010,0,88,0.190,0.0,6.0 +1991,7,29,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,14.4,45,98400,83,1137,419,20,1,20,2300,0,2300,700,200,2.6,9,8,11.2,3600,9,999999999,290,0.2010,0,88,0.190,999.0,99.0 +1991,7,29,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,15.6,52,98400,0,0,408,0,0,0,0,0,0,0,240,2.1,9,7,9.6,3600,9,999999999,290,0.2010,0,88,0.190,999.0,99.0 +1991,7,29,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.8,18.9,79,98500,0,0,421,0,0,0,0,0,0,0,330,4.1,10,10,9.6,1800,9,999999999,290,0.2010,0,88,0.190,999.0,99.0 +1991,7,29,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,19.4,90,98400,0,0,412,0,0,0,0,0,0,0,0,0.0,10,10,8.0,1200,9,999999999,290,0.2010,0,88,0.190,999.0,99.0 +1991,7,29,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.6,20.0,96,98400,0,0,390,0,0,0,0,0,0,0,0,0.0,9,8,6.4,7500,9,999999999,290,0.2010,0,88,0.190,999.0,99.0 +1991,7,30,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,19.4,93,98400,0,0,370,0,0,0,0,0,0,0,0,0.0,3,3,11.2,77777,9,999999999,290,0.2020,0,88,0.190,0.0,6.0 +1991,7,30,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.6,19.4,93,98400,0,0,398,0,0,0,0,0,0,0,0,0.0,9,9,8.0,2400,9,999999999,290,0.2020,0,88,0.190,999.0,99.0 +1991,7,30,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,18.3,93,98400,0,0,401,0,0,0,0,0,0,0,0,0.0,10,10,4.8,1350,9,999999999,290,0.2020,0,88,0.190,999.0,99.0 +1991,7,30,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,18.9,17.8,93,98500,0,0,398,0,0,0,0,0,0,0,0,0.0,10,10,4.0,360,9,999999999,290,0.2020,0,88,0.190,0.0,99.0 +1991,7,30,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,17.2,93,98500,0,0,394,0,0,0,0,0,0,0,340,2.1,10,10,3.2,150,9,999999999,290,0.2020,0,88,0.190,999.0,99.0 +1991,7,30,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.8,16.1,90,98500,20,563,379,4,1,4,0,0,0,0,360,2.1,9,9,3.2,450,9,999999999,290,0.2020,0,88,0.190,999.0,99.0 +1991,7,30,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,15.0,87,98600,220,1325,374,44,48,36,4900,3500,4400,760,350,2.1,9,9,3.2,450,9,999999999,290,0.2020,0,88,0.190,0.0,6.0 +1991,7,30,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,15.0,81,98700,469,1325,380,177,37,164,19400,3500,18100,4300,360,3.1,9,9,6.4,300,9,999999999,290,0.2020,0,88,0.190,999.0,99.0 +1991,7,30,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.6,14.4,68,98700,705,1325,391,350,143,274,37800,14700,29900,6990,360,3.1,9,9,9.6,510,9,999999999,279,0.2020,0,88,0.190,999.0,99.0 +1991,7,30,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,21.1,14.4,66,98700,912,1325,394,269,44,239,29700,4500,26700,8730,340,4.1,9,9,9.6,750,9,999999999,279,0.2020,0,88,0.190,0.0,99.0 +1991,7,30,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.7,13.3,59,98800,1076,1325,396,571,376,266,61800,39300,29900,9940,340,4.1,9,9,11.2,990,9,999999999,279,0.2020,0,88,0.190,999.0,99.0 +1991,7,30,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,13.3,53,98800,1184,1325,405,385,82,311,43100,8800,35200,14470,320,3.1,9,9,11.2,1050,9,999999999,270,0.2020,0,88,0.190,999.0,99.0 +1991,7,30,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,11.7,46,98800,1230,1325,406,476,156,332,53500,16800,37900,17930,340,3.1,9,9,11.2,1200,9,999999999,270,0.2020,0,88,0.190,0.0,6.0 +1991,7,30,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,12.8,50,98800,1211,1325,375,882,767,180,92900,77300,22100,9630,10,2.6,2,2,11.2,77777,9,999999999,270,0.2020,0,88,0.190,999.0,99.0 +1991,7,30,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,12.2,43,98800,1128,1325,416,234,101,148,27400,11100,18000,5630,360,3.1,9,9,11.2,1200,9,999999999,270,0.2020,0,88,0.190,999.0,99.0 +1991,7,30,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,25.0,11.7,43,98700,986,1325,412,353,78,294,38900,8000,32900,11170,340,3.1,9,9,11.2,1200,9,999999999,259,0.2020,0,88,0.190,0.0,99.0 +1991,7,30,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,11.7,38,98700,796,1325,424,449,129,371,49200,13300,41200,10950,360,3.1,9,9,11.2,1200,9,999999999,259,0.2020,0,88,0.190,999.0,99.0 +1991,7,30,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,11.1,39,98700,569,1325,417,243,67,214,26600,6600,23800,5830,360,3.1,9,9,11.2,1200,9,999999999,259,0.2020,0,88,0.190,999.0,99.0 +1991,7,30,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,11.7,45,98700,323,1325,380,130,257,67,13800,21100,8600,1210,360,2.1,3,3,11.2,77777,9,999999999,250,0.2020,0,88,0.190,0.0,6.0 +1991,7,30,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,11.7,51,98800,80,1116,365,26,75,21,2900,2900,2700,360,10,1.0,2,2,11.2,77777,9,999999999,250,0.2020,0,88,0.190,999.0,99.0 +1991,7,30,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,11.7,59,98800,0,0,343,0,0,0,0,0,0,0,0,0.0,0,0,11.2,77777,9,999999999,250,0.2020,0,88,0.190,999.0,99.0 +1991,7,30,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,18.9,12.8,68,98800,0,0,339,0,0,0,0,0,0,0,0,0.0,0,0,11.2,77777,9,999999999,240,0.2020,0,88,0.190,0.0,99.0 +1991,7,30,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.6,13.3,86,98900,0,0,325,0,0,0,0,0,0,0,0,0.0,0,0,11.2,77777,9,999999999,240,0.2020,0,88,0.190,999.0,99.0 +1991,7,30,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.6,12.2,80,98900,0,0,323,0,0,0,0,0,0,0,0,0.0,0,0,11.2,77777,9,999999999,240,0.2020,0,88,0.190,999.0,99.0 +1991,7,31,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,12.2,87,98800,0,0,318,0,0,0,0,0,0,0,0,0.0,0,0,11.2,77777,9,999999999,240,0.2020,0,88,0.190,0.0,6.0 +1991,7,31,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.8,11.7,93,98800,0,0,310,0,0,0,0,0,0,0,0,0.0,0,0,11.2,77777,9,999999999,229,0.2020,0,88,0.190,999.0,99.0 +1991,7,31,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.3,11.7,90,98800,0,0,313,0,0,0,0,0,0,0,0,0.0,0,0,11.2,77777,9,999999999,229,0.2020,0,88,0.190,999.0,99.0 +1991,7,31,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,12.8,11.7,93,98900,0,0,310,0,0,0,0,0,0,0,0,0.0,0,0,11.2,77777,9,999999999,229,0.2020,0,88,0.190,0.0,99.0 +1991,7,31,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.2,11.7,97,98900,0,0,308,0,0,0,0,0,0,0,0,0.0,0,0,11.2,77777,9,999999999,220,0.2020,0,88,0.190,999.0,99.0 +1991,7,31,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.2,11.1,93,98900,19,541,307,4,21,3,0,0,0,0,0,0.0,0,0,11.2,77777,9,999999999,220,0.2020,0,88,0.190,999.0,99.0 +1991,7,31,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,12.8,90,99000,217,1326,319,98,341,42,10000,23900,6100,750,0,0.0,0,0,16.0,77777,9,999999999,220,0.2020,0,88,0.190,0.0,6.0 +1991,7,31,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.8,13.9,78,99000,466,1326,335,283,604,71,29800,56000,10100,1400,0,0.0,0,0,16.0,77777,9,999999999,220,0.2020,0,88,0.190,999.0,99.0 +1991,7,31,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,12.8,55,99000,703,1326,355,486,734,96,50700,72200,12300,2060,0,0.0,0,0,16.0,77777,9,999999999,220,0.2020,0,88,0.190,999.0,99.0 +1991,7,31,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,24.4,11.1,43,99100,910,1326,363,670,806,117,71000,81100,15200,3090,0,0.0,0,0,16.0,77777,9,999999999,229,0.2020,0,88,0.190,0.0,99.0 +1991,7,31,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,11.7,43,99100,1074,1326,379,736,655,205,78200,66700,24000,7560,0,0.0,2,2,16.0,77777,9,999999999,229,0.2020,0,88,0.190,999.0,99.0 +1991,7,31,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,10.0,37,99100,1182,1326,384,625,503,176,67900,51900,21500,9130,0,0.0,3,3,16.0,77777,9,999999999,229,0.2020,0,88,0.190,999.0,99.0 +1991,7,31,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,10.0,32,99100,1229,1326,394,867,782,142,88900,78300,16200,6860,270,1.0,2,2,16.0,77777,9,999999999,229,0.2020,0,88,0.190,0.0,6.0 +1991,7,31,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,7.8,27,99000,1210,1326,395,661,368,325,71400,38500,36200,18870,310,0.5,3,3,16.0,77777,9,999999999,240,0.2020,0,88,0.190,999.0,99.0 +1991,7,31,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,9.4,29,99000,1126,1326,399,801,751,162,84300,75700,19900,6390,100,0.5,2,2,16.0,77777,9,999999999,240,0.2020,0,88,0.190,999.0,99.0 +1991,7,31,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,29.4,9.4,29,99000,984,1326,403,715,682,209,75100,68900,23900,6300,360,1.0,3,3,16.0,77777,9,999999999,240,0.2020,0,88,0.190,0.0,99.0 +1991,7,31,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,10.0,29,98900,793,1326,403,519,667,120,55400,67500,14900,2900,300,1.0,2,2,16.0,77777,9,999999999,250,0.2020,0,88,0.190,999.0,99.0 +1991,7,31,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.9,10.0,31,98900,566,1326,401,353,572,108,36600,54800,13200,2140,320,0.5,3,3,16.0,77777,9,999999999,250,0.2020,0,88,0.190,999.0,99.0 +1991,7,31,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,11.1,34,98900,320,1326,429,93,0,92,10200,0,10200,3150,0,0.0,9,9,16.0,77777,9,999999999,250,0.2020,0,88,0.190,0.0,6.0 +1991,7,31,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,11.7,41,98900,77,1094,389,24,76,19,2700,2900,2500,320,0,0.0,3,3,16.0,77777,9,999999999,250,0.2020,0,88,0.190,999.0,99.0 +1991,7,31,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.8,15.0,61,98900,0,0,372,0,0,0,0,0,0,0,0,0.0,2,2,16.0,77777,9,999999999,259,0.2020,0,88,0.190,999.0,99.0 +1991,7,31,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,22.2,15.4,70,98900,0,0,373,0,0,0,0,0,0,0,0,0.1,3,3,32.0,77777,9,999999999,259,0.2020,0,88,0.190,0.0,99.0 +1991,7,31,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.5,15.8,65,98900,0,0,366,0,0,0,0,0,0,0,0,0.3,2,2,32.0,77777,9,999999999,259,0.2020,0,88,0.190,999.0,99.0 +1991,7,31,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.9,16.2,65,98900,0,0,367,0,0,0,0,0,0,0,0,0.4,3,3,32.0,77777,9,999999999,259,0.2020,0,88,0.190,999.0,99.0 +1994,8,1,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.2,16.5,90,99000,0,0,349,0,0,0,0,0,0,0,60,0.6,0,0,8.0,77777,9,999999999,309,0.1870,0,88,0.170,0.0,6.0 +1994,8,1,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.6,16.9,90,99000,0,0,347,0,0,0,0,0,0,0,50,0.7,0,0,6.4,77777,9,999999999,309,0.1870,0,88,0.170,999.0,99.0 +1994,8,1,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.9,17.3,93,99000,0,0,362,0,0,0,0,0,0,0,70,0.9,9,4,4.8,3000,9,999999999,309,0.1870,0,88,0.170,999.0,99.0 +1994,8,1,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,17.7,96,99000,0,0,359,0,0,0,0,0,0,0,40,1.0,9,4,4.8,3300,9,999999999,309,0.1870,0,88,0.170,999.0,99.0 +1994,8,1,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,17.2,97,99000,0,0,345,0,0,0,0,0,0,0,60,1.5,3,1,4.4,77777,9,999999999,309,0.1870,0,88,0.170,999.0,99.0 +1994,8,1,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.6,15.5,93,99000,17,519,338,2,0,2,0,0,0,0,60,1.5,2,1,2.4,77777,9,999999999,309,0.1870,0,88,0.170,999.0,99.0 +1994,8,1,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.8,17.7,93,99000,212,1326,362,71,21,67,7700,1600,7400,1570,60,1.5,9,4,3.2,3600,9,999999999,309,0.1870,0,88,0.170,0.0,6.0 +1994,8,1,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,18.3,84,99100,462,1326,362,207,203,137,22000,19300,15300,2810,290,1.0,2,1,4.4,77777,9,999999999,309,0.1870,0,88,0.170,999.0,99.0 +1994,8,1,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,18.8,74,99100,699,1326,376,391,339,213,42100,35400,23400,4910,150,1.5,3,1,6.4,77777,9,999999999,309,0.1870,0,88,0.170,999.0,99.0 +1994,8,1,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,19.4,69,99100,907,1326,386,576,456,264,60800,47100,28500,7240,250,3.0,2,1,8.0,77777,9,999999999,320,0.1870,0,88,0.170,999.0,99.0 +1994,8,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,18.3,58,99100,1071,1326,393,705,482,315,74900,50200,34300,11750,330,1.0,3,1,9.7,77777,9,999999999,320,0.1870,0,88,0.170,999.0,99.0 +1994,8,1,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.7,17.7,55,99100,1180,1326,395,730,399,374,77400,41600,40200,19410,210,1.5,2,1,9.7,77777,9,999999999,320,0.1870,0,88,0.170,999.0,99.0 +1994,8,1,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.8,17.2,50,99000,1226,1326,413,761,346,440,83100,37600,48300,24960,180,3.0,9,4,9.7,1500,9,999999999,320,0.1870,0,88,0.170,0.0,6.0 +1994,8,1,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.8,17.7,51,99000,1207,1326,414,703,291,437,76600,31600,47800,23010,170,6.1,9,4,9.7,1500,9,999999999,329,0.1870,0,88,0.170,999.0,99.0 +1994,8,1,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,17.7,71,99000,1123,1326,384,767,438,395,83400,47500,43100,16140,210,8.2,9,4,6.4,1500,9,999999999,329,0.1870,0,88,0.170,999.0,99.0 +1994,8,1,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,19.4,59,98900,981,1326,413,606,337,356,65200,36300,38300,11190,170,4.6,9,4,8.0,1500,9,999999999,329,0.1870,0,88,0.170,999.0,99.0 +1994,8,1,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.7,17.7,55,98900,789,1326,408,467,230,330,50300,23900,36000,8890,170,5.1,9,4,8.0,7500,9,999999999,329,0.1870,0,88,0.170,999.0,99.0 +1994,8,1,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,18.3,60,98800,562,1326,403,258,168,186,27900,16700,20800,4420,170,4.1,9,4,8.0,7500,9,999999999,340,0.1870,0,88,0.170,999.0,99.0 +1994,8,1,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,18.3,62,98800,315,1326,400,117,69,101,12800,5900,11400,2490,100,3.0,9,4,8.0,7500,9,999999999,340,0.1870,0,88,0.170,5.0,6.0 +1994,8,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,18.3,66,98900,73,1072,397,20,0,20,2300,0,2300,690,190,8.2,10,5,6.4,1500,9,999999999,340,0.1870,0,88,0.170,999.0,99.0 +1994,8,1,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,16.6,66,98900,0,0,386,0,0,0,0,0,0,0,150,3.6,10,5,8.0,2700,9,999999999,340,0.1870,0,88,0.170,999.0,99.0 +1994,8,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,17.2,76,98900,0,0,375,0,0,0,0,0,0,0,130,2.0,9,4,9.7,7500,9,999999999,350,0.1870,0,88,0.170,999.0,99.0 +1994,8,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,16.6,78,98900,0,0,369,0,0,0,0,0,0,0,240,2.0,9,4,9.7,77777,9,999999999,350,0.1870,0,88,0.170,999.0,99.0 +1994,8,1,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,17.2,84,98900,0,0,367,0,0,0,0,0,0,0,0,0.0,9,4,9.7,77777,9,999999999,350,0.1870,0,88,0.170,999.0,99.0 +1994,8,2,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.9,16.7,87,98800,0,0,371,0,0,0,0,0,0,0,50,1.5,9,7,11.2,77777,9,999999999,350,0.1870,0,88,0.170,999.0,99.0 +1994,8,2,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,17.2,87,98900,0,0,400,0,0,0,0,0,0,0,280,1.0,10,10,11.3,3000,9,999999999,350,0.1870,0,88,0.170,999.0,99.0 +1994,8,2,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,17.7,90,98800,0,0,375,0,0,0,0,0,0,0,30,1.5,9,7,9.7,3000,9,999999999,359,0.1870,0,88,0.170,999.0,99.0 +1994,8,2,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,17.7,93,98800,0,0,378,0,0,0,0,0,0,0,20,1.5,9,8,9.7,3000,9,999999999,359,0.1870,0,88,0.170,999.0,99.0 +1994,8,2,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,16.6,90,98800,0,0,368,0,0,0,0,0,0,0,230,1.5,9,7,6.4,7500,9,999999999,359,0.1870,0,88,0.170,999.0,99.0 +1994,8,2,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,17.2,93,98800,16,497,375,2,0,2,0,0,0,0,90,1.0,9,8,4.8,77777,9,999999999,359,0.1870,0,88,0.170,999.0,99.0 +1994,8,2,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,18.3,90,98900,209,1326,379,57,39,51,6300,2900,5800,1270,130,1.0,9,7,4.8,77777,9,999999999,370,0.1870,0,88,0.170,0.0,6.0 +1994,8,2,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,18.8,84,98900,459,1326,394,223,34,211,24100,3000,23000,6150,190,0.5,9,8,6.4,7500,9,999999999,370,0.1870,0,88,0.170,999.0,99.0 +1994,8,2,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,19.4,76,99000,697,1326,401,284,251,152,31300,26300,17400,3300,180,0.5,9,7,6.4,77777,9,999999999,370,0.1870,0,88,0.170,999.0,99.0 +1994,8,2,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,19.4,69,99000,905,1326,437,234,0,234,27400,0,27400,10570,320,2.0,10,10,6.4,77777,9,999999999,359,0.1870,0,88,0.170,999.0,99.0 +1994,8,2,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,17.2,54,99000,1069,1326,444,288,0,288,34100,0,34100,13280,360,2.0,10,10,8.0,3900,9,999999999,359,0.1870,0,88,0.170,999.0,99.0 +1994,8,2,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.7,16.1,49,99000,1178,1326,445,324,0,324,38600,0,38600,14870,250,1.5,10,10,8.0,7500,9,999999999,359,0.1870,0,88,0.170,999.0,99.0 +1994,8,2,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.8,16.1,46,99000,1224,1326,423,763,450,347,82000,47100,38500,21540,80,1.5,9,7,8.0,7500,9,999999999,359,0.1870,0,88,0.170,0.0,6.0 +1994,8,2,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.8,16.6,48,98900,1205,1326,431,560,195,383,62200,20900,43200,18900,270,4.1,9,8,8.0,7500,9,999999999,359,0.1870,0,88,0.170,999.0,99.0 +1994,8,2,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,17.2,51,98900,1121,1326,422,501,245,293,55700,26700,33100,11500,270,4.1,9,7,8.0,1500,9,999999999,359,0.1870,0,88,0.170,999.0,99.0 +1994,8,2,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.8,17.2,50,98900,978,1326,432,308,124,216,34700,13300,24900,6910,240,4.1,9,8,8.0,1500,9,999999999,359,0.1870,0,88,0.170,999.0,99.0 +1994,8,2,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,17.7,53,98800,787,1326,423,303,151,213,33500,15900,24100,5720,260,4.6,9,7,8.0,3000,9,999999999,359,0.1870,0,88,0.170,999.0,99.0 +1994,8,2,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.7,17.7,55,98800,559,1326,426,245,111,198,26800,10900,22200,5440,270,4.6,9,8,8.0,7500,9,999999999,359,0.1870,0,88,0.170,999.0,99.0 +1994,8,2,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,18.3,58,98800,311,1326,417,108,70,91,11800,6000,10400,2290,260,3.0,9,7,6.4,7500,9,999999999,359,0.1870,0,88,0.170,0.0,6.0 +1994,8,2,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,17.7,66,98800,70,1050,408,16,2,16,1900,0,1900,570,220,2.5,9,8,6.4,7500,9,999999999,359,0.1870,0,88,0.170,999.0,99.0 +1994,8,2,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,17.2,64,98900,0,0,428,0,0,0,0,0,0,0,200,2.5,10,10,6.4,77777,9,999999999,350,0.1870,0,88,0.170,999.0,99.0 +1994,8,2,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,17.7,73,98900,0,0,419,0,0,0,0,0,0,0,240,1.5,10,10,6.4,7500,9,999999999,350,0.1870,0,88,0.170,999.0,99.0 +1994,8,2,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,18.3,79,98900,0,0,416,0,0,0,0,0,0,0,0,0.0,10,10,6.4,7500,9,999999999,350,0.1870,0,88,0.170,999.0,99.0 +1994,8,2,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,17.7,81,98900,0,0,390,0,0,0,0,0,0,0,170,1.0,9,8,6.4,77777,9,999999999,350,0.1870,0,88,0.170,999.0,99.0 +1994,8,3,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,17.7,90,98900,0,0,371,0,0,0,0,0,0,0,230,1.5,9,6,4.8,77777,9,999999999,350,0.1860,0,88,0.170,0.0,6.0 +1994,8,3,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,17.7,87,98900,0,0,374,0,0,0,0,0,0,0,140,1.5,9,6,4.8,77777,9,999999999,350,0.1860,0,88,0.170,999.0,99.0 +1994,8,3,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,17.7,87,98900,0,0,374,0,0,0,0,0,0,0,150,1.5,9,6,4.4,77777,9,999999999,350,0.1860,0,88,0.170,999.0,99.0 +1994,8,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,17.7,90,98800,0,0,371,0,0,0,0,0,0,0,150,1.5,9,6,4.4,77777,9,999999999,350,0.1860,0,88,0.170,999.0,99.0 +1994,8,3,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,16.6,90,98900,0,0,364,0,0,0,0,0,0,0,210,1.5,9,6,2.4,7500,9,999999999,350,0.1860,0,88,0.170,999.0,99.0 +1994,8,3,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,17.2,97,98900,14,475,345,2,15,2,0,0,0,0,250,1.5,2,1,1.6,77777,9,999999999,350,0.1860,0,88,0.170,999.0,99.0 +1994,8,3,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,18.3,93,99000,206,1327,390,55,18,52,6000,1300,5800,1280,210,0.5,10,9,2.4,77777,9,999999999,350,0.1860,0,88,0.170,0.0,6.0 +1994,8,3,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,19.4,87,99000,456,1327,403,76,39,62,8300,3600,7100,1880,240,2.5,10,9,3.2,77777,9,999999999,350,0.1860,0,88,0.170,999.0,99.0 +1994,8,3,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,19.4,74,99100,694,1327,373,472,728,91,49500,71700,11900,1970,220,3.6,0,0,4.8,77777,9,999999999,350,0.1860,0,88,0.170,999.0,99.0 +1994,8,3,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,18.8,64,99100,903,1327,381,654,799,110,69600,80500,14700,2920,270,2.0,0,0,8.0,77777,9,999999999,350,0.1860,0,88,0.170,999.0,99.0 +1994,8,3,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,18.3,58,99100,1067,1327,393,744,760,132,79500,77000,17400,4620,210,5.1,3,1,8.0,77777,9,999999999,359,0.1860,0,88,0.170,999.0,99.0 +1994,8,3,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,17.7,53,99100,1176,1327,418,597,423,222,66700,44400,27300,11080,240,3.0,9,6,9.7,7500,9,999999999,359,0.1860,0,88,0.170,999.0,99.0 +1994,8,3,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,17.7,56,99000,1222,1327,412,673,361,340,72500,37800,37600,20870,210,3.6,9,6,8.0,1350,9,999999999,359,0.1860,0,88,0.170,999.0,99.0 +1994,8,3,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,18.3,55,98900,1203,1327,419,624,242,404,68400,26300,44500,20750,200,5.1,9,6,8.0,1500,9,999999999,359,0.1860,0,88,0.170,999.0,99.0 +1994,8,3,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.5,17.7,46,98900,1119,1327,430,636,409,291,68600,42700,32500,12210,220,5.6,9,6,8.0,1500,9,999999999,359,0.1860,0,88,0.170,999.0,99.0 +1994,8,3,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,20.5,59,98800,976,1327,408,677,741,132,71500,74600,16500,3770,240,5.1,2,1,8.0,77777,9,999999999,370,0.1860,0,88,0.170,999.0,99.0 +1994,8,3,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,20.6,59,98800,784,1327,428,253,243,110,28600,25000,13800,2450,240,6.2,9,6,8.0,3000,9,999999999,370,0.1860,0,88,0.170,999.0,99.0 +1994,8,3,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,20.0,65,98800,555,1327,395,327,513,112,33800,48800,13300,2180,200,5.6,2,1,9.7,77777,9,999999999,370,0.1860,0,88,0.170,999.0,99.0 +1994,8,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,18.8,64,98800,307,1327,388,147,393,56,15200,31800,7800,1030,210,4.6,3,1,9.7,77777,9,999999999,370,0.1860,0,88,0.170,999.0,99.0 +1994,8,3,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,18.8,71,98800,67,1006,380,20,67,15,2100,2800,2000,260,200,4.1,2,1,9.7,77777,9,999999999,379,0.1860,0,88,0.170,999.0,99.0 +1994,8,3,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,17.7,73,98800,0,0,388,0,0,0,0,0,0,0,210,3.6,9,6,11.3,77777,9,999999999,379,0.1860,0,88,0.170,999.0,99.0 +1994,8,3,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,18.3,76,98900,0,0,388,0,0,0,0,0,0,0,190,4.6,9,6,11.3,77777,9,999999999,379,0.1860,0,88,0.170,999.0,99.0 +1994,8,3,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,18.8,84,98900,0,0,383,0,0,0,0,0,0,0,190,3.0,9,6,11.3,77777,9,999999999,379,0.1860,0,88,0.170,999.0,99.0 +1994,8,3,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,19.4,87,98900,0,0,384,0,0,0,0,0,0,0,190,4.1,9,6,11.3,77777,9,999999999,379,0.1860,0,88,0.170,999.0,99.0 +1994,8,4,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,19.4,90,98800,0,0,400,0,0,0,0,0,0,0,160,2.5,9,9,11.3,77777,9,999999999,390,0.1860,0,88,0.170,0.0,6.0 +1994,8,4,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,19.4,90,98800,0,0,400,0,0,0,0,0,0,0,160,3.0,9,9,9.7,77777,9,999999999,390,0.1860,0,88,0.170,999.0,99.0 +1994,8,4,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,19.4,87,98700,0,0,415,0,0,0,0,0,0,0,170,4.1,10,10,8.0,7500,9,999999999,390,0.1860,0,88,0.170,999.0,99.0 +1994,8,4,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,19.4,90,98700,0,0,412,0,0,0,0,0,0,0,170,3.0,10,10,8.0,7500,9,999999999,390,0.1860,0,88,0.170,999.0,99.0 +1994,8,4,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,19.4,87,98700,0,0,403,0,0,0,0,0,0,0,200,4.6,9,9,8.0,7500,9,999999999,400,0.1860,0,88,0.170,999.0,99.0 +1994,8,4,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,19.4,87,98700,13,453,403,1,0,1,0,0,0,0,210,4.6,9,9,6.4,7500,9,999999999,400,0.1860,0,88,0.170,999.0,99.0 +1994,8,4,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.7,20.0,85,98700,202,1327,377,71,150,48,7500,9600,6100,880,210,4.6,2,2,9.7,77777,9,999999999,400,0.1860,0,88,0.170,0.0,6.0 +1994,8,4,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,20.5,79,98700,453,1327,391,204,308,99,21700,28400,12000,1860,220,5.1,3,3,11.3,77777,9,999999999,400,0.1860,0,88,0.170,999.0,99.0 +1994,8,4,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,20.5,71,98700,692,1327,430,296,223,180,32200,23300,20000,4010,250,6.6,9,9,12.9,77777,9,999999999,390,0.1860,0,88,0.170,999.0,99.0 +1994,8,4,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.7,20.5,65,98700,900,1327,439,242,72,193,27300,7700,22000,5680,230,9.2,9,9,11.3,77777,9,999999999,390,0.1860,0,88,0.170,999.0,99.0 +1994,8,4,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,21.1,65,98700,1065,1327,443,307,91,233,34600,9800,26700,8400,240,8.7,9,9,11.3,77777,9,999999999,390,0.1860,0,88,0.170,999.0,99.0 +1994,8,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,20.0,57,98600,1174,1327,448,436,129,321,48700,13800,36400,14480,230,10.8,9,9,12.9,77777,9,999999999,379,0.1860,0,88,0.170,999.0,99.0 +1994,8,4,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,19.4,53,98400,1220,1327,451,478,100,385,53000,10700,43100,19950,220,10.8,9,9,12.9,77777,9,999999999,379,0.1860,0,88,0.170,0.0,6.0 +1994,8,4,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,20.0,61,98400,1201,1327,454,265,0,265,32100,0,32100,12800,260,6.6,10,10,11.3,1500,9,999999999,379,0.1860,0,88,0.170,999.0,99.0 +1994,8,4,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,21.6,88,98400,1116,1327,430,243,0,243,29300,0,29300,11770,280,5.1,10,10,16.1,1800,9,999999999,370,0.1860,0,88,0.170,999.0,99.0 +1994,8,4,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,20.5,82,98300,973,1327,417,337,65,289,37200,6600,32300,10850,270,4.6,9,9,16.1,4200,9,999999999,370,0.1860,0,88,0.170,999.0,99.0 +1994,8,4,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,20.5,87,98400,780,1327,422,193,0,193,22500,0,22500,8480,240,3.6,10,10,16.1,4200,9,999999999,359,0.1860,0,88,0.170,999.0,99.0 +1994,8,4,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,21.1,87,98400,552,1327,415,174,45,155,19100,4400,17300,4470,230,4.6,9,9,16.1,4200,9,999999999,359,0.1860,0,88,0.170,999.0,99.0 +1994,8,4,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.7,20.5,87,98400,303,1327,411,76,61,62,8400,5100,7300,1350,230,4.6,9,9,11.3,5400,9,999999999,359,0.1860,0,88,0.170,22.0,6.0 +1994,8,4,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,20.5,90,98400,64,984,419,11,0,11,1300,0,1300,420,240,2.5,10,10,11.3,600,9,999999999,350,0.1860,0,88,0.170,999.0,99.0 +1994,8,4,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,20.5,93,98400,0,0,416,0,0,0,0,0,0,0,230,2.0,10,10,11.3,3300,9,999999999,350,0.1860,0,88,0.170,999.0,99.0 +1994,8,4,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,20.5,93,98500,0,0,416,0,0,0,0,0,0,0,260,3.6,10,10,11.3,480,9,999999999,350,0.1860,0,88,0.170,999.0,99.0 +1994,8,4,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,20.5,93,98500,0,0,416,0,0,0,0,0,0,0,250,2.5,10,10,11.3,390,9,999999999,340,0.1860,0,88,0.170,999.0,99.0 +1994,8,4,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,18.3,93,98400,0,0,401,0,0,0,0,0,0,0,240,2.5,10,10,16.1,900,9,999999999,340,0.1860,0,88,0.170,999.0,99.0 +1994,8,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,18.8,96,98400,0,0,390,0,0,0,0,0,0,0,280,2.5,10,9,11.3,300,9,999999999,340,0.1850,0,88,0.170,1.0,6.0 +1994,8,5,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,18.8,93,98400,0,0,394,0,0,0,0,0,0,0,340,5.1,10,9,11.3,300,9,999999999,329,0.1850,0,88,0.170,999.0,99.0 +1994,8,5,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,18.3,93,98400,0,0,390,0,0,0,0,0,0,0,340,3.6,10,9,11.3,300,9,999999999,329,0.1850,0,88,0.170,999.0,99.0 +1994,8,5,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,18.3,93,98400,0,0,390,0,0,0,0,0,0,0,360,4.1,10,9,11.3,300,9,999999999,320,0.1850,0,88,0.170,999.0,99.0 +1994,8,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,16.6,93,98500,0,0,379,0,0,0,0,0,0,0,10,6.1,10,9,11.3,300,9,999999999,320,0.1850,0,88,0.170,999.0,99.0 +1994,8,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,15.0,93,98700,12,431,369,1,0,1,0,0,0,0,20,5.6,10,9,11.3,750,9,999999999,320,0.1850,0,88,0.170,999.0,99.0 +1994,8,5,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,14.4,90,98700,199,1327,368,49,5,48,5500,100,5400,1640,10,4.1,10,9,16.1,870,9,999999999,309,0.1850,0,88,0.170,1.0,6.0 +1994,8,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,12.7,80,98800,450,1327,366,101,28,92,11200,2600,10300,2660,30,7.2,10,9,16.1,1500,9,999999999,309,0.1850,0,88,0.170,999.0,99.0 +1994,8,5,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,11.6,67,98900,689,1327,365,270,115,210,29500,11900,23400,5300,20,7.7,9,8,16.1,1200,9,999999999,300,0.1850,0,88,0.170,999.0,99.0 +1994,8,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,11.6,65,99000,898,1327,362,423,228,269,46000,24500,29400,7350,20,6.6,9,7,16.1,1260,9,999999999,300,0.1850,0,88,0.170,999.0,99.0 +1994,8,5,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,11.6,61,99000,1063,1327,374,524,152,402,57200,16100,44300,14460,20,6.1,9,8,16.1,990,9,999999999,290,0.1850,0,88,0.170,999.0,99.0 +1994,8,5,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,12.2,68,99000,1172,1327,363,634,341,333,70400,37100,37500,15150,10,5.1,9,7,16.1,1050,9,999999999,279,0.1850,0,88,0.170,999.0,99.0 +1994,8,5,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.8,12.2,65,99100,1218,1327,371,655,178,491,71600,18900,54200,25250,20,5.6,9,8,16.1,960,9,999999999,279,0.1850,0,88,0.170,0.0,6.0 +1994,8,5,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,11.6,63,99100,1199,1327,365,723,90,641,79400,9500,70800,28560,30,5.1,9,7,16.1,1050,9,999999999,270,0.1850,0,88,0.170,999.0,99.0 +1994,8,5,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,10.0,51,99100,1114,1327,358,811,670,249,85400,67800,28400,10000,40,6.1,3,3,16.1,77777,9,999999999,270,0.1850,0,88,0.170,999.0,99.0 +1994,8,5,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,9.4,49,99100,970,1327,354,680,641,211,71200,64600,23900,6170,30,4.6,2,2,16.1,77777,9,999999999,259,0.1850,0,88,0.170,999.0,99.0 +1994,8,5,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,8.8,47,99100,777,1327,357,396,272,237,42700,28800,25800,5780,40,7.2,3,3,16.1,77777,9,999999999,259,0.1850,0,88,0.170,999.0,99.0 +1994,8,5,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,8.8,52,99100,548,1327,345,305,445,120,32400,43100,14600,2340,20,5.6,2,2,16.1,77777,9,999999999,250,0.1850,0,88,0.170,999.0,99.0 +1994,8,5,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,8.8,54,99100,299,1327,346,119,194,75,12600,15500,9200,1420,30,4.1,3,3,16.1,77777,9,999999999,240,0.1850,0,88,0.170,0.0,6.0 +1994,8,5,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,9.4,69,99200,61,962,328,15,14,14,1600,800,1600,360,50,2.5,2,2,16.1,77777,9,999999999,240,0.1850,0,88,0.170,999.0,99.0 +1994,8,5,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,10.0,75,99300,0,0,347,0,0,0,0,0,0,0,40,2.5,9,8,16.1,1500,9,999999999,229,0.1850,0,88,0.170,999.0,99.0 +1994,8,5,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,10.5,77,99300,0,0,342,0,0,0,0,0,0,0,50,2.5,9,7,16.1,1500,9,999999999,229,0.1850,0,88,0.170,999.0,99.0 +1994,8,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.3,9.4,77,99300,0,0,324,0,0,0,0,0,0,0,60,2.5,3,3,16.1,77777,9,999999999,220,0.1850,0,88,0.170,999.0,99.0 +1994,8,5,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.6,8.8,83,99200,0,0,302,0,0,0,0,0,0,0,50,2.0,0,0,16.1,77777,9,999999999,209,0.1850,0,88,0.170,999.0,99.0 +1994,8,6,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.6,9.4,86,99300,0,0,303,0,0,0,0,0,0,0,40,1.5,0,0,24.1,77777,9,999999999,209,0.1850,0,88,0.170,0.0,6.0 +1994,8,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.1,9.4,89,99200,0,0,301,0,0,0,0,0,0,0,80,1.5,0,0,24.1,77777,9,999999999,200,0.1850,0,88,0.170,999.0,99.0 +1994,8,6,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.5,8.8,89,99200,0,0,298,0,0,0,0,0,0,0,50,2.0,0,0,24.1,77777,9,999999999,200,0.1850,0,88,0.170,999.0,99.0 +1994,8,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.4,8.8,96,99200,0,0,293,0,0,0,0,0,0,0,40,2.0,0,0,24.1,77777,9,999999999,189,0.1850,0,88,0.170,999.0,99.0 +1994,8,6,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.4,8.3,93,99200,0,0,293,0,0,0,0,0,0,0,30,1.5,0,0,24.1,77777,9,999999999,189,0.1850,0,88,0.170,999.0,99.0 +1994,8,6,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.4,8.3,93,99300,11,432,305,1,0,1,0,0,0,0,10,1.5,3,3,16.1,77777,9,999999999,179,0.1850,0,88,0.170,999.0,99.0 +1994,8,6,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,8.8,86,99300,196,1328,310,63,85,50,6800,5800,6000,1060,40,1.5,2,2,16.1,77777,9,999999999,170,0.1850,0,88,0.170,0.0,6.0 +1994,8,6,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,11.1,81,99400,447,1328,331,234,245,151,24500,23000,16800,3170,60,3.0,3,3,16.1,77777,9,999999999,179,0.1850,0,88,0.170,999.0,99.0 +1994,8,6,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,10.0,63,99400,686,1328,339,413,434,189,43400,43600,20800,4090,70,4.1,2,2,16.1,77777,9,999999999,179,0.1850,0,88,0.170,999.0,99.0 +1994,8,6,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,9.4,56,99400,896,1328,347,602,541,237,64100,56000,26300,6330,100,5.6,3,3,16.1,77777,9,999999999,179,0.1850,0,88,0.170,999.0,99.0 +1994,8,6,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,8.8,54,99400,1061,1328,343,725,604,243,76000,60900,27300,8480,110,3.0,2,2,16.1,77777,9,999999999,179,0.1850,0,88,0.170,999.0,99.0 +1994,8,6,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,8.8,52,99400,1170,1328,367,478,146,349,53200,15600,39400,15550,40,3.0,9,8,16.1,6000,9,999999999,179,0.1850,0,88,0.170,999.0,99.0 +1994,8,6,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,10.0,49,99300,1216,1328,374,892,524,412,94200,54600,44000,24700,130,1.0,9,7,16.1,77777,9,999999999,179,0.1850,0,88,0.170,0.0,6.0 +1994,8,6,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,10.5,51,99300,1196,1328,381,482,158,339,53800,16900,38500,16230,100,3.6,9,8,16.1,77777,9,999999999,179,0.1850,0,88,0.170,999.0,99.0 +1994,8,6,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,10.5,49,99200,1111,1328,378,528,258,312,58400,28100,34900,12020,90,3.6,9,7,16.1,77777,9,999999999,189,0.1850,0,88,0.170,999.0,99.0 +1994,8,6,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,8.3,44,99100,967,1328,378,318,71,266,35100,7200,29800,10050,170,2.0,9,8,16.1,6000,9,999999999,189,0.1850,0,88,0.170,999.0,99.0 +1994,8,6,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,10.0,49,99100,774,1328,374,456,310,275,48600,32800,29400,6900,100,3.0,9,7,16.1,6000,9,999999999,189,0.1850,0,88,0.170,999.0,99.0 +1994,8,6,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,10.0,48,99100,545,1328,383,185,55,163,20400,5300,18200,4620,80,3.0,9,8,16.1,6000,9,999999999,189,0.1850,0,88,0.170,999.0,99.0 +1994,8,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,9.4,50,99000,295,1328,368,108,36,100,11800,3100,11100,2400,90,3.0,9,7,16.1,6000,9,999999999,189,0.1850,0,88,0.170,0.0,6.0 +1994,8,6,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,11.1,61,99000,58,941,351,14,9,13,1500,500,1500,330,10,2.0,3,3,16.1,77777,9,999999999,189,0.1850,0,88,0.170,999.0,99.0 +1994,8,6,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,11.1,72,99000,0,0,335,0,0,0,0,0,0,0,50,1.5,2,2,16.1,77777,9,999999999,189,0.1850,0,88,0.170,999.0,99.0 +1994,8,6,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,11.6,83,99100,0,0,331,0,0,0,0,0,0,0,60,2.0,3,3,16.1,77777,9,999999999,189,0.1850,0,88,0.170,999.0,99.0 +1994,8,6,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.2,11.6,96,99100,0,0,318,0,0,0,0,0,0,0,50,2.0,2,2,16.1,77777,9,999999999,200,0.1850,0,88,0.170,999.0,99.0 +1994,8,6,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.2,11.1,93,99100,0,0,307,0,0,0,0,0,0,0,40,1.5,0,0,16.1,77777,9,999999999,200,0.1850,0,88,0.170,999.0,99.0 +1994,8,7,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,10.5,96,99000,0,0,315,0,0,0,0,0,0,0,40,2.0,3,3,16.1,77777,9,999999999,200,0.1850,0,88,0.170,0.0,6.0 +1994,8,7,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.6,11.1,97,99000,0,0,315,0,0,0,0,0,0,0,20,2.0,2,2,16.1,77777,9,999999999,200,0.1850,0,88,0.170,999.0,99.0 +1994,8,7,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.6,10.5,93,99000,0,0,317,0,0,0,0,0,0,0,20,1.5,3,3,16.1,77777,9,999999999,200,0.1850,0,88,0.170,999.0,99.0 +1994,8,7,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.6,10.5,93,98900,0,0,314,0,0,0,0,0,0,0,30,1.5,2,2,16.1,77777,9,999999999,200,0.1850,0,88,0.170,999.0,99.0 +1994,8,7,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.1,10.5,96,98900,0,0,315,0,0,0,0,0,0,0,30,1.5,3,3,16.1,77777,9,999999999,200,0.1850,0,88,0.170,999.0,99.0 +1994,8,7,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.1,10.5,96,98900,10,410,312,1,3,1,0,0,0,0,30,1.5,2,2,16.1,77777,9,999999999,209,0.1850,0,88,0.170,999.0,99.0 +1994,8,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.6,11.1,97,99000,192,1328,318,64,106,49,6800,6600,5900,910,50,1.5,3,3,11.3,77777,9,999999999,209,0.1850,0,88,0.170,0.0,6.0 +1994,8,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,12.2,87,99100,444,1328,329,242,444,93,25800,40700,12100,1730,40,1.5,2,2,11.3,77777,9,999999999,209,0.1850,0,88,0.170,999.0,99.0 +1994,8,7,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,13.8,75,99100,684,1328,352,429,478,183,45200,48000,20400,3940,120,1.0,3,3,16.1,77777,9,999999999,209,0.1850,0,88,0.170,999.0,99.0 +1994,8,7,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,12.2,59,99100,893,1328,357,605,652,166,63900,66000,19400,4390,110,2.5,2,2,16.1,77777,9,999999999,209,0.1850,0,88,0.170,999.0,99.0 +1994,8,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,12.7,57,99100,1058,1328,386,554,233,368,60800,24800,41000,13130,140,3.0,9,8,16.1,4500,9,999999999,209,0.1850,0,88,0.170,999.0,99.0 +1994,8,7,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,11.6,55,99100,1168,1328,376,721,387,380,79100,42100,42000,17270,140,2.0,9,7,11.3,4500,9,999999999,220,0.1850,0,88,0.170,999.0,99.0 +1994,8,7,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,12.2,53,99000,1214,1328,389,395,135,270,44700,14600,31300,13640,240,3.0,9,8,11.3,4500,9,999999999,220,0.1850,0,88,0.170,0.0,6.0 +1994,8,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,10.0,44,99000,1194,1328,383,628,318,342,69700,34600,38500,16690,150,2.5,9,7,9.7,4500,9,999999999,220,0.1850,0,88,0.170,999.0,99.0 +1994,8,7,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,10.5,43,99000,1109,1328,375,724,503,303,77600,52500,33700,12350,120,1.5,3,3,9.7,77777,9,999999999,220,0.1850,0,88,0.170,999.0,99.0 +1994,8,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,11.1,45,99000,964,1328,372,687,672,199,72200,67900,22800,5790,80,3.0,2,2,9.7,77777,9,999999999,220,0.1850,0,88,0.170,999.0,99.0 +1994,8,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,12.7,50,99000,771,1328,378,471,588,130,49800,59100,15500,3030,140,3.0,3,3,11.3,77777,9,999999999,220,0.1850,0,88,0.170,999.0,99.0 +1994,8,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,10.0,43,98900,541,1328,368,301,496,99,31300,47100,12100,1950,130,3.0,2,2,11.3,77777,9,999999999,229,0.1850,0,88,0.170,999.0,99.0 +1994,8,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,12.7,55,98900,291,1328,370,118,212,71,12500,16700,8900,1330,120,3.0,3,3,11.3,77777,9,999999999,229,0.1850,0,88,0.170,0.0,6.0 +1994,8,7,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,11.1,53,98800,55,919,347,14,38,12,1600,1300,1500,200,100,2.0,0,0,11.3,77777,9,999999999,229,0.1850,0,88,0.170,999.0,99.0 +1994,8,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,13.3,70,98900,0,0,339,0,0,0,0,0,0,0,30,0.5,0,0,11.3,77777,9,999999999,229,0.1850,0,88,0.170,999.0,99.0 +1994,8,7,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,14.4,90,98900,0,0,328,0,0,0,0,0,0,0,10,1.5,0,0,11.3,77777,9,999999999,229,0.1850,0,88,0.170,999.0,99.0 +1994,8,7,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,13.8,93,98900,0,0,322,0,0,0,0,0,0,0,70,1.5,0,0,9.7,77777,9,999999999,240,0.1850,0,88,0.170,999.0,99.0 +1994,8,7,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,13.8,93,98900,0,0,322,0,0,0,0,0,0,0,60,1.0,0,0,9.7,77777,9,999999999,240,0.1850,0,88,0.170,999.0,99.0 +1994,8,8,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,13.3,93,98900,0,0,319,0,0,0,0,0,0,0,50,2.0,0,0,8.0,77777,9,999999999,240,0.1840,0,88,0.170,0.0,6.0 +1994,8,8,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.8,13.3,97,98900,0,0,316,0,0,0,0,0,0,0,40,2.0,0,0,6.4,77777,9,999999999,240,0.1840,0,88,0.170,999.0,99.0 +1994,8,8,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.3,13.3,100,98900,0,0,314,0,0,0,0,0,0,0,70,1.0,0,0,4.8,77777,9,999999999,240,0.1840,0,88,0.170,999.0,99.0 +1994,8,8,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.7,12.7,100,98800,0,0,311,0,0,0,0,0,0,0,100,1.5,0,0,4.8,77777,9,999999999,240,0.1840,0,88,0.170,999.0,99.0 +1994,8,8,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.7,12.7,100,98900,0,0,359,0,0,0,0,0,0,0,50,2.0,10,10,4.8,77777,9,999999999,250,0.1840,0,88,0.170,999.0,99.0 +1994,8,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.6,11.6,100,99000,9,388,352,1,0,1,0,0,0,0,80,2.0,10,10,3.2,77777,9,999999999,250,0.1840,0,88,0.170,999.0,99.0 +1994,8,8,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.3,12.7,96,99000,189,1329,362,33,0,33,3800,0,3800,1210,60,1.5,10,10,4.0,77777,9,999999999,250,0.1840,0,88,0.170,999.0,99.0 +1994,8,8,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,16.6,96,99100,441,1329,350,253,479,94,27000,43800,12400,1750,220,1.0,3,3,4.8,77777,9,999999999,250,0.1840,0,88,0.170,999.0,99.0 +1994,8,8,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,17.7,84,99100,681,1329,352,471,763,80,50000,75300,11300,1790,240,2.5,0,0,6.4,77777,9,999999999,259,0.1840,0,88,0.170,999.0,99.0 +1994,8,8,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,16.1,66,99100,891,1329,361,655,831,97,68000,82600,12500,2250,240,3.6,0,0,8.0,77777,9,999999999,259,0.1840,0,88,0.170,999.0,99.0 +1994,8,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,12.2,46,99100,1056,1329,377,815,861,130,87100,87200,17600,4430,230,3.6,2,2,9.7,77777,9,999999999,259,0.1840,0,88,0.170,999.0,99.0 +1994,8,8,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,15.5,56,99100,1166,1329,417,349,97,263,39400,10400,30200,11570,210,2.5,9,9,9.7,77777,9,999999999,270,0.1840,0,88,0.170,999.0,99.0 +1994,8,8,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,15.5,52,99100,1212,1329,389,945,897,127,97300,89900,15100,5810,250,4.6,2,2,8.0,77777,9,999999999,270,0.1840,0,88,0.170,0.0,6.0 +1994,8,8,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,13.3,44,99100,1192,1329,393,891,791,182,93600,79500,22100,8790,250,4.6,3,3,8.0,77777,9,999999999,270,0.1840,0,88,0.170,999.0,99.0 +1994,8,8,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,12.7,41,99000,1106,1329,392,809,838,111,83700,83900,13600,3700,210,3.6,2,2,8.0,77777,9,999999999,270,0.1840,0,88,0.170,999.0,99.0 +1994,8,8,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,13.9,42,99000,961,1329,431,415,74,360,45500,7600,40000,12800,230,5.1,9,9,8.0,77777,9,999999999,279,0.1840,0,88,0.170,999.0,99.0 +1994,8,8,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,14.4,45,98900,767,1329,394,506,682,112,54100,68900,14200,2650,250,5.1,2,2,8.0,77777,9,999999999,279,0.1840,0,88,0.170,999.0,99.0 +1994,8,8,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,13.8,45,98900,537,1329,424,244,55,222,26700,5400,24500,5750,230,3.6,9,9,8.0,7500,9,999999999,279,0.1840,0,88,0.170,999.0,99.0 +1994,8,8,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,16.1,60,98900,286,1329,414,89,32,82,9700,2700,9200,2050,240,3.6,9,9,9.6,7500,9,999999999,290,0.1840,0,88,0.170,999.0,99.0 +1994,8,8,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,13.9,55,98800,52,897,417,10,0,10,1200,0,1200,380,200,3.6,10,10,11.2,7500,9,999999999,290,0.1840,0,88,0.170,999.0,99.0 +1994,8,8,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,17.2,67,98900,0,0,424,0,0,0,0,0,0,0,180,2.5,10,10,11.3,1800,9,999999999,290,0.1840,0,88,0.170,999.0,99.0 +1994,8,8,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,15.5,64,98900,0,0,416,0,0,0,0,0,0,0,200,1.0,10,10,11.3,3900,9,999999999,300,0.1840,0,88,0.170,999.0,99.0 +1994,8,8,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,18.3,82,98900,0,0,413,0,0,0,0,0,0,0,200,3.0,10,10,11.3,7500,9,999999999,300,0.1840,0,88,0.170,999.0,99.0 +1994,8,8,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,18.8,84,98900,0,0,414,0,0,0,0,0,0,0,140,2.5,10,10,11.3,7500,9,999999999,300,0.1840,0,88,0.170,999.0,99.0 +1994,8,9,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.5,18.3,87,98900,0,0,374,0,0,0,0,0,0,0,190,2.0,9,5,11.3,7500,9,999999999,300,0.1830,0,88,0.170,0.0,6.0 +1994,8,9,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,18.3,90,98900,0,0,371,0,0,0,0,0,0,0,110,1.5,9,5,11.3,7500,9,999999999,309,0.1830,0,88,0.170,999.0,99.0 +1994,8,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,18.3,93,98900,0,0,382,0,0,0,0,0,0,0,0,0.0,10,8,11.3,7500,9,999999999,309,0.1830,0,88,0.170,999.0,99.0 +1994,8,9,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,18.8,100,98900,0,0,373,0,0,0,0,0,0,0,20,0.5,10,7,8.0,7500,9,999999999,309,0.1830,0,88,0.170,999.0,99.0 +1994,8,9,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,17.2,100,98900,0,0,369,0,0,0,0,0,0,0,40,2.0,10,8,8.0,7500,9,999999999,320,0.1830,0,88,0.170,999.0,99.0 +1994,8,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,18.8,100,99000,8,366,373,1,0,1,0,0,0,0,10,1.5,10,7,4.8,300,9,999999999,320,0.1830,0,88,0.170,999.0,99.0 +1994,8,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.5,20.5,100,99100,185,1329,390,71,4,70,7600,100,7600,1970,360,3.6,10,8,3.2,270,9,999999999,320,0.1830,0,88,0.170,0.0,6.0 +1994,8,9,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,20.5,100,99100,438,1329,384,207,33,196,22400,2800,21500,5740,350,4.1,10,7,3.2,210,9,999999999,320,0.1830,0,88,0.170,999.0,99.0 +1994,8,9,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,20.0,97,99200,678,1329,389,251,159,169,27800,16400,19300,4240,330,3.6,10,8,3.2,270,9,999999999,309,0.1830,0,88,0.170,999.0,99.0 +1994,8,9,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,20.5,100,99200,888,1329,384,398,162,289,43600,17100,32100,8410,360,4.1,10,7,4.8,240,9,999999999,309,0.1830,0,88,0.170,999.0,99.0 +1994,8,9,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,20.0,97,99300,1054,1329,389,320,115,229,36200,12400,26400,8100,340,4.1,10,8,6.4,300,9,999999999,309,0.1830,0,88,0.170,999.0,99.0 +1994,8,9,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,19.4,79,99300,1164,1329,389,617,351,309,66500,36700,34300,14850,340,3.6,9,5,8.0,510,9,999999999,300,0.1830,0,88,0.170,999.0,99.0 +1994,8,9,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,18.8,76,99300,1210,1329,389,630,201,447,69300,21400,49700,22220,350,6.1,9,5,9.7,660,9,999999999,300,0.1830,0,88,0.170,0.0,6.0 +1994,8,9,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,18.3,93,99400,1189,1329,376,559,204,376,62000,21800,42400,17580,360,6.1,10,7,9.7,300,9,999999999,290,0.1830,0,88,0.170,999.0,99.0 +1994,8,9,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,18.3,76,99300,1103,1329,385,546,272,321,60300,29600,35700,12160,20,4.1,9,5,9.7,900,9,999999999,290,0.1830,0,88,0.170,999.0,99.0 +1994,8,9,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,17.2,69,99300,958,1329,372,632,573,219,68600,59600,25500,6360,10,4.1,2,1,9.7,77777,9,999999999,279,0.1830,0,88,0.170,999.0,99.0 +1994,8,9,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,16.6,66,99300,763,1329,371,483,427,237,51900,45200,25900,5740,310,3.0,3,1,11.3,77777,9,999999999,279,0.1830,0,88,0.170,999.0,99.0 +1994,8,9,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,15.5,68,99300,533,1329,362,278,364,132,29300,34900,15200,2580,340,3.0,2,1,11.3,77777,9,999999999,279,0.1830,0,88,0.170,999.0,99.0 +1994,8,9,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,15.0,76,99400,282,1329,364,107,97,87,11600,7700,10000,1880,350,6.1,9,5,16.1,77777,9,999999999,270,0.1830,0,88,0.170,0.0,6.0 +1994,8,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,13.8,86,99400,49,853,347,12,0,12,1400,0,1400,440,360,5.6,9,5,16.1,77777,9,999999999,270,0.1830,0,88,0.170,999.0,99.0 +1994,8,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,13.3,93,99500,0,0,325,0,0,0,0,0,0,0,360,3.6,3,1,16.1,77777,9,999999999,259,0.1830,0,88,0.170,999.0,99.0 +1994,8,9,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.3,12.7,96,99500,0,0,320,0,0,0,0,0,0,0,350,3.0,2,1,16.1,77777,9,999999999,259,0.1830,0,88,0.170,999.0,99.0 +1994,8,9,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.2,12.2,100,99500,0,0,314,0,0,0,0,0,0,0,10,2.5,3,1,16.1,77777,9,999999999,250,0.1830,0,88,0.170,999.0,99.0 +1994,8,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.2,12.2,100,99500,0,0,314,0,0,0,0,0,0,0,50,1.5,2,1,16.1,77777,9,999999999,250,0.1830,0,88,0.170,999.0,99.0 +1994,8,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.5,10.5,100,99400,0,0,309,0,0,0,0,0,0,0,70,1.5,2,2,16.1,77777,9,999999999,250,0.1830,0,88,0.170,0.0,6.0 +1994,8,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.5,10.5,100,99400,0,0,312,0,0,0,0,0,0,0,10,1.5,3,3,16.1,77777,9,999999999,240,0.1830,0,88,0.170,999.0,99.0 +1994,8,10,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,10.0,100,99400,0,0,297,0,0,0,0,0,0,0,40,1.5,0,0,16.1,77777,9,999999999,240,0.1830,0,88,0.170,999.0,99.0 +1994,8,10,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,10.0,100,99400,0,0,297,0,0,0,0,0,0,0,70,1.5,0,0,11.3,77777,9,999999999,229,0.1830,0,88,0.170,999.0,99.0 +1994,8,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.8,8.8,100,99400,0,0,291,0,0,0,0,0,0,0,40,2.0,0,0,11.3,77777,9,999999999,229,0.1830,0,88,0.170,999.0,99.0 +1994,8,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.5,10.5,100,99500,7,343,312,0,4,0,0,0,0,0,70,1.5,3,3,8.0,77777,9,999999999,220,0.1830,0,88,0.170,999.0,99.0 +1994,8,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.6,10.5,93,99600,182,1330,341,44,14,42,4800,1000,4700,1040,20,2.5,9,9,11.3,77777,9,999999999,220,0.1830,0,88,0.170,0.0,6.0 +1994,8,10,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.3,11.6,89,99600,435,1330,326,249,510,82,25700,46000,10700,1540,30,2.5,3,3,12.9,77777,9,999999999,220,0.1830,0,88,0.170,999.0,99.0 +1994,8,10,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,12.2,78,99600,676,1330,365,244,43,222,26800,4300,24600,6650,80,4.1,9,9,16.1,77777,9,999999999,229,0.1830,0,88,0.170,999.0,99.0 +1994,8,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,13.3,70,99600,886,1330,354,593,585,203,64100,60600,23600,5280,90,3.6,3,3,16.1,77777,9,999999999,229,0.1830,0,88,0.170,999.0,99.0 +1994,8,10,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,13.8,70,99600,1052,1330,384,374,98,296,41600,10500,33300,10430,120,1.0,9,9,16.1,4500,9,999999999,240,0.1830,0,88,0.170,999.0,99.0 +1994,8,10,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,13.8,63,99600,1161,1330,404,323,0,323,38300,0,38300,14770,130,1.5,10,10,16.1,4500,9,999999999,240,0.1830,0,88,0.170,999.0,99.0 +1994,8,10,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.7,15.0,62,99600,1207,1330,415,338,0,338,40200,0,40200,15430,60,3.6,10,10,16.1,4500,9,999999999,240,0.1830,0,88,0.170,0.0,6.0 +1994,8,10,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,15.5,60,99600,1187,1330,410,446,115,343,49700,12300,38700,15910,280,1.0,9,9,16.1,4500,9,999999999,250,0.1830,0,88,0.170,999.0,99.0 +1994,8,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,15.5,60,99500,1100,1330,410,544,118,446,59900,12200,49800,17990,10,3.0,9,9,16.1,4500,9,999999999,250,0.1830,0,88,0.170,999.0,99.0 +1994,8,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,15.5,62,99500,955,1330,407,470,70,419,51600,7300,46300,14250,70,2.0,9,9,16.1,3900,9,999999999,250,0.1830,0,88,0.170,999.0,99.0 +1994,8,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,15.5,60,99500,760,1330,410,214,53,183,23500,5300,20500,6100,130,1.5,9,9,16.1,3900,9,999999999,259,0.1830,0,88,0.170,999.0,99.0 +1994,8,10,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,15.5,60,99400,528,1330,410,230,75,200,25200,7300,22300,5300,110,2.5,9,9,16.1,3900,9,999999999,259,0.1830,0,88,0.170,999.0,99.0 +1994,8,10,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.6,15.0,66,99400,277,1330,398,125,37,117,13600,3100,12900,2590,140,3.6,9,9,16.1,3900,9,999999999,270,0.1830,0,88,0.170,0.0,6.0 +1994,8,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,15.0,76,99300,46,831,386,9,3,9,1000,200,1000,230,120,2.5,9,9,16.1,3900,9,999999999,270,0.1830,0,88,0.170,999.0,99.0 +1994,8,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,13.8,73,99300,0,0,381,0,0,0,0,0,0,0,110,1.5,9,9,16.1,77777,9,999999999,270,0.1830,0,88,0.170,999.0,99.0 +1994,8,10,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,13.3,73,99400,0,0,378,0,0,0,0,0,0,0,20,1.0,9,9,16.1,3900,9,999999999,279,0.1830,0,88,0.170,999.0,99.0 +1994,8,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,13.3,73,99300,0,0,389,0,0,0,0,0,0,0,40,1.0,10,10,16.1,4200,9,999999999,279,0.1830,0,88,0.170,999.0,99.0 +1994,8,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,13.8,78,99300,0,0,386,0,0,0,0,0,0,0,140,2.0,10,10,16.1,4200,9,999999999,279,0.1830,0,88,0.170,999.0,99.0 +1994,8,11,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.6,14.4,87,99200,0,0,381,0,0,0,0,0,0,0,40,2.0,10,10,16.1,4200,9,999999999,290,0.1820,0,88,0.170,0.0,6.0 +1994,8,11,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.6,15.0,90,99200,0,0,382,0,0,0,0,0,0,0,50,2.0,10,10,16.1,4200,9,999999999,290,0.1820,0,88,0.170,999.0,99.0 +1994,8,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,15.5,90,99200,0,0,386,0,0,0,0,0,0,0,150,1.5,10,10,16.1,4200,9,999999999,300,0.1820,0,88,0.170,999.0,99.0 +1994,8,11,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,16.6,96,99200,0,0,387,0,0,0,0,0,0,0,120,1.0,10,10,16.1,4200,9,999999999,300,0.1820,0,88,0.170,999.0,99.0 +1994,8,11,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,16.6,96,99200,0,0,387,0,0,0,0,0,0,0,0,0.0,10,10,16.1,4200,9,999999999,300,0.1820,0,88,0.170,999.0,99.0 +1994,8,11,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,15.5,84,99300,6,321,367,0,1,0,0,0,0,0,50,2.0,9,7,16.1,3900,9,999999999,309,0.1820,0,88,0.170,999.0,99.0 +1994,8,11,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,16.1,81,99300,178,1330,379,40,21,38,4500,1500,4300,960,60,1.5,9,8,16.1,3900,9,999999999,309,0.1820,0,88,0.170,999.0,99.0 +1994,8,11,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,16.6,84,99300,432,1330,399,89,0,89,10300,0,10300,3540,50,1.0,10,10,16.1,4500,9,999999999,309,0.1820,0,88,0.170,999.0,99.0 +1994,8,11,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,16.6,75,99400,673,1330,408,164,0,164,19000,0,19000,6940,150,0.5,10,10,16.1,4500,9,999999999,320,0.1820,0,88,0.170,999.0,99.0 +1994,8,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,15.0,73,99400,883,1330,400,232,0,232,27100,0,27100,10370,320,1.5,10,10,16.1,4500,9,999999999,320,0.1820,0,88,0.170,999.0,99.0 +1994,8,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,17.7,81,99300,1049,1330,410,285,0,285,33600,0,33600,13080,180,3.0,10,10,16.1,4500,9,999999999,320,0.1820,0,88,0.170,999.0,99.0 +1994,8,11,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,18.8,81,99200,1159,1330,417,320,0,320,38000,0,38000,14660,170,3.6,10,10,16.1,4500,9,999999999,329,0.1820,0,88,0.170,999.0,99.0 +1994,8,11,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,18.8,74,99200,1205,1330,426,335,0,335,39900,0,39900,15320,170,5.1,10,10,16.1,4500,9,999999999,329,0.1820,0,88,0.170,999.0,99.0 +1994,8,11,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,19.4,71,99200,1184,1330,434,262,0,262,31700,0,31700,12640,170,5.1,10,10,12.9,2100,9,999999999,329,0.1820,0,88,0.170,999.0,99.0 +1994,8,11,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,21.1,69,99200,1098,1330,428,622,222,439,67800,23500,48400,16690,170,4.6,9,8,12.9,4500,9,999999999,340,0.1820,0,88,0.170,999.0,99.0 +1994,8,11,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,19.4,67,99100,952,1330,440,254,0,254,29800,0,29800,11510,170,5.1,10,10,11.2,4500,9,999999999,340,0.1820,0,88,0.170,999.0,99.0 +1994,8,11,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,20.0,65,99100,756,1330,448,191,0,191,22200,0,22200,8270,160,5.6,10,10,11.3,77777,9,999999999,340,0.1820,0,88,0.170,999.0,99.0 +1994,8,11,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,21.1,69,99100,524,1330,449,93,0,93,10900,0,10900,3970,190,5.1,10,10,12.9,2700,9,999999999,340,0.1820,0,88,0.170,999.0,99.0 +1994,8,11,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.5,20.5,74,99000,272,1330,438,49,0,49,5600,0,5600,1860,180,3.0,10,10,11.3,4500,9,999999999,350,0.1820,0,88,0.170,0.0,6.0 +1994,8,11,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,20.0,76,99000,43,809,431,6,0,6,700,0,700,230,150,3.6,10,10,11.3,2400,9,999999999,350,0.1820,0,88,0.170,999.0,99.0 +1994,8,11,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,20.5,82,99100,0,0,429,0,0,0,0,0,0,0,170,4.6,10,10,11.3,4200,9,999999999,350,0.1820,0,88,0.170,999.0,99.0 +1994,8,11,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,20.5,84,99100,0,0,426,0,0,0,0,0,0,0,200,3.0,10,10,11.3,3000,9,999999999,359,0.1820,0,88,0.170,999.0,99.0 +1994,8,11,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,20.5,84,99100,0,0,426,0,0,0,0,0,0,0,220,2.0,10,10,11.3,3000,9,999999999,359,0.1820,0,88,0.170,999.0,99.0 +1994,8,11,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,21.1,91,99100,0,0,396,0,0,0,0,0,0,0,180,4.1,9,7,11.3,7500,9,999999999,359,0.1820,0,88,0.170,999.0,99.0 +1994,8,12,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,21.1,93,99100,0,0,394,0,0,0,0,0,0,0,170,1.0,9,7,11.3,3900,9,999999999,370,0.1820,0,88,0.170,0.0,6.0 +1994,8,12,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,21.1,97,99100,0,0,397,0,0,0,0,0,0,0,40,2.0,9,8,9.7,2400,9,999999999,370,0.1820,0,88,0.170,999.0,99.0 +1994,8,12,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,21.1,100,99100,0,0,388,0,0,0,0,0,0,0,150,2.0,9,7,9.7,2400,9,999999999,370,0.1820,0,88,0.170,999.0,99.0 +1994,8,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,20.5,100,99100,0,0,390,0,0,0,0,0,0,0,150,2.0,9,8,8.0,3900,9,999999999,379,0.1820,0,88,0.170,999.0,99.0 +1994,8,12,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,20.5,100,99100,0,0,384,0,0,0,0,0,0,0,160,2.0,9,7,6.4,7500,9,999999999,379,0.1820,0,88,0.170,999.0,99.0 +1994,8,12,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,20.0,100,99100,5,299,367,0,0,0,0,0,0,0,180,1.5,3,3,4.8,77777,9,999999999,379,0.1820,0,88,0.170,999.0,99.0 +1994,8,12,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.6,20.0,91,99100,175,1330,389,46,13,45,5100,900,5000,1090,160,3.6,9,7,8.0,77777,9,999999999,379,0.1820,0,88,0.170,0.0,6.0 +1994,8,12,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,20.5,87,99100,429,1330,402,190,175,134,20700,16300,15400,3020,180,3.6,9,8,11.3,77777,9,999999999,390,0.1820,0,88,0.170,999.0,99.0 +1994,8,12,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,20.0,76,99100,670,1330,431,124,0,124,14700,0,14700,5570,230,4.6,10,10,9.7,450,9,999999999,390,0.1820,0,88,0.170,999.0,99.0 +1994,8,12,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,20.5,82,99100,881,1330,429,180,0,180,21400,0,21400,8500,230,5.1,10,10,8.0,450,9,999999999,390,0.1820,0,88,0.170,999.0,99.0 +1994,8,12,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,21.1,72,99200,1047,1330,446,224,0,224,26900,0,26900,10850,220,6.1,10,10,9.7,600,9,999999999,390,0.1820,0,88,0.170,999.0,99.0 +1994,8,12,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.7,21.1,67,99200,1157,1330,452,253,0,253,30600,0,30600,12240,240,5.6,10,10,9.7,750,9,999999999,390,0.1820,0,88,0.170,999.0,99.0 +1994,8,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,20.0,57,99100,1202,1330,461,331,0,331,39400,0,39400,15180,230,7.7,10,10,11.3,77777,9,999999999,390,0.1820,0,88,0.170,0.0,6.0 +1994,8,12,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,18.3,50,99100,1181,1330,462,324,0,324,38600,0,38600,14870,250,7.7,10,10,12.9,77777,9,999999999,400,0.1820,0,88,0.170,999.0,99.0 +1994,8,12,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.8,19.4,57,99100,1094,1330,457,296,0,296,35000,0,35000,13640,240,6.6,10,10,12.9,4200,9,999999999,400,0.1820,0,88,0.170,999.0,99.0 +1994,8,12,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,18.8,56,99000,948,1330,453,247,0,247,29000,0,29000,11250,260,5.1,10,10,16.1,4200,9,999999999,400,0.1820,0,88,0.170,999.0,99.0 +1994,8,12,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.8,18.8,55,99100,752,1330,456,182,0,182,21200,0,21200,7950,260,5.6,10,10,12.9,77777,9,999999999,400,0.1820,0,88,0.170,999.0,99.0 +1994,8,12,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,18.8,60,99100,520,1330,446,109,0,109,12600,0,12600,4490,250,4.6,10,10,16.1,77777,9,999999999,400,0.1820,0,88,0.170,999.0,99.0 +1994,8,12,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,19.4,69,99000,268,1330,437,60,0,60,6800,0,6800,2160,250,3.6,10,10,11.2,77777,9,999999999,400,0.1820,0,88,0.170,999.0,99.0 +1994,8,12,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,20.0,79,99000,40,787,428,8,0,8,1000,0,1000,300,240,2.5,10,10,11.3,77777,9,999999999,400,0.1820,0,88,0.170,999.0,99.0 +1994,8,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,20.6,79,99100,0,0,432,0,0,0,0,0,0,0,210,3.1,10,10,11.2,7500,9,999999999,409,0.1820,0,88,0.170,999.0,99.0 +1994,8,12,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,20.5,84,99100,0,0,405,0,0,0,0,0,0,0,220,1.0,9,8,11.3,77777,9,999999999,409,0.1820,0,88,0.170,999.0,99.0 +1994,8,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,20.5,84,99100,0,0,399,0,0,0,0,0,0,0,140,1.5,9,7,11.3,77777,9,999999999,409,0.1820,0,88,0.170,999.0,99.0 +1994,8,12,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,20.5,87,99100,0,0,402,0,0,0,0,0,0,0,200,3.0,9,8,11.3,7500,9,999999999,409,0.1820,0,88,0.170,999.0,99.0 +1994,8,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,20.5,84,99000,0,0,426,0,0,0,0,0,0,0,190,4.1,10,10,11.3,4500,9,999999999,409,0.1810,0,88,0.170,0.0,6.0 +1994,8,13,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,20.0,85,99000,0,0,422,0,0,0,0,0,0,0,190,3.0,10,10,11.3,4500,9,999999999,409,0.1810,0,88,0.170,999.0,99.0 +1994,8,13,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,20.0,85,98900,0,0,422,0,0,0,0,0,0,0,190,3.6,10,10,11.3,7500,9,999999999,409,0.1810,0,88,0.170,999.0,99.0 +1994,8,13,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,20.0,85,98900,0,0,410,0,0,0,0,0,0,0,200,4.1,9,9,11.3,7500,9,999999999,419,0.1810,0,88,0.170,999.0,99.0 +1994,8,13,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,20.0,85,98900,0,0,410,0,0,0,0,0,0,0,200,3.6,9,9,11.3,7500,9,999999999,419,0.1810,0,88,0.170,999.0,99.0 +1994,8,13,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,20.0,85,98900,5,277,410,0,0,0,0,0,0,0,200,5.6,9,9,8.0,4500,9,999999999,419,0.1810,0,88,0.170,999.0,99.0 +1994,8,13,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,20.0,82,99000,171,1331,413,50,17,48,5500,1200,5300,1140,220,6.1,9,9,6.4,4500,9,999999999,419,0.1810,0,88,0.170,0.0,6.0 +1994,8,13,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,20.5,79,99000,426,1331,420,179,70,156,19500,6500,17400,3930,230,5.6,9,9,6.4,4200,9,999999999,419,0.1810,0,88,0.170,999.0,99.0 +1994,8,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,20.5,74,99000,667,1331,438,154,0,154,17900,0,17900,6590,240,7.7,10,10,6.4,4200,9,999999999,419,0.1810,0,88,0.170,999.0,99.0 +1994,8,13,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,21.1,74,99000,878,1331,443,223,0,223,26100,0,26100,10030,240,6.1,10,10,6.4,4200,9,999999999,419,0.1810,0,88,0.170,999.0,99.0 +1994,8,13,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.7,21.1,67,99000,1045,1331,452,279,0,279,32900,0,32900,12850,240,6.6,10,10,6.4,4200,9,999999999,419,0.1810,0,88,0.170,999.0,99.0 +1994,8,13,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.8,20.0,59,99000,1154,1331,457,315,0,315,37400,0,37400,14480,250,7.2,10,10,6.4,4200,9,999999999,419,0.1810,0,88,0.170,999.0,99.0 +1994,8,13,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.5,20.0,54,99000,1200,1331,455,578,119,470,63200,12700,51800,22570,250,8.7,9,9,6.4,4200,9,999999999,419,0.1810,0,88,0.170,0.0,6.0 +1994,8,13,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.6,22.2,58,98900,1178,1331,465,500,57,449,55100,5900,49900,20520,220,10.8,9,9,6.4,7500,9,999999999,419,0.1810,0,88,0.170,999.0,99.0 +1994,8,13,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,22.2,59,98800,1091,1331,462,632,99,551,69500,10400,60900,20810,230,9.7,9,9,6.4,4200,9,999999999,419,0.1810,0,88,0.170,999.0,99.0 +1994,8,13,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.6,22.2,58,98700,945,1331,465,264,49,229,29200,5000,25600,8630,220,8.7,9,9,6.4,4200,9,999999999,419,0.1810,0,88,0.170,999.0,99.0 +1994,8,13,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.5,22.7,63,98700,748,1331,459,256,109,195,28400,11400,22000,5090,240,7.2,9,9,6.4,77777,9,999999999,419,0.1810,0,88,0.170,999.0,99.0 +1994,8,13,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,22.2,65,98600,515,1331,416,276,407,119,29300,38800,14300,2290,230,7.2,2,2,6.4,77777,9,999999999,419,0.1810,0,88,0.170,999.0,99.0 +1994,8,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.8,21.6,65,98600,263,1331,416,90,134,64,9600,10000,7700,1190,230,6.1,3,3,8.0,77777,9,999999999,419,0.1810,0,88,0.170,0.0,6.0 +1994,8,13,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.7,21.6,69,98600,37,743,406,7,3,7,800,200,800,180,210,6.1,2,2,8.0,77777,9,999999999,419,0.1810,0,88,0.170,999.0,99.0 +1994,8,13,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,22.2,74,98600,0,0,451,0,0,0,0,0,0,0,210,5.6,10,10,9.7,3900,9,999999999,419,0.1810,0,88,0.170,999.0,99.0 +1994,8,13,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,22.7,76,98600,0,0,452,0,0,0,0,0,0,0,210,5.1,10,10,9.7,3900,9,999999999,419,0.1810,0,88,0.170,999.0,99.0 +1994,8,13,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,22.7,79,98500,0,0,448,0,0,0,0,0,0,0,230,5.1,10,10,9.7,3900,9,999999999,419,0.1810,0,88,0.170,999.0,99.0 +1994,8,13,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,23.3,82,98400,0,0,449,0,0,0,0,0,0,0,210,6.6,10,10,11.3,3900,9,999999999,419,0.1810,0,88,0.170,999.0,99.0 +1994,8,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,22.7,82,98400,0,0,445,0,0,0,0,0,0,0,230,7.2,10,10,11.3,3000,9,999999999,419,0.1810,0,88,0.170,999.0,99.0 +1994,8,14,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,23.8,93,98400,0,0,440,0,0,0,0,0,0,0,230,7.7,10,10,11.3,2700,9,999999999,419,0.1810,0,88,0.170,999.0,99.0 +1994,8,14,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,24.4,100,98300,0,0,437,0,0,0,0,0,0,0,230,5.1,10,10,11.3,3000,9,999999999,419,0.1810,0,88,0.170,999.0,99.0 +1994,8,14,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,23.8,93,98300,0,0,440,0,0,0,0,0,0,0,240,7.2,10,10,11.3,2700,9,999999999,419,0.1810,0,88,0.170,999.0,99.0 +1994,8,14,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,23.3,97,98300,0,0,432,0,0,0,0,0,0,0,250,6.6,10,10,11.3,3900,9,999999999,419,0.1810,0,88,0.170,999.0,99.0 +1994,8,14,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,22.7,96,98400,4,255,429,0,0,0,0,0,0,0,240,5.6,10,10,11.3,3900,9,999999999,419,0.1810,0,88,0.170,999.0,99.0 +1994,8,14,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,22.7,96,98400,168,1331,402,48,10,46,5200,100,5200,1480,250,5.1,9,7,11.3,1140,9,999999999,419,0.1810,0,88,0.170,0.0,6.0 +1994,8,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,22.7,96,98400,422,1331,429,70,0,70,8200,0,8200,2900,250,5.1,10,10,11.3,510,9,999999999,409,0.1810,0,88,0.170,999.0,99.0 +1994,8,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,22.7,100,98400,664,1331,425,122,0,122,14400,0,14400,5470,250,4.6,10,10,11.3,450,9,999999999,400,0.1810,0,88,0.170,999.0,99.0 +1994,8,14,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,22.2,88,98500,876,1331,434,178,0,178,21200,0,21200,8400,340,5.1,10,10,11.3,660,9,999999999,390,0.1810,0,88,0.170,999.0,99.0 +1994,8,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,21.6,84,98500,1042,1331,406,495,279,276,54700,30300,31000,9090,360,6.6,9,7,11.3,1200,9,999999999,379,0.1810,0,88,0.170,999.0,99.0 +1994,8,14,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,20.5,74,98600,1152,1331,438,314,0,314,37300,0,37300,14430,320,5.1,10,10,11.3,3900,9,999999999,370,0.1810,0,88,0.170,999.0,99.0 +1994,8,14,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,20.0,69,98600,1197,1331,441,263,0,263,31900,0,31900,12710,340,5.1,10,10,11.3,1110,9,999999999,370,0.1810,0,88,0.170,0.0,6.0 +1994,8,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,18.3,64,98500,1176,1331,414,577,176,422,63500,18800,46900,18930,350,6.6,9,8,16.1,7500,9,999999999,359,0.1810,0,88,0.170,999.0,99.0 +1994,8,14,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,17.2,60,98500,1088,1331,407,447,148,326,49600,15800,36600,12160,320,6.6,9,7,16.1,7500,9,999999999,350,0.1810,0,88,0.170,999.0,99.0 +1994,8,14,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,15.0,54,98500,941,1331,407,525,160,412,56600,16800,44700,12610,360,6.1,9,8,24.1,7500,9,999999999,340,0.1810,0,88,0.170,999.0,99.0 +1994,8,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,14.4,57,98600,744,1331,391,261,152,177,29200,15900,20300,4610,330,5.6,9,7,11.3,7500,9,999999999,329,0.1810,0,88,0.170,999.0,99.0 +1994,8,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,13.8,61,98600,511,1331,388,133,67,107,14800,6600,12300,2480,350,4.6,9,8,11.3,7500,9,999999999,320,0.1810,0,88,0.170,999.0,99.0 +1994,8,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,13.3,65,98600,258,1331,373,70,34,63,7600,2700,7100,1600,290,1.5,9,7,16.1,7500,9,999999999,309,0.1810,0,88,0.170,0.0,6.0 +1994,8,14,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,13.3,70,98700,34,721,373,7,0,6,700,0,700,230,340,3.0,9,8,24.1,7500,9,999999999,300,0.1810,0,88,0.170,999.0,99.0 +1994,8,14,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,12.2,70,98800,0,0,360,0,0,0,0,0,0,0,340,3.6,9,7,24.1,77777,9,999999999,290,0.1810,0,88,0.170,999.0,99.0 +1994,8,14,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.6,11.6,72,98800,0,0,341,0,0,0,0,0,0,0,340,4.1,3,3,24.1,77777,9,999999999,279,0.1810,0,88,0.170,999.0,99.0 +1994,8,14,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,11.6,80,98800,0,0,331,0,0,0,0,0,0,0,340,3.6,2,2,24.1,77777,9,999999999,279,0.1810,0,88,0.170,999.0,99.0 +1994,8,14,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.8,11.6,87,98800,0,0,328,0,0,0,0,0,0,0,350,3.0,3,3,24.1,77777,9,999999999,270,0.1810,0,88,0.170,999.0,99.0 +1994,8,15,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.7,11.6,93,98800,0,0,310,0,0,0,0,0,0,0,260,0.5,0,0,24.1,77777,9,999999999,259,0.1800,0,88,0.170,0.0,6.0 +1994,8,15,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.6,11.1,97,98900,0,0,305,0,0,0,0,0,0,0,220,1.5,0,0,24.1,77777,9,999999999,250,0.1800,0,88,0.170,999.0,99.0 +1994,8,15,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.5,10.5,100,98800,0,0,299,0,0,0,0,0,0,0,270,0.5,0,0,24.1,77777,9,999999999,240,0.1800,0,88,0.170,999.0,99.0 +1994,8,15,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.4,9.4,100,98900,0,0,294,0,0,0,0,0,0,0,200,1.0,0,0,24.1,77777,9,999999999,229,0.1800,0,88,0.170,999.0,99.0 +1994,8,15,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.4,9.4,100,98900,0,0,294,0,0,0,0,0,0,0,220,1.5,0,0,24.1,77777,9,999999999,220,0.1800,0,88,0.170,999.0,99.0 +1994,8,15,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.4,9.4,100,98900,3,233,303,0,10,0,0,0,0,0,270,1.0,2,2,16.1,77777,9,999999999,209,0.1800,0,88,0.170,999.0,99.0 +1994,8,15,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.6,11.6,100,99000,164,1332,318,57,138,40,6000,7700,5100,730,0,0.0,3,3,16.1,77777,9,999999999,200,0.1800,0,88,0.170,0.0,6.0 +1994,8,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,12.2,87,99100,419,1332,329,238,540,68,24900,48500,9600,1300,70,1.0,2,2,16.1,77777,9,999999999,200,0.1800,0,88,0.170,999.0,99.0 +1994,8,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,12.7,73,99100,661,1332,333,458,774,74,48800,76300,10900,1670,330,2.0,0,0,24.1,77777,9,999999999,200,0.1800,0,88,0.170,999.0,99.0 +1994,8,15,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,11.6,61,99200,873,1332,351,595,740,109,63000,74300,14200,2760,340,2.5,2,2,24.1,77777,9,999999999,200,0.1800,0,88,0.170,999.0,99.0 +1994,8,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,11.1,55,99100,1040,1332,360,784,789,168,81300,78900,19600,5060,320,4.1,3,3,24.1,77777,9,999999999,200,0.1800,0,88,0.170,999.0,99.0 +1994,8,15,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,11.1,53,99100,1149,1332,359,839,852,103,86900,85500,13000,3980,310,2.0,2,2,24.1,77777,9,999999999,200,0.1800,0,88,0.170,999.0,99.0 +1994,8,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.6,11.6,53,99100,1195,1332,366,870,802,151,93200,81300,20100,7570,170,1.5,3,3,24.1,77777,9,999999999,200,0.1800,0,88,0.170,0.0,6.0 +1994,8,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,11.1,46,99100,1173,1332,370,868,801,163,92000,80900,20600,7400,340,3.0,2,2,24.1,77777,9,999999999,200,0.1800,0,88,0.170,999.0,99.0 +1994,8,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,11.6,49,99100,1085,1332,399,336,98,256,37800,10500,29200,9490,30,4.1,9,9,24.1,1500,9,999999999,200,0.1800,0,88,0.170,999.0,99.0 +1994,8,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,12.2,53,99000,937,1332,397,281,67,234,31100,6800,26300,8730,40,4.1,9,9,24.1,1800,9,999999999,200,0.1800,0,88,0.170,999.0,99.0 +1994,8,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,11.6,49,99000,740,1332,371,439,525,147,45800,52100,16800,3240,350,4.1,3,3,24.1,77777,9,999999999,200,0.1800,0,88,0.170,999.0,99.0 +1994,8,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,12.2,51,99000,506,1332,368,275,486,90,28600,45600,11300,1750,10,2.5,2,2,16.1,77777,9,999999999,200,0.1800,0,88,0.170,999.0,99.0 +1994,8,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,12.7,59,99000,253,1332,349,129,475,38,13400,36000,6500,710,50,2.5,0,0,16.1,77777,9,999999999,200,0.1800,0,88,0.170,0.0,6.0 +1994,8,15,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,14.4,76,99000,31,699,340,9,70,5,900,3000,800,100,50,2.0,0,0,16.1,77777,9,999999999,200,0.1800,0,88,0.170,999.0,99.0 +1994,8,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,14.4,81,99000,0,0,335,0,0,0,0,0,0,0,50,1.5,0,0,32.2,77777,9,999999999,200,0.1800,0,88,0.170,999.0,99.0 +1994,8,15,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,13.8,80,99000,0,0,332,0,0,0,0,0,0,0,0,0.0,0,0,32.2,77777,9,999999999,200,0.1800,0,88,0.170,999.0,99.0 +1994,8,15,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,13.8,96,99000,0,0,320,0,0,0,0,0,0,0,60,1.5,0,0,32.2,77777,9,999999999,200,0.1800,0,88,0.170,999.0,99.0 +1994,8,15,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.8,13.8,100,99000,0,0,317,0,0,0,0,0,0,0,40,1.0,0,0,32.2,77777,9,999999999,200,0.1800,0,88,0.170,999.0,99.0 +1994,8,16,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.7,12.7,100,99000,0,0,311,0,0,0,0,0,0,0,40,1.5,0,0,32.2,77777,9,999999999,200,0.1790,0,88,0.170,0.0,6.0 +1994,8,16,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.7,12.7,100,98900,0,0,311,0,0,0,0,0,0,0,30,2.0,0,0,32.2,77777,9,999999999,200,0.1790,0,88,0.170,999.0,99.0 +1994,8,16,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.2,12.2,100,98900,0,0,308,0,0,0,0,0,0,0,40,2.0,0,0,32.2,77777,9,999999999,200,0.1790,0,88,0.170,999.0,99.0 +1994,8,16,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.1,11.1,100,98900,0,0,303,0,0,0,0,0,0,0,50,2.5,0,0,24.1,77777,9,999999999,200,0.1790,0,88,0.170,999.0,99.0 +1994,8,16,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.1,11.1,100,98900,0,0,303,0,0,0,0,0,0,0,10,2.0,0,0,24.1,77777,9,999999999,200,0.1790,0,88,0.170,999.0,99.0 +1994,8,16,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.6,11.6,100,99000,3,211,305,0,0,0,0,0,0,0,360,2.0,0,0,9.7,77777,9,999999999,200,0.1790,0,88,0.170,999.0,99.0 +1994,8,16,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.7,12.7,100,99000,161,1332,311,56,137,40,6000,7500,5100,730,40,2.0,0,0,16.1,77777,9,999999999,200,0.1790,0,88,0.170,0.0,6.0 +1994,8,16,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,14.4,93,99100,416,1332,331,219,418,88,23300,37500,11500,1630,10,1.5,3,1,16.1,77777,9,999999999,200,0.1790,0,88,0.170,999.0,99.0 +1994,8,16,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,13.8,70,99100,659,1332,342,426,615,122,44500,60400,14600,2560,90,3.0,0,0,16.1,77777,9,999999999,209,0.1790,0,88,0.170,999.0,99.0 +1994,8,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,13.8,61,99100,870,1332,353,616,710,152,65300,71900,18200,3920,70,2.5,0,0,16.1,77777,9,999999999,209,0.1790,0,88,0.170,999.0,99.0 +1994,8,16,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,13.8,55,99100,1037,1332,361,767,764,172,82100,78200,21100,5850,80,4.6,0,0,16.1,77777,9,999999999,209,0.1790,0,88,0.170,999.0,99.0 +1994,8,16,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,13.3,52,99000,1147,1332,370,822,728,195,88300,74700,23900,8720,100,4.6,3,1,16.1,77777,9,999999999,209,0.1790,0,88,0.170,999.0,99.0 +1994,8,16,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.8,13.3,52,99000,1192,1332,370,860,748,191,89800,75000,22500,9020,80,3.0,2,1,16.1,77777,9,999999999,220,0.1790,0,88,0.170,0.0,6.0 +1994,8,16,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,13.3,50,99000,1170,1332,373,865,761,197,93100,78100,24400,9500,40,1.5,3,1,16.1,77777,9,999999999,220,0.1790,0,88,0.170,999.0,99.0 +1994,8,16,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,13.8,50,98900,1082,1332,377,796,760,179,85500,77900,22100,6720,100,4.6,2,1,16.1,77777,9,999999999,220,0.1790,0,88,0.170,999.0,99.0 +1994,8,16,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,14.4,48,98900,933,1332,383,662,705,168,70200,71600,19900,4710,80,3.0,3,1,16.1,77777,9,999999999,229,0.1790,0,88,0.170,999.0,99.0 +1994,8,16,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,14.4,50,98900,735,1332,373,493,651,133,51700,64900,15900,2970,60,2.5,0,0,16.1,77777,9,999999999,229,0.1790,0,88,0.170,999.0,99.0 +1994,8,16,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,14.4,52,98900,501,1332,370,291,512,98,30000,47700,12100,1870,120,4.1,0,0,16.1,77777,9,999999999,229,0.1790,0,88,0.170,999.0,99.0 +1994,8,16,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,13.9,54,98800,247,1332,364,104,256,56,10900,18500,7400,1010,120,2.6,0,0,16.0,77777,9,999999999,229,0.1790,0,88,0.170,999.0,99.0 +1994,8,16,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,15.5,70,98800,29,655,359,6,7,6,700,300,700,120,330,1.5,3,1,16.1,77777,9,999999999,240,0.1790,0,88,0.170,999.0,99.0 +1994,8,16,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,15.0,79,98800,0,0,348,0,0,0,0,0,0,0,310,1.0,2,1,16.1,77777,9,999999999,240,0.1790,0,88,0.170,999.0,99.0 +1994,8,16,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,15.6,90,98800,0,0,341,0,0,0,0,0,0,0,310,1.5,3,1,16.0,77777,9,999999999,240,0.1790,0,88,0.170,999.0,99.0 +1994,8,16,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.6,15.5,93,98800,0,0,338,0,0,0,0,0,0,0,220,1.0,2,1,16.1,77777,9,999999999,250,0.1790,0,88,0.170,999.0,99.0 +1994,8,16,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,16.1,93,98800,0,0,335,0,0,0,0,0,0,0,0,0.0,0,0,11.3,77777,9,999999999,250,0.1790,0,88,0.170,999.0,99.0 +1994,8,17,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,16.1,100,98700,0,0,330,0,0,0,0,0,0,0,310,1.0,0,0,11.3,77777,9,999999999,250,0.1780,0,88,0.170,0.0,6.0 +1994,8,17,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,15.0,100,98700,0,0,324,0,0,0,0,0,0,0,30,2.0,0,0,9.7,77777,9,999999999,250,0.1780,0,88,0.170,999.0,99.0 +1994,8,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,15.5,100,98700,0,0,326,0,0,0,0,0,0,0,10,2.5,0,0,6.4,77777,9,999999999,259,0.1780,0,88,0.170,999.0,99.0 +1994,8,17,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,16.1,100,98700,0,0,341,0,0,0,0,0,0,0,20,2.5,2,2,4.8,77777,9,999999999,259,0.1780,0,88,0.170,999.0,99.0 +1994,8,17,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.6,16.6,100,98700,0,0,384,0,0,0,0,0,0,0,20,3.0,10,10,0.1,15,9,999999999,259,0.1780,0,88,0.170,999.0,99.0 +1994,8,17,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.6,16.6,100,98700,2,189,384,0,0,0,0,0,0,0,40,2.5,10,10,0.2,15,9,999999999,270,0.1780,0,88,0.170,999.0,99.0 +1994,8,17,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,17.2,100,98700,157,1333,388,17,0,17,2000,0,2000,660,50,3.0,10,10,0.2,30,9,999999999,270,0.1780,0,88,0.170,0.0,6.0 +1994,8,17,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,18.3,100,98800,413,1333,395,48,0,48,5800,0,5800,2080,50,3.1,10,10,1.2,60,9,999999999,270,0.1780,0,88,0.170,999.0,99.0 +1994,8,17,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,18.8,100,98800,656,1333,379,152,98,104,17300,10200,12300,2570,60,3.0,9,8,3.6,150,9,999999999,270,0.1780,0,88,0.170,999.0,99.0 +1994,8,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,21.6,94,98800,868,1333,397,317,151,219,35400,16000,24900,6240,50,3.0,9,7,11.3,7500,9,999999999,270,0.1780,0,88,0.170,999.0,99.0 +1994,8,17,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,20.5,79,98800,1034,1333,411,410,184,267,45400,20000,29900,8630,50,3.6,9,8,11.3,1500,9,999999999,270,0.1780,0,88,0.170,999.0,99.0 +1994,8,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,19.4,69,98700,1144,1333,409,526,269,295,58600,29300,33400,12110,40,4.1,9,7,11.3,960,9,999999999,270,0.1780,0,88,0.170,999.0,99.0 +1994,8,17,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,18.8,64,98700,1189,1333,418,594,56,544,65400,5800,60200,24390,40,4.6,9,8,11.3,1140,9,999999999,270,0.1780,0,88,0.170,0.0,6.0 +1994,8,17,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,18.8,56,98700,1167,1333,405,878,750,221,93600,76600,26500,10450,50,4.6,2,2,11.3,77777,9,999999999,270,0.1780,0,88,0.170,999.0,99.0 +1994,8,17,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,18.8,56,98700,1078,1333,409,733,661,199,78100,67400,23500,7330,50,5.1,3,3,11.3,77777,9,999999999,270,0.1780,0,88,0.170,999.0,99.0 +1994,8,17,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.8,17.7,51,98600,929,1333,407,636,658,176,67100,66700,20500,4870,30,3.6,2,2,11.3,77777,9,999999999,259,0.1780,0,88,0.170,999.0,99.0 +1994,8,17,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,18.3,60,98600,731,1333,399,464,599,135,48600,59600,15900,2990,20,5.1,3,3,11.3,77777,9,999999999,259,0.1780,0,88,0.170,999.0,99.0 +1994,8,17,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,19.4,67,98600,496,1333,394,295,517,102,30300,47900,12500,1930,10,4.6,2,2,11.3,77777,9,999999999,259,0.1780,0,88,0.170,999.0,99.0 +1994,8,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,19.4,79,98600,242,1333,383,106,195,71,11200,13800,8600,1370,10,3.6,3,3,11.3,77777,9,999999999,259,0.1780,0,88,0.170,0.0,6.0 +1994,8,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,20.0,93,98700,26,633,369,5,21,4,600,700,600,70,350,2.5,2,2,11.3,77777,9,999999999,259,0.1780,0,88,0.170,999.0,99.0 +1994,8,17,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,20.0,100,98700,0,0,352,0,0,0,0,0,0,0,60,2.0,0,0,11.3,77777,9,999999999,259,0.1780,0,88,0.170,999.0,99.0 +1994,8,17,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,18.3,100,98700,0,0,342,0,0,0,0,0,0,0,310,1.0,0,0,9.7,77777,9,999999999,259,0.1780,0,88,0.170,999.0,99.0 +1994,8,17,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,18.3,100,98700,0,0,342,0,0,0,0,0,0,0,20,1.5,0,0,9.7,77777,9,999999999,259,0.1780,0,88,0.170,999.0,99.0 +1994,8,17,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.6,16.6,100,98800,0,0,360,0,0,0,0,0,0,0,60,1.5,9,7,8.0,1200,9,999999999,259,0.1780,0,88,0.170,999.0,99.0 +1994,8,18,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,17.2,100,98800,0,0,377,0,0,0,0,0,0,0,350,1.0,9,9,6.4,1200,9,999999999,259,0.1770,0,88,0.170,0.0,6.0 +1994,8,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,16.1,100,98700,0,0,344,0,0,0,0,0,0,0,50,1.0,3,3,6.4,77777,9,999999999,259,0.1770,0,88,0.170,999.0,99.0 +1994,8,18,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,15.5,100,98700,0,0,377,0,0,0,0,0,0,0,40,2.0,10,10,4.8,77777,9,999999999,259,0.1770,0,88,0.170,999.0,99.0 +1994,8,18,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,14.4,100,98700,0,0,334,0,0,0,0,0,0,0,40,1.5,3,3,3.2,77777,9,999999999,259,0.1770,0,88,0.170,999.0,99.0 +1994,8,18,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.2,12.2,100,98700,0,0,319,0,0,0,0,0,0,0,60,2.5,2,2,2.4,77777,9,999999999,259,0.1770,0,88,0.170,999.0,99.0 +1994,8,18,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.7,12.7,100,98800,2,167,359,0,0,0,0,0,0,0,30,2.0,10,10,0.2,30,9,999999999,259,0.1770,0,88,0.170,999.0,99.0 +1994,8,18,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,13.3,100,98800,153,1333,363,21,0,21,2500,0,2500,790,20,2.0,10,10,0.1,30,9,999999999,259,0.1770,0,88,0.170,0.0,6.0 +1994,8,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.8,13.8,100,98900,409,1333,366,48,0,48,5800,0,5800,2080,350,1.0,10,10,0.8,30,9,999999999,259,0.1770,0,88,0.170,999.0,99.0 +1994,8,18,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,15.0,100,98900,653,1333,373,83,0,83,10100,0,10100,3910,10,1.5,10,10,1.2,60,9,999999999,259,0.1770,0,88,0.170,999.0,99.0 +1994,8,18,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.8,17.8,100,98900,865,1333,392,219,0,219,25600,0,25600,9810,10,2.1,10,10,4.8,77777,9,999999999,259,0.1770,0,88,0.170,999.0,99.0 +1994,8,18,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,17.2,73,99000,1032,1333,415,274,0,274,32300,0,32300,12610,320,2.0,10,10,11.3,77777,9,999999999,250,0.1770,0,88,0.170,999.0,99.0 +1994,8,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,19.4,71,98900,1141,1333,434,311,0,311,36900,0,36900,14290,0,0.0,10,10,11.3,77777,9,999999999,250,0.1770,0,88,0.170,999.0,99.0 +1994,8,18,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,18.3,66,98800,1186,1333,433,326,0,326,38800,0,38800,14950,350,3.6,10,10,11.3,77777,9,999999999,250,0.1770,0,88,0.170,0.0,6.0 +1994,8,18,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,17.7,58,98800,1163,1333,441,318,0,318,37800,0,37800,14600,360,3.6,10,10,11.3,77777,9,999999999,250,0.1770,0,88,0.170,999.0,99.0 +1994,8,18,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,17.7,56,98800,1075,1333,445,289,0,289,34200,0,34200,13310,290,2.5,10,10,11.3,77777,9,999999999,250,0.1770,0,88,0.170,999.0,99.0 +1994,8,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,17.7,58,98800,925,1333,441,239,0,239,28000,0,28000,10840,340,3.6,10,10,11.3,77777,9,999999999,250,0.1770,0,88,0.170,999.0,99.0 +1994,8,18,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,17.2,58,98800,726,1333,425,225,103,168,25000,10800,19100,4320,330,4.1,9,9,11.3,77777,9,999999999,250,0.1770,0,88,0.170,999.0,99.0 +1994,8,18,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,17.7,66,98800,491,1333,416,246,120,202,26900,11600,22600,5090,10,3.6,9,9,11.3,77777,9,999999999,250,0.1770,0,88,0.170,999.0,99.0 +1994,8,18,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.6,18.8,84,98700,236,1333,402,65,4,64,7200,100,7200,2140,40,2.5,9,9,11.3,77777,9,999999999,250,0.1770,0,88,0.170,0.0,6.0 +1994,8,18,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,18.8,93,98800,24,611,394,4,0,4,0,0,0,0,10,2.0,9,9,11.3,77777,9,999999999,240,0.1770,0,88,0.170,999.0,99.0 +1994,8,18,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,19.4,100,98800,0,0,391,0,0,0,0,0,0,0,30,1.5,9,9,11.3,77777,9,999999999,240,0.1770,0,88,0.170,999.0,99.0 +1994,8,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,18.3,100,98800,0,0,384,0,0,0,0,0,0,0,80,1.0,9,9,11.3,77777,9,999999999,240,0.1770,0,88,0.170,999.0,99.0 +1994,8,18,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,15.5,100,98800,0,0,366,0,0,0,0,0,0,0,60,0.5,9,9,9.7,77777,9,999999999,240,0.1770,0,88,0.170,999.0,99.0 +1994,8,18,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.6,16.6,100,98700,0,0,373,0,0,0,0,0,0,0,330,1.0,9,9,8.0,77777,9,999999999,240,0.1770,0,88,0.170,999.0,99.0 +1994,8,19,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,16.1,100,98700,0,0,362,0,0,0,0,0,0,0,40,1.5,9,8,8.0,77777,9,999999999,240,0.1770,0,88,0.170,0.0,6.0 +1994,8,19,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,15.0,100,98600,0,0,350,0,0,0,0,0,0,0,60,1.5,9,7,6.4,77777,9,999999999,240,0.1770,0,88,0.170,999.0,99.0 +1994,8,19,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,15.0,100,98600,0,0,355,0,0,0,0,0,0,0,80,2.0,9,8,4.8,77777,9,999999999,240,0.1770,0,88,0.170,999.0,99.0 +1994,8,19,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,15.0,100,98600,0,0,350,0,0,0,0,0,0,0,40,1.5,9,7,4.8,77777,9,999999999,229,0.1770,0,88,0.170,999.0,99.0 +1994,8,19,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,14.4,100,98600,0,0,334,0,0,0,0,0,0,0,30,1.0,3,3,4.8,77777,9,999999999,229,0.1770,0,88,0.170,999.0,99.0 +1994,8,19,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,14.4,100,98700,1,145,320,0,0,0,0,0,0,0,60,1.5,0,0,4.4,77777,9,999999999,229,0.1770,0,88,0.170,999.0,99.0 +1994,8,19,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,15.0,100,98700,150,1334,324,54,175,35,5700,9600,4600,630,60,1.0,0,0,4.8,77777,9,999999999,229,0.1770,0,88,0.170,0.0,6.0 +1994,8,19,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,18.3,100,98700,406,1334,354,228,454,89,24100,40400,11800,1650,150,2.0,2,2,6.4,77777,9,999999999,229,0.1770,0,88,0.170,999.0,99.0 +1994,8,19,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,20.5,90,98800,650,1334,379,372,485,136,40100,48500,16400,2780,200,2.5,3,3,8.0,77777,9,999999999,240,0.1770,0,88,0.170,999.0,99.0 +1994,8,19,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,19.4,74,98800,862,1334,385,545,563,181,57000,56500,20400,4500,230,4.1,2,2,9.7,77777,9,999999999,240,0.1770,0,88,0.170,999.0,99.0 +1994,8,19,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,19.4,65,98800,1029,1334,443,278,0,278,32700,0,32700,12730,230,3.0,10,10,9.7,77777,9,999999999,240,0.1770,0,88,0.170,999.0,99.0 +1994,8,19,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,16.6,52,98700,1139,1334,443,313,0,313,37100,0,37100,14350,220,3.6,10,10,9.7,77777,9,999999999,250,0.1770,0,88,0.170,999.0,99.0 +1994,8,19,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,15.0,44,98700,1183,1334,447,327,0,327,38900,0,38900,14970,190,3.6,10,10,8.0,77777,9,999999999,250,0.1770,0,88,0.170,0.0,6.0 +1994,8,19,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.8,14.4,41,98600,1160,1334,449,319,0,319,37900,0,37900,14620,210,3.0,10,10,8.0,77777,9,999999999,250,0.1770,0,88,0.170,999.0,99.0 +1994,8,19,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,13.3,37,98600,1071,1334,451,291,0,291,34400,0,34400,13370,170,5.1,10,10,8.0,7500,9,999999999,250,0.1770,0,88,0.170,999.0,99.0 +1994,8,19,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,14.4,40,98500,921,1334,453,243,0,243,28400,0,28400,10940,230,5.6,10,10,8.0,7500,9,999999999,259,0.1770,0,88,0.170,999.0,99.0 +1994,8,19,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,16.1,45,98500,722,1334,455,178,0,178,20600,0,20600,7650,210,6.1,10,10,8.0,7500,9,999999999,259,0.1770,0,88,0.170,999.0,99.0 +1994,8,19,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.7,16.6,51,98400,486,1334,386,288,563,82,30000,52400,10900,1600,180,6.1,0,0,8.0,77777,9,999999999,259,0.1770,0,88,0.170,999.0,99.0 +1994,8,19,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,17.2,58,98400,231,1334,395,93,230,53,9700,16100,6900,950,190,5.1,3,3,8.0,77777,9,999999999,270,0.1770,0,88,0.170,0.0,6.0 +1994,8,19,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,18.3,71,98400,21,567,381,4,9,3,0,0,0,0,180,5.1,2,2,8.0,77777,9,999999999,270,0.1770,0,88,0.170,999.0,99.0 +1994,8,19,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,19.4,82,98400,0,0,401,0,0,0,0,0,0,0,160,3.6,9,8,8.0,77777,9,999999999,270,0.1770,0,88,0.170,999.0,99.0 +1994,8,19,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,18.8,74,98400,0,0,399,0,0,0,0,0,0,0,160,3.0,9,7,8.0,7500,9,999999999,270,0.1770,0,88,0.170,999.0,99.0 +1994,8,19,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,19.4,76,98400,0,0,407,0,0,0,0,0,0,0,160,4.1,9,8,8.0,7500,9,999999999,279,0.1770,0,88,0.170,999.0,99.0 +1994,8,19,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,18.8,84,98400,0,0,388,0,0,0,0,0,0,0,240,3.0,9,7,9.7,7500,9,999999999,279,0.1770,0,88,0.170,999.0,99.0 +1994,8,20,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,19.4,84,98400,0,0,392,0,0,0,0,0,0,0,180,2.5,9,7,9.7,7500,9,999999999,279,0.1760,0,88,0.170,0.0,6.0 +1994,8,20,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,19.4,87,98300,0,0,395,0,0,0,0,0,0,0,160,3.0,9,8,9.7,4500,9,999999999,290,0.1760,0,88,0.170,999.0,99.0 +1994,8,20,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,19.4,90,98300,0,0,386,0,0,0,0,0,0,0,170,3.0,9,7,9.7,7500,9,999999999,290,0.1760,0,88,0.170,999.0,99.0 +1994,8,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,19.4,93,98200,0,0,389,0,0,0,0,0,0,0,170,4.1,9,8,9.7,77777,9,999999999,290,0.1760,0,88,0.170,999.0,99.0 +1994,8,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,19.4,100,98200,0,0,360,0,0,0,0,0,0,0,140,3.0,2,2,9.7,77777,9,999999999,290,0.1760,0,88,0.170,999.0,99.0 +1994,8,20,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,20.0,100,98200,1,122,387,0,0,0,0,0,0,0,180,4.1,9,8,6.4,7500,9,999999999,300,0.1760,0,88,0.170,999.0,99.0 +1994,8,20,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,20.5,96,98200,146,1334,387,63,19,61,6900,1300,6700,1270,190,4.6,9,7,8.0,4200,9,999999999,300,0.1760,0,88,0.170,0.0,6.0 +1994,8,20,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,19.4,87,98200,403,1334,395,150,64,131,16500,5900,14700,3360,190,6.1,9,8,8.0,4200,9,999999999,300,0.1760,0,88,0.170,999.0,99.0 +1994,8,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,20.0,79,98200,647,1334,401,242,146,171,26700,15000,19400,4210,190,6.6,9,7,8.0,7500,9,999999999,300,0.1760,0,88,0.170,999.0,99.0 +1994,8,20,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,20.0,67,98200,859,1334,423,326,85,271,35900,8600,30300,9180,200,10.2,9,8,8.0,7500,9,999999999,309,0.1760,0,88,0.170,999.0,99.0 +1994,8,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.7,20.0,63,98200,1026,1334,422,551,270,343,59800,29200,37300,11310,200,9.7,9,7,8.0,4200,9,999999999,309,0.1760,0,88,0.170,999.0,99.0 +1994,8,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.8,20.0,59,98200,1136,1334,457,309,0,309,36600,0,36600,14200,230,10.8,10,10,8.0,4200,9,999999999,309,0.1760,0,88,0.170,999.0,99.0 +1994,8,20,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,20.0,61,98200,1180,1334,454,324,0,324,38500,0,38500,14860,240,8.2,10,10,8.0,7500,9,999999999,309,0.1760,0,88,0.170,0.0,6.0 +1994,8,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.8,20.5,61,98100,1157,1334,458,253,0,253,30600,0,30600,12230,210,8.2,10,10,8.0,1500,9,999999999,309,0.1760,0,88,0.170,999.0,99.0 +1994,8,20,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,21.1,65,97900,1067,1334,456,287,0,287,33900,0,33900,13210,220,7.2,10,10,8.0,7500,9,999999999,309,0.1760,0,88,0.170,999.0,99.0 +1994,8,20,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,21.6,76,97900,917,1334,443,190,0,190,22700,0,22700,9020,280,5.6,10,10,8.0,1200,9,999999999,320,0.1760,0,88,0.170,999.0,99.0 +1994,8,20,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,20.0,100,98000,717,1334,406,138,0,138,16300,0,16300,6250,200,4.6,10,10,4.8,870,9,999999999,320,0.1760,0,88,0.170,999.0,99.0 +1994,8,20,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,20.5,100,98000,481,1334,410,79,0,79,9300,0,9300,3350,300,2.5,10,10,3.2,750,9,999999999,320,0.1760,0,88,0.170,999.0,99.0 +1994,8,20,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,20.0,100,97900,225,1334,406,39,0,39,4500,0,4500,1460,30,1.0,10,10,11.3,1440,9,999999999,320,0.1760,0,88,0.170,11.0,6.0 +1994,8,20,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,20.5,100,97900,19,545,410,2,0,2,0,0,0,0,160,3.6,10,10,11.3,2400,9,999999999,320,0.1760,0,88,0.170,999.0,99.0 +1994,8,20,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,20.0,100,98000,0,0,406,0,0,0,0,0,0,0,360,1.5,10,10,4.8,330,9,999999999,329,0.1760,0,88,0.170,999.0,99.0 +1994,8,20,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,20.0,100,98000,0,0,406,0,0,0,0,0,0,0,0,0.0,10,10,11.3,2100,9,999999999,329,0.1760,0,88,0.170,999.0,99.0 +1994,8,20,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,20.0,100,97900,0,0,406,0,0,0,0,0,0,0,210,1.0,10,10,4.8,2100,9,999999999,329,0.1760,0,88,0.170,999.0,99.0 +1994,8,20,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,18.8,100,97900,0,0,398,0,0,0,0,0,0,0,50,2.0,10,10,11.3,2100,9,999999999,329,0.1760,0,88,0.170,999.0,99.0 +1994,8,21,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,18.3,100,97900,0,0,395,0,0,0,0,0,0,0,240,1.5,10,10,16.1,7500,9,999999999,329,0.1750,0,88,0.170,2.0,6.0 +1994,8,21,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,18.3,100,97900,0,0,395,0,0,0,0,0,0,0,210,2.0,10,10,16.1,7500,9,999999999,329,0.1750,0,88,0.170,999.0,99.0 +1994,8,21,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,18.3,100,97800,0,0,395,0,0,0,0,0,0,0,280,2.0,10,10,11.3,300,9,999999999,340,0.1750,0,88,0.170,999.0,99.0 +1994,8,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,18.3,100,97800,0,0,395,0,0,0,0,0,0,0,300,3.0,10,10,8.0,240,9,999999999,340,0.1750,0,88,0.170,999.0,99.0 +1994,8,21,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,18.3,100,97900,0,0,395,0,0,0,0,0,0,0,300,2.5,10,10,4.8,120,9,999999999,340,0.1750,0,88,0.170,999.0,99.0 +1994,8,21,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,18.3,100,97900,1,100,395,0,0,0,0,0,0,0,310,4.1,10,10,3.2,210,9,999999999,340,0.1750,0,88,0.170,999.0,99.0 +1994,8,21,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,18.3,100,98000,142,1335,384,37,3,37,4100,0,4100,1200,310,2.5,9,9,3.6,270,9,999999999,340,0.1750,0,88,0.170,999.0,99.0 +1994,8,21,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,18.3,100,98100,399,1335,395,67,0,67,7800,0,7800,2730,290,3.6,10,10,4.4,270,9,999999999,340,0.1750,0,88,0.170,999.0,99.0 +1994,8,21,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,18.3,97,98100,644,1335,387,287,29,272,31600,2800,30200,9200,320,4.6,9,9,6.4,330,9,999999999,340,0.1750,0,88,0.170,999.0,99.0 +1994,8,21,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,18.3,93,98100,857,1335,390,236,50,204,26100,5000,22800,7220,310,4.6,9,9,8.0,360,9,999999999,340,0.1750,0,88,0.170,999.0,99.0 +1994,8,21,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,17.2,84,98200,1023,1335,392,377,65,327,41600,6700,36500,12610,320,3.6,9,9,9.7,870,9,999999999,329,0.1750,0,88,0.170,999.0,99.0 +1994,8,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,18.3,82,98200,1133,1335,402,698,301,442,75300,32600,47600,18440,10,4.6,9,9,9.7,600,9,999999999,329,0.1750,0,88,0.170,999.0,99.0 +1994,8,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.6,17.7,78,98200,1177,1335,401,529,78,459,58200,8100,51100,20710,20,3.0,9,9,9.7,780,9,999999999,329,0.1750,0,88,0.170,0.0,6.0 +1994,8,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,18.3,71,98200,1154,1335,414,530,155,396,58400,16500,44100,16720,330,4.1,9,9,9.7,1500,9,999999999,329,0.1750,0,88,0.170,999.0,99.0 +1994,8,21,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,17.7,66,98200,1063,1335,416,368,85,299,40500,8700,33600,12240,360,4.6,9,9,9.7,1050,9,999999999,320,0.1750,0,88,0.170,999.0,99.0 +1994,8,21,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,17.7,69,98200,913,1335,413,322,56,284,35500,5700,31600,10030,350,6.1,9,9,9.7,1050,9,999999999,320,0.1750,0,88,0.170,999.0,99.0 +1994,8,21,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,17.2,69,98100,712,1335,381,407,387,200,43900,40600,22300,4570,360,5.1,3,3,11.3,77777,9,999999999,320,0.1750,0,88,0.170,999.0,99.0 +1994,8,21,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,16.6,66,98200,476,1335,376,220,253,130,23500,24200,14900,2630,10,5.1,2,2,11.3,77777,9,999999999,320,0.1750,0,88,0.170,999.0,99.0 +1994,8,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,17.2,73,98200,220,1335,375,69,57,60,7600,4100,6900,1280,360,4.1,3,3,11.3,77777,9,999999999,309,0.1750,0,88,0.170,0.0,6.0 +1994,8,21,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,17.7,84,98300,17,501,364,2,0,2,0,0,0,0,10,3.0,2,2,11.3,77777,9,999999999,309,0.1750,0,88,0.170,999.0,99.0 +1994,8,21,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,17.7,90,98300,0,0,362,0,0,0,0,0,0,0,330,2.0,3,3,11.3,77777,9,999999999,309,0.1750,0,88,0.170,999.0,99.0 +1994,8,21,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,17.7,93,98400,0,0,355,0,0,0,0,0,0,0,350,2.0,2,2,11.3,77777,9,999999999,300,0.1750,0,88,0.170,999.0,99.0 +1994,8,21,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,17.7,96,98400,0,0,342,0,0,0,0,0,0,0,350,2.0,0,0,9.7,77777,9,999999999,300,0.1750,0,88,0.170,999.0,99.0 +1994,8,21,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,17.2,100,98400,0,0,336,0,0,0,0,0,0,0,350,3.6,0,0,9.7,77777,9,999999999,300,0.1750,0,88,0.170,999.0,99.0 +1994,8,22,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.6,16.6,100,98400,0,0,333,0,0,0,0,0,0,0,350,0.5,0,0,9.7,77777,9,999999999,300,0.1750,0,88,0.170,0.0,6.0 +1994,8,22,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.6,16.6,100,98400,0,0,339,0,0,0,0,0,0,0,80,1.0,3,1,8.0,77777,9,999999999,290,0.1750,0,88,0.170,999.0,99.0 +1994,8,22,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.6,16.6,100,98400,0,0,339,0,0,0,0,0,0,0,10,1.5,2,1,8.0,77777,9,999999999,290,0.1750,0,88,0.170,999.0,99.0 +1994,8,22,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,16.1,100,98400,0,0,330,0,0,0,0,0,0,0,190,1.0,0,0,8.0,77777,9,999999999,290,0.1750,0,88,0.170,999.0,99.0 +1994,8,22,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,15.5,100,98500,0,0,333,0,0,0,0,0,0,0,10,1.0,2,1,6.4,77777,9,999999999,290,0.1750,0,88,0.170,999.0,99.0 +1994,8,22,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,15.5,100,98600,0,78,349,0,0,0,0,0,0,0,10,3.0,10,6,4.8,90,9,999999999,279,0.1750,0,88,0.170,999.0,99.0 +1994,8,22,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.5,15.5,100,98700,139,1336,343,50,103,40,5300,5100,4800,750,360,2.0,9,4,4.0,120,9,999999999,279,0.1750,0,88,0.170,0.0,6.0 +1994,8,22,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,16.6,96,98700,396,1336,342,209,476,67,21700,42000,9200,1270,10,3.6,3,1,8.0,77777,9,999999999,279,0.1750,0,88,0.170,999.0,99.0 +1994,8,22,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,16.6,84,98800,641,1336,352,403,655,88,42900,64800,11800,1900,350,3.6,2,1,9.7,77777,9,999999999,279,0.1750,0,88,0.170,999.0,99.0 +1994,8,22,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,16.6,75,98800,854,1336,360,602,761,116,63200,76000,14500,2780,30,4.6,3,1,9.7,77777,9,999999999,279,0.1750,0,88,0.170,999.0,99.0 +1994,8,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,16.1,62,98900,1021,1336,373,748,816,124,79900,82600,16600,3900,10,4.6,2,1,11.3,77777,9,999999999,279,0.1750,0,88,0.170,999.0,99.0 +1994,8,22,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,16.1,54,98900,1130,1336,385,771,719,163,81200,72400,19800,6330,20,4.6,3,1,11.3,77777,9,999999999,279,0.1750,0,88,0.170,999.0,99.0 +1994,8,22,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,15.0,54,98800,1174,1336,378,786,685,183,85000,70500,22800,8920,50,4.6,2,1,11.3,77777,9,999999999,270,0.1750,0,88,0.170,0.0,6.0 +1994,8,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,15.5,49,98800,1150,1336,390,812,777,142,86900,78800,18900,6060,60,4.6,3,1,11.3,77777,9,999999999,270,0.1750,0,88,0.170,999.0,99.0 +1994,8,22,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,13.8,47,98800,1060,1336,382,748,740,161,78200,74200,19100,5140,30,3.0,2,1,11.3,77777,9,999999999,270,0.1750,0,88,0.170,999.0,99.0 +1994,8,22,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,13.8,45,98800,909,1336,385,627,740,123,65900,74200,15300,3150,40,2.0,3,1,16.1,77777,9,999999999,270,0.1750,0,88,0.170,999.0,99.0 +1994,8,22,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,14.4,48,98800,708,1336,383,463,693,96,49600,69500,12700,2170,30,2.5,2,1,11.3,77777,9,999999999,270,0.1750,0,88,0.170,999.0,99.0 +1994,8,22,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,15.5,60,98800,470,1336,373,217,383,82,23600,35700,11000,1510,50,2.5,3,1,11.3,77777,9,999999999,270,0.1750,0,88,0.170,999.0,99.0 +1994,8,22,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.7,16.1,66,98800,214,1336,368,92,313,41,9300,21800,5800,730,30,2.5,2,1,11.3,77777,9,999999999,270,0.1750,0,88,0.170,0.0,6.0 +1994,8,22,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,16.6,75,98800,15,479,360,2,13,2,0,0,0,0,30,1.5,3,1,11.3,77777,9,999999999,270,0.1750,0,88,0.170,999.0,99.0 +1994,8,22,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,17.2,87,98900,0,0,346,0,0,0,0,0,0,0,50,2.0,0,0,11.3,77777,9,999999999,270,0.1750,0,88,0.170,999.0,99.0 +1994,8,22,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,16.6,90,98900,0,0,340,0,0,0,0,0,0,0,0,0.0,0,0,11.3,77777,9,999999999,259,0.1750,0,88,0.170,999.0,99.0 +1994,8,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.6,15.5,93,98900,0,0,331,0,0,0,0,0,0,0,20,1.5,0,0,9.7,77777,9,999999999,259,0.1750,0,88,0.170,999.0,99.0 +1994,8,22,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,16.1,100,98900,0,0,330,0,0,0,0,0,0,0,40,2.0,0,0,9.7,77777,9,999999999,259,0.1750,0,88,0.170,999.0,99.0 +1994,8,23,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.5,15.5,100,99000,0,0,326,0,0,0,0,0,0,0,30,1.5,0,0,9.7,77777,9,999999999,259,0.1740,0,88,0.170,0.0,6.0 +1994,8,23,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,16.1,100,99000,0,0,330,0,0,0,0,0,0,0,20,1.0,0,0,9.7,77777,9,999999999,259,0.1740,0,88,0.170,999.0,99.0 +1994,8,23,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,15.0,100,99000,0,0,324,0,0,0,0,0,0,0,30,1.5,0,0,9.7,77777,9,999999999,259,0.1740,0,88,0.170,999.0,99.0 +1994,8,23,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,15.0,100,99000,0,0,324,0,0,0,0,0,0,0,40,1.5,0,0,8.0,77777,9,999999999,259,0.1740,0,88,0.170,999.0,99.0 +1994,8,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,15.5,100,99100,0,0,326,0,0,0,0,0,0,0,10,1.5,0,0,8.0,77777,9,999999999,259,0.1740,0,88,0.170,999.0,99.0 +1994,8,23,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.8,13.8,100,99100,0,78,317,0,0,0,0,0,0,0,40,2.5,0,0,6.4,77777,9,999999999,250,0.1740,0,88,0.170,999.0,99.0 +1994,8,23,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,14.4,100,99200,135,1336,320,40,47,35,4300,2600,4100,730,40,2.0,0,0,11.3,77777,9,999999999,250,0.1740,0,88,0.170,0.0,6.0 +1994,8,23,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,15.5,90,99200,393,1336,334,188,316,95,19700,27700,11500,1770,40,1.5,0,0,16.1,77777,9,999999999,250,0.1740,0,88,0.170,999.0,99.0 +1994,8,23,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,13.3,61,99300,637,1336,350,386,503,146,41200,50100,17200,2990,110,3.0,0,0,16.1,77777,9,999999999,250,0.1740,0,88,0.170,999.0,99.0 +1994,8,23,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,12.7,53,99400,851,1336,357,576,612,186,60000,61200,20900,4520,150,4.6,0,0,16.1,77777,9,999999999,250,0.1740,0,88,0.170,999.0,99.0 +1994,8,23,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,12.7,50,99400,1018,1336,362,729,676,214,76700,68400,24500,6780,150,4.6,0,0,16.1,77777,9,999999999,250,0.1740,0,88,0.170,999.0,99.0 +1994,8,23,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,13.3,47,99400,1127,1336,371,830,711,230,87900,72200,26800,9480,160,3.6,0,0,16.1,77777,9,999999999,250,0.1740,0,88,0.170,999.0,99.0 +1994,8,23,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.5,13.3,47,99400,1171,1336,371,871,723,237,92500,73600,27800,11200,110,4.1,0,0,16.1,77777,9,999999999,250,0.1740,0,88,0.170,0.0,6.0 +1994,8,23,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,13.8,47,99400,1147,1336,375,848,716,233,89900,72800,27300,10180,100,3.6,0,0,12.9,77777,9,999999999,250,0.1740,0,88,0.170,999.0,99.0 +1994,8,23,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,14.4,48,99300,1056,1336,376,764,689,220,80600,69800,25300,7560,60,5.1,0,0,11.3,77777,9,999999999,250,0.1740,0,88,0.170,999.0,99.0 +1994,8,23,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,14.4,47,99300,904,1336,378,625,635,195,65300,63800,22000,5090,120,2.5,0,0,11.3,77777,9,999999999,250,0.1740,0,88,0.170,999.0,99.0 +1994,8,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,14.4,48,99300,703,1336,383,404,389,200,43700,40700,22200,4550,100,3.6,3,1,11.3,77777,9,999999999,250,0.1740,0,88,0.170,999.0,99.0 +1994,8,23,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,15.0,54,99300,465,1336,378,237,360,111,24900,33300,13300,2110,110,4.1,2,1,11.3,77777,9,999999999,250,0.1740,0,88,0.170,999.0,99.0 +1994,8,23,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,15.0,60,99300,208,1336,363,74,120,55,7800,7800,6600,1030,120,3.0,0,0,11.3,77777,9,999999999,250,0.1740,0,88,0.170,0.0,6.0 +1994,8,23,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,15.0,66,99200,13,434,354,1,0,1,0,0,0,0,120,2.5,0,0,11.3,77777,9,999999999,240,0.1740,0,88,0.170,999.0,99.0 +1994,8,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,14.4,68,99300,0,0,348,0,0,0,0,0,0,0,110,2.0,0,0,11.3,77777,9,999999999,240,0.1740,0,88,0.170,999.0,99.0 +1994,8,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,13.8,75,99300,0,0,337,0,0,0,0,0,0,0,80,2.0,0,0,11.3,77777,9,999999999,240,0.1740,0,88,0.170,999.0,99.0 +1994,8,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,13.8,75,99300,0,0,337,0,0,0,0,0,0,0,50,2.0,0,0,11.3,77777,9,999999999,240,0.1740,0,88,0.170,999.0,99.0 +1994,8,23,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.6,13.8,84,99300,0,0,330,0,0,0,0,0,0,0,50,2.0,0,0,11.3,77777,9,999999999,240,0.1740,0,88,0.170,999.0,99.0 +1994,8,24,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.6,15.0,90,99300,0,0,331,0,0,0,0,0,0,0,40,1.0,0,0,11.3,77777,9,999999999,240,0.1730,0,88,0.170,0.0,6.0 +1994,8,24,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,13.8,93,99300,0,0,322,0,0,0,0,0,0,0,60,1.5,0,0,11.3,77777,9,999999999,240,0.1730,0,88,0.170,999.0,99.0 +1994,8,24,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,13.8,93,99300,0,0,329,0,0,0,0,0,0,0,40,1.5,2,1,11.3,77777,9,999999999,240,0.1730,0,88,0.170,999.0,99.0 +1994,8,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,14.4,96,99300,0,0,340,0,0,0,0,0,0,0,40,1.5,9,4,11.3,77777,9,999999999,240,0.1730,0,88,0.170,999.0,99.0 +1994,8,24,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,14.4,90,99400,0,0,345,0,0,0,0,0,0,0,240,1.0,9,4,11.3,77777,9,999999999,240,0.1730,0,88,0.170,999.0,99.0 +1994,8,24,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,13.8,93,99400,0,56,329,0,0,0,0,0,0,0,40,1.5,3,1,11.3,77777,9,999999999,240,0.1730,0,88,0.170,999.0,99.0 +1994,8,24,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.6,15.0,90,99400,131,1337,348,39,16,38,4300,1000,4200,880,20,1.0,9,4,11.3,77777,9,999999999,240,0.1730,0,88,0.170,0.0,6.0 +1994,8,24,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,16.1,84,99400,389,1337,363,146,124,110,15900,11200,12700,2450,160,2.0,10,5,11.3,77777,9,999999999,240,0.1730,0,88,0.170,999.0,99.0 +1994,8,24,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,17.2,76,99500,634,1337,378,364,219,260,39000,22100,28500,6370,190,3.0,10,5,11.3,77777,9,999999999,240,0.1730,0,88,0.170,999.0,99.0 +1994,8,24,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,18.3,66,99500,848,1337,397,470,317,269,50700,33900,29200,7010,190,3.0,10,5,9.7,77777,9,999999999,250,0.1730,0,88,0.170,999.0,99.0 +1994,8,24,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,16.6,58,99500,1015,1337,398,622,379,335,67600,41000,36500,10800,230,4.6,10,5,11.3,2400,9,999999999,250,0.1730,0,88,0.170,999.0,99.0 +1994,8,24,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,17.2,56,99500,1124,1337,404,737,446,362,77800,46400,38600,15260,240,4.6,10,5,11.3,77777,9,999999999,250,0.1730,0,88,0.170,999.0,99.0 +1994,8,24,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,16.1,48,99400,1168,1337,412,720,355,410,78500,38500,44800,18410,230,5.6,10,5,11.3,77777,9,999999999,259,0.1730,0,88,0.170,0.0,6.0 +1994,8,24,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.8,15.0,43,99400,1143,1337,413,769,542,305,82800,56600,34200,13440,250,5.6,10,5,11.3,77777,9,999999999,259,0.1730,0,88,0.170,999.0,99.0 +1994,8,24,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,16.6,46,99400,1051,1337,419,711,382,411,76400,41300,43900,14470,240,5.1,10,5,12.9,77777,9,999999999,259,0.1730,0,88,0.170,999.0,99.0 +1994,8,24,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,16.1,43,99300,900,1337,418,577,526,222,61800,54500,25100,5880,220,6.1,9,4,9.7,77777,9,999999999,270,0.1730,0,88,0.170,999.0,99.0 +1994,8,24,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,17.2,51,99300,697,1337,410,386,330,213,41300,34400,23300,4900,180,6.6,9,4,12.9,77777,9,999999999,270,0.1730,0,88,0.170,999.0,99.0 +1994,8,24,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.7,17.2,53,99200,459,1337,410,219,223,143,23200,21100,15900,2960,180,4.6,10,5,16.1,1800,9,999999999,270,0.1730,0,88,0.170,999.0,99.0 +1994,8,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.6,17.7,58,99200,202,1337,402,68,52,60,7400,3900,6800,1420,190,4.6,9,4,16.1,1500,9,999999999,279,0.1730,0,88,0.170,0.0,6.0 +1994,8,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,18.3,66,99200,11,412,394,2,0,2,0,0,0,0,200,3.0,9,4,16.1,1500,9,999999999,279,0.1730,0,88,0.170,999.0,99.0 +1994,8,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,18.3,74,99200,0,0,373,0,0,0,0,0,0,0,200,2.5,2,1,16.1,77777,9,999999999,279,0.1730,0,88,0.170,999.0,99.0 +1994,8,24,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,18.3,84,99200,0,0,362,0,0,0,0,0,0,0,170,0.5,3,1,16.1,77777,9,999999999,290,0.1730,0,88,0.170,999.0,99.0 +1994,8,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,18.8,90,99300,0,0,371,0,0,0,0,0,0,0,150,1.5,9,4,11.3,2700,9,999999999,290,0.1730,0,88,0.170,999.0,99.0 +1994,8,24,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,18.3,87,99300,0,0,371,0,0,0,0,0,0,0,150,1.5,9,4,11.3,7500,9,999999999,290,0.1730,0,88,0.170,999.0,99.0 +1994,8,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,18.3,93,99300,0,0,390,0,0,0,0,0,0,0,140,1.5,9,9,11.3,77777,9,999999999,300,0.1730,0,88,0.170,0.0,6.0 +1994,8,25,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,18.3,93,99300,0,0,390,0,0,0,0,0,0,0,260,1.0,9,9,11.3,77777,9,999999999,300,0.1730,0,88,0.170,999.0,99.0 +1994,8,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,18.3,100,99300,0,0,395,0,0,0,0,0,0,0,210,1.5,10,10,11.3,77777,9,999999999,300,0.1730,0,88,0.170,999.0,99.0 +1994,8,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,17.2,100,99300,0,0,377,0,0,0,0,0,0,0,240,1.5,9,9,11.3,77777,9,999999999,309,0.1730,0,88,0.170,999.0,99.0 +1994,8,25,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,18.3,100,99300,0,0,384,0,0,0,0,0,0,0,200,0.5,9,9,11.3,77777,9,999999999,309,0.1730,0,88,0.170,999.0,99.0 +1994,8,25,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,17.7,96,99400,0,33,353,0,0,0,0,0,0,0,230,1.5,2,2,6.4,77777,9,999999999,309,0.1730,0,88,0.170,999.0,99.0 +1994,8,25,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,17.7,96,99400,128,1337,356,43,26,41,4700,1700,4600,920,210,1.0,3,3,6.4,77777,9,999999999,320,0.1730,0,88,0.170,0.0,6.0 +1994,8,25,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.6,15.6,73,99400,386,1337,362,182,331,86,19200,28900,10800,1580,230,2.6,2,2,6.4,77777,9,999999999,320,0.1730,0,88,0.170,999.0,99.0 +1994,8,25,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,18.3,71,99400,631,1337,385,375,444,166,39500,44000,18700,3440,240,3.0,3,3,8.0,77777,9,999999999,320,0.1730,0,88,0.170,999.0,99.0 +1994,8,25,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,17.7,58,99400,845,1337,395,532,599,153,56100,60400,17800,3790,280,4.6,2,2,9.7,77777,9,999999999,320,0.1730,0,88,0.170,999.0,99.0 +1994,8,25,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.7,18.8,58,99400,1012,1337,406,715,668,210,75300,67600,24000,6580,270,4.1,3,3,9.7,77777,9,999999999,309,0.1730,0,88,0.170,999.0,99.0 +1994,8,25,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,19.4,53,99400,1121,1337,415,728,547,269,79100,57200,31000,11030,260,2.5,2,2,9.7,77777,9,999999999,309,0.1730,0,88,0.170,999.0,99.0 +1994,8,25,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.5,19.4,52,99300,1164,1337,422,836,670,252,88300,67900,29000,11550,270,5.1,3,3,9.7,77777,9,999999999,309,0.1730,0,88,0.170,0.0,6.0 +1994,8,25,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.6,18.3,45,99300,1139,1337,423,797,739,166,83700,74400,20200,6580,240,2.5,2,2,9.7,77777,9,999999999,309,0.1730,0,88,0.170,999.0,99.0 +1994,8,25,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,17.2,43,99200,1047,1337,423,514,318,264,57000,34500,29900,8660,250,5.1,3,3,8.0,77777,9,999999999,309,0.1730,0,88,0.170,999.0,99.0 +1994,8,25,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.5,16.6,43,99200,895,1337,414,522,536,162,55100,54300,18700,4270,260,4.1,2,2,9.7,77777,9,999999999,309,0.1730,0,88,0.170,999.0,99.0 +1994,8,25,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.6,17.2,42,99200,692,1337,425,372,418,155,39800,42200,17900,3290,280,4.1,3,3,9.7,77777,9,999999999,309,0.1730,0,88,0.170,999.0,99.0 +1994,8,25,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.5,17.7,46,99200,454,1337,464,94,0,94,10800,0,10800,3760,330,2.5,10,10,9.7,77777,9,999999999,309,0.1730,0,88,0.170,999.0,99.0 +1994,8,25,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,17.7,53,99100,196,1337,439,70,16,68,7600,400,7600,2000,260,2.0,9,9,11.3,7500,9,999999999,309,0.1730,0,88,0.170,0.0,6.0 +1994,8,25,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,21.1,79,99100,9,390,424,1,0,1,0,0,0,0,60,1.0,9,9,11.3,7500,9,999999999,309,0.1730,0,88,0.170,999.0,99.0 +1994,8,25,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,18.8,76,99100,0,0,383,0,0,0,0,0,0,0,240,2.0,3,3,12.9,77777,9,999999999,309,0.1730,0,88,0.170,999.0,99.0 +1994,8,25,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,19.4,79,99200,0,0,413,0,0,0,0,0,0,0,70,1.0,9,9,11.3,77777,9,999999999,309,0.1730,0,88,0.170,999.0,99.0 +1994,8,25,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,19.4,84,99200,0,0,406,0,0,0,0,0,0,0,70,1.0,9,9,11.3,77777,9,999999999,300,0.1730,0,88,0.170,999.0,99.0 +1994,8,25,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,20.0,93,99200,0,0,401,0,0,0,0,0,0,0,100,2.0,9,9,11.3,77777,9,999999999,300,0.1730,0,88,0.170,999.0,99.0 +1994,8,26,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,19.4,96,99200,0,0,372,0,0,0,0,0,0,0,100,1.0,9,5,11.3,77777,9,999999999,300,0.1720,0,88,0.170,0.0,6.0 +1994,8,26,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,19.4,96,99100,0,0,358,0,0,0,0,0,0,0,90,1.5,3,1,8.0,77777,9,999999999,300,0.1720,0,88,0.170,999.0,99.0 +1994,8,26,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,19.4,100,99100,0,0,369,0,0,0,0,0,0,0,180,1.0,9,5,6.4,77777,9,999999999,300,0.1720,0,88,0.170,999.0,99.0 +1994,8,26,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,18.3,100,99000,0,0,349,0,0,0,0,0,0,0,230,1.0,3,1,6.4,77777,9,999999999,300,0.1720,0,88,0.170,999.0,99.0 +1994,8,26,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,18.3,100,99100,0,0,349,0,0,0,0,0,0,0,130,0.5,2,1,4.8,77777,9,999999999,300,0.1720,0,88,0.170,999.0,99.0 +1994,8,26,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,18.3,100,99100,0,11,349,0,0,0,0,0,0,0,120,1.5,3,1,3.2,77777,9,999999999,300,0.1720,0,88,0.170,999.0,99.0 +1994,8,26,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.8,18.8,100,99100,124,1338,352,36,48,32,4000,2500,3700,670,190,1.0,2,1,4.0,77777,9,999999999,300,0.1720,0,88,0.170,0.0,6.0 +1994,8,26,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.7,19.4,87,99200,382,1338,367,186,344,88,19600,29900,11100,1630,220,1.0,3,1,4.8,77777,9,999999999,300,0.1720,0,88,0.170,999.0,99.0 +1994,8,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,20.0,76,99200,628,1338,381,363,491,133,39100,48800,16100,2690,240,3.0,2,1,4.8,77777,9,999999999,300,0.1720,0,88,0.170,999.0,99.0 +1994,8,26,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.7,20.0,63,99200,842,1338,414,411,356,186,44300,36700,21200,4530,280,4.1,9,5,6.4,77777,9,999999999,309,0.1720,0,88,0.170,999.0,99.0 +1994,8,26,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.8,19.4,57,99300,1009,1338,419,636,285,420,68800,30100,46100,13830,250,5.6,9,5,8.0,77777,9,999999999,309,0.1720,0,88,0.170,999.0,99.0 +1994,8,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,18.3,51,99200,1118,1338,421,600,345,311,66300,37500,34900,11930,260,5.6,9,5,9.7,1350,9,999999999,309,0.1720,0,88,0.170,999.0,99.0 +1994,8,26,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,17.7,48,99200,1161,1338,424,692,368,373,76000,40000,41200,16220,250,5.1,9,5,9.7,7500,9,999999999,320,0.1720,0,88,0.170,0.0,6.0 +1994,8,26,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.5,17.2,45,99100,1135,1338,426,782,485,371,82500,50500,39500,16140,250,4.1,9,5,9.7,7500,9,999999999,320,0.1720,0,88,0.170,999.0,99.0 +1994,8,26,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.5,16.1,42,99100,1043,1338,433,464,97,388,51100,10000,43300,14800,260,3.6,10,7,8.0,7500,9,999999999,320,0.1720,0,88,0.170,999.0,99.0 +1994,8,26,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,17.7,48,99000,890,1338,439,569,384,313,61000,41100,33600,8670,260,4.1,10,8,8.0,7500,9,999999999,329,0.1720,0,88,0.170,999.0,99.0 +1994,8,26,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.8,17.7,51,99000,687,1338,426,362,155,282,38800,15800,30700,7100,280,3.6,10,7,9.7,7500,9,999999999,329,0.1720,0,88,0.170,999.0,99.0 +1994,8,26,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,18.8,56,99000,448,1338,431,129,63,108,14200,5800,12200,3030,310,2.0,10,8,9.7,7500,9,999999999,329,0.1720,0,88,0.170,999.0,99.0 +1994,8,26,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.6,18.8,62,99000,190,1338,415,51,10,49,5600,100,5600,1630,300,2.0,10,7,9.7,7500,9,999999999,340,0.1720,0,88,0.170,0.0,6.0 +1994,8,26,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,19.4,74,99000,8,346,395,1,0,1,0,0,0,0,30,2.0,9,5,9.7,3300,9,999999999,340,0.1720,0,88,0.170,999.0,99.0 +1994,8,26,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,20.5,84,99000,0,0,391,0,0,0,0,0,0,0,70,1.0,9,5,9.7,7500,9,999999999,340,0.1720,0,88,0.170,999.0,99.0 +1994,8,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,20.5,90,99000,0,0,370,0,0,0,0,0,0,0,70,1.0,3,1,11.3,77777,9,999999999,350,0.1720,0,88,0.170,999.0,99.0 +1994,8,26,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,20.0,93,99000,0,0,379,0,0,0,0,0,0,0,210,0.5,9,5,11.3,77777,9,999999999,350,0.1720,0,88,0.170,999.0,99.0 +1994,8,26,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,19.4,96,99000,0,0,358,0,0,0,0,0,0,0,280,0.5,3,1,11.3,77777,9,999999999,350,0.1720,0,88,0.170,999.0,99.0 +1994,8,27,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,20.0,100,99000,0,0,352,0,0,0,0,0,0,0,120,1.0,0,0,9.7,77777,9,999999999,359,0.1710,0,88,0.170,0.0,6.0 +1994,8,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,18.3,100,99000,0,0,342,0,0,0,0,0,0,0,0,0.0,0,0,9.7,77777,9,999999999,359,0.1710,0,88,0.170,999.0,99.0 +1994,8,27,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,18.8,100,99000,0,0,369,0,0,0,0,0,0,0,100,1.0,9,6,8.0,1350,9,999999999,359,0.1710,0,88,0.170,999.0,99.0 +1994,8,27,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,18.8,100,99000,0,0,369,0,0,0,0,0,0,0,60,1.5,9,6,6.4,77777,9,999999999,359,0.1710,0,88,0.170,999.0,99.0 +1994,8,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,18.3,100,99000,0,0,366,0,0,0,0,0,0,0,190,1.5,9,6,4.8,1200,9,999999999,370,0.1710,0,88,0.170,999.0,99.0 +1994,8,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,18.8,100,99000,0,0,369,0,0,0,0,0,0,0,0,0.0,9,6,3.2,2400,9,999999999,370,0.1710,0,88,0.170,999.0,99.0 +1994,8,27,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,19.4,100,99100,120,1327,373,35,44,31,3900,2400,3600,650,250,1.5,9,6,3.2,1350,9,999999999,370,0.1710,0,88,0.170,0.0,6.0 +1994,8,27,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,20.5,93,99200,379,1338,367,206,512,61,21500,44600,8800,1160,0,0.0,2,1,4.8,77777,9,999999999,370,0.1710,0,88,0.170,999.0,99.0 +1994,8,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,20.0,79,99200,625,1338,378,369,621,79,39600,61400,10900,1700,230,1.5,3,1,6.4,77777,9,999999999,370,0.1710,0,88,0.170,999.0,99.0 +1994,8,27,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,20.5,71,99100,839,1338,390,537,664,121,57600,67600,15200,3060,300,2.5,2,1,6.4,77777,9,999999999,370,0.1710,0,88,0.170,999.0,99.0 +1994,8,27,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,20.6,65,99200,1006,1338,399,700,782,113,75500,79300,15700,3510,280,2.6,3,1,8.0,77777,9,999999999,370,0.1710,0,88,0.170,999.0,99.0 +1994,8,27,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,20.0,61,99100,1114,1338,401,829,859,114,85700,86000,13900,3750,270,4.1,2,1,8.0,77777,9,999999999,370,0.1710,0,88,0.170,999.0,99.0 +1994,8,27,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.5,19.4,52,99000,1157,1338,412,866,856,125,89200,85700,14900,4490,250,3.6,3,1,9.7,77777,9,999999999,370,0.1710,0,88,0.170,0.0,6.0 +1994,8,27,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,18.3,47,99000,1132,1338,414,838,855,115,86600,85600,14000,3960,240,4.6,2,1,9.7,77777,9,999999999,359,0.1710,0,88,0.170,999.0,99.0 +1994,8,27,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.2,19.4,47,98900,1039,1338,442,657,554,227,69000,55900,25400,7450,310,4.6,9,6,9.7,1500,9,999999999,359,0.1710,0,88,0.170,999.0,99.0 +1994,8,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,18.3,47,98900,885,1338,414,596,754,96,64000,76200,13500,2560,260,4.1,2,1,9.7,77777,9,999999999,359,0.1710,0,88,0.170,999.0,99.0 +1994,8,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.5,18.3,48,98900,682,1338,411,402,607,93,43000,60600,12100,2060,270,4.1,3,1,9.7,77777,9,999999999,359,0.1710,0,88,0.170,999.0,99.0 +1994,8,27,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,19.4,53,98900,442,1338,430,211,37,199,22800,3100,21800,5780,290,4.1,9,6,9.7,77777,9,999999999,359,0.1710,0,88,0.170,999.0,99.0 +1994,8,27,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.7,19.4,61,98800,184,1338,417,70,50,63,7600,3700,7100,1420,250,2.0,9,6,11.3,7500,9,999999999,359,0.1710,0,88,0.170,0.0,6.0 +1994,8,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,20.0,74,98800,6,301,403,1,2,1,0,0,0,0,260,0.5,9,6,11.3,7500,9,999999999,359,0.1710,0,88,0.170,999.0,99.0 +1994,8,27,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,20.5,82,98800,0,0,397,0,0,0,0,0,0,0,280,0.5,9,6,9.7,7500,9,999999999,359,0.1710,0,88,0.170,999.0,99.0 +1994,8,27,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,20.5,87,98800,0,0,366,0,0,0,0,0,0,0,250,1.5,0,0,11.3,77777,9,999999999,350,0.1710,0,88,0.170,999.0,99.0 +1994,8,27,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,20.0,85,98800,0,0,365,0,0,0,0,0,0,0,210,1.5,0,0,11.3,77777,9,999999999,350,0.1710,0,88,0.170,999.0,99.0 +1994,8,27,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,19.4,93,98700,0,0,361,0,0,0,0,0,0,0,210,2.5,2,1,11.3,77777,9,999999999,350,0.1710,0,88,0.170,999.0,99.0 +1994,8,28,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,19.4,84,98700,0,0,418,0,0,0,0,0,0,0,210,2.5,10,10,11.3,77777,9,999999999,350,0.1700,0,88,0.170,0.0,6.0 +1994,8,28,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,20.0,87,98600,0,0,419,0,0,0,0,0,0,0,160,1.5,10,10,11.3,7500,9,999999999,350,0.1700,0,88,0.170,999.0,99.0 +1994,8,28,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,20.0,87,98600,0,0,419,0,0,0,0,0,0,0,200,2.5,10,10,11.3,7500,9,999999999,350,0.1700,0,88,0.170,999.0,99.0 +1994,8,28,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,20.0,87,98600,0,0,419,0,0,0,0,0,0,0,210,3.6,10,10,11.3,7500,9,999999999,350,0.1700,0,88,0.170,999.0,99.0 +1994,8,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,20.0,87,98600,0,0,419,0,0,0,0,0,0,0,230,3.6,10,10,11.3,7500,9,999999999,340,0.1700,0,88,0.170,999.0,99.0 +1994,8,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,20.0,91,98700,0,0,415,0,0,0,0,0,0,0,220,3.6,10,10,6.4,77777,9,999999999,340,0.1700,0,88,0.170,999.0,99.0 +1994,8,28,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.6,20.0,91,98700,117,1306,415,23,0,23,2600,0,2600,820,220,4.1,10,10,6.4,77777,9,999999999,340,0.1700,0,88,0.170,0.0,6.0 +1994,8,28,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,19.4,79,98700,375,1339,424,79,0,79,9000,0,9000,3040,240,6.6,10,10,8.0,77777,9,999999999,340,0.1700,0,88,0.170,999.0,99.0 +1994,8,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,19.4,69,98700,621,1339,425,284,262,162,30700,26800,18200,3460,240,8.2,9,9,9.7,77777,9,999999999,340,0.1700,0,88,0.170,999.0,99.0 +1994,8,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.7,19.4,61,98700,835,1339,407,520,522,194,55900,53800,22300,4710,230,8.7,3,3,9.7,77777,9,999999999,340,0.1700,0,88,0.170,999.0,99.0 +1994,8,28,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,18.8,51,98600,1003,1339,450,281,26,261,31000,2600,29000,10160,230,9.7,9,9,11.3,7500,9,999999999,340,0.1700,0,88,0.170,999.0,99.0 +1994,8,28,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.5,19.4,52,98500,1111,1339,467,309,0,309,36500,0,36500,14110,220,9.7,10,10,11.3,7500,9,999999999,340,0.1700,0,88,0.170,999.0,99.0 +1994,8,28,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.1,20.0,52,98500,1154,1339,471,257,0,257,31000,0,31000,12370,220,9.7,10,10,11.3,1500,9,999999999,340,0.1700,0,88,0.170,0.0,6.0 +1994,8,28,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,21.1,55,98400,1128,1339,473,251,0,251,30200,0,30200,12080,250,8.7,10,10,11.3,1200,9,999999999,329,0.1700,0,88,0.170,999.0,99.0 +1994,8,28,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,21.1,55,98300,1034,1339,473,285,0,285,33500,0,33500,12970,250,9.2,10,10,9.7,4200,9,999999999,329,0.1700,0,88,0.170,999.0,99.0 +1994,8,28,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,21.1,61,98300,880,1339,463,189,0,189,22400,0,22400,8810,250,5.6,10,10,11.3,2700,9,999999999,329,0.1700,0,88,0.170,999.0,99.0 +1994,8,28,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,21.1,93,98300,676,1339,420,137,0,137,16100,0,16100,6040,340,6.1,10,10,8.0,1200,9,999999999,329,0.1700,0,88,0.170,999.0,99.0 +1994,8,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,21.1,100,98300,436,1339,414,77,0,77,9000,0,9000,3160,290,2.5,10,10,3.2,1350,9,999999999,329,0.1700,0,88,0.170,999.0,99.0 +1994,8,28,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,21.1,100,98400,177,1339,414,25,0,25,2900,0,2900,950,210,2.5,10,10,6.4,1200,9,999999999,329,0.1700,0,88,0.170,35.0,6.0 +1994,8,28,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,21.6,100,98300,5,279,417,0,0,0,0,0,0,0,150,4.1,10,10,11.3,2100,9,999999999,329,0.1700,0,88,0.170,999.0,99.0 +1994,8,28,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,21.1,100,98300,0,0,414,0,0,0,0,0,0,0,200,1.5,10,10,4.8,450,9,999999999,329,0.1700,0,88,0.170,999.0,99.0 +1994,8,28,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,21.1,100,98400,0,0,414,0,0,0,0,0,0,0,200,1.5,10,10,4.8,630,9,999999999,329,0.1700,0,88,0.170,999.0,99.0 +1994,8,28,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,21.1,100,98400,0,0,414,0,0,0,0,0,0,0,220,3.0,10,10,11.3,570,9,999999999,329,0.1700,0,88,0.170,999.0,99.0 +1994,8,28,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,21.1,100,98400,0,0,414,0,0,0,0,0,0,0,250,3.0,10,10,11.3,240,9,999999999,320,0.1700,0,88,0.170,999.0,99.0 +1994,8,29,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.8,17.2,90,98400,0,0,361,0,0,0,0,0,0,0,350,5.1,9,4,16.1,3300,9,999999999,320,0.1690,0,88,0.170,15.0,6.0 +1994,8,29,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,17.2,97,98400,0,0,345,0,0,0,0,0,0,0,350,4.1,2,1,16.1,77777,9,999999999,320,0.1690,0,88,0.170,999.0,99.0 +1994,8,29,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,16.1,93,98400,0,0,352,0,0,0,0,0,0,0,350,4.1,9,4,16.1,2700,9,999999999,320,0.1690,0,88,0.170,999.0,99.0 +1994,8,29,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,15.5,96,98400,0,0,335,0,0,0,0,0,0,0,340,4.1,2,1,16.1,77777,9,999999999,320,0.1690,0,88,0.170,999.0,99.0 +1994,8,29,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,15.0,100,98500,0,0,324,0,0,0,0,0,0,0,350,3.6,0,0,16.1,77777,9,999999999,320,0.1690,0,88,0.170,999.0,99.0 +1994,8,29,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,14.4,100,98500,0,0,320,0,0,0,0,0,0,0,360,2.5,0,0,11.3,77777,9,999999999,320,0.1690,0,88,0.170,999.0,99.0 +1994,8,29,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,14.4,100,98600,113,1284,326,33,36,30,3700,1900,3500,620,360,3.0,3,1,11.3,77777,9,999999999,320,0.1690,0,88,0.170,0.0,6.0 +1994,8,29,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,14.4,93,98700,372,1340,342,172,160,128,18600,14100,14600,2840,340,3.6,9,4,11.3,77777,9,999999999,309,0.1690,0,88,0.170,999.0,99.0 +1994,8,29,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.6,14.4,87,98700,618,1340,347,366,356,202,38900,36300,22100,4510,20,2.5,9,4,11.3,7200,9,999999999,309,0.1690,0,88,0.170,999.0,99.0 +1994,8,29,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,15.0,76,98800,832,1340,362,448,335,240,48700,35800,26400,6050,350,1.5,9,4,11.3,77777,9,999999999,300,0.1690,0,88,0.170,999.0,99.0 +1994,8,29,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,13.8,63,98800,999,1340,369,630,472,278,67100,49100,30400,8690,20,5.1,9,4,11.3,8100,9,999999999,300,0.1690,0,88,0.170,999.0,99.0 +1994,8,29,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,12.2,53,98800,1108,1340,372,677,335,400,73400,36300,43300,15460,30,4.6,9,4,11.3,77777,9,999999999,290,0.1690,0,88,0.170,999.0,99.0 +1994,8,29,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.7,11.6,49,98800,1150,1340,374,805,532,348,85600,55500,37800,15670,120,1.0,9,4,11.3,77777,9,999999999,290,0.1690,0,88,0.170,0.0,6.0 +1994,8,29,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,10.5,43,98800,1124,1340,367,787,691,206,83800,70600,24500,8420,40,4.1,2,1,11.3,77777,9,999999999,279,0.1690,0,88,0.170,999.0,99.0 +1994,8,29,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,11.1,43,98800,1030,1340,370,705,654,201,74500,66400,23300,6550,30,2.0,3,1,16.1,77777,9,999999999,279,0.1690,0,88,0.170,999.0,99.0 +1994,8,29,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,10.0,41,98700,875,1340,366,581,612,180,60700,61500,20500,4540,340,5.1,2,1,16.0,77777,9,999999999,270,0.1690,0,88,0.170,999.0,99.0 +1994,8,29,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,10.0,39,98800,671,1340,372,402,510,147,43200,51200,17500,3060,10,4.6,3,1,24.1,77777,9,999999999,270,0.1690,0,88,0.170,999.0,99.0 +1994,8,29,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,11.6,48,98800,430,1340,365,212,361,96,22400,32700,11900,1790,20,3.0,2,1,24.1,77777,9,999999999,259,0.1690,0,88,0.170,999.0,99.0 +1994,8,29,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,12.2,53,98800,171,1340,361,57,90,46,6300,5700,5500,970,320,1.5,3,1,24.1,77777,9,999999999,259,0.1690,0,88,0.170,0.0,6.0 +1994,8,29,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,14.4,81,98800,4,234,342,0,0,0,0,0,0,0,230,0.5,2,1,24.1,77777,9,999999999,250,0.1690,0,88,0.170,999.0,99.0 +1994,8,29,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,15.0,84,98800,0,0,336,0,0,0,0,0,0,0,240,2.0,0,0,24.1,77777,9,999999999,250,0.1690,0,88,0.170,999.0,99.0 +1994,8,29,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,14.4,93,98900,0,0,325,0,0,0,0,0,0,0,220,1.5,0,0,16.1,77777,9,999999999,240,0.1690,0,88,0.170,999.0,99.0 +1994,8,29,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,15.0,97,98800,0,0,326,0,0,0,0,0,0,0,200,1.0,0,0,16.1,77777,9,999999999,240,0.1690,0,88,0.170,999.0,99.0 +1994,8,29,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,13.8,96,98900,0,0,320,0,0,0,0,0,0,0,60,1.5,0,0,16.1,77777,9,999999999,240,0.1690,0,88,0.170,999.0,99.0 +1994,8,30,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,13.8,96,98900,0,0,320,0,0,0,0,0,0,0,60,1.5,0,0,16.1,77777,9,999999999,229,0.1690,0,88,0.170,0.0,6.0 +1994,8,30,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.8,13.8,100,98900,0,0,317,0,0,0,0,0,0,0,80,1.0,0,0,16.1,77777,9,999999999,229,0.1690,0,88,0.170,999.0,99.0 +1994,8,30,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.7,12.7,100,98900,0,0,311,0,0,0,0,0,0,0,0,0.0,0,0,16.1,77777,9,999999999,220,0.1690,0,88,0.170,999.0,99.0 +1994,8,30,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.7,12.7,100,98900,0,0,325,0,0,0,0,0,0,0,50,1.5,3,3,16.1,77777,9,999999999,220,0.1690,0,88,0.170,999.0,99.0 +1994,8,30,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.2,12.2,100,98900,0,0,319,0,0,0,0,0,0,0,40,1.5,2,2,16.1,77777,9,999999999,209,0.1690,0,88,0.170,999.0,99.0 +1994,8,30,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.7,12.7,100,99000,0,0,325,0,0,0,0,0,0,0,50,1.0,3,3,16.1,77777,9,999999999,209,0.1690,0,88,0.170,999.0,99.0 +1994,8,30,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.7,12.7,100,99000,110,1262,321,30,38,27,3400,2000,3200,560,50,2.5,2,2,11.3,77777,9,999999999,200,0.1690,0,88,0.170,0.0,6.0 +1994,8,30,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,13.3,87,99000,368,1340,364,95,5,94,10700,300,10700,3420,50,2.0,9,9,11.3,8100,9,999999999,209,0.1690,0,88,0.170,999.0,99.0 +1994,8,30,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,13.8,70,99000,615,1340,384,153,57,127,16900,5500,14300,3970,50,2.5,9,9,11.3,8100,9,999999999,220,0.1690,0,88,0.170,999.0,99.0 +1994,8,30,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,13.8,59,99000,829,1340,399,361,65,320,39600,6600,35400,10120,130,3.6,9,9,11.3,77777,9,999999999,220,0.1690,0,88,0.170,999.0,99.0 +1994,8,30,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,13.3,52,99000,996,1340,407,457,74,401,50200,7600,44500,14330,170,4.6,9,9,11.3,8100,9,999999999,229,0.1690,0,88,0.170,999.0,99.0 +1994,8,30,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,12.7,48,99000,1104,1340,421,298,0,298,35300,0,35300,13710,170,4.1,10,10,11.3,4500,9,999999999,240,0.1690,0,88,0.170,999.0,99.0 +1994,8,30,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,12.7,48,98900,1146,1340,421,312,0,312,37000,0,37000,14320,170,6.1,10,10,11.3,4200,9,999999999,250,0.1690,0,88,0.170,0.0,6.0 +1994,8,30,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,12.7,48,98800,1120,1340,421,303,0,303,35900,0,35900,13930,170,5.6,10,10,11.3,3900,9,999999999,259,0.1690,0,88,0.170,999.0,99.0 +1994,8,30,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,13.3,52,98900,1025,1340,419,272,0,272,32000,0,32000,12480,180,5.1,10,10,11.3,3900,9,999999999,259,0.1690,0,88,0.170,999.0,99.0 +1994,8,30,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,13.8,55,98800,870,1340,417,221,0,221,25800,0,25800,9880,160,3.0,10,10,11.3,3600,9,999999999,270,0.1690,0,88,0.170,999.0,99.0 +1994,8,30,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,16.6,73,98800,665,1340,411,123,0,123,14500,0,14500,5490,0,0.0,10,10,11.3,2700,9,999999999,279,0.1690,0,88,0.170,999.0,99.0 +1994,8,30,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,17.7,78,98600,424,1340,412,83,0,83,9600,0,9600,3320,130,3.6,10,10,11.3,4200,9,999999999,290,0.1690,0,88,0.170,999.0,99.0 +1994,8,30,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,17.2,78,98500,165,1340,409,39,0,39,4400,0,4400,1310,150,2.5,10,10,11.3,4200,9,999999999,290,0.1690,0,88,0.170,999.0,99.0 +1994,8,30,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,16.6,75,98500,3,212,397,0,0,0,0,0,0,0,150,4.1,9,9,11.3,4200,9,999999999,300,0.1690,0,88,0.170,999.0,99.0 +1994,8,30,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,16.6,81,98500,0,0,391,0,0,0,0,0,0,0,160,3.0,9,9,11.3,4200,9,999999999,309,0.1690,0,88,0.170,999.0,99.0 +1994,8,30,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,17.7,84,98500,0,0,367,0,0,0,0,0,0,0,180,3.6,3,3,16.1,77777,9,999999999,320,0.1690,0,88,0.170,999.0,99.0 +1994,8,30,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,16.1,76,98500,0,0,362,0,0,0,0,0,0,0,170,2.5,2,2,16.1,77777,9,999999999,329,0.1690,0,88,0.170,999.0,99.0 +1994,8,30,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,16.1,76,98400,0,0,393,0,0,0,0,0,0,0,210,1.0,9,9,16.1,1800,9,999999999,329,0.1690,0,88,0.170,999.0,99.0 +1994,8,31,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.5,16.1,76,98300,0,0,393,0,0,0,0,0,0,0,160,3.0,9,9,16.1,2400,9,999999999,340,0.1680,0,88,0.170,0.0,6.0 +1994,8,31,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,16.6,75,98300,0,0,408,0,0,0,0,0,0,0,180,4.1,10,10,16.1,2400,9,999999999,350,0.1680,0,88,0.170,999.0,99.0 +1994,8,31,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,16.6,68,98300,0,0,417,0,0,0,0,0,0,0,200,3.0,10,10,16.1,7500,9,999999999,359,0.1680,0,88,0.170,999.0,99.0 +1994,8,31,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,17.2,76,98300,0,0,412,0,0,0,0,0,0,0,200,1.5,10,10,16.1,2700,9,999999999,359,0.1680,0,88,0.170,999.0,99.0 +1994,8,31,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,18.8,87,98400,0,0,411,0,0,0,0,0,0,0,300,3.6,10,10,16.1,960,9,999999999,370,0.1680,0,88,0.170,999.0,99.0 +1994,8,31,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,18.8,90,98400,0,0,408,0,0,0,0,0,0,0,110,2.0,10,10,9.7,1500,9,999999999,379,0.1680,0,88,0.170,999.0,99.0 +1994,8,31,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,19.4,90,98400,106,1240,412,17,0,17,2000,0,2000,630,130,2.5,10,10,9.7,2700,9,999999999,390,0.1680,0,88,0.170,3.0,6.0 +1994,8,31,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,16.6,73,98500,365,1341,411,60,0,60,7000,0,7000,2420,240,0.5,10,10,9.7,2700,9,999999999,379,0.1680,0,88,0.170,999.0,99.0 +1994,8,31,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,18.8,84,98500,611,1341,414,150,0,150,17200,0,17200,6160,170,2.0,10,10,9.7,3900,9,999999999,370,0.1680,0,88,0.170,999.0,99.0 +1994,8,31,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,19.4,90,98500,826,1341,412,174,0,174,20600,0,20600,8010,200,2.5,10,10,9.7,450,9,999999999,370,0.1680,0,88,0.170,999.0,99.0 +1994,8,31,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,19.4,87,98600,993,1341,415,181,0,181,21900,0,21900,8930,260,3.0,10,10,8.0,360,9,999999999,359,0.1680,0,88,0.170,999.0,99.0 +1994,8,31,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,19.4,87,98600,1101,1341,415,204,0,204,24800,0,24800,10160,260,2.5,10,10,8.0,360,9,999999999,350,0.1680,0,88,0.170,999.0,99.0 +1994,8,31,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.5,20.0,97,98600,1143,1341,409,213,0,213,26000,0,26000,10590,290,2.5,10,10,2.4,240,9,999999999,340,0.1680,0,88,0.170,2.0,6.0 +1994,8,31,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,21.6,100,98600,1115,1341,417,207,0,207,25200,0,25200,10300,330,4.1,10,10,8.0,270,9,999999999,340,0.1680,0,88,0.170,999.0,99.0 +1994,8,31,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,19.4,76,98600,1021,1341,415,540,146,429,58500,15400,46800,14310,330,3.0,9,9,11.3,600,9,999999999,329,0.1680,0,88,0.170,999.0,99.0 +1994,8,31,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,18.8,71,98600,865,1341,418,497,97,434,54400,10100,47900,13040,330,4.1,9,9,16.1,1200,9,999999999,320,0.1680,0,88,0.170,999.0,99.0 +1994,8,31,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,18.3,69,98600,660,1341,417,261,86,218,28600,8600,24400,6420,330,5.1,9,9,16.1,4500,9,999999999,309,0.1680,0,88,0.170,999.0,99.0 +1994,8,31,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,17.7,71,98600,418,1341,410,96,38,85,10700,3400,9600,2410,340,5.1,9,9,16.1,77777,9,999999999,309,0.1680,0,88,0.170,999.0,99.0 +1994,8,31,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.6,15.5,68,98700,158,1341,398,32,22,30,3600,1500,3400,760,340,4.1,9,9,16.1,1140,9,999999999,300,0.1680,0,88,0.170,1.0,6.0 +1994,8,31,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,14.4,68,98900,2,168,391,0,0,0,0,0,0,0,330,2.0,9,9,24.1,1140,9,999999999,290,0.1680,0,88,0.170,999.0,99.0 +1994,8,31,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,14.4,70,98900,0,0,388,0,0,0,0,0,0,0,330,2.5,9,9,24.1,1260,9,999999999,290,0.1680,0,88,0.170,999.0,99.0 +1994,8,31,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.8,14.6,73,99000,0,0,398,0,0,0,0,0,0,0,360,2.5,10,10,24.1,1260,9,999999999,279,0.1680,0,88,0.170,999.0,99.0 +1994,8,31,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.7,14.9,80,99000,0,0,387,0,0,0,0,0,0,0,330,2.5,9,9,16.1,3600,9,999999999,270,0.1680,0,88,0.170,999.0,99.0 +1994,8,31,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.5,15.1,87,99000,0,0,397,0,0,0,0,0,0,0,340,2.5,10,10,16.1,3600,9,999999999,259,0.1680,0,88,0.170,999.0,99.0 +1995,9,1,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.3,15.4,76,98500,0,0,397,0,0,0,0,0,0,0,360,2.5,10,10,16.1,1200,9,999999999,370,0.1620,0,88,0.190,0.0,6.0 +1995,9,1,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.1,15.6,78,98500,0,0,396,0,0,0,0,0,0,0,360,2.5,10,10,16.1,3600,9,999999999,370,0.1620,0,88,0.190,999.0,99.0 +1995,9,1,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,15.9,81,98600,0,0,396,0,0,0,0,0,0,0,340,2.5,10,10,16.1,6000,9,999999999,370,0.1620,0,88,0.190,999.0,99.0 +1995,9,1,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,16.1,84,98500,0,0,395,0,0,0,0,0,0,0,360,2.5,10,10,16.1,6000,9,999999999,370,0.1620,0,88,0.190,999.0,99.0 +1995,9,1,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,16.1,87,98500,0,0,392,0,0,0,0,0,0,0,70,2.0,10,10,16.1,6000,9,999999999,370,0.1620,0,88,0.190,999.0,99.0 +1995,9,1,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,15.5,84,98400,0,0,373,0,0,0,0,0,0,0,290,2.5,9,8,16.1,2700,9,999999999,370,0.1620,0,88,0.190,999.0,99.0 +1995,9,1,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,16.1,90,98600,104,1219,364,44,22,43,4900,1400,4800,940,240,4.1,9,7,16.1,6000,9,999999999,370,0.1620,0,88,0.190,999.0,99.0 +1995,9,1,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,16.1,84,98600,362,1342,376,110,77,89,12100,6800,10200,1960,360,4.1,9,8,16.1,6000,9,999999999,359,0.1620,0,88,0.190,999.0,99.0 +1995,9,1,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,16.1,81,98600,609,1342,373,304,205,211,32900,20600,23600,5100,10,4.6,9,7,16.0,3900,9,999999999,359,0.1620,0,88,0.190,999.0,99.0 +1995,9,1,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,17.2,62,98700,823,1342,410,313,70,269,34300,7100,30000,8800,20,4.4,9,8,16.1,4500,9,999999999,350,0.1620,0,88,0.190,999.0,99.0 +1995,9,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,16.1,66,98700,990,1342,390,515,302,292,56300,32700,32100,8870,20,4.1,9,7,16.1,4500,9,999999999,340,0.1620,0,88,0.190,999.0,99.0 +1995,9,1,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,16.1,62,98700,1098,1342,402,437,42,403,48200,4300,44700,16310,10,4.1,9,8,16.1,4500,9,999999999,329,0.1620,0,88,0.190,999.0,99.0 +1995,9,1,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.8,14.4,56,98700,1140,1342,394,682,466,286,73900,48700,32300,12300,10,4.6,9,7,16.1,4500,9,999999999,329,0.1620,0,88,0.190,0.0,6.0 +1995,9,1,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,11.1,40,98800,1112,1342,405,596,220,414,65300,23400,45900,15900,20,5.1,9,8,16.1,4500,9,999999999,320,0.1620,0,88,0.190,999.0,99.0 +1995,9,1,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,10.5,40,98700,1017,1342,373,718,780,126,76500,78900,16500,3880,350,4.6,2,1,16.1,77777,9,999999999,309,0.1620,0,88,0.190,999.0,99.0 +1995,9,1,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,11.6,40,98700,861,1342,379,580,719,119,60800,71800,14600,2840,50,4.1,3,1,16.1,77777,9,999999999,309,0.1620,0,88,0.190,999.0,99.0 +1995,9,1,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,9.4,35,98700,655,1342,377,404,637,92,43000,63100,12100,1990,320,3.0,2,1,16.1,77777,9,999999999,300,0.1620,0,88,0.190,999.0,99.0 +1995,9,1,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,9.4,39,98700,413,1342,368,233,534,68,24200,47700,9500,1300,350,2.5,3,1,16.1,77777,9,999999999,290,0.1620,0,88,0.190,999.0,99.0 +1995,9,1,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.5,12.2,59,98700,153,1342,346,60,239,33,6300,13300,4800,580,360,1.0,0,0,16.1,77777,9,999999999,279,0.1620,0,88,0.190,0.0,6.0 +1995,9,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,13.3,68,98700,1,145,342,0,2,0,0,0,0,0,240,0.5,0,0,16.1,77777,9,999999999,279,0.1620,0,88,0.190,999.0,99.0 +1995,9,1,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,12.7,75,98700,0,0,331,0,0,0,0,0,0,0,50,0.5,0,0,16.1,77777,9,999999999,270,0.1620,0,88,0.190,999.0,99.0 +1995,9,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.6,12.2,75,98800,0,0,328,0,0,0,0,0,0,0,30,1.5,0,0,16.1,77777,9,999999999,259,0.1620,0,88,0.190,999.0,99.0 +1995,9,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,11.6,80,98800,0,0,320,0,0,0,0,0,0,0,20,1.5,0,0,16.1,77777,9,999999999,250,0.1620,0,88,0.190,999.0,99.0 +1995,9,1,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,11.6,83,98800,0,0,317,0,0,0,0,0,0,0,200,1.0,0,0,16.1,77777,9,999999999,250,0.1620,0,88,0.190,999.0,99.0 +1995,9,2,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,11.6,80,98800,0,0,334,0,0,0,0,0,0,0,210,0.5,3,3,16.1,77777,9,999999999,240,0.1610,0,88,0.190,0.0,6.0 +1995,9,2,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.7,11.1,90,98800,0,0,309,0,0,0,0,0,0,0,250,2.0,0,0,16.1,77777,9,999999999,229,0.1610,0,88,0.190,999.0,99.0 +1995,9,2,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.2,10.5,89,98800,0,0,320,0,0,0,0,0,0,0,310,1.0,3,3,16.1,77777,9,999999999,229,0.1610,0,88,0.190,999.0,99.0 +1995,9,2,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.2,10.5,89,98800,0,0,317,0,0,0,0,0,0,0,240,1.0,2,2,16.1,77777,9,999999999,220,0.1610,0,88,0.190,999.0,99.0 +1995,9,2,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.7,11.1,90,98900,0,0,323,0,0,0,0,0,0,0,250,1.0,3,3,16.1,77777,9,999999999,209,0.1610,0,88,0.190,999.0,99.0 +1995,9,2,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.6,10.0,90,98900,0,0,314,0,0,0,0,0,0,0,320,1.0,2,2,16.1,77777,9,999999999,200,0.1610,0,88,0.190,999.0,99.0 +1995,9,2,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.7,11.1,90,99000,100,1197,323,30,28,27,3200,1400,3100,560,50,1.5,3,3,16.1,77777,9,999999999,200,0.1610,0,88,0.190,0.0,6.0 +1995,9,2,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,11.6,80,99000,358,1342,320,179,382,77,19000,32400,10300,1400,60,1.0,0,0,16.1,77777,9,999999999,200,0.1610,0,88,0.190,999.0,99.0 +1995,9,2,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,12.2,63,99100,606,1342,341,379,580,117,39400,56000,14000,2350,160,1.5,0,0,16.1,77777,9,999999999,200,0.1610,0,88,0.190,999.0,99.0 +1995,9,2,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,10.5,49,99200,820,1342,349,569,688,149,60000,69200,17600,3580,190,3.0,0,0,16.1,77777,9,999999999,209,0.1610,0,88,0.190,999.0,99.0 +1995,9,2,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,9.4,46,99100,987,1342,363,680,589,247,73100,61300,28000,7470,60,1.0,3,3,16.1,77777,9,999999999,209,0.1610,0,88,0.190,999.0,99.0 +1995,9,2,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,8.8,38,99100,1095,1342,369,825,753,211,87600,76700,24900,7920,40,1.0,2,2,16.1,77777,9,999999999,209,0.1610,0,88,0.190,999.0,99.0 +1995,9,2,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,8.3,36,99000,1136,1342,375,814,635,276,85100,63900,30900,11300,200,2.0,3,3,16.1,77777,9,999999999,209,0.1610,0,88,0.190,0.0,6.0 +1995,9,2,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,7.2,33,99000,1108,1342,370,810,687,243,85300,69500,27800,9310,260,2.5,2,2,16.1,77777,9,999999999,220,0.1610,0,88,0.190,999.0,99.0 +1995,9,2,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,7.7,33,99000,1013,1342,378,748,638,266,80100,66400,29800,8460,10,2.5,3,3,16.1,77777,9,999999999,220,0.1610,0,88,0.190,999.0,99.0 +1995,9,2,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,7.7,32,98900,856,1342,377,595,666,170,62400,66900,19600,4200,310,2.0,2,2,16.1,77777,9,999999999,220,0.1610,0,88,0.190,999.0,99.0 +1995,9,2,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,7.7,33,98900,649,1342,378,401,436,190,41700,43300,20700,4020,60,2.0,3,3,16.1,77777,9,999999999,229,0.1610,0,88,0.190,999.0,99.0 +1995,9,2,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,7.7,34,98900,407,1342,371,199,349,93,21000,31000,11600,1730,360,2.0,2,2,16.1,77777,9,999999999,229,0.1610,0,88,0.190,999.0,99.0 +1995,9,2,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,11.1,53,98800,147,1342,362,46,73,38,5000,4200,4600,790,60,2.0,3,3,16.1,77777,9,999999999,229,0.1610,0,88,0.190,0.0,6.0 +1995,9,2,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,11.1,59,98900,1,123,339,0,0,0,0,0,0,0,30,1.0,0,0,16.1,77777,9,999999999,240,0.1610,0,88,0.190,999.0,99.0 +1995,9,2,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,11.6,70,98900,0,0,330,0,0,0,0,0,0,0,250,0.5,0,0,16.1,77777,9,999999999,240,0.1610,0,88,0.190,999.0,99.0 +1995,9,2,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.6,11.6,72,98900,0,0,327,0,0,0,0,0,0,0,70,1.0,0,0,16.1,77777,9,999999999,240,0.1610,0,88,0.190,999.0,99.0 +1995,9,2,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,11.1,77,99000,0,0,320,0,0,0,0,0,0,0,80,1.5,0,0,16.1,77777,9,999999999,250,0.1610,0,88,0.190,999.0,99.0 +1995,9,2,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,11.6,78,99000,0,0,322,0,0,0,0,0,0,0,120,1.5,0,0,16.1,77777,9,999999999,250,0.1610,0,88,0.190,999.0,99.0 +1995,9,3,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.5,11.6,78,99000,0,0,322,0,0,0,0,0,0,0,90,1.5,0,0,16.1,77777,9,999999999,250,0.1600,0,88,0.190,0.0,6.0 +1995,9,3,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,11.6,78,99000,0,0,322,0,0,0,0,0,0,0,130,1.5,0,0,16.1,77777,9,999999999,259,0.1600,0,88,0.190,999.0,99.0 +1995,9,3,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.3,11.1,87,99000,0,0,312,0,0,0,0,0,0,0,130,1.0,0,0,16.1,77777,9,999999999,259,0.1600,0,88,0.190,999.0,99.0 +1995,9,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.8,11.1,84,99000,0,0,328,0,0,0,0,0,0,0,110,1.5,3,3,16.1,77777,9,999999999,259,0.1600,0,88,0.190,999.0,99.0 +1995,9,3,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.7,11.1,90,99000,0,0,347,0,0,0,0,0,0,0,160,1.0,9,9,16.1,3600,9,999999999,270,0.1600,0,88,0.190,999.0,99.0 +1995,9,3,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.3,10.5,83,99100,0,0,325,0,0,0,0,0,0,0,130,1.0,3,3,16.1,77777,9,999999999,270,0.1600,0,88,0.190,999.0,99.0 +1995,9,3,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,11.1,87,99100,97,1175,322,35,164,21,3800,7800,3100,360,230,1.5,2,2,16.1,77777,9,999999999,270,0.1600,0,88,0.190,0.0,6.0 +1995,9,3,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,12.7,73,99200,355,1343,348,195,374,96,20100,31500,11800,1800,90,1.0,3,3,16.1,77777,9,999999999,270,0.1600,0,88,0.190,999.0,99.0 +1995,9,3,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,11.6,61,99200,602,1343,351,342,492,121,36900,48500,15100,2400,210,2.5,2,2,16.1,77777,9,999999999,270,0.1600,0,88,0.190,999.0,99.0 +1995,9,3,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,11.1,46,99300,817,1343,373,600,777,127,63900,78600,16000,3100,260,4.1,3,3,16.1,77777,9,999999999,270,0.1600,0,88,0.190,999.0,99.0 +1995,9,3,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,10.0,39,99200,984,1343,377,672,681,172,71400,69400,20400,5180,260,3.6,2,2,16.1,77777,9,999999999,270,0.1600,0,88,0.190,999.0,99.0 +1995,9,3,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,10.0,36,99200,1091,1343,386,588,456,217,65000,47800,26100,8050,290,2.5,3,3,16.1,77777,9,999999999,270,0.1600,0,88,0.190,999.0,99.0 +1995,9,3,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.6,10.5,36,99200,1132,1343,386,859,867,127,88400,86800,15100,4120,270,3.6,2,2,16.1,77777,9,999999999,270,0.1600,0,88,0.190,0.0,6.0 +1995,9,3,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,10.0,35,99200,1104,1343,389,821,830,138,87600,84100,18300,5080,270,2.5,3,3,16.1,77777,9,999999999,270,0.1600,0,88,0.190,999.0,99.0 +1995,9,3,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,10.6,36,99100,1008,1343,386,739,787,148,77300,78900,17900,4240,250,4.1,2,2,16.0,77777,9,999999999,270,0.1600,0,88,0.190,999.0,99.0 +1995,9,3,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,10.5,35,99100,851,1343,393,552,604,169,57800,60600,19300,4140,270,2.5,3,3,16.1,77777,9,999999999,270,0.1600,0,88,0.190,999.0,99.0 +1995,9,3,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,10.5,35,99100,644,1343,389,434,749,74,45900,73400,10700,1630,270,4.6,2,2,16.1,77777,9,999999999,270,0.1600,0,88,0.190,999.0,99.0 +1995,9,3,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,11.1,39,99100,400,1343,388,240,532,81,24600,46500,10700,1480,250,3.0,3,3,16.1,77777,9,999999999,270,0.1600,0,88,0.190,999.0,99.0 +1995,9,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,13.3,53,99100,140,1343,372,53,226,30,5600,11900,4400,530,250,2.5,2,2,16.1,77777,9,999999999,270,0.1600,0,88,0.190,0.0,6.0 +1995,9,3,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,14.4,64,99100,0,78,369,0,3,0,0,0,0,0,230,2.0,3,3,16.1,77777,9,999999999,270,0.1600,0,88,0.190,999.0,99.0 +1995,9,3,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,15.0,71,99100,0,0,361,0,0,0,0,0,0,0,120,1.0,2,2,16.1,77777,9,999999999,270,0.1600,0,88,0.190,999.0,99.0 +1995,9,3,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,14.4,73,99100,0,0,358,0,0,0,0,0,0,0,240,1.0,3,3,16.0,77777,9,999999999,270,0.1600,0,88,0.190,999.0,99.0 +1995,9,3,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,15.0,81,99100,0,0,350,0,0,0,0,0,0,0,120,1.5,2,2,16.1,77777,9,999999999,270,0.1600,0,88,0.190,999.0,99.0 +1995,9,3,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,13.8,80,99100,0,0,347,0,0,0,0,0,0,0,50,1.5,3,3,16.1,77777,9,999999999,270,0.1600,0,88,0.190,999.0,99.0 +1995,9,4,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,15.0,87,99100,0,0,348,0,0,0,0,0,0,0,40,2.0,3,3,16.1,77777,9,999999999,270,0.1590,0,88,0.190,0.0,6.0 +1995,9,4,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.6,13.8,84,99200,0,0,340,0,0,0,0,0,0,0,70,1.5,2,2,16.1,77777,9,999999999,270,0.1590,0,88,0.190,999.0,99.0 +1995,9,4,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,13.3,87,99200,0,0,338,0,0,0,0,0,0,0,80,1.0,3,3,16.1,77777,9,999999999,270,0.1590,0,88,0.190,999.0,99.0 +1995,9,4,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,13.3,90,99200,0,0,332,0,0,0,0,0,0,0,100,1.5,2,2,16.1,77777,9,999999999,270,0.1590,0,88,0.190,999.0,99.0 +1995,9,4,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,13.8,90,99200,0,0,357,0,0,0,0,0,0,0,250,1.5,9,8,16.1,3300,9,999999999,259,0.1590,0,88,0.190,999.0,99.0 +1995,9,4,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,13.3,90,99200,0,0,348,0,0,0,0,0,0,0,90,1.5,9,7,16.1,3300,9,999999999,259,0.1590,0,88,0.190,999.0,99.0 +1995,9,4,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,14.4,90,99300,93,1176,342,25,22,23,2700,1300,2600,570,140,0.5,3,3,16.1,77777,9,999999999,259,0.1590,0,88,0.190,0.0,6.0 +1995,9,4,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,14.4,78,99400,351,1344,349,170,121,138,18100,10400,15400,3040,210,0.5,2,2,16.1,77777,9,999999999,259,0.1590,0,88,0.190,999.0,99.0 +1995,9,4,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,14.4,61,99400,599,1344,372,328,362,167,35300,36700,18900,3570,210,0.5,3,3,16.1,77777,9,999999999,259,0.1590,0,88,0.190,999.0,99.0 +1995,9,4,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,14.4,52,99400,813,1344,382,536,566,193,57400,58100,22100,4570,200,1.0,2,2,16.0,77777,9,999999999,259,0.1590,0,88,0.190,999.0,99.0 +1995,9,4,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,13.8,44,99500,980,1344,397,678,538,286,71800,55800,30900,8640,190,2.5,3,3,16.1,77777,9,999999999,259,0.1590,0,88,0.190,999.0,99.0 +1995,9,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.8,13.8,40,99500,1087,1344,402,756,643,235,79500,65000,26700,8540,320,2.5,2,2,16.1,77777,9,999999999,259,0.1590,0,88,0.190,999.0,99.0 +1995,9,4,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.8,12.7,37,99500,1128,1344,404,803,647,259,84200,65300,29300,10390,350,2.5,3,3,16.1,77777,9,999999999,259,0.1590,0,88,0.190,0.0,6.0 +1995,9,4,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.8,12.2,36,99400,1099,1344,399,784,631,267,81800,63400,29800,9850,80,1.5,2,2,16.1,77777,9,999999999,259,0.1590,0,88,0.190,999.0,99.0 +1995,9,4,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,12.2,33,99300,1003,1344,410,595,474,241,64300,49400,27300,7470,30,1.5,3,3,16.1,77777,9,999999999,259,0.1590,0,88,0.190,999.0,99.0 +1995,9,4,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,12.2,33,99400,845,1344,406,570,553,222,60500,56900,24700,5490,10,3.0,2,2,16.1,77777,9,999999999,259,0.1590,0,88,0.190,999.0,99.0 +1995,9,4,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,12.2,33,99300,638,1344,410,339,291,200,36100,29900,21800,4470,340,2.0,3,3,16.1,77777,9,999999999,259,0.1590,0,88,0.190,999.0,99.0 +1995,9,4,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.7,15.0,46,99400,394,1344,397,181,294,94,18900,25800,11300,1750,80,2.5,2,2,16.1,77777,9,999999999,259,0.1590,0,88,0.190,999.0,99.0 +1995,9,4,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,15.0,56,99300,134,1344,384,37,29,34,4000,1900,3900,810,70,2.5,3,3,16.1,77777,9,999999999,259,0.1590,0,88,0.190,0.0,6.0 +1995,9,4,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,15.0,58,99400,0,34,365,0,0,0,0,0,0,0,110,2.5,0,0,16.1,77777,9,999999999,259,0.1590,0,88,0.190,999.0,99.0 +1995,9,4,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,15.0,64,99400,0,0,357,0,0,0,0,0,0,0,50,1.5,0,0,16.1,77777,9,999999999,259,0.1590,0,88,0.190,999.0,99.0 +1995,9,4,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.6,14.4,68,99400,0,0,349,0,0,0,0,0,0,0,50,0.5,0,0,16.0,77777,9,999999999,259,0.1590,0,88,0.190,999.0,99.0 +1995,9,4,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,13.8,67,99400,0,0,345,0,0,0,0,0,0,0,10,1.5,0,0,16.1,77777,9,999999999,259,0.1590,0,88,0.190,999.0,99.0 +1995,9,4,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,14.4,78,99400,0,0,338,0,0,0,0,0,0,0,50,1.5,0,0,16.1,77777,9,999999999,259,0.1590,0,88,0.190,999.0,99.0 +1995,9,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,13.3,73,99400,0,0,337,0,0,0,0,0,0,0,10,1.0,0,0,16.1,77777,9,999999999,259,0.1590,0,88,0.190,0.0,6.0 +1995,9,5,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,13.3,73,99400,0,0,337,0,0,0,0,0,0,0,30,2.0,0,0,16.1,77777,9,999999999,259,0.1590,0,88,0.190,999.0,99.0 +1995,9,5,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.6,12.7,78,99400,0,0,328,0,0,0,0,0,0,0,40,2.0,0,0,24.1,77777,9,999999999,259,0.1590,0,88,0.190,999.0,99.0 +1995,9,5,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,12.7,86,99400,0,0,321,0,0,0,0,0,0,0,60,1.5,0,0,24.1,77777,9,999999999,259,0.1590,0,88,0.190,999.0,99.0 +1995,9,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,13.3,87,99400,0,0,324,0,0,0,0,0,0,0,60,1.5,0,0,24.1,77777,9,999999999,259,0.1590,0,88,0.190,999.0,99.0 +1995,9,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,12.2,81,99500,0,0,323,0,0,0,0,0,0,0,70,2.0,0,0,16.1,77777,9,999999999,259,0.1590,0,88,0.190,999.0,99.0 +1995,9,5,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.5,13.3,87,99500,90,1154,335,28,78,22,3100,3300,2800,380,60,1.5,2,2,16.1,77777,9,999999999,259,0.1590,0,88,0.190,0.0,6.0 +1995,9,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,13.8,73,99600,347,1344,354,177,425,67,18200,35600,8900,1220,60,2.0,3,3,16.1,77777,9,999999999,259,0.1590,0,88,0.190,999.0,99.0 +1995,9,5,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,13.3,55,99700,595,1344,369,369,554,124,38100,53100,14600,2440,140,2.0,2,2,16.1,77777,9,999999999,259,0.1590,0,88,0.190,999.0,99.0 +1995,9,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,13.3,50,99700,810,1344,382,464,431,204,49400,44200,22700,4840,190,3.0,3,3,16.1,77777,9,999999999,259,0.1590,0,88,0.190,999.0,99.0 +1995,9,5,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,13.3,45,99700,976,1344,374,722,820,126,76500,82600,16300,3570,190,3.6,0,0,16.1,77777,9,999999999,259,0.1590,0,88,0.190,999.0,99.0 +1995,9,5,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,13.8,44,99600,1084,1344,380,818,846,135,87200,85700,18000,4730,230,2.5,0,0,16.1,77777,9,999999999,270,0.1590,0,88,0.190,999.0,99.0 +1995,9,5,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,13.8,38,99600,1124,1344,405,811,781,157,85500,78700,19500,5910,20,2.0,2,2,16.1,77777,9,999999999,270,0.1590,0,88,0.190,0.0,6.0 +1995,9,5,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,11.6,32,99600,1095,1344,409,782,668,237,82200,67600,27000,8750,310,2.0,3,3,16.1,77777,9,999999999,270,0.1590,0,88,0.190,999.0,99.0 +1995,9,5,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,11.6,32,99500,998,1344,405,712,721,176,75700,73500,21000,5420,290,4.1,2,2,16.1,77777,9,999999999,270,0.1590,0,88,0.190,999.0,99.0 +1995,9,5,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.5,11.1,30,99500,840,1344,411,549,571,192,59100,58800,22300,4660,290,3.6,3,3,16.1,77777,9,999999999,270,0.1590,0,88,0.190,999.0,99.0 +1995,9,5,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,11.6,32,99500,632,1344,405,402,585,127,41700,56700,15000,2570,320,2.0,2,2,16.1,77777,9,999999999,279,0.1590,0,88,0.190,999.0,99.0 +1995,9,5,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.8,11.6,34,99400,388,1344,403,186,405,69,19200,35300,9000,1290,60,2.5,3,3,16.1,77777,9,999999999,279,0.1590,0,88,0.190,999.0,99.0 +1995,9,5,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.6,14.4,47,99400,127,1344,391,43,141,29,4400,7000,3800,520,80,2.5,2,2,16.1,77777,9,999999999,279,0.1590,0,88,0.190,0.0,6.0 +1995,9,5,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,15.0,54,99400,0,11,387,0,0,0,0,0,0,0,80,1.0,3,3,16.1,77777,9,999999999,279,0.1590,0,88,0.190,999.0,99.0 +1995,9,5,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,15.5,73,99400,0,0,350,0,0,0,0,0,0,0,70,1.5,0,0,16.1,77777,9,999999999,279,0.1590,0,88,0.190,999.0,99.0 +1995,9,5,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,16.1,81,99400,0,0,345,0,0,0,0,0,0,0,210,0.5,0,0,16.1,77777,9,999999999,290,0.1590,0,88,0.190,999.0,99.0 +1995,9,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,16.1,78,99400,0,0,348,0,0,0,0,0,0,0,80,1.5,0,0,16.1,77777,9,999999999,290,0.1590,0,88,0.190,999.0,99.0 +1995,9,5,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,16.6,84,99400,0,0,346,0,0,0,0,0,0,0,50,1.0,0,0,16.1,77777,9,999999999,290,0.1590,0,88,0.190,999.0,99.0 +1995,9,6,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.7,16.1,90,99300,0,0,337,0,0,0,0,0,0,0,120,1.0,0,0,16.1,77777,9,999999999,290,0.1580,0,88,0.190,0.0,6.0 +1995,9,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.6,14.4,87,99300,0,0,330,0,0,0,0,0,0,0,70,2.0,0,0,16.1,77777,9,999999999,290,0.1580,0,88,0.190,999.0,99.0 +1995,9,6,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,15.0,87,99300,0,0,340,0,0,0,0,0,0,0,80,1.5,3,1,16.1,77777,9,999999999,300,0.1580,0,88,0.190,999.0,99.0 +1995,9,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.6,14.4,87,99300,0,0,337,0,0,0,0,0,0,0,60,1.0,2,1,16.1,77777,9,999999999,300,0.1580,0,88,0.190,999.0,99.0 +1995,9,6,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,14.4,90,99300,0,0,334,0,0,0,0,0,0,0,70,2.0,3,1,16.1,77777,9,999999999,300,0.1580,0,88,0.190,999.0,99.0 +1995,9,6,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.6,14.4,87,99300,0,0,350,0,0,0,0,0,0,0,60,0.5,9,5,8.0,7500,9,999999999,300,0.1580,0,88,0.190,999.0,99.0 +1995,9,6,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,14.4,84,99400,87,1132,353,24,9,23,2600,500,2600,570,100,1.0,9,5,8.0,77777,9,999999999,300,0.1580,0,88,0.190,0.0,6.0 +1995,9,6,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,15.0,76,99400,344,1345,364,162,172,118,17400,14800,13600,2590,90,0.5,9,5,8.0,77777,9,999999999,300,0.1580,0,88,0.190,999.0,99.0 +1995,9,6,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,15.0,62,99400,592,1345,381,333,338,184,35400,34100,20300,4010,170,2.5,9,5,8.0,77777,9,999999999,300,0.1580,0,88,0.190,999.0,99.0 +1995,9,6,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,13.8,47,99400,806,1345,397,551,529,234,57800,54100,25300,5610,270,4.1,9,5,11.3,77777,9,999999999,300,0.1580,0,88,0.190,999.0,99.0 +1995,9,6,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.7,12.7,40,99400,973,1345,404,561,415,260,59800,43100,28500,7690,140,2.0,9,5,16.1,77777,9,999999999,300,0.1580,0,88,0.190,999.0,99.0 +1995,9,6,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.8,12.7,37,99300,1080,1345,395,762,710,191,81200,72500,22900,6940,250,3.6,2,1,16.1,77777,9,999999999,300,0.1580,0,88,0.190,999.0,99.0 +1995,9,6,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.8,13.3,39,99300,1120,1345,395,767,695,188,82300,71200,22800,7570,180,2.5,3,1,16.1,77777,9,999999999,300,0.1580,0,88,0.190,0.0,6.0 +1995,9,6,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,13.3,37,99200,1090,1345,399,740,628,231,78000,63600,26300,8440,160,2.5,2,1,16.1,77777,9,999999999,300,0.1580,0,88,0.190,999.0,99.0 +1995,9,6,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,12.7,36,99100,993,1345,398,681,688,173,72500,70100,20600,5280,250,4.6,3,1,16.1,77777,9,999999999,300,0.1580,0,88,0.190,999.0,99.0 +1995,9,6,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.8,12.7,37,99000,834,1345,395,543,641,146,57500,64600,17300,3570,200,3.6,2,1,16.1,77777,9,999999999,300,0.1580,0,88,0.190,999.0,99.0 +1995,9,6,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,12.7,38,98900,625,1345,408,257,93,213,28100,9200,23800,6100,190,4.6,9,5,16.1,77777,9,999999999,300,0.1580,0,88,0.190,999.0,99.0 +1995,9,6,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.7,12.7,40,98900,381,1345,404,188,183,136,20200,16300,15600,3020,190,4.6,9,5,16.1,7500,9,999999999,300,0.1580,0,88,0.190,999.0,99.0 +1995,9,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,13.3,45,98800,120,1311,397,38,20,36,4100,1300,4000,840,180,4.1,9,5,16.1,7500,9,999999999,300,0.1580,0,88,0.190,0.0,6.0 +1995,9,6,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,14.4,59,98800,0,0,380,0,0,0,0,0,0,0,250,3.0,9,5,16.1,7500,9,999999999,300,0.1580,0,88,0.190,999.0,99.0 +1995,9,6,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,15.0,64,98800,0,0,378,0,0,0,0,0,0,0,50,1.0,9,5,16.1,7500,9,999999999,300,0.1580,0,88,0.190,999.0,99.0 +1995,9,6,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,15.0,66,98800,0,0,375,0,0,0,0,0,0,0,70,1.5,9,5,16.1,7500,9,999999999,300,0.1580,0,88,0.190,999.0,99.0 +1995,9,6,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,15.5,75,98800,0,0,390,0,0,0,0,0,0,0,260,1.0,10,9,16.1,7500,9,999999999,300,0.1580,0,88,0.190,999.0,99.0 +1995,9,6,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,14.4,68,98800,0,0,391,0,0,0,0,0,0,0,170,1.5,10,9,16.1,7500,9,999999999,300,0.1580,0,88,0.190,999.0,99.0 +1995,9,7,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.8,14.4,76,98700,0,0,352,0,0,0,0,0,0,0,120,1.5,2,2,16.1,77777,9,999999999,290,0.1570,0,88,0.190,0.0,6.0 +1995,9,7,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,13.8,80,98600,0,0,347,0,0,0,0,0,0,0,200,1.5,3,3,16.1,77777,9,999999999,290,0.1570,0,88,0.190,999.0,99.0 +1995,9,7,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,13.3,73,98600,0,0,378,0,0,0,0,0,0,0,160,2.5,9,9,16.1,7500,9,999999999,290,0.1570,0,88,0.190,999.0,99.0 +1995,9,7,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,13.3,75,98600,0,0,375,0,0,0,0,0,0,0,150,2.5,9,9,16.1,7500,9,999999999,290,0.1570,0,88,0.190,999.0,99.0 +1995,9,7,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,13.3,75,98600,0,0,375,0,0,0,0,0,0,0,150,2.0,9,9,16.1,7500,9,999999999,290,0.1570,0,88,0.190,999.0,99.0 +1995,9,7,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,12.7,75,98600,0,0,382,0,0,0,0,0,0,0,160,3.0,10,10,11.3,4500,9,999999999,290,0.1570,0,88,0.190,999.0,99.0 +1995,9,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,12.2,68,98500,84,1110,387,17,0,17,2000,0,2000,620,170,2.0,10,10,11.3,5400,9,999999999,290,0.1570,0,88,0.190,0.0,6.0 +1995,9,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,12.7,65,98600,340,1346,394,54,0,54,6300,0,6300,2160,330,3.0,10,10,11.3,2100,9,999999999,290,0.1570,0,88,0.190,999.0,99.0 +1995,9,7,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,12.7,59,98600,588,1346,403,141,0,141,16200,0,16200,5760,150,2.0,10,10,11.3,4800,9,999999999,300,0.1570,0,88,0.190,999.0,99.0 +1995,9,7,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,13.3,57,98600,803,1346,410,211,0,211,24500,0,24500,9130,160,2.5,10,10,11.3,4800,9,999999999,300,0.1570,0,88,0.190,999.0,99.0 +1995,9,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,12.2,48,98600,969,1346,417,265,0,265,31000,0,31000,11910,210,3.6,10,10,11.3,4800,9,999999999,300,0.1570,0,88,0.190,999.0,99.0 +1995,9,7,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,11.6,45,98600,1076,1346,420,239,0,239,28600,0,28600,11480,240,3.6,10,10,11.3,3000,9,999999999,300,0.1570,0,88,0.190,999.0,99.0 +1995,9,7,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,11.6,43,98600,1116,1346,423,311,0,311,36700,0,36700,14170,230,4.6,10,10,11.3,4800,9,999999999,309,0.1570,0,88,0.190,0.0,6.0 +1995,9,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,12.2,43,98600,1085,1346,428,302,0,302,35600,0,35600,13760,220,3.6,10,10,11.2,4800,9,999999999,309,0.1570,0,88,0.190,999.0,99.0 +1995,9,7,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,12.2,44,98500,987,1346,427,270,0,270,31600,0,31600,12180,280,3.0,10,10,11.3,4800,9,999999999,309,0.1570,0,88,0.190,999.0,99.0 +1995,9,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,15.0,52,98500,828,1346,431,175,0,175,20700,0,20700,8040,280,3.0,10,10,11.3,1800,9,999999999,320,0.1570,0,88,0.190,999.0,99.0 +1995,9,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,14.4,50,98500,619,1346,418,313,107,264,34300,10700,29400,7060,210,4.6,9,9,11.3,1800,9,999999999,320,0.1570,0,88,0.190,999.0,99.0 +1995,9,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,15.5,58,98500,374,1346,425,61,0,61,7100,0,7100,2470,240,2.5,10,10,11.3,3000,9,999999999,320,0.1570,0,88,0.190,999.0,99.0 +1995,9,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,15.0,60,98500,114,1290,418,19,0,19,2200,0,2200,700,220,2.0,10,10,11.3,3000,9,999999999,320,0.1570,0,88,0.190,0.0,6.0 +1995,9,7,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,15.5,66,98500,0,0,413,0,0,0,0,0,0,0,240,2.0,10,10,11.3,3000,9,999999999,329,0.1570,0,88,0.190,999.0,99.0 +1995,9,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,15.5,81,98500,0,0,383,0,0,0,0,0,0,0,260,1.5,9,9,11.3,3000,9,999999999,329,0.1570,0,88,0.190,999.0,99.0 +1995,9,7,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,15.5,84,98500,0,0,354,0,0,0,0,0,0,0,70,2.0,3,3,12.9,77777,9,999999999,329,0.1570,0,88,0.190,999.0,99.0 +1995,9,7,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,16.1,87,98500,0,0,381,0,0,0,0,0,0,0,350,2.0,9,9,12.9,3000,9,999999999,329,0.1570,0,88,0.190,999.0,99.0 +1995,9,7,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,16.1,90,98500,0,0,337,0,0,0,0,0,0,0,60,2.5,0,0,11.3,77777,9,999999999,340,0.1570,0,88,0.190,999.0,99.0 +1995,9,8,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,16.6,90,98500,0,0,364,0,0,0,0,0,0,0,50,4.1,10,6,9.7,240,9,999999999,340,0.1560,0,88,0.190,0.0,6.0 +1995,9,8,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,16.1,90,98500,0,0,360,0,0,0,0,0,0,0,70,3.6,10,6,9.7,240,9,999999999,340,0.1560,0,88,0.190,999.0,99.0 +1995,9,8,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,15.5,87,98500,0,0,360,0,0,0,0,0,0,0,50,3.6,10,6,9.7,270,9,999999999,340,0.1560,0,88,0.190,999.0,99.0 +1995,9,8,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,15.5,87,98500,0,0,360,0,0,0,0,0,0,0,40,4.1,10,6,12.9,270,9,999999999,350,0.1560,0,88,0.190,999.0,99.0 +1995,9,8,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,15.5,87,98500,0,0,360,0,0,0,0,0,0,0,30,3.0,10,6,12.9,270,9,999999999,350,0.1560,0,88,0.190,999.0,99.0 +1995,9,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,15.5,90,98500,0,0,357,0,0,0,0,0,0,0,60,5.1,10,6,4.8,240,9,999999999,350,0.1560,0,88,0.190,999.0,99.0 +1995,9,8,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,15.5,90,98600,81,1088,357,22,2,21,2400,0,2400,730,40,3.6,10,6,4.0,180,9,999999999,350,0.1560,0,88,0.190,999.0,99.0 +1995,9,8,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,16.1,93,98700,336,1346,358,134,99,109,14400,8400,12300,2390,20,3.0,10,6,3.2,180,9,999999999,350,0.1560,0,88,0.190,999.0,99.0 +1995,9,8,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,15.5,90,98700,584,1346,357,235,90,196,25800,8800,21900,5500,10,2.0,10,6,3.2,180,9,999999999,350,0.1560,0,88,0.190,999.0,99.0 +1995,9,8,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,16.1,93,98700,799,1346,358,426,217,297,46200,22600,32700,7980,20,3.0,10,6,3.2,180,9,999999999,350,0.1560,0,88,0.190,999.0,99.0 +1995,9,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,16.6,93,98700,965,1346,361,658,518,286,69400,53700,30800,8420,40,3.0,10,6,8.0,180,9,999999999,340,0.1560,0,88,0.190,999.0,99.0 +1995,9,8,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,16.6,87,98700,1072,1346,366,542,106,457,59600,11000,50800,17300,80,2.5,10,6,4.8,240,9,999999999,340,0.1560,0,88,0.190,999.0,99.0 +1995,9,8,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.8,17.2,90,98700,1111,1346,367,478,197,315,52700,21400,35000,11750,60,3.0,10,6,4.8,240,9,999999999,340,0.1560,0,88,0.190,1.0,6.0 +1995,9,8,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,17.2,90,98600,1081,1346,367,657,284,428,70400,30700,45700,15730,50,2.5,10,6,4.8,240,9,999999999,340,0.1560,0,88,0.190,999.0,99.0 +1995,9,8,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,17.7,93,98600,982,1346,368,609,216,451,65500,22700,48900,14280,40,2.5,10,6,4.8,270,9,999999999,340,0.1560,0,88,0.190,999.0,99.0 +1995,9,8,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.8,17.7,93,98600,823,1346,368,481,364,258,51800,38800,28000,6530,20,3.0,10,6,6.4,300,9,999999999,329,0.1560,0,88,0.190,1.0,6.0 +1995,9,8,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,17.2,87,98600,613,1346,370,360,163,285,38200,16200,30800,6910,40,3.6,10,6,4.8,300,9,999999999,329,0.1560,0,88,0.190,999.0,99.0 +1995,9,8,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,17.2,87,98600,368,1346,370,141,95,115,15300,8400,13000,2540,40,3.6,10,6,4.8,360,9,999999999,329,0.1560,0,88,0.190,999.0,99.0 +1995,9,8,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.8,17.2,90,98600,107,1245,367,30,2,30,3400,0,3400,980,30,2.5,10,6,4.8,450,9,999999999,329,0.1560,0,88,0.190,1.0,6.0 +1995,9,8,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,16.6,90,98600,0,0,364,0,0,0,0,0,0,0,30,3.0,10,6,4.8,450,9,999999999,320,0.1560,0,88,0.190,999.0,99.0 +1995,9,8,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,16.6,93,98600,0,0,361,0,0,0,0,0,0,0,40,2.5,10,6,4.8,450,9,999999999,320,0.1560,0,88,0.190,999.0,99.0 +1995,9,8,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,17.2,93,98600,0,0,365,0,0,0,0,0,0,0,360,3.0,10,6,8.0,360,9,999999999,320,0.1560,0,88,0.190,999.0,99.0 +1995,9,8,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,16.6,90,98600,0,0,364,0,0,0,0,0,0,0,30,2.0,10,6,9.7,330,9,999999999,320,0.1560,0,88,0.190,999.0,99.0 +1995,9,8,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,16.6,93,98600,0,0,361,0,0,0,0,0,0,0,40,3.0,10,6,9.7,210,9,999999999,320,0.1560,0,88,0.190,999.0,99.0 +1995,9,9,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.7,16.6,93,98600,0,0,390,0,0,0,0,0,0,0,20,3.0,10,10,8.0,150,9,999999999,309,0.1550,0,88,0.190,0.0,6.0 +1995,9,9,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,16.1,93,98600,0,0,386,0,0,0,0,0,0,0,50,2.5,10,10,4.8,150,9,999999999,309,0.1550,0,88,0.190,999.0,99.0 +1995,9,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,16.1,93,98600,0,0,386,0,0,0,0,0,0,0,30,3.0,10,10,3.2,120,9,999999999,309,0.1550,0,88,0.190,999.0,99.0 +1995,9,9,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.6,16.1,97,98600,0,0,383,0,0,0,0,0,0,0,30,3.6,10,10,2.4,90,9,999999999,309,0.1550,0,88,0.190,999.0,99.0 +1995,9,9,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.6,16.1,97,98600,0,0,383,0,0,0,0,0,0,0,30,3.0,10,10,4.0,150,9,999999999,300,0.1550,0,88,0.190,999.0,99.0 +1995,9,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.6,15.0,90,98600,0,0,382,0,0,0,0,0,0,0,40,2.5,10,10,4.8,420,9,999999999,300,0.1550,0,88,0.190,999.0,99.0 +1995,9,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.6,15.0,90,98700,78,1066,382,11,0,11,1300,0,1300,420,50,2.0,10,10,4.0,420,9,999999999,300,0.1550,0,88,0.190,0.0,6.0 +1995,9,9,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,15.0,87,98700,332,1347,385,60,0,60,6900,0,6900,2340,20,3.0,10,10,4.0,420,9,999999999,300,0.1550,0,88,0.190,999.0,99.0 +1995,9,9,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,15.0,84,98800,581,1347,388,120,0,120,13900,0,13900,5060,50,3.6,10,10,4.8,600,9,999999999,290,0.1550,0,88,0.190,999.0,99.0 +1995,9,9,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,15.0,81,98800,795,1347,391,175,0,175,20600,0,20600,7890,50,4.1,10,10,6.4,600,9,999999999,290,0.1550,0,88,0.190,999.0,99.0 +1995,9,9,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,15.5,78,98800,962,1347,397,216,0,216,25600,0,25600,10160,60,3.0,10,10,8.0,510,9,999999999,290,0.1550,0,88,0.190,999.0,99.0 +1995,9,9,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,15.5,75,98800,1068,1347,401,243,0,243,29000,0,29000,11600,60,2.5,10,10,9.7,510,9,999999999,279,0.1550,0,88,0.190,999.0,99.0 +1995,9,9,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,15.5,75,98800,1107,1347,401,252,0,252,30200,0,30200,12060,10,4.1,10,10,9.7,510,9,999999999,279,0.1550,0,88,0.190,0.0,6.0 +1995,9,9,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,15.0,71,98800,1076,1347,403,245,0,245,29300,0,29300,11700,50,3.0,10,10,9.7,510,9,999999999,279,0.1550,0,88,0.190,999.0,99.0 +1995,9,9,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,15.0,71,98800,977,1347,403,220,0,220,26100,0,26100,10380,40,3.6,10,10,11.3,750,9,999999999,270,0.1550,0,88,0.190,999.0,99.0 +1995,9,9,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,14.4,66,98800,817,1347,405,180,0,180,21200,0,21200,8170,30,3.0,10,10,11.3,840,9,999999999,270,0.1550,0,88,0.190,999.0,99.0 +1995,9,9,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,15.0,71,98800,607,1347,403,127,0,127,14800,0,14800,5400,40,2.5,10,10,11.3,900,9,999999999,270,0.1550,0,88,0.190,999.0,99.0 +1995,9,9,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,15.0,71,98800,361,1347,403,67,0,67,7700,0,7700,2630,340,2.0,10,10,11.3,1200,9,999999999,259,0.1550,0,88,0.190,999.0,99.0 +1995,9,9,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,12.2,61,98800,101,1201,396,14,0,14,1700,0,1700,530,40,6.1,10,10,11.3,1200,9,999999999,259,0.1550,0,88,0.190,0.0,6.0 +1995,9,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,11.1,61,98900,0,0,389,0,0,0,0,0,0,0,20,3.6,10,10,16.1,1500,9,999999999,259,0.1550,0,88,0.190,999.0,99.0 +1995,9,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,10.5,60,99000,0,0,385,0,0,0,0,0,0,0,20,4.1,10,10,16.1,1500,9,999999999,250,0.1550,0,88,0.190,999.0,99.0 +1995,9,9,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,11.1,65,99000,0,0,383,0,0,0,0,0,0,0,20,2.5,10,10,16.1,1500,9,999999999,250,0.1550,0,88,0.190,999.0,99.0 +1995,9,9,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,10.5,63,99100,0,0,382,0,0,0,0,0,0,0,30,2.5,10,10,16.1,1800,9,999999999,250,0.1550,0,88,0.190,999.0,99.0 +1995,9,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.6,11.6,72,99100,0,0,378,0,0,0,0,0,0,0,30,2.0,10,10,16.1,1800,9,999999999,240,0.1550,0,88,0.190,999.0,99.0 +1995,9,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.6,11.1,70,99100,0,0,349,0,0,0,0,0,0,0,40,2.0,9,6,16.1,1800,9,999999999,240,0.1540,0,88,0.190,0.0,6.0 +1995,9,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,11.1,75,99100,0,0,344,0,0,0,0,0,0,0,20,2.0,9,6,16.1,1800,9,999999999,240,0.1540,0,88,0.190,999.0,99.0 +1995,9,10,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.7,10.5,86,99100,0,0,315,0,0,0,0,0,0,0,50,2.0,3,1,16.1,77777,9,999999999,229,0.1540,0,88,0.190,999.0,99.0 +1995,9,10,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.6,9.4,86,99100,0,0,309,0,0,0,0,0,0,0,60,2.0,2,1,16.1,77777,9,999999999,229,0.1540,0,88,0.190,999.0,99.0 +1995,9,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.3,12.7,96,99200,0,0,320,0,0,0,0,0,0,0,60,2.0,3,1,16.1,77777,9,999999999,229,0.1540,0,88,0.190,999.0,99.0 +1995,9,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.8,12.7,93,99300,0,0,322,0,0,0,0,0,0,0,50,2.0,2,1,16.1,77777,9,999999999,220,0.1540,0,88,0.190,999.0,99.0 +1995,9,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,11.6,89,99400,75,1045,319,22,64,18,2500,2500,2300,300,60,1.5,3,1,16.1,77777,9,999999999,220,0.1540,0,88,0.190,0.0,6.0 +1995,9,10,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.8,11.1,84,99400,329,1348,320,163,419,61,16800,34500,8400,1110,70,3.0,2,1,16.1,77777,9,999999999,220,0.1540,0,88,0.190,999.0,99.0 +1995,9,10,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,10.0,63,99500,577,1348,334,356,578,108,37000,55400,13200,2140,60,5.6,3,1,16.1,77777,9,999999999,220,0.1540,0,88,0.190,999.0,99.0 +1995,9,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,10.0,54,99600,792,1348,345,512,661,123,54400,66700,15100,2920,90,6.1,2,1,16.1,77777,9,999999999,209,0.1540,0,88,0.190,999.0,99.0 +1995,9,10,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,10.0,48,99600,958,1348,355,652,701,154,69700,71600,18700,4460,80,4.1,3,1,16.1,77777,9,999999999,209,0.1540,0,88,0.190,999.0,99.0 +1995,9,10,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,9.4,49,99600,1064,1348,366,515,258,311,56500,28000,34400,10570,80,6.1,9,6,16.1,1500,9,999999999,209,0.1540,0,88,0.190,999.0,99.0 +1995,9,10,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,8.3,44,99500,1102,1348,368,726,501,316,77400,52200,34500,12200,60,4.6,9,6,16.1,1500,9,999999999,209,0.1540,0,88,0.190,0.0,6.0 +1995,9,10,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,8.3,45,99500,1071,1348,365,542,361,255,58800,37700,28700,9030,40,4.6,9,6,16.1,1500,9,999999999,209,0.1540,0,88,0.190,999.0,99.0 +1995,9,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,8.3,40,99500,971,1348,359,651,651,181,68800,66100,21100,5270,80,4.6,3,1,16.1,77777,9,999999999,209,0.1540,0,88,0.190,999.0,99.0 +1995,9,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,7.7,39,99400,811,1348,355,553,714,123,59000,72300,15400,2980,50,4.1,2,1,16.1,77777,9,999999999,209,0.1540,0,88,0.190,999.0,99.0 +1995,9,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,8.3,42,99400,600,1348,353,364,586,103,38100,56800,12800,2100,70,5.6,3,1,16.1,77777,9,999999999,209,0.1540,0,88,0.190,999.0,99.0 +1995,9,10,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,8.3,45,99400,354,1348,348,173,407,66,17800,34400,8800,1210,50,6.1,2,1,16.1,77777,9,999999999,200,0.1540,0,88,0.190,999.0,99.0 +1995,9,10,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,8.8,62,99400,95,1179,322,31,110,22,3300,5100,2900,380,50,4.1,0,0,16.1,77777,9,999999999,200,0.1540,0,88,0.190,0.0,6.0 +1995,9,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,8.3,67,99400,0,0,314,0,0,0,0,0,0,0,50,4.1,0,0,16.1,77777,9,999999999,200,0.1540,0,88,0.190,999.0,99.0 +1995,9,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.3,7.7,69,99500,0,0,309,0,0,0,0,0,0,0,50,4.6,0,0,16.1,77777,9,999999999,200,0.1540,0,88,0.190,999.0,99.0 +1995,9,10,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.6,6.1,69,99500,0,0,300,0,0,0,0,0,0,0,50,3.6,0,0,24.1,77777,9,999999999,200,0.1540,0,88,0.190,999.0,99.0 +1995,9,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.5,5.5,71,99500,0,0,294,0,0,0,0,0,0,0,60,4.1,0,0,24.1,77777,9,999999999,200,0.1540,0,88,0.190,999.0,99.0 +1995,9,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,5.5,74,99500,0,0,292,0,0,0,0,0,0,0,50,3.6,0,0,24.1,77777,9,999999999,200,0.1540,0,88,0.190,999.0,99.0 +1995,9,11,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,5.5,77,99500,0,0,290,0,0,0,0,0,0,0,40,3.0,0,0,24.1,77777,9,999999999,200,0.1530,0,88,0.190,0.0,6.0 +1995,9,11,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.3,5.5,83,99500,0,0,285,0,0,0,0,0,0,0,30,2.5,0,0,24.1,77777,9,999999999,189,0.1530,0,88,0.190,999.0,99.0 +1995,9,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.3,4.4,76,99500,0,0,284,0,0,0,0,0,0,0,30,2.5,0,0,24.1,77777,9,999999999,189,0.1530,0,88,0.190,999.0,99.0 +1995,9,11,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.7,4.4,80,99400,0,0,282,0,0,0,0,0,0,0,50,3.6,0,0,24.1,77777,9,999999999,189,0.1530,0,88,0.190,999.0,99.0 +1995,9,11,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.6,4.4,86,99400,0,0,278,0,0,0,0,0,0,0,30,2.0,0,0,24.1,77777,9,999999999,189,0.1530,0,88,0.190,999.0,99.0 +1995,9,11,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.1,3.8,85,99500,0,0,287,0,0,0,0,0,0,0,10,1.5,3,3,24.1,77777,9,999999999,189,0.1530,0,88,0.190,999.0,99.0 +1995,9,11,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.6,4.4,86,99500,72,1023,287,20,57,16,2200,2200,2100,270,60,1.5,2,2,24.1,77777,9,999999999,189,0.1530,0,88,0.190,0.0,6.0 +1995,9,11,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.4,5.5,77,99500,325,1348,302,155,271,89,16300,22300,10900,1730,60,2.5,3,3,19.3,77777,9,999999999,189,0.1530,0,88,0.190,999.0,99.0 +1995,9,11,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,6.1,57,99600,573,1348,322,344,566,103,35800,54300,12700,2050,80,2.5,2,2,16.1,77777,9,999999999,200,0.1530,0,88,0.190,999.0,99.0 +1995,9,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,6.1,43,99600,788,1348,345,484,487,199,51400,49800,22200,4610,130,3.0,3,3,16.1,77777,9,999999999,200,0.1530,0,88,0.190,999.0,99.0 +1995,9,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,5.0,35,99600,954,1348,352,669,710,166,71000,72200,19800,4730,130,4.6,2,2,16.1,77777,9,999999999,209,0.1530,0,88,0.190,999.0,99.0 +1995,9,11,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,5.0,33,99500,1060,1348,388,465,249,269,51600,27000,30300,8910,120,3.0,9,9,16.1,77777,9,999999999,209,0.1530,0,88,0.190,999.0,99.0 +1995,9,11,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.8,5.0,30,99500,1098,1348,396,533,83,465,58600,8600,51600,18130,130,4.6,9,9,16.1,77777,9,999999999,220,0.1530,0,88,0.190,0.0,6.0 +1995,9,11,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,4.4,29,99400,1066,1348,393,235,93,161,27100,10000,19100,5660,150,1.5,9,9,16.1,77777,9,999999999,229,0.1530,0,88,0.190,999.0,99.0 +1995,9,11,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,3.8,25,99300,966,1348,401,371,85,310,40900,8700,34600,11250,140,4.1,9,9,16.1,77777,9,999999999,229,0.1530,0,88,0.190,999.0,99.0 +1995,9,11,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,4.4,26,99300,805,1348,405,201,32,181,22100,3200,20200,6210,160,2.5,9,9,16.1,77777,9,999999999,240,0.1530,0,88,0.190,999.0,99.0 +1995,9,11,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,5.5,28,99200,594,1348,374,351,336,202,37000,33900,22000,4500,100,4.6,2,2,24.1,77777,9,999999999,240,0.1530,0,88,0.190,999.0,99.0 +1995,9,11,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,7.2,35,99200,347,1348,397,116,30,108,12700,2600,12000,2710,90,3.0,9,9,24.1,77777,9,999999999,250,0.1530,0,88,0.190,999.0,99.0 +1995,9,11,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,10.0,54,99200,89,1135,380,20,5,20,2300,0,2300,710,340,1.0,9,9,24.1,77777,9,999999999,250,0.1530,0,88,0.190,0.0,6.0 +1995,9,11,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,9.4,54,99200,0,0,376,0,0,0,0,0,0,0,290,1.0,9,9,24.1,7500,9,999999999,259,0.1530,0,88,0.190,999.0,99.0 +1995,9,11,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,8.8,54,99200,0,0,372,0,0,0,0,0,0,0,250,1.0,9,9,24.1,7500,9,999999999,259,0.1530,0,88,0.190,999.0,99.0 +1995,9,11,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,11.1,81,99100,0,0,356,0,0,0,0,0,0,0,220,1.0,9,9,24.1,7500,9,999999999,270,0.1530,0,88,0.190,999.0,99.0 +1995,9,11,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.6,11.1,70,99100,0,0,377,0,0,0,0,0,0,0,360,1.0,10,10,24.1,1500,9,999999999,279,0.1530,0,88,0.190,999.0,99.0 +1995,9,11,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,11.6,70,99100,0,0,381,0,0,0,0,0,0,0,10,1.0,10,10,24.1,1140,9,999999999,279,0.1530,0,88,0.190,999.0,99.0 +1995,9,12,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,11.6,70,99000,0,0,381,0,0,0,0,0,0,0,30,2.0,10,10,16.1,1230,9,999999999,290,0.1520,0,88,0.190,0.0,6.0 +1995,9,12,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,12.2,78,99000,0,0,352,0,0,0,0,0,0,0,20,2.0,9,7,16.1,7500,9,999999999,290,0.1520,0,88,0.190,999.0,99.0 +1995,9,12,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.6,12.7,78,99000,0,0,361,0,0,0,0,0,0,0,0,0.0,9,8,16.1,7500,9,999999999,300,0.1520,0,88,0.190,999.0,99.0 +1995,9,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,13.8,80,99000,0,0,383,0,0,0,0,0,0,0,220,0.5,10,10,11.3,1320,9,999999999,300,0.1520,0,88,0.190,999.0,99.0 +1995,9,12,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,15.0,81,99000,0,0,391,0,0,0,0,0,0,0,310,0.5,10,10,11.3,3900,9,999999999,309,0.1520,0,88,0.190,999.0,99.0 +1995,9,12,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,16.1,81,99000,0,0,398,0,0,0,0,0,0,0,170,2.5,10,10,11.3,1080,9,999999999,309,0.1520,0,88,0.190,999.0,99.0 +1995,9,12,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,17.7,87,99100,69,1001,403,12,0,12,1400,0,1400,450,200,4.1,10,10,8.0,990,9,999999999,320,0.1520,0,88,0.190,999.0,99.0 +1995,9,12,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.6,18.9,90,99100,321,1349,408,54,0,54,6300,0,6300,2120,180,3.1,10,10,4.8,900,9,999999999,320,0.1520,0,88,0.190,999.0,99.0 +1995,9,12,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,18.8,90,99100,569,1349,408,100,0,100,11800,0,11800,4330,210,5.1,10,10,4.8,900,9,999999999,329,0.1520,0,88,0.190,999.0,99.0 +1995,9,12,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.5,19.4,93,99100,784,1349,408,156,0,156,18500,0,18500,7150,210,6.1,10,10,4.8,450,9,999999999,329,0.1520,0,88,0.190,16.0,6.0 +1995,9,12,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,20.0,93,99100,950,1349,412,167,0,167,20200,0,20200,8200,190,6.1,10,10,4.8,390,9,999999999,329,0.1520,0,88,0.190,999.0,99.0 +1995,9,12,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,20.5,90,99000,1055,1349,419,191,0,191,23200,0,23200,9500,200,3.0,10,10,4.8,390,9,999999999,329,0.1520,0,88,0.190,999.0,99.0 +1995,9,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.8,20.5,82,99000,1093,1349,429,238,0,238,28600,0,28600,11480,240,4.6,10,10,4.8,690,9,999999999,340,0.1520,0,88,0.190,18.0,6.0 +1995,9,12,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,20.5,79,99000,1061,1349,432,230,0,230,27600,0,27600,11080,180,6.6,10,10,4.8,600,9,999999999,340,0.1520,0,88,0.190,999.0,99.0 +1995,9,12,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,20.5,84,98900,960,1349,426,203,0,203,24200,0,24200,9660,180,6.6,10,10,4.8,600,9,999999999,340,0.1520,0,88,0.190,999.0,99.0 +1995,9,12,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,20.0,76,98800,799,1349,431,160,0,160,18900,0,18900,7360,190,6.6,10,10,6.4,600,9,999999999,340,0.1520,0,88,0.190,999.0,99.0 +1995,9,12,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,20.0,79,98800,587,1349,428,104,0,104,12200,0,12200,4530,180,7.2,10,10,6.4,2700,9,999999999,350,0.1520,0,88,0.190,999.0,99.0 +1995,9,12,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,20.0,79,98800,340,1349,428,56,0,56,6500,0,6500,2230,180,4.6,10,10,8.0,3000,9,999999999,350,0.1520,0,88,0.190,999.0,99.0 +1995,9,12,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,20.0,82,98700,84,1091,425,15,0,15,1800,0,1800,560,150,4.1,10,10,8.0,2100,9,999999999,350,0.1520,0,88,0.190,999.0,99.0 +1995,9,12,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,20.5,93,98800,0,0,416,0,0,0,0,0,0,0,210,1.5,10,10,4.8,450,9,999999999,350,0.1520,0,88,0.190,999.0,99.0 +1995,9,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,20.5,93,98800,0,0,416,0,0,0,0,0,0,0,180,5.1,10,10,6.4,750,9,999999999,359,0.1520,0,88,0.190,999.0,99.0 +1995,9,12,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,20.0,93,98800,0,0,387,0,0,0,0,0,0,0,230,2.5,9,7,6.4,300,9,999999999,359,0.1520,0,88,0.190,8.0,6.0 +1995,9,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,20.5,96,98800,0,0,413,0,0,0,0,0,0,0,200,4.1,10,10,6.4,300,9,999999999,359,0.1520,0,88,0.190,999.0,99.0 +1995,9,12,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,20.5,96,98800,0,0,413,0,0,0,0,0,0,0,210,4.1,10,10,6.4,300,9,999999999,359,0.1520,0,88,0.190,999.0,99.0 +1995,9,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,20.5,96,98800,0,0,413,0,0,0,0,0,0,0,210,4.6,10,10,4.8,1800,9,999999999,370,0.1520,0,88,0.190,8.0,6.0 +1995,9,13,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,20.0,93,98800,0,0,412,0,0,0,0,0,0,0,220,5.1,10,10,4.8,3300,9,999999999,370,0.1520,0,88,0.190,999.0,99.0 +1995,9,13,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,20.5,96,98800,0,0,413,0,0,0,0,0,0,0,240,4.6,10,10,4.8,300,9,999999999,370,0.1520,0,88,0.190,999.0,99.0 +1995,9,13,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,20.0,93,98700,0,0,412,0,0,0,0,0,0,0,230,3.0,10,10,4.8,1500,9,999999999,370,0.1520,0,88,0.190,999.0,99.0 +1995,9,13,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,20.0,93,98700,0,0,387,0,0,0,0,0,0,0,220,5.6,9,7,4.8,1500,9,999999999,379,0.1520,0,88,0.190,999.0,99.0 +1995,9,13,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,19.4,93,98800,0,0,361,0,0,0,0,0,0,0,230,3.6,3,1,4.8,77777,9,999999999,379,0.1520,0,88,0.190,999.0,99.0 +1995,9,13,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.5,19.4,93,98800,66,979,383,16,5,16,1800,300,1800,400,230,4.6,9,7,6.4,7500,9,999999999,379,0.1520,0,88,0.190,0.0,6.0 +1995,9,13,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,20.0,91,98800,317,1350,395,117,47,106,12800,4000,11800,2570,240,5.1,9,8,8.0,7500,9,999999999,379,0.1520,0,88,0.190,999.0,99.0 +1995,9,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,19.4,82,98800,566,1350,394,206,110,159,22500,11000,17900,3760,250,5.6,9,7,9.7,540,9,999999999,370,0.1520,0,88,0.190,999.0,99.0 +1995,9,13,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,19.4,82,98800,780,1350,401,327,212,204,35600,22500,22600,4820,240,6.1,9,8,11.3,540,9,999999999,370,0.1520,0,88,0.190,999.0,99.0 +1995,9,13,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,19.4,74,98800,946,1350,403,382,88,320,42000,9000,35700,11300,230,7.7,9,7,11.3,1500,9,999999999,370,0.1520,0,88,0.190,999.0,99.0 +1995,9,13,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,18.8,74,98800,1051,1350,426,228,0,228,27300,0,27300,10970,250,5.1,10,10,11.3,1500,9,999999999,359,0.1520,0,88,0.190,999.0,99.0 +1995,9,13,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,19.4,69,98700,1089,1350,409,780,579,313,83000,60300,34200,11640,250,7.7,9,7,11.3,1050,9,999999999,359,0.1520,0,88,0.190,999.0,99.0 +1995,9,13,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,18.8,62,98700,1056,1350,421,630,276,414,67600,29800,44200,14460,230,7.2,9,8,11.3,1050,9,999999999,350,0.1520,0,88,0.190,999.0,99.0 +1995,9,13,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,18.3,60,98600,955,1350,415,547,433,241,58700,44900,26800,6850,240,8.2,9,7,11.2,1050,9,999999999,350,0.1520,0,88,0.190,999.0,99.0 +1995,9,13,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,18.3,60,98500,793,1350,421,245,96,188,27300,10100,21300,5020,230,7.7,9,8,11.3,2400,9,999999999,350,0.1520,0,88,0.190,999.0,99.0 +1995,9,13,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,18.3,62,98600,581,1350,411,208,180,130,22600,18200,14800,2640,250,6.1,9,7,11.3,2400,9,999999999,340,0.1520,0,88,0.190,999.0,99.0 +1995,9,13,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,18.3,62,98600,333,1350,388,152,307,76,16000,25300,9700,1390,230,6.1,3,1,11.3,77777,9,999999999,340,0.1520,0,88,0.190,999.0,99.0 +1995,9,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.8,18.3,71,98500,78,1069,399,19,5,19,2200,0,2200,670,240,4.6,9,7,11.3,7500,9,999999999,329,0.1520,0,88,0.190,0.0,6.0 +1995,9,13,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,16.6,81,98600,0,0,402,0,0,0,0,0,0,0,320,4.6,10,10,11.3,7500,9,999999999,329,0.1520,0,88,0.190,999.0,99.0 +1995,9,13,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,16.6,90,98500,0,0,368,0,0,0,0,0,0,0,220,2.0,9,7,11.3,2400,9,999999999,320,0.1520,0,88,0.190,999.0,99.0 +1995,9,13,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.7,16.1,90,98600,0,0,370,0,0,0,0,0,0,0,200,4.1,9,8,11.3,2400,9,999999999,320,0.1520,0,88,0.190,0.0,6.0 +1995,9,13,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,16.1,90,98600,0,0,364,0,0,0,0,0,0,0,200,4.6,9,7,11.3,7500,9,999999999,320,0.1520,0,88,0.190,999.0,99.0 +1995,9,13,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,15.5,90,98700,0,0,367,0,0,0,0,0,0,0,200,3.0,9,8,11.3,7500,9,999999999,309,0.1520,0,88,0.190,999.0,99.0 +1995,9,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.7,16.1,90,98700,0,0,352,0,0,0,0,0,0,0,200,2.5,3,3,11.3,77777,9,999999999,309,0.1510,0,88,0.190,0.0,6.0 +1995,9,14,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,16.1,90,98700,0,0,378,0,0,0,0,0,0,0,200,3.6,9,9,11.3,2100,9,999999999,300,0.1510,0,88,0.190,999.0,99.0 +1995,9,14,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,16.1,90,98600,0,0,352,0,0,0,0,0,0,0,210,3.6,3,3,11.3,77777,9,999999999,300,0.1510,0,88,0.190,999.0,99.0 +1995,9,14,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,16.1,93,98600,0,0,346,0,0,0,0,0,0,0,200,2.0,2,2,11.3,77777,9,999999999,300,0.1510,0,88,0.190,999.0,99.0 +1995,9,14,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,16.1,90,98700,0,0,352,0,0,0,0,0,0,0,190,3.0,3,3,11.3,77777,9,999999999,290,0.1510,0,88,0.190,999.0,99.0 +1995,9,14,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,16.1,90,98700,0,0,348,0,0,0,0,0,0,0,210,3.6,2,2,11.3,77777,9,999999999,290,0.1510,0,88,0.190,999.0,99.0 +1995,9,14,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,16.1,93,98800,63,957,349,22,130,14,2400,6400,2000,260,200,3.0,3,3,11.3,77777,9,999999999,279,0.1510,0,88,0.190,0.0,6.0 +1995,9,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,17.2,87,98900,313,1351,358,153,347,73,16100,27800,9600,1330,280,2.5,2,2,11.3,77777,9,999999999,279,0.1510,0,88,0.190,999.0,99.0 +1995,9,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,17.2,76,99000,562,1351,372,236,382,77,25100,36900,9700,1590,300,3.6,3,3,12.9,77777,9,999999999,270,0.1510,0,88,0.190,999.0,99.0 +1995,9,14,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,16.6,68,99000,776,1351,373,528,685,134,55700,68600,16100,3090,310,2.0,2,2,12.9,77777,9,999999999,270,0.1510,0,88,0.190,999.0,99.0 +1995,9,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,15.5,56,99100,942,1351,388,657,724,151,70100,73800,18400,4260,320,3.0,3,3,16.1,77777,9,999999999,270,0.1510,0,88,0.190,999.0,99.0 +1995,9,14,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,14.4,47,99100,1047,1351,391,741,800,120,79600,81200,16500,3930,340,4.6,2,2,16.1,77777,9,999999999,259,0.1510,0,88,0.190,999.0,99.0 +1995,9,14,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.6,12.7,42,99100,1084,1351,392,803,749,201,85300,76300,23900,7260,360,4.6,3,3,16.1,77777,9,999999999,259,0.1510,0,88,0.190,0.0,6.0 +1995,9,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,12.2,39,99100,1051,1351,391,734,792,118,79100,80400,16400,3910,340,5.6,2,2,16.1,77777,9,999999999,250,0.1510,0,88,0.190,999.0,99.0 +1995,9,14,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,10.5,35,99100,949,1351,393,662,743,139,69000,74300,16600,3590,310,4.6,3,3,16.1,77777,9,999999999,250,0.1510,0,88,0.190,999.0,99.0 +1995,9,14,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,7.7,30,99100,787,1351,382,515,637,143,54100,63800,16800,3300,330,4.1,2,2,16.1,77777,9,999999999,250,0.1510,0,88,0.190,999.0,99.0 +1995,9,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,8.8,33,99100,574,1351,385,331,540,102,34600,51800,12500,2040,10,3.6,3,3,16.1,77777,9,999999999,240,0.1510,0,88,0.190,999.0,99.0 +1995,9,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,8.3,37,99200,326,1351,369,172,422,70,18200,34500,9800,1270,10,3.6,2,2,16.1,77777,9,999999999,240,0.1510,0,88,0.190,999.0,99.0 +1995,9,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,10.0,49,99200,73,1024,361,24,136,14,2500,6800,2000,260,360,2.5,3,3,16.1,77777,9,999999999,229,0.1510,0,88,0.190,0.0,6.0 +1995,9,14,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,12.2,68,99200,0,0,347,0,0,0,0,0,0,0,200,1.5,2,2,16.1,77777,9,999999999,229,0.1510,0,88,0.190,999.0,99.0 +1995,9,14,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.6,12.7,78,99300,0,0,343,0,0,0,0,0,0,0,240,1.0,3,3,16.1,77777,9,999999999,229,0.1510,0,88,0.190,999.0,99.0 +1995,9,14,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,12.2,81,99300,0,0,334,0,0,0,0,0,0,0,30,1.5,2,2,16.1,77777,9,999999999,220,0.1510,0,88,0.190,999.0,99.0 +1995,9,14,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,12.2,81,99400,0,0,337,0,0,0,0,0,0,0,260,1.0,3,3,16.1,77777,9,999999999,220,0.1510,0,88,0.190,999.0,99.0 +1995,9,14,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,12.7,83,99400,0,0,334,0,0,0,0,0,0,0,180,2.0,2,2,16.1,77777,9,999999999,209,0.1510,0,88,0.190,999.0,99.0 +1995,9,15,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,11.1,81,99400,0,0,327,0,0,0,0,0,0,0,170,1.5,2,2,16.1,77777,9,999999999,209,0.1500,0,88,0.190,0.0,6.0 +1995,9,15,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,10.5,74,99400,0,0,333,0,0,0,0,0,0,0,20,0.5,3,3,16.1,77777,9,999999999,200,0.1500,0,88,0.190,999.0,99.0 +1995,9,15,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.7,10.5,86,99400,0,0,319,0,0,0,0,0,0,0,220,1.0,2,2,16.1,77777,9,999999999,200,0.1500,0,88,0.190,999.0,99.0 +1995,9,15,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.2,10.6,90,99400,0,0,320,0,0,0,0,0,0,0,320,1.0,3,3,16.0,77777,9,999999999,200,0.1500,0,88,0.190,999.0,99.0 +1995,9,15,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.6,10.0,90,99500,0,0,314,0,0,0,0,0,0,0,20,1.5,2,2,16.1,77777,9,999999999,189,0.1500,0,88,0.190,999.0,99.0 +1995,9,15,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.6,10.0,90,99500,0,0,317,0,0,0,0,0,0,0,160,1.5,3,3,16.1,77777,9,999999999,189,0.1500,0,88,0.190,999.0,99.0 +1995,9,15,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.6,10.0,90,99600,60,935,341,13,4,13,1500,200,1400,330,30,1.5,9,9,16.1,7500,9,999999999,179,0.1500,0,88,0.190,0.0,6.0 +1995,9,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,12.2,87,99600,309,1351,357,67,31,60,7400,2600,6800,1620,60,4.1,9,9,16.1,7500,9,999999999,189,0.1500,0,88,0.190,999.0,99.0 +1995,9,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.6,13.8,84,99700,558,1351,370,100,49,79,11300,4900,9300,1860,50,3.0,9,9,16.1,7500,9,999999999,189,0.1500,0,88,0.190,999.0,99.0 +1995,9,15,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,13.8,73,99700,773,1351,392,198,0,198,22900,0,22900,8520,80,3.6,10,10,16.1,7500,9,999999999,189,0.1500,0,88,0.190,999.0,99.0 +1995,9,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,13.8,65,99700,938,1351,401,252,0,252,29400,0,29400,11270,140,2.5,10,10,16.1,7500,9,999999999,200,0.1500,0,88,0.190,999.0,99.0 +1995,9,15,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,12.7,59,99700,1042,1351,403,286,0,286,33600,0,33600,13000,160,2.0,10,10,16.1,7500,9,999999999,200,0.1500,0,88,0.190,999.0,99.0 +1995,9,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,13.3,61,99600,1079,1351,404,298,0,298,35100,0,35100,13580,200,1.5,10,10,16.1,6000,9,999999999,200,0.1500,0,88,0.190,0.0,6.0 +1995,9,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,12.7,57,99600,1045,1351,395,405,126,307,44800,13400,34400,10460,80,2.5,9,9,16.1,6000,9,999999999,209,0.1500,0,88,0.190,999.0,99.0 +1995,9,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,12.7,55,99600,943,1351,398,349,162,235,38900,17300,26800,7100,130,2.5,9,9,16.1,6000,9,999999999,209,0.1500,0,88,0.190,999.0,99.0 +1995,9,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,13.3,55,99500,780,1351,401,197,63,160,21700,6300,18100,5470,120,2.5,9,9,16.1,7500,9,999999999,209,0.1500,0,88,0.190,999.0,99.0 +1995,9,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,13.3,57,99500,568,1351,399,238,85,202,26000,8300,22500,5510,20,4.6,9,9,16.1,7500,9,999999999,220,0.1500,0,88,0.190,999.0,99.0 +1995,9,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,13.3,63,99500,319,1351,390,76,34,67,8200,2900,7600,1800,60,4.1,9,9,16.1,7500,9,999999999,220,0.1500,0,88,0.190,999.0,99.0 +1995,9,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,13.3,73,99400,68,1002,378,15,5,14,1600,300,1600,360,60,3.6,9,9,16.1,7500,9,999999999,220,0.1500,0,88,0.190,0.0,6.0 +1995,9,15,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,13.3,75,99400,0,0,375,0,0,0,0,0,0,0,40,2.5,9,9,16.1,7500,9,999999999,229,0.1500,0,88,0.190,999.0,99.0 +1995,9,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.6,13.3,81,99400,0,0,369,0,0,0,0,0,0,0,120,1.0,9,9,16.1,7500,9,999999999,229,0.1500,0,88,0.190,999.0,99.0 +1995,9,15,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,13.3,83,99400,0,0,367,0,0,0,0,0,0,0,220,0.5,9,9,16.1,7500,9,999999999,229,0.1500,0,88,0.190,999.0,99.0 +1995,9,15,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,12.2,81,99300,0,0,362,0,0,0,0,0,0,0,290,0.5,9,9,16.1,7500,9,999999999,240,0.1500,0,88,0.190,999.0,99.0 +1995,9,15,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,12.2,87,99300,0,0,357,0,0,0,0,0,0,0,250,1.0,9,9,16.1,7500,9,999999999,240,0.1500,0,88,0.190,999.0,99.0 +1995,9,16,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,12.7,90,99200,0,0,357,0,0,0,0,0,0,0,90,2.0,9,9,16.1,7500,9,999999999,240,0.1490,0,88,0.190,0.0,6.0 +1995,9,16,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.8,12.7,93,99200,0,0,354,0,0,0,0,0,0,0,60,3.0,9,9,16.1,7500,9,999999999,250,0.1490,0,88,0.190,999.0,99.0 +1995,9,16,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.8,12.7,93,99100,0,0,354,0,0,0,0,0,0,0,40,2.0,9,9,9.7,7500,9,999999999,250,0.1490,0,88,0.190,999.0,99.0 +1995,9,16,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.8,12.7,93,99000,0,0,354,0,0,0,0,0,0,0,40,1.5,9,9,6.4,7500,9,999999999,250,0.1490,0,88,0.190,999.0,99.0 +1995,9,16,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.3,12.7,96,99000,0,0,352,0,0,0,0,0,0,0,40,1.5,9,9,6.4,77777,9,999999999,259,0.1490,0,88,0.190,999.0,99.0 +1995,9,16,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.3,12.7,96,98900,0,0,352,0,0,0,0,0,0,0,60,1.5,9,9,6.4,77777,9,999999999,259,0.1490,0,88,0.190,999.0,99.0 +1995,9,16,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.8,12.7,93,98900,58,913,365,11,0,11,1300,0,1300,410,50,1.5,10,10,6.4,6000,9,999999999,259,0.1490,0,88,0.190,0.0,6.0 +1995,9,16,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,13.8,90,98900,305,1352,375,62,0,62,7100,0,7100,2320,140,2.0,10,10,6.4,6000,9,999999999,259,0.1490,0,88,0.190,999.0,99.0 +1995,9,16,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,14.4,84,99000,554,1352,384,135,0,135,15500,0,15500,5400,200,1.5,10,10,8.0,6000,9,999999999,270,0.1490,0,88,0.190,999.0,99.0 +1995,9,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,15.0,76,99000,769,1352,397,204,0,204,23600,0,23600,8680,180,3.0,10,10,9.7,6000,9,999999999,270,0.1490,0,88,0.190,999.0,99.0 +1995,9,16,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,15.0,71,98900,934,1352,403,257,0,257,30000,0,30000,11400,180,2.5,10,10,11.3,6000,9,999999999,270,0.1490,0,88,0.190,999.0,99.0 +1995,9,16,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,15.5,68,98900,1038,1352,409,290,0,290,34000,0,34000,13100,190,4.6,10,10,11.3,6000,9,999999999,279,0.1490,0,88,0.190,999.0,99.0 +1995,9,16,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,16.6,81,98900,1074,1352,402,241,0,241,28800,0,28800,11530,190,5.6,10,10,11.3,1050,9,999999999,279,0.1490,0,88,0.190,999.0,99.0 +1995,9,16,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,17.2,90,98800,1040,1352,396,232,0,232,27700,0,27700,11070,180,4.6,10,10,11.3,1350,9,999999999,279,0.1490,0,88,0.190,999.0,99.0 +1995,9,16,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,18.3,90,98700,938,1352,404,206,0,206,24400,0,24400,9670,200,4.6,10,10,11.3,750,9,999999999,290,0.1490,0,88,0.190,999.0,99.0 +1995,9,16,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,17.7,87,98700,774,1352,403,165,0,165,19400,0,19400,7420,190,4.1,10,10,11.3,600,9,999999999,290,0.1490,0,88,0.190,2.0,6.0 +1995,9,16,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,16.6,81,98600,561,1352,391,184,103,141,20300,10300,16000,3330,170,3.6,9,9,16.1,1800,9,999999999,290,0.1490,0,88,0.190,999.0,99.0 +1995,9,16,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,16.1,78,98600,312,1352,390,50,0,50,5800,0,5800,1970,140,3.0,9,9,11.3,3900,9,999999999,290,0.1490,0,88,0.190,999.0,99.0 +1995,9,16,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,15.5,78,98500,63,958,397,10,0,10,1200,0,1200,380,110,2.0,10,10,16.1,750,9,999999999,300,0.1490,0,88,0.190,2.0,6.0 +1995,9,16,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,16.6,87,98500,0,0,396,0,0,0,0,0,0,0,90,2.0,10,10,16.1,600,9,999999999,300,0.1490,0,88,0.190,999.0,99.0 +1995,9,16,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.9,17.2,90,98500,0,0,397,0,0,0,0,0,0,0,60,2.6,10,10,16.0,570,9,999999999,300,0.1490,0,88,0.190,999.0,99.0 +1995,9,16,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,16.6,87,98400,0,0,396,0,0,0,0,0,0,0,140,3.6,10,10,16.1,390,9,999999999,309,0.1490,0,88,0.190,999.0,99.0 +1995,9,16,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,16.1,87,98300,0,0,392,0,0,0,0,0,0,0,140,3.0,10,10,16.1,510,9,999999999,309,0.1490,0,88,0.190,999.0,99.0 +1995,9,16,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,16.6,90,98300,0,0,393,0,0,0,0,0,0,0,120,2.0,10,10,16.1,510,9,999999999,309,0.1490,0,88,0.190,999.0,99.0 +1995,9,17,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,16.6,93,98300,0,0,390,0,0,0,0,0,0,0,120,1.5,10,10,8.0,240,9,999999999,309,0.1480,0,88,0.190,999.0,99.0 +1995,9,17,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,16.6,93,98300,0,0,390,0,0,0,0,0,0,0,50,1.5,10,10,4.0,210,9,999999999,320,0.1480,0,88,0.190,999.0,99.0 +1995,9,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,16.6,93,98200,0,0,390,0,0,0,0,0,0,0,70,1.5,10,10,9.7,450,9,999999999,320,0.1480,0,88,0.190,999.0,99.0 +1995,9,17,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,16.6,93,98200,0,0,390,0,0,0,0,0,0,0,350,0.5,10,10,11.3,150,9,999999999,320,0.1480,0,88,0.190,999.0,99.0 +1995,9,17,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,16.6,93,98300,0,0,379,0,0,0,0,0,0,0,200,1.0,9,9,11.3,690,9,999999999,329,0.1480,0,88,0.190,999.0,99.0 +1995,9,17,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,15.5,96,98300,0,0,369,0,0,0,0,0,0,0,230,2.0,9,9,2.0,690,9,999999999,329,0.1480,0,88,0.190,999.0,99.0 +1995,9,17,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.6,16.6,100,98300,55,891,373,15,0,15,1700,0,1700,540,200,1.5,9,9,4.8,900,9,999999999,329,0.1480,0,88,0.190,999.0,99.0 +1995,9,17,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,17.2,97,98300,301,1353,390,48,0,48,5600,0,5600,1880,240,3.6,10,10,4.8,450,9,999999999,329,0.1480,0,88,0.190,999.0,99.0 +1995,9,17,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,17.2,93,98400,550,1353,394,96,0,96,11300,0,11300,4130,240,3.0,10,10,4.8,900,9,999999999,320,0.1480,0,88,0.190,999.0,99.0 +1995,9,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,17.7,90,98400,764,1353,400,152,0,152,17900,0,17900,6910,250,2.5,10,10,4.8,900,9,999999999,320,0.1480,0,88,0.190,999.0,99.0 +1995,9,17,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,17.7,90,98400,929,1353,400,195,0,195,23200,0,23200,9210,270,3.6,10,10,6.4,900,9,999999999,309,0.1480,0,88,0.190,999.0,99.0 +1995,9,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,18.3,90,98400,1033,1353,404,223,0,223,26700,0,26700,10700,320,3.6,10,10,4.8,450,9,999999999,300,0.1480,0,88,0.190,999.0,99.0 +1995,9,17,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,18.3,93,98400,1069,1353,401,232,0,232,27800,0,27800,11170,320,2.5,10,10,4.0,600,9,999999999,300,0.1480,0,88,0.190,0.0,6.0 +1995,9,17,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,16.1,90,98500,1035,1353,389,187,0,187,22700,0,22700,9270,360,6.1,10,10,11.3,300,9,999999999,290,0.1480,0,88,0.190,999.0,99.0 +1995,9,17,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.6,14.4,87,98500,932,1353,381,164,0,164,19800,0,19800,8000,350,6.6,10,10,11.3,360,9,999999999,290,0.1480,0,88,0.190,999.0,99.0 +1995,9,17,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,13.8,78,98600,768,1353,386,153,0,153,18100,0,18100,6960,30,7.2,10,10,24.1,810,9,999999999,279,0.1480,0,88,0.190,999.0,99.0 +1995,9,17,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,13.8,80,98600,554,1353,383,97,0,97,11400,0,11400,4180,20,4.1,10,10,16.1,660,9,999999999,270,0.1480,0,88,0.190,999.0,99.0 +1995,9,17,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,12.2,72,98700,305,1353,381,49,0,49,5700,0,5700,1920,10,4.6,10,10,24.1,780,9,999999999,270,0.1480,0,88,0.190,999.0,99.0 +1995,9,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.6,11.6,72,98700,58,913,367,13,0,13,1500,0,1500,480,10,3.0,9,9,24.1,990,9,999999999,259,0.1480,0,88,0.190,999.0,99.0 +1995,9,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,11.1,72,98800,0,0,374,0,0,0,0,0,0,0,30,5.1,10,10,24.1,1200,9,999999999,259,0.1480,0,88,0.190,999.0,99.0 +1995,9,17,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,10.5,72,98800,0,0,360,0,0,0,0,0,0,0,30,3.6,9,9,24.1,1500,9,999999999,250,0.1480,0,88,0.190,999.0,99.0 +1995,9,17,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.8,9.4,75,98800,0,0,326,0,0,0,0,0,0,0,10,5.1,3,3,16.1,77777,9,999999999,240,0.1480,0,88,0.190,999.0,99.0 +1995,9,17,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.2,7.7,74,98900,0,0,314,0,0,0,0,0,0,0,10,3.6,2,2,16.1,77777,9,999999999,240,0.1480,0,88,0.190,999.0,99.0 +1995,9,17,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.1,7.7,80,98900,0,0,299,0,0,0,0,0,0,0,350,2.5,0,0,16.1,77777,9,999999999,229,0.1480,0,88,0.190,999.0,99.0 +1995,9,18,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,7.2,83,98900,0,0,294,0,0,0,0,0,0,0,30,1.5,0,0,16.1,77777,9,999999999,229,0.1470,0,88,0.190,0.0,6.0 +1995,9,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.8,7.2,90,98900,0,0,299,0,0,0,0,0,0,0,90,1.0,2,2,16.1,77777,9,999999999,220,0.1470,0,88,0.190,999.0,99.0 +1995,9,18,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,7.2,83,98900,0,0,323,0,0,0,0,0,0,0,220,1.5,9,8,16.1,1290,9,999999999,220,0.1470,0,88,0.190,999.0,99.0 +1995,9,18,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.5,7.2,80,98900,0,0,320,0,0,0,0,0,0,0,20,2.0,9,7,16.1,1290,9,999999999,209,0.1470,0,88,0.190,999.0,99.0 +1995,9,18,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.5,7.7,83,99000,0,0,326,0,0,0,0,0,0,0,20,3.0,9,8,16.1,1380,9,999999999,200,0.1470,0,88,0.190,999.0,99.0 +1995,9,18,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.5,7.7,83,99000,0,0,306,0,0,0,0,0,0,0,20,2.0,2,2,16.1,77777,9,999999999,200,0.1470,0,88,0.190,999.0,99.0 +1995,9,18,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,7.7,86,99100,53,869,307,12,8,12,1400,400,1400,310,10,3.0,3,3,16.1,77777,9,999999999,189,0.1470,0,88,0.190,0.0,6.0 +1995,9,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.2,7.7,74,99200,297,1354,314,104,99,82,11300,8100,9500,1780,50,4.6,2,2,16.1,77777,9,999999999,189,0.1470,0,88,0.190,999.0,99.0 +1995,9,18,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,8.8,66,99200,546,1354,331,258,344,119,27500,33100,14100,2310,70,6.1,3,3,16.1,77777,9,999999999,189,0.1470,0,88,0.190,999.0,99.0 +1995,9,18,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.6,7.2,54,99400,760,1354,333,465,467,202,49000,47500,22300,4570,70,6.1,2,2,16.1,77777,9,999999999,189,0.1470,0,88,0.190,999.0,99.0 +1995,9,18,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,5.0,48,99400,925,1354,332,615,536,248,65300,55500,27300,6760,30,5.1,3,3,16.1,77777,9,999999999,189,0.1470,0,88,0.190,999.0,99.0 +1995,9,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,5.5,43,99400,1029,1354,339,690,608,228,72300,61300,25600,7140,50,5.1,2,2,16.1,77777,9,999999999,200,0.1470,0,88,0.190,999.0,99.0 +1995,9,18,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.8,5.5,42,99400,1064,1354,345,702,515,297,74800,53600,32500,10370,30,6.1,3,3,16.1,77777,9,999999999,200,0.1470,0,88,0.190,0.0,6.0 +1995,9,18,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,6.1,42,99300,1029,1354,345,680,597,226,71300,60200,25400,7090,50,3.6,2,2,24.1,77777,9,999999999,200,0.1470,0,88,0.190,999.0,99.0 +1995,9,18,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,5.5,40,99300,926,1354,348,597,579,201,62300,58100,22500,5310,50,5.6,3,3,24.1,77777,9,999999999,200,0.1470,0,88,0.190,999.0,99.0 +1995,9,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,6.1,39,99300,762,1354,350,491,588,160,51000,58200,18200,3520,100,4.6,2,2,24.1,77777,9,999999999,200,0.1470,0,88,0.190,999.0,99.0 +1995,9,18,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,5.5,39,99300,547,1354,350,280,354,136,29400,34000,15600,2670,40,4.1,3,3,24.1,77777,9,999999999,200,0.1470,0,88,0.190,999.0,99.0 +1995,9,18,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,5.5,43,99200,298,1354,339,117,167,80,12400,13200,9500,1540,70,3.6,2,2,24.1,77777,9,999999999,200,0.1470,0,88,0.190,999.0,99.0 +1995,9,18,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,8.3,64,99200,53,891,330,12,6,12,1400,300,1300,310,40,2.0,3,3,24.1,77777,9,999999999,200,0.1470,0,88,0.190,0.0,6.0 +1995,9,18,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.8,7.7,67,99200,0,0,311,0,0,0,0,0,0,0,280,1.0,0,0,24.1,77777,9,999999999,200,0.1470,0,88,0.190,999.0,99.0 +1995,9,18,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,8.8,66,99300,0,0,317,0,0,0,0,0,0,0,350,0.5,0,0,24.1,77777,9,999999999,200,0.1470,0,88,0.190,999.0,99.0 +1995,9,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,8.8,66,99400,0,0,317,0,0,0,0,0,0,0,150,0.5,0,0,24.1,77777,9,999999999,200,0.1470,0,88,0.190,999.0,99.0 +1995,9,18,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,8.8,69,99300,0,0,314,0,0,0,0,0,0,0,250,0.5,0,0,24.1,77777,9,999999999,200,0.1470,0,88,0.190,999.0,99.0 +1995,9,18,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.2,8.3,77,99300,0,0,304,0,0,0,0,0,0,0,340,1.5,0,0,24.1,77777,9,999999999,200,0.1470,0,88,0.190,999.0,99.0 +1995,9,19,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,10.6,86,99200,0,0,309,0,0,0,0,0,0,0,30,1.5,0,0,24.0,77777,9,999999999,200,0.1460,0,88,0.190,3.0,6.0 +1995,9,19,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.2,8.8,80,99300,0,0,305,0,0,0,0,0,0,0,40,2.5,0,0,24.1,77777,9,999999999,209,0.1460,0,88,0.190,999.0,99.0 +1995,9,19,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.6,8.3,80,99300,0,0,302,0,0,0,0,0,0,0,90,2.5,0,0,24.1,77777,9,999999999,209,0.1460,0,88,0.190,999.0,99.0 +1995,9,19,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.1,7.7,80,99300,0,0,299,0,0,0,0,0,0,0,10,2.0,0,0,24.1,77777,9,999999999,209,0.1460,0,88,0.190,999.0,99.0 +1995,9,19,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.5,7.7,83,99200,0,0,306,0,0,0,0,0,0,0,60,2.5,2,2,24.1,77777,9,999999999,209,0.1460,0,88,0.190,999.0,99.0 +1995,9,19,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.1,8.8,86,99200,0,0,313,0,0,0,0,0,0,0,180,0.5,3,3,24.1,77777,9,999999999,209,0.1460,0,88,0.190,999.0,99.0 +1995,9,19,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,6.1,80,99300,50,869,290,16,121,9,1800,5700,1400,180,150,3.0,0,0,24.1,77777,9,999999999,209,0.1460,0,88,0.190,0.0,6.0 +1995,9,19,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.7,7.7,72,99200,293,1354,306,159,544,41,16300,44300,6700,800,140,4.1,0,0,24.1,77777,9,999999999,209,0.1460,0,88,0.190,999.0,99.0 +1995,9,19,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,8.8,66,99300,542,1354,328,337,664,71,35100,63000,9800,1440,150,4.1,2,2,24.1,77777,9,999999999,220,0.1460,0,88,0.190,999.0,99.0 +1995,9,19,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,8.3,54,99200,756,1354,343,474,654,108,50600,65900,13700,2500,190,6.6,3,3,24.1,77777,9,999999999,220,0.1460,0,88,0.190,999.0,99.0 +1995,9,19,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,8.3,49,99200,921,1354,347,635,776,107,67800,78300,14400,2860,170,6.6,2,2,24.1,77777,9,999999999,220,0.1460,0,88,0.190,999.0,99.0 +1995,9,19,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,8.3,44,99100,1024,1354,359,685,708,150,73900,72700,18800,4860,160,3.6,3,3,24.1,77777,9,999999999,229,0.1460,0,88,0.190,999.0,99.0 +1995,9,19,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.7,6.6,35,99000,1059,1354,361,720,717,159,77600,73700,19800,5510,160,4.1,2,2,24.1,77777,9,999999999,229,0.1460,0,88,0.190,0.0,6.0 +1995,9,19,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,6.6,35,99000,1024,1354,384,581,253,389,63200,26800,42900,12850,100,1.5,9,8,24.1,7500,9,999999999,229,0.1460,0,88,0.190,999.0,99.0 +1995,9,19,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,7.2,35,98900,920,1354,382,519,360,274,56400,38700,30000,7540,170,4.1,9,7,24.1,7500,9,999999999,240,0.1460,0,88,0.190,999.0,99.0 +1995,9,19,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,7.7,34,98800,755,1354,395,446,105,387,48700,10800,42700,10530,170,5.6,9,8,24.1,77777,9,999999999,240,0.1460,0,88,0.190,999.0,99.0 +1995,9,19,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,7.2,35,98800,540,1354,382,229,187,155,25100,18400,17700,3630,170,5.1,9,7,24.1,7500,9,999999999,250,0.1460,0,88,0.190,999.0,99.0 +1995,9,19,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,8.8,42,98700,291,1354,384,89,89,69,9700,7200,8100,1490,160,3.0,9,8,24.1,7500,9,999999999,250,0.1460,0,88,0.190,999.0,99.0 +1995,9,19,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,10.0,53,98700,49,847,394,9,0,9,1100,0,1100,340,160,2.5,10,10,24.1,7500,9,999999999,250,0.1460,0,88,0.190,0.0,6.0 +1995,9,19,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,10.5,58,98700,0,0,388,0,0,0,0,0,0,0,110,2.5,10,10,24.1,7500,9,999999999,259,0.1460,0,88,0.190,999.0,99.0 +1995,9,19,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,10.5,60,98700,0,0,385,0,0,0,0,0,0,0,150,4.1,10,10,24.1,7500,9,999999999,259,0.1460,0,88,0.190,999.0,99.0 +1995,9,19,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,12.2,70,98700,0,0,384,0,0,0,0,0,0,0,150,3.0,10,10,24.1,7500,9,999999999,259,0.1460,0,88,0.190,999.0,99.0 +1995,9,19,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,13.3,75,98700,0,0,385,0,0,0,0,0,0,0,170,2.5,10,10,16.1,5400,9,999999999,270,0.1460,0,88,0.190,999.0,99.0 +1995,9,19,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,14.4,78,98700,0,0,390,0,0,0,0,0,0,0,140,1.0,10,10,16.1,5400,9,999999999,270,0.1460,0,88,0.190,999.0,99.0 +1995,9,20,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.8,15.0,79,98600,0,0,394,0,0,0,0,0,0,0,160,3.6,10,10,11.3,4500,9,999999999,279,0.1450,0,88,0.190,0.0,6.0 +1995,9,20,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,15.5,81,98600,0,0,394,0,0,0,0,0,0,0,190,2.0,10,10,11.3,4500,9,999999999,279,0.1450,0,88,0.190,999.0,99.0 +1995,9,20,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,16.1,84,98500,0,0,395,0,0,0,0,0,0,0,190,2.0,10,10,11.3,2400,9,999999999,279,0.1450,0,88,0.190,999.0,99.0 +1995,9,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,16.6,90,98500,0,0,393,0,0,0,0,0,0,0,230,2.5,10,10,11.3,1500,9,999999999,290,0.1450,0,88,0.190,999.0,99.0 +1995,9,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,17.2,93,98600,0,0,394,0,0,0,0,0,0,0,240,3.0,10,10,3.2,540,9,999999999,290,0.1450,0,88,0.190,999.0,99.0 +1995,9,20,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,17.2,97,98600,0,0,390,0,0,0,0,0,0,0,230,3.0,10,10,2.4,270,9,999999999,290,0.1450,0,88,0.190,999.0,99.0 +1995,9,20,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,16.6,96,98700,48,847,387,5,0,5,600,0,600,200,270,3.0,10,10,3.2,300,9,999999999,300,0.1450,0,88,0.190,5.0,6.0 +1995,9,20,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,17.2,97,98700,289,1355,390,42,0,42,4900,0,4900,1660,240,2.5,10,10,3.2,210,9,999999999,300,0.1450,0,88,0.190,999.0,99.0 +1995,9,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,16.1,93,98700,538,1355,386,92,0,92,10800,0,10800,3950,280,3.6,10,10,4.0,300,9,999999999,300,0.1450,0,88,0.190,999.0,99.0 +1995,9,20,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,16.6,96,98700,752,1355,387,164,0,164,19200,0,19200,7280,270,4.1,10,10,4.4,750,9,999999999,290,0.1450,0,88,0.190,999.0,99.0 +1995,9,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,16.1,90,98700,916,1355,389,205,0,205,24200,0,24200,9520,280,3.6,10,10,4.4,750,9,999999999,290,0.1450,0,88,0.190,999.0,99.0 +1995,9,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,16.1,84,98700,1019,1355,395,231,0,231,27500,0,27500,10940,270,3.0,10,10,6.4,600,9,999999999,290,0.1450,0,88,0.190,999.0,99.0 +1995,9,20,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,15.5,81,98700,1054,1355,394,239,0,239,28500,0,28500,11380,300,2.8,10,10,9.7,600,9,999999999,290,0.1450,0,88,0.190,999.0,99.0 +1995,9,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,15.5,81,98700,1018,1355,394,230,0,230,27400,0,27400,10900,330,2.5,10,10,11.3,480,9,999999999,290,0.1450,0,88,0.190,999.0,99.0 +1995,9,20,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,15.5,81,98700,914,1355,394,204,0,204,24100,0,24100,9470,320,1.5,10,10,11.3,750,9,999999999,290,0.1450,0,88,0.190,999.0,99.0 +1995,9,20,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,15.5,84,98800,749,1355,391,163,0,163,19100,0,19100,7230,350,2.0,10,10,11.3,600,9,999999999,290,0.1450,0,88,0.190,999.0,99.0 +1995,9,20,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,15.5,84,98800,534,1355,391,109,0,109,12600,0,12600,4510,290,2.5,10,10,9.7,750,9,999999999,279,0.1450,0,88,0.190,999.0,99.0 +1995,9,20,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,15.5,84,98800,284,1355,391,49,0,49,5700,0,5700,1880,290,2.0,10,10,9.7,660,9,999999999,279,0.1450,0,88,0.190,999.0,99.0 +1995,9,20,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.7,15.5,87,98900,44,802,388,6,0,6,700,0,700,240,230,2.0,10,10,9.7,600,9,999999999,279,0.1450,0,88,0.190,0.0,6.0 +1995,9,20,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,15.5,87,98900,0,0,388,0,0,0,0,0,0,0,350,1.0,10,10,8.0,810,9,999999999,279,0.1450,0,88,0.190,999.0,99.0 +1995,9,20,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,16.1,93,99000,0,0,386,0,0,0,0,0,0,0,230,1.5,10,10,8.0,870,9,999999999,279,0.1450,0,88,0.190,999.0,99.0 +1995,9,20,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,15.5,87,99000,0,0,388,0,0,0,0,0,0,0,340,2.5,10,10,8.0,1800,9,999999999,279,0.1450,0,88,0.190,999.0,99.0 +1995,9,20,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,15.5,90,99000,0,0,386,0,0,0,0,0,0,0,230,1.0,10,10,8.0,1800,9,999999999,279,0.1450,0,88,0.190,999.0,99.0 +1995,9,20,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.6,15.0,90,99000,0,0,382,0,0,0,0,0,0,0,10,2.0,10,10,8.0,1800,9,999999999,279,0.1450,0,88,0.190,999.0,99.0 +1995,9,21,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,15.0,93,99000,0,0,379,0,0,0,0,0,0,0,40,1.5,10,10,8.0,1800,9,999999999,270,0.1440,0,88,0.190,0.0,6.0 +1995,9,21,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,15.0,97,99000,0,0,376,0,0,0,0,0,0,0,10,2.0,10,10,8.0,1800,9,999999999,270,0.1440,0,88,0.190,999.0,99.0 +1995,9,21,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,15.0,97,99000,0,0,376,0,0,0,0,0,0,0,40,1.5,10,10,4.8,1800,9,999999999,270,0.1440,0,88,0.190,999.0,99.0 +1995,9,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,15.0,97,99000,0,0,376,0,0,0,0,0,0,0,50,2.0,10,10,4.0,1800,9,999999999,270,0.1440,0,88,0.190,999.0,99.0 +1995,9,21,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,15.0,97,99000,0,0,376,0,0,0,0,0,0,0,20,2.0,10,10,4.0,1800,9,999999999,270,0.1440,0,88,0.190,999.0,99.0 +1995,9,21,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,14.4,93,99000,0,0,375,0,0,0,0,0,0,0,360,1.5,10,10,3.2,1500,9,999999999,270,0.1440,0,88,0.190,999.0,99.0 +1995,9,21,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.5,14.4,93,99000,45,825,375,7,0,7,900,0,900,270,60,2.5,10,10,3.2,480,9,999999999,270,0.1440,0,88,0.190,0.0,6.0 +1995,9,21,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,14.4,93,99000,285,1356,375,41,0,41,4800,0,4800,1620,70,2.5,10,10,4.0,1500,9,999999999,270,0.1440,0,88,0.190,999.0,99.0 +1995,9,21,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,14.4,90,99100,534,1356,378,97,0,97,11300,0,11300,4110,80,2.0,10,10,4.8,480,9,999999999,270,0.1440,0,88,0.190,999.0,99.0 +1995,9,21,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.6,14.4,87,99100,748,1356,381,152,0,152,17900,0,17900,6830,90,2.5,10,10,6.4,1500,9,999999999,270,0.1440,0,88,0.190,999.0,99.0 +1995,9,21,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,14.4,81,99000,912,1356,387,194,0,194,23000,0,23000,9090,70,2.0,10,10,8.0,1500,9,999999999,270,0.1440,0,88,0.190,999.0,99.0 +1995,9,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,15.0,81,99000,1015,1356,391,221,0,221,26400,0,26400,10550,110,1.0,10,10,9.7,540,9,999999999,270,0.1440,0,88,0.190,999.0,99.0 +1995,9,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,15.0,84,98900,1049,1356,388,230,0,230,27500,0,27500,11020,110,1.0,10,10,8.0,450,9,999999999,270,0.1440,0,88,0.190,999.0,99.0 +1995,9,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,15.0,81,98900,1012,1356,391,221,0,221,26400,0,26400,10540,200,3.1,10,10,6.4,900,9,999999999,270,0.1440,0,88,0.190,999.0,99.0 +1995,9,21,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,15.0,79,98900,908,1356,394,193,0,193,22900,0,22900,9040,280,2.0,10,10,6.4,1800,9,999999999,270,0.1440,0,88,0.190,999.0,99.0 +1995,9,21,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,15.0,79,98800,742,1356,394,150,0,150,17700,0,17700,6740,280,2.0,10,10,6.4,1800,9,999999999,270,0.1440,0,88,0.190,999.0,99.0 +1995,9,21,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,15.5,78,98700,527,1356,397,95,0,95,11100,0,11100,4020,250,2.0,10,10,8.0,1350,9,999999999,270,0.1440,0,88,0.190,999.0,99.0 +1995,9,21,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,15.5,81,98700,277,1356,394,40,0,40,4700,0,4700,1580,170,0.5,10,10,8.0,2100,9,999999999,270,0.1440,0,88,0.190,999.0,99.0 +1995,9,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,16.1,87,98700,40,780,392,6,0,6,700,0,700,230,230,2.0,10,10,8.0,2100,9,999999999,270,0.1440,0,88,0.190,999.0,99.0 +1995,9,21,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,16.1,90,98700,0,0,389,0,0,0,0,0,0,0,230,2.0,10,10,8.0,2100,9,999999999,270,0.1440,0,88,0.190,999.0,99.0 +1995,9,21,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,16.1,90,98700,0,0,389,0,0,0,0,0,0,0,240,2.5,10,10,8.0,1200,9,999999999,270,0.1440,0,88,0.190,999.0,99.0 +1995,9,21,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,13.8,86,98700,0,0,378,0,0,0,0,0,0,0,310,4.6,10,10,8.0,750,9,999999999,270,0.1440,0,88,0.190,999.0,99.0 +1995,9,21,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,13.3,90,98800,0,0,371,0,0,0,0,0,0,0,320,5.1,10,10,8.0,240,9,999999999,270,0.1440,0,88,0.190,999.0,99.0 +1995,9,21,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.3,11.6,89,98800,0,0,361,0,0,0,0,0,0,0,320,4.6,10,10,9.7,150,9,999999999,270,0.1440,0,88,0.190,999.0,99.0 +1995,9,22,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,10.0,86,98800,0,0,336,0,0,0,0,0,0,0,310,6.1,10,8,11.3,150,9,999999999,270,0.1430,0,88,0.190,0.0,6.0 +1995,9,22,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.6,9.4,86,98800,0,0,328,0,0,0,0,0,0,0,300,5.1,10,7,11.3,150,9,999999999,270,0.1430,0,88,0.190,999.0,99.0 +1995,9,22,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.5,8.8,89,98700,0,0,327,0,0,0,0,0,0,0,310,4.1,10,8,11.3,150,9,999999999,270,0.1430,0,88,0.190,999.0,99.0 +1995,9,22,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,8.8,92,98800,0,0,320,0,0,0,0,0,0,0,310,4.1,10,7,11.3,210,9,999999999,279,0.1430,0,88,0.190,999.0,99.0 +1995,9,22,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.4,7.7,89,98800,0,0,321,0,0,0,0,0,0,0,310,6.1,10,8,11.3,300,9,999999999,279,0.1430,0,88,0.190,999.0,99.0 +1995,9,22,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.4,7.7,89,98800,0,0,316,0,0,0,0,0,0,0,320,5.1,10,7,16.1,300,9,999999999,279,0.1430,0,88,0.190,999.0,99.0 +1995,9,22,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.8,7.2,90,98900,43,803,318,9,0,9,1100,0,1100,340,320,4.6,10,8,11.3,690,9,999999999,279,0.1430,0,88,0.190,7.0,6.0 +1995,9,22,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.8,7.2,90,99000,281,1357,313,117,45,108,12800,3800,12000,2450,310,5.1,10,7,11.3,390,9,999999999,270,0.1430,0,88,0.190,999.0,99.0 +1995,9,22,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.8,6.6,86,99100,530,1357,317,190,40,174,20800,3900,19300,4740,310,6.1,10,8,11.3,450,9,999999999,259,0.1430,0,88,0.190,999.0,99.0 +1995,9,22,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.8,6.1,83,99200,744,1357,311,430,174,334,45900,17900,36100,8640,290,5.6,10,7,11.3,450,9,999999999,259,0.1430,0,88,0.190,0.0,6.0 +1995,9,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.5,5.5,71,99200,907,1357,312,494,411,218,52900,42500,24400,5730,330,4.6,9,5,16.1,510,9,999999999,250,0.1430,0,88,0.190,999.0,99.0 +1995,9,22,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.3,2.7,49,99300,1010,1357,321,614,341,360,66100,36800,38700,11430,300,7.2,9,5,16.1,7500,9,999999999,240,0.1430,0,88,0.190,999.0,99.0 +1995,9,22,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,1.6,40,99300,1044,1357,328,627,407,313,66200,42300,33500,10480,320,5.6,9,5,16.1,7500,9,999999999,240,0.1430,0,88,0.190,0.0,6.0 +1995,9,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,-1.2,32,99300,1007,1357,312,721,710,193,76100,72000,22500,5880,280,8.7,2,1,16.1,77777,9,999999999,229,0.1430,0,88,0.190,999.0,99.0 +1995,9,22,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,-3.9,27,99300,902,1357,307,626,664,184,65500,66800,21000,4730,300,7.2,3,1,16.1,77777,9,999999999,220,0.1430,0,88,0.190,999.0,99.0 +1995,9,22,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,-2.8,30,99300,736,1357,308,458,566,151,47600,55900,17200,3250,330,6.1,2,1,16.1,77777,9,999999999,220,0.1430,0,88,0.190,999.0,99.0 +1995,9,22,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.3,-5.0,26,99400,520,1357,301,281,390,132,29500,37000,15300,2570,320,4.1,3,1,16.1,77777,9,999999999,209,0.1430,0,88,0.190,999.0,99.0 +1995,9,22,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.2,-5.0,28,99400,269,1357,296,107,209,66,11400,15600,8300,1240,310,3.6,2,1,16.1,77777,9,999999999,200,0.1430,0,88,0.190,999.0,99.0 +1995,9,22,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,-3.4,39,99300,36,735,281,8,7,7,800,400,800,180,310,2.0,0,0,16.1,77777,9,999999999,200,0.1430,0,88,0.190,0.0,6.0 +1995,9,22,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.3,-1.7,48,99400,0,0,278,0,0,0,0,0,0,0,330,2.0,0,0,16.1,77777,9,999999999,189,0.1430,0,88,0.190,999.0,99.0 +1995,9,22,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.1,0.0,65,99400,0,0,271,0,0,0,0,0,0,0,360,1.0,0,0,24.1,77777,9,999999999,179,0.1430,0,88,0.190,999.0,99.0 +1995,9,22,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.4,0.0,73,99500,0,0,265,0,0,0,0,0,0,0,60,1.0,0,0,24.1,77777,9,999999999,170,0.1430,0,88,0.190,999.0,99.0 +1995,9,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.7,0.5,85,99500,0,0,259,0,0,0,0,0,0,0,60,2.5,0,0,24.1,77777,9,999999999,170,0.1430,0,88,0.190,999.0,99.0 +1995,9,22,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.3,1.6,89,99500,0,0,262,0,0,0,0,0,0,0,30,2.0,0,0,24.1,77777,9,999999999,160,0.1430,0,88,0.190,999.0,99.0 +1995,9,23,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.7,1.1,89,99500,0,0,259,0,0,0,0,0,0,0,60,1.5,0,0,24.1,77777,9,999999999,150,0.1420,0,88,0.190,0.0,6.0 +1995,9,23,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.6,0.0,89,99500,0,0,254,0,0,0,0,0,0,0,70,2.5,0,0,24.1,77777,9,999999999,150,0.1420,0,88,0.190,999.0,99.0 +1995,9,23,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.1,-0.6,88,99600,0,0,252,0,0,0,0,0,0,0,50,2.0,0,0,24.1,77777,9,999999999,139,0.1420,0,88,0.190,999.0,99.0 +1995,9,23,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.1,-0.6,88,99600,0,0,252,0,0,0,0,0,0,0,90,2.5,0,0,24.1,77777,9,999999999,129,0.1420,0,88,0.190,999.0,99.0 +1995,9,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.1,-1.2,84,99600,0,0,251,0,0,0,0,0,0,0,40,1.5,0,0,24.1,77777,9,999999999,129,0.1420,0,88,0.190,999.0,99.0 +1995,9,23,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.6,0.0,89,99700,0,0,265,0,0,0,0,0,0,0,110,1.5,3,3,16.1,77777,9,999999999,120,0.1420,0,88,0.190,999.0,99.0 +1995,9,23,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-0.6,88,99700,40,781,260,10,53,8,1300,2000,1100,130,80,1.5,2,2,16.1,77777,9,999999999,110,0.1420,0,88,0.190,0.0,6.0 +1995,9,23,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.3,0.5,82,99700,276,1357,272,133,342,64,14000,25900,8700,1160,30,1.0,3,3,16.1,77777,9,999999999,110,0.1420,0,88,0.190,999.0,99.0 +1995,9,23,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.7,2.2,68,99800,525,1357,280,344,716,67,35900,67600,9700,1370,50,3.0,0,0,16.1,77777,9,999999999,110,0.1420,0,88,0.190,999.0,99.0 +1995,9,23,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.5,-1.2,44,99900,739,1357,288,532,818,87,56500,81200,12100,1980,50,5.6,0,0,16.1,77777,9,999999999,110,0.1420,0,88,0.190,999.0,99.0 +1995,9,23,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.2,-3.4,32,99900,903,1357,292,680,871,100,70600,86500,12800,2240,70,5.1,0,0,16.1,77777,9,999999999,110,0.1420,0,88,0.190,999.0,99.0 +1995,9,23,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.7,-3.9,30,99800,1005,1357,294,773,897,108,80000,89500,13600,2740,60,5.1,0,0,16.1,77777,9,999999999,110,0.1420,0,88,0.190,999.0,99.0 +1995,9,23,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,-3.9,27,99800,1038,1357,301,803,905,111,83200,90400,13800,2960,90,5.1,0,0,16.1,77777,9,999999999,110,0.1420,0,88,0.190,0.0,6.0 +1995,9,23,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,-3.9,26,99700,1001,1357,303,769,897,108,79800,89500,13600,2720,120,4.6,0,0,24.1,77777,9,999999999,110,0.1420,0,88,0.190,999.0,99.0 +1995,9,23,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,-1.7,29,99600,896,1357,310,673,869,100,69900,86300,12800,2210,80,4.6,0,0,24.1,77777,9,999999999,110,0.1420,0,88,0.190,999.0,99.0 +1995,9,23,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,-1.7,30,99600,729,1357,308,523,814,86,55400,80700,12000,1940,90,5.1,0,0,24.1,77777,9,999999999,110,0.1420,0,88,0.190,999.0,99.0 +1995,9,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,-1.2,31,99500,513,1357,308,334,709,66,34800,66600,9600,1340,70,5.1,0,0,24.1,77777,9,999999999,110,0.1420,0,88,0.190,999.0,99.0 +1995,9,23,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.8,0.0,39,99500,262,1357,303,135,480,42,14000,36500,6900,780,80,4.6,0,0,24.1,77777,9,999999999,110,0.1420,0,88,0.190,999.0,99.0 +1995,9,23,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.5,0.0,48,99500,33,690,289,9,64,6,1000,2800,900,120,60,3.0,0,0,24.1,77777,9,999999999,110,0.1420,0,88,0.190,0.0,6.0 +1995,9,23,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.3,1.6,63,99500,0,0,282,0,0,0,0,0,0,0,60,2.5,0,0,24.1,77777,9,999999999,110,0.1420,0,88,0.190,999.0,99.0 +1995,9,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.5,2.2,79,99500,0,0,271,0,0,0,0,0,0,0,40,2.5,0,0,24.1,77777,9,999999999,110,0.1420,0,88,0.190,999.0,99.0 +1995,9,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,2.8,82,99500,0,0,272,0,0,0,0,0,0,0,290,1.5,0,0,24.0,77777,9,999999999,110,0.1420,0,88,0.190,2.0,6.0 +1995,9,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,2.2,82,99500,0,0,269,0,0,0,0,0,0,0,50,1.5,0,0,24.1,77777,9,999999999,110,0.1420,0,88,0.190,999.0,99.0 +1995,9,23,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.8,1.6,86,99500,0,0,264,0,0,0,0,0,0,0,40,2.0,0,0,24.1,77777,9,999999999,110,0.1420,0,88,0.190,999.0,99.0 +1995,9,24,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,1.6,79,99500,0,0,269,0,0,0,0,0,0,0,40,3.0,0,0,24.1,77777,9,999999999,110,0.1410,0,88,0.190,0.0,6.0 +1995,9,24,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.8,1.1,83,99400,0,0,264,0,0,0,0,0,0,0,20,3.6,0,0,24.1,77777,9,999999999,110,0.1410,0,88,0.190,999.0,99.0 +1995,9,24,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.8,1.1,83,99400,0,0,264,0,0,0,0,0,0,0,20,2.5,0,0,24.1,77777,9,999999999,120,0.1410,0,88,0.190,999.0,99.0 +1995,9,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.8,1.1,83,99400,0,0,264,0,0,0,0,0,0,0,50,1.0,0,0,24.1,77777,9,999999999,120,0.1410,0,88,0.190,999.0,99.0 +1995,9,24,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.8,1.1,83,99400,0,0,264,0,0,0,0,0,0,0,50,2.5,0,0,24.1,77777,9,999999999,120,0.1410,0,88,0.190,999.0,99.0 +1995,9,24,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.8,0.5,79,99400,0,0,272,0,0,0,0,0,0,0,60,3.0,2,2,16.1,77777,9,999999999,120,0.1410,0,88,0.190,999.0,99.0 +1995,9,24,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.8,0.5,79,99400,38,758,274,8,17,7,900,500,900,110,50,2.5,3,3,16.1,77777,9,999999999,120,0.1410,0,88,0.190,0.0,6.0 +1995,9,24,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.6,2.2,73,99400,272,1358,309,60,34,53,6600,2700,6000,1400,60,3.0,9,9,16.1,77777,9,999999999,120,0.1410,0,88,0.190,999.0,99.0 +1995,9,24,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.5,2.7,58,99400,521,1358,304,240,331,113,25600,31500,13400,2170,60,3.6,3,3,16.1,77777,9,999999999,120,0.1410,0,88,0.190,999.0,99.0 +1995,9,24,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.3,2.2,47,99400,735,1358,313,486,695,110,51700,69600,13900,2480,80,3.6,2,2,16.1,77777,9,999999999,120,0.1410,0,88,0.190,999.0,99.0 +1995,9,24,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,1.6,39,99300,898,1358,325,632,681,181,66200,68500,20800,4630,110,4.6,3,3,16.1,77777,9,999999999,120,0.1410,0,88,0.190,999.0,99.0 +1995,9,24,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,1.6,37,99300,1000,1358,324,717,753,163,76700,76900,19900,4980,70,4.6,2,2,16.1,77777,9,999999999,120,0.1410,0,88,0.190,999.0,99.0 +1995,9,24,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,2.2,36,99300,1033,1358,333,757,705,220,79400,71200,25100,6930,180,1.5,3,3,16.1,77777,9,999999999,129,0.1410,0,88,0.190,0.0,6.0 +1995,9,24,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,1.6,35,99200,995,1358,329,690,656,209,72400,66200,23700,6160,100,3.0,2,2,24.1,77777,9,999999999,129,0.1410,0,88,0.190,999.0,99.0 +1995,9,24,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,1.1,34,99100,889,1358,332,552,462,250,58300,47600,27000,6500,120,2.5,3,3,24.1,77777,9,999999999,129,0.1410,0,88,0.190,999.0,99.0 +1995,9,24,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,2.2,35,99100,722,1358,361,312,72,273,34100,7300,30300,8010,120,1.5,9,9,24.1,77777,9,999999999,129,0.1410,0,88,0.190,999.0,99.0 +1995,9,24,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,1.6,33,99100,506,1358,338,303,522,108,32200,49300,13800,2050,260,1.0,3,3,24.1,77777,9,999999999,129,0.1410,0,88,0.190,999.0,99.0 +1995,9,24,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.6,1.1,35,99000,255,1358,354,50,17,47,5500,1300,5300,1250,270,0.5,9,9,24.1,7500,9,999999999,129,0.1410,0,88,0.190,999.0,99.0 +1995,9,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,3.8,47,99000,29,668,350,7,1,6,700,0,700,230,310,1.5,9,9,24.1,7500,9,999999999,139,0.1410,0,88,0.190,0.0,6.0 +1995,9,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.1,7.2,77,99000,0,0,335,0,0,0,0,0,0,0,150,1.0,9,9,24.1,77777,9,999999999,139,0.1410,0,88,0.190,999.0,99.0 +1995,9,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.4,6.6,83,99000,0,0,327,0,0,0,0,0,0,0,90,2.0,9,9,24.1,7500,9,999999999,139,0.1410,0,88,0.190,999.0,99.0 +1995,9,24,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.4,6.1,80,99000,0,0,326,0,0,0,0,0,0,0,60,3.0,9,9,16.1,7500,9,999999999,139,0.1410,0,88,0.190,999.0,99.0 +1995,9,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.5,5.5,71,99000,0,0,330,0,0,0,0,0,0,0,60,1.5,9,9,16.1,7500,9,999999999,139,0.1410,0,88,0.190,999.0,99.0 +1995,9,24,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,5.5,74,99000,0,0,328,0,0,0,0,0,0,0,50,2.0,9,9,16.1,7500,9,999999999,150,0.1410,0,88,0.190,999.0,99.0 +1995,9,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,5.5,74,98900,0,0,313,0,0,0,0,0,0,0,60,1.5,9,6,16.1,7500,9,999999999,150,0.1400,0,88,0.190,0.0,6.0 +1995,9,25,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,5.5,74,98900,0,0,313,0,0,0,0,0,0,0,40,1.5,9,6,16.1,7500,9,999999999,150,0.1400,0,88,0.190,999.0,99.0 +1995,9,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.8,5.5,80,98800,0,0,307,0,0,0,0,0,0,0,40,1.5,9,6,16.1,7500,9,999999999,150,0.1400,0,88,0.190,999.0,99.0 +1995,9,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.7,6.1,90,98800,0,0,303,0,0,0,0,0,0,0,20,1.5,9,6,16.1,7500,9,999999999,150,0.1400,0,88,0.190,999.0,99.0 +1995,9,25,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.2,6.1,93,98800,0,0,301,0,0,0,0,0,0,0,170,1.0,9,6,16.1,7500,9,999999999,150,0.1400,0,88,0.190,999.0,99.0 +1995,9,25,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.3,6.1,86,98800,0,0,306,0,0,0,0,0,0,0,130,0.5,9,6,16.1,7500,9,999999999,160,0.1400,0,88,0.190,999.0,99.0 +1995,9,25,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,6.6,89,98800,36,736,306,7,1,7,900,0,900,270,120,0.5,9,6,16.1,7500,9,999999999,160,0.1400,0,88,0.190,0.0,6.0 +1995,9,25,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.4,7.2,86,98800,268,1359,327,89,22,84,9700,1800,9300,2020,110,2.0,10,9,16.1,3300,9,999999999,160,0.1400,0,88,0.190,999.0,99.0 +1995,9,25,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,7.2,83,98900,517,1359,330,178,43,162,19600,4100,18000,4430,320,1.0,10,9,11.3,3300,9,999999999,160,0.1400,0,88,0.190,999.0,99.0 +1995,9,25,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.7,7.2,74,98800,730,1359,338,350,123,284,38400,12500,31700,8310,170,2.1,10,9,11.2,3900,9,999999999,160,0.1400,0,88,0.190,999.0,99.0 +1995,9,25,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.7,7.7,72,98900,893,1359,327,524,404,259,55200,41600,27700,6790,230,2.0,9,6,11.3,3900,9,999999999,160,0.1400,0,88,0.190,999.0,99.0 +1995,9,25,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.3,8.3,72,98800,995,1359,330,413,223,249,45600,24100,27900,7320,190,3.0,9,6,11.3,3900,9,999999999,160,0.1400,0,88,0.190,999.0,99.0 +1995,9,25,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,8.3,67,98800,1028,1359,336,552,120,461,60600,12500,51200,16260,160,2.0,9,6,11.3,3900,9,999999999,160,0.1400,0,88,0.190,999.0,99.0 +1995,9,25,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,7.7,57,98700,989,1359,343,399,150,289,44100,16000,32400,9120,190,3.0,9,6,16.1,7500,9,999999999,160,0.1400,0,88,0.190,999.0,99.0 +1995,9,25,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,5.0,41,98700,883,1359,334,640,810,114,67500,81100,14700,2810,190,5.6,2,1,16.1,77777,9,999999999,160,0.1400,0,88,0.190,999.0,99.0 +1995,9,25,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,5.5,42,98600,716,1359,337,479,681,120,50500,67700,14700,2630,220,4.6,3,1,16.1,77777,9,999999999,160,0.1400,0,88,0.190,999.0,99.0 +1995,9,25,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,5.5,43,98600,499,1359,334,296,593,78,31000,55500,10600,1540,260,4.6,2,1,16.1,77777,9,999999999,160,0.1400,0,88,0.190,999.0,99.0 +1995,9,25,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.6,6.6,52,98600,248,1359,328,115,307,59,12000,22000,8000,1070,240,3.0,3,1,16.1,77777,9,999999999,170,0.1400,0,88,0.190,999.0,99.0 +1995,9,25,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,6.6,59,98500,26,623,334,5,5,5,600,200,600,130,230,3.0,9,6,16.1,77777,9,999999999,170,0.1400,0,88,0.190,0.0,6.0 +1995,9,25,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.2,7.7,74,98600,0,0,310,0,0,0,0,0,0,0,220,2.5,3,1,24.1,77777,9,999999999,170,0.1400,0,88,0.190,999.0,99.0 +1995,9,25,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.7,7.7,72,98600,0,0,327,0,0,0,0,0,0,0,210,2.5,9,6,24.1,77777,9,999999999,170,0.1400,0,88,0.190,999.0,99.0 +1995,9,25,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.1,7.2,77,98500,0,0,319,0,0,0,0,0,0,0,160,1.5,9,6,24.1,77777,9,999999999,170,0.1400,0,88,0.190,999.0,99.0 +1995,9,25,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,7.2,83,98500,0,0,314,0,0,0,0,0,0,0,140,1.0,9,6,24.1,77777,9,999999999,170,0.1400,0,88,0.190,999.0,99.0 +1995,9,25,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.4,7.2,86,98500,0,0,292,0,0,0,0,0,0,0,140,2.0,0,0,24.1,77777,9,999999999,170,0.1400,0,88,0.190,999.0,99.0 +1995,9,26,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.4,7.2,86,98500,0,0,292,0,0,0,0,0,0,0,180,2.1,0,0,24.0,77777,9,999999999,170,0.1390,0,88,0.190,999.0,99.0 +1995,9,26,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.7,6.6,93,98500,0,0,284,0,0,0,0,0,0,0,220,1.0,0,0,24.1,77777,9,999999999,170,0.1390,0,88,0.190,999.0,99.0 +1995,9,26,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.2,7.2,100,98400,0,0,283,0,0,0,0,0,0,0,310,0.5,0,0,24.1,77777,9,999999999,170,0.1390,0,88,0.190,999.0,99.0 +1995,9,26,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.2,6.6,96,98400,0,0,282,0,0,0,0,0,0,0,130,1.0,0,0,24.1,77777,9,999999999,170,0.1390,0,88,0.190,999.0,99.0 +1995,9,26,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.7,6.6,93,98500,0,0,289,0,0,0,0,0,0,0,110,1.0,3,1,24.1,77777,9,999999999,170,0.1390,0,88,0.190,999.0,99.0 +1995,9,26,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.7,6.6,93,98500,0,0,289,0,0,0,0,0,0,0,60,1.5,2,1,11.3,77777,9,999999999,170,0.1390,0,88,0.190,999.0,99.0 +1995,9,26,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,5.0,93,98500,34,714,281,9,49,7,1100,1700,1000,120,220,2.0,3,1,11.3,77777,9,999999999,179,0.1390,0,88,0.190,0.0,6.0 +1995,9,26,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.4,8.3,93,98600,264,1360,298,128,426,45,13200,32400,6900,830,180,1.0,2,1,11.3,77777,9,999999999,179,0.1390,0,88,0.190,999.0,99.0 +1995,9,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.7,9.4,80,98600,513,1360,308,326,682,69,33800,63900,9700,1370,230,3.6,0,0,11.3,77777,9,999999999,179,0.1390,0,88,0.190,999.0,99.0 +1995,9,26,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,9.4,67,98700,726,1360,320,511,789,90,53900,78000,12100,1990,230,3.0,0,0,11.3,77777,9,999999999,179,0.1390,0,88,0.190,999.0,99.0 +1995,9,26,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,8.8,56,98600,889,1360,329,656,844,104,69900,84900,14200,2670,220,4.1,0,0,11.3,77777,9,999999999,179,0.1390,0,88,0.190,999.0,99.0 +1995,9,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,8.3,47,98600,990,1360,346,638,692,135,67200,69500,16500,3760,250,5.6,2,1,11.3,77777,9,999999999,179,0.1390,0,88,0.190,999.0,99.0 +1995,9,26,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,7.7,42,98500,1022,1360,350,736,810,127,78300,81800,16600,3840,250,4.6,3,1,11.3,77777,9,999999999,179,0.1390,0,88,0.190,0.0,6.0 +1995,9,26,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,7.7,41,98500,984,1360,364,572,477,227,61900,49600,25900,6650,190,5.1,9,4,16.1,1800,9,999999999,179,0.1390,0,88,0.190,999.0,99.0 +1995,9,26,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,7.2,42,98400,877,1360,358,628,673,194,65300,67200,21900,4750,240,3.6,9,4,16.1,2400,9,999999999,189,0.1390,0,88,0.190,999.0,99.0 +1995,9,26,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,6.6,39,98400,709,1360,349,400,529,124,42000,52400,14600,2680,260,3.0,2,1,16.1,77777,9,999999999,189,0.1390,0,88,0.190,999.0,99.0 +1995,9,26,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,7.2,43,98400,492,1360,344,248,489,71,26200,45800,9600,1410,240,4.6,3,1,16.1,77777,9,999999999,189,0.1390,0,88,0.190,999.0,99.0 +1995,9,26,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,7.7,47,98400,240,1360,342,107,359,44,11000,26200,6400,790,240,4.1,2,1,16.1,77777,9,999999999,189,0.1390,0,88,0.190,999.0,99.0 +1995,9,26,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,8.3,60,98400,23,578,328,5,31,4,0,0,0,0,230,3.0,3,1,16.1,77777,9,999999999,189,0.1390,0,88,0.190,0.0,6.0 +1995,9,26,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,9.4,69,98400,0,0,324,0,0,0,0,0,0,0,220,3.0,2,1,24.1,77777,9,999999999,189,0.1390,0,88,0.190,999.0,99.0 +1995,9,26,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.3,9.4,77,98500,0,0,310,0,0,0,0,0,0,0,210,2.5,0,0,24.1,77777,9,999999999,189,0.1390,0,88,0.190,999.0,99.0 +1995,9,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.6,9.4,86,98500,0,0,303,0,0,0,0,0,0,0,210,2.5,0,0,24.1,77777,9,999999999,200,0.1390,0,88,0.190,999.0,99.0 +1995,9,26,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.2,8.8,80,98500,0,0,305,0,0,0,0,0,0,0,130,1.5,0,0,24.1,77777,9,999999999,200,0.1390,0,88,0.190,999.0,99.0 +1995,9,26,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.1,8.3,83,98500,0,0,300,0,0,0,0,0,0,0,120,1.5,0,0,24.1,77777,9,999999999,200,0.1390,0,88,0.190,999.0,99.0 +1995,9,27,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,8.3,83,98600,0,0,300,0,0,0,0,0,0,0,130,1.5,0,0,24.1,77777,9,999999999,200,0.1380,0,88,0.190,0.0,6.0 +1995,9,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.5,8.3,86,98600,0,0,297,0,0,0,0,0,0,0,160,1.5,0,0,24.1,77777,9,999999999,200,0.1380,0,88,0.190,999.0,99.0 +1995,9,27,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.8,7.7,93,98600,0,0,290,0,0,0,0,0,0,0,270,1.0,0,0,24.1,77777,9,999999999,200,0.1380,0,88,0.190,999.0,99.0 +1995,9,27,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.7,6.6,93,98600,0,0,284,0,0,0,0,0,0,0,230,0.5,0,0,24.1,77777,9,999999999,200,0.1380,0,88,0.190,999.0,99.0 +1995,9,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.2,6.6,96,98600,0,0,282,0,0,0,0,0,0,0,240,1.0,0,0,16.1,77777,9,999999999,209,0.1380,0,88,0.190,999.0,99.0 +1995,9,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.7,7.2,97,98700,0,0,285,0,0,0,0,0,0,0,170,1.5,0,0,11.3,77777,9,999999999,209,0.1380,0,88,0.190,999.0,99.0 +1995,9,27,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.6,6.1,97,98700,32,692,284,6,2,6,700,100,700,160,190,1.0,2,1,8.0,77777,9,999999999,209,0.1380,0,88,0.190,0.0,6.0 +1995,9,27,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.1,9.4,89,98800,260,1361,301,103,189,66,10800,13800,8200,1240,170,2.5,0,0,9.7,77777,9,999999999,209,0.1380,0,88,0.190,999.0,99.0 +1995,9,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,10.5,77,98900,508,1361,316,280,433,118,29600,40900,14300,2270,240,4.1,0,0,11.3,77777,9,999999999,209,0.1380,0,88,0.190,999.0,99.0 +1995,9,27,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,10.0,61,99000,721,1361,330,463,571,160,49600,57800,18900,3440,240,3.0,0,0,11.3,77777,9,999999999,209,0.1380,0,88,0.190,999.0,99.0 +1995,9,27,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,10.5,53,99000,884,1361,344,610,648,189,63600,64900,21400,4700,230,2.0,0,0,11.3,77777,9,999999999,209,0.1380,0,88,0.190,999.0,99.0 +1995,9,27,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,9.4,43,99000,985,1361,360,673,633,215,70400,63700,24200,6160,310,3.0,3,1,11.3,77777,9,999999999,209,0.1380,0,88,0.190,999.0,99.0 +1995,9,27,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,8.3,35,99000,1017,1361,370,706,616,246,76200,64200,28100,7650,230,4.6,2,1,11.3,77777,9,999999999,209,0.1380,0,88,0.190,0.0,6.0 +1995,9,27,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,5.5,30,98900,978,1361,363,619,548,225,67000,57000,25900,6520,270,4.6,3,1,11.3,77777,9,999999999,209,0.1380,0,88,0.190,999.0,99.0 +1995,9,27,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,6.1,29,98800,870,1361,370,569,589,193,59200,58800,21500,4690,260,4.1,2,1,11.3,77777,9,999999999,209,0.1380,0,88,0.190,999.0,99.0 +1995,9,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,6.1,30,98900,702,1361,367,433,495,177,45700,49800,20000,3800,260,4.6,3,1,11.3,77777,9,999999999,209,0.1380,0,88,0.190,999.0,99.0 +1995,9,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,6.6,32,98800,485,1361,365,245,368,114,25800,34300,13600,2170,240,5.1,2,1,11.3,77777,9,999999999,209,0.1380,0,88,0.190,999.0,99.0 +1995,9,27,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,8.8,44,98900,233,1361,354,86,134,63,9100,9200,7500,1190,230,3.0,3,1,11.3,77777,9,999999999,209,0.1380,0,88,0.190,999.0,99.0 +1995,9,27,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.5,9.4,49,98900,20,556,349,3,1,3,0,0,0,0,230,3.0,2,1,11.3,77777,9,999999999,209,0.1380,0,88,0.190,0.0,6.0 +1995,9,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,8.3,49,98900,0,0,343,0,0,0,0,0,0,0,210,3.0,3,1,11.3,77777,9,999999999,220,0.1380,0,88,0.190,999.0,99.0 +1995,9,27,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,8.8,62,99000,0,0,322,0,0,0,0,0,0,0,160,1.5,0,0,11.3,77777,9,999999999,220,0.1380,0,88,0.190,999.0,99.0 +1995,9,27,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.3,9.4,77,99000,0,0,310,0,0,0,0,0,0,0,250,1.0,0,0,11.3,77777,9,999999999,220,0.1380,0,88,0.190,999.0,99.0 +1995,9,27,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.7,9.4,80,99000,0,0,308,0,0,0,0,0,0,0,130,1.5,0,0,11.3,77777,9,999999999,220,0.1380,0,88,0.190,999.0,99.0 +1995,9,27,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.6,8.8,83,99100,0,0,302,0,0,0,0,0,0,0,110,1.0,0,0,11.3,77777,9,999999999,220,0.1380,0,88,0.190,999.0,99.0 +1995,9,28,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.5,8.8,89,99100,0,0,298,0,0,0,0,0,0,0,240,1.0,0,0,11.3,77777,9,999999999,220,0.1370,0,88,0.190,0.0,6.0 +1995,9,28,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.1,8.8,86,99100,0,0,300,0,0,0,0,0,0,0,70,1.0,0,0,11.3,77777,9,999999999,220,0.1370,0,88,0.190,999.0,99.0 +1995,9,28,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.4,7.7,89,99100,0,0,292,0,0,0,0,0,0,0,60,1.5,3,0,11.3,77777,9,999999999,220,0.1370,0,88,0.190,999.0,99.0 +1995,9,28,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.5,8.8,89,99100,0,0,298,0,0,0,0,0,0,0,150,1.0,2,0,11.3,77777,9,999999999,220,0.1370,0,88,0.190,999.0,99.0 +1995,9,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.4,7.7,89,99200,0,0,292,0,0,0,0,0,0,0,50,2.0,0,0,11.3,77777,9,999999999,220,0.1370,0,88,0.190,999.0,99.0 +1995,9,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.7,6.6,93,99200,0,0,284,0,0,0,0,0,0,0,60,1.5,2,0,16.1,77777,9,999999999,220,0.1370,0,88,0.190,999.0,99.0 +1995,9,28,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,8.3,93,99200,30,669,293,7,15,6,800,400,800,90,110,1.0,3,0,16.1,77777,9,999999999,220,0.1370,0,88,0.190,0.0,6.0 +1995,9,28,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.1,9.4,89,99300,255,1361,301,112,292,58,11800,21300,7800,1050,80,2.0,2,0,12.9,77777,9,999999999,220,0.1370,0,88,0.190,999.0,99.0 +1995,9,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,10.5,77,99300,504,1361,316,299,565,90,31100,52600,11600,1740,200,1.0,0,0,12.9,77777,9,999999999,220,0.1370,0,88,0.190,999.0,99.0 +1995,9,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,10.5,60,99400,717,1361,334,483,690,119,50900,68600,14700,2610,240,1.0,0,0,11.3,77777,9,999999999,220,0.1370,0,88,0.190,999.0,99.0 +1995,9,28,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,11.6,49,99400,879,1361,356,628,757,139,66900,76900,17100,3580,120,1.5,0,0,11.3,77777,9,999999999,209,0.1370,0,88,0.190,999.0,99.0 +1995,9,28,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,8.3,35,99400,979,1361,363,712,765,162,76000,78000,19700,4760,140,2.0,2,0,11.3,77777,9,999999999,209,0.1370,0,88,0.190,999.0,99.0 +1995,9,28,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,7.2,30,99300,1011,1361,367,746,770,173,79400,78500,20900,5340,150,2.1,3,0,12.8,77777,9,999999999,209,0.1370,0,88,0.190,999.0,99.0 +1995,9,28,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,5.5,27,99300,972,1361,365,692,744,161,73800,75800,19500,4680,250,4.1,2,0,12.9,77777,9,999999999,209,0.1370,0,88,0.190,999.0,99.0 +1995,9,28,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,6.1,27,99300,864,1361,368,616,728,154,65100,73400,18300,3840,210,3.0,3,0,12.9,77777,9,999999999,209,0.1370,0,88,0.190,999.0,99.0 +1995,9,28,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,6.1,28,99200,695,1361,365,463,662,124,48500,65300,15000,2650,230,4.1,2,0,12.9,77777,9,999999999,200,0.1370,0,88,0.190,999.0,99.0 +1995,9,28,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,6.1,29,99200,477,1361,363,275,510,96,28300,46600,11900,1790,210,4.1,3,0,12.9,77777,9,999999999,200,0.1370,0,88,0.190,999.0,99.0 +1995,9,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,8.8,42,99200,226,1361,350,96,260,53,10000,17800,7100,960,250,2.5,2,0,12.9,77777,9,999999999,200,0.1370,0,88,0.190,999.0,99.0 +1995,9,28,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.8,11.1,61,99200,17,511,337,3,7,3,0,0,0,0,230,2.5,3,0,12.9,77777,9,999999999,200,0.1370,0,88,0.190,0.0,6.0 +1995,9,28,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.6,11.6,72,99200,0,0,327,0,0,0,0,0,0,0,190,1.0,0,0,12.9,77777,9,999999999,200,0.1370,0,88,0.190,999.0,99.0 +1995,9,28,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,10.0,72,99200,0,0,318,0,0,0,0,0,0,0,60,1.5,0,0,12.9,77777,9,999999999,200,0.1370,0,88,0.190,999.0,99.0 +1995,9,28,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,10.5,74,99200,0,0,319,0,0,0,0,0,0,0,150,2.0,0,0,24.1,77777,9,999999999,189,0.1370,0,88,0.190,999.0,99.0 +1995,9,28,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,10.0,75,99200,0,0,316,0,0,0,0,0,0,0,50,1.0,0,0,24.1,77777,9,999999999,189,0.1370,0,88,0.190,999.0,99.0 +1995,9,28,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.2,10.0,86,99200,0,0,306,0,0,0,0,0,0,0,70,1.5,0,0,24.1,77777,9,999999999,189,0.1370,0,88,0.190,999.0,99.0 +1995,9,29,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,10.0,93,99200,0,0,301,0,0,0,0,0,0,0,60,2.0,0,0,24.1,77777,9,999999999,189,0.1360,0,88,0.190,0.0,6.0 +1995,9,29,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.5,9.4,93,99200,0,0,298,0,0,0,0,0,0,0,80,2.0,0,0,24.1,77777,9,999999999,189,0.1360,0,88,0.190,999.0,99.0 +1995,9,29,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.5,9.4,93,99200,0,0,298,0,0,0,0,0,0,0,60,2.0,0,0,16.1,77777,9,999999999,179,0.1360,0,88,0.190,999.0,99.0 +1995,9,29,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.4,9.4,100,99200,0,0,294,0,0,0,0,0,0,0,50,1.0,0,0,16.1,77777,9,999999999,179,0.1360,0,88,0.190,999.0,99.0 +1995,9,29,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.4,8.3,93,99200,0,0,293,0,0,0,0,0,0,0,40,1.0,0,0,11.3,77777,9,999999999,179,0.1360,0,88,0.190,999.0,99.0 +1995,9,29,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.4,8.3,93,99300,0,0,305,0,0,0,0,0,0,0,60,1.5,3,3,16.1,77777,9,999999999,179,0.1360,0,88,0.190,999.0,99.0 +1995,9,29,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,8.8,92,99300,28,647,296,8,85,5,1000,4400,800,130,40,1.0,0,0,12.9,77777,9,999999999,179,0.1360,0,88,0.190,0.0,6.0 +1995,9,29,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.2,10.5,89,99400,251,1362,320,98,301,42,10100,22400,5900,770,360,1.0,3,3,11.3,77777,9,999999999,179,0.1360,0,88,0.190,999.0,99.0 +1995,9,29,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,12.2,78,99400,499,1362,336,309,628,79,32400,58700,10900,1550,120,0.5,2,2,11.3,77777,9,999999999,179,0.1360,0,88,0.190,999.0,99.0 +1995,9,29,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,11.6,53,99500,712,1362,350,508,837,70,53200,81900,10300,1600,160,3.0,0,0,12.9,77777,9,999999999,179,0.1360,0,88,0.190,999.0,99.0 +1995,9,29,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,10.0,40,99400,874,1362,374,598,774,101,63800,77800,13700,2560,180,5.6,2,2,12.9,77777,9,999999999,179,0.1360,0,88,0.190,999.0,99.0 +1995,9,29,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,8.3,32,99400,974,1362,384,643,689,150,68900,70500,18400,4400,180,5.6,3,3,16.1,77777,9,999999999,179,0.1360,0,88,0.190,999.0,99.0 +1995,9,29,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,7.2,30,99300,1005,1362,397,539,426,224,58500,44400,25700,6780,170,4.6,9,7,16.1,77777,9,999999999,179,0.1360,0,88,0.190,0.0,6.0 +1995,9,29,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,7.2,28,99300,966,1362,388,662,709,159,70600,72300,19200,4570,170,6.6,3,3,16.1,77777,9,999999999,189,0.1360,0,88,0.190,999.0,99.0 +1995,9,29,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,7.2,29,99200,858,1362,382,601,817,86,62700,81000,11500,2010,160,6.1,2,2,16.1,77777,9,999999999,189,0.1360,0,88,0.190,999.0,99.0 +1995,9,29,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,7.2,29,99200,689,1362,385,470,633,150,48500,61700,17200,3080,180,6.6,3,3,16.1,77777,9,999999999,189,0.1360,0,88,0.190,999.0,99.0 +1995,9,29,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,7.2,32,99200,470,1362,373,276,622,61,28700,57400,8800,1230,170,6.6,2,2,16.1,77777,9,999999999,189,0.1360,0,88,0.190,999.0,99.0 +1995,9,29,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,7.7,36,99200,219,1362,372,104,245,64,10500,16400,7900,1190,190,5.1,3,3,16.1,77777,9,999999999,189,0.1360,0,88,0.190,999.0,99.0 +1995,9,29,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,8.8,45,99100,15,488,373,3,4,3,0,0,0,0,150,3.6,9,7,16.1,7500,9,999999999,189,0.1360,0,88,0.190,0.0,6.0 +1995,9,29,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,9.4,49,99200,0,0,376,0,0,0,0,0,0,0,150,3.6,9,8,16.1,7500,9,999999999,189,0.1360,0,88,0.190,999.0,99.0 +1995,9,29,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,9.4,56,99200,0,0,360,0,0,0,0,0,0,0,150,3.6,9,7,16.1,7500,9,999999999,189,0.1360,0,88,0.190,999.0,99.0 +1995,9,29,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,9.4,60,99100,0,0,328,0,0,0,0,0,0,0,160,3.6,0,0,24.1,77777,9,999999999,200,0.1360,0,88,0.190,999.0,99.0 +1995,9,29,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.6,8.8,60,99100,0,0,335,0,0,0,0,0,0,0,160,3.0,2,2,24.1,77777,9,999999999,200,0.1360,0,88,0.190,999.0,99.0 +1995,9,29,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,8.8,64,99100,0,0,333,0,0,0,0,0,0,0,160,3.0,3,3,16.1,77777,9,999999999,200,0.1360,0,88,0.190,999.0,99.0 +1995,9,30,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.5,8.8,64,99000,0,0,333,0,0,0,0,0,0,0,160,3.6,3,3,24.1,77777,9,999999999,200,0.1350,0,88,0.190,0.0,6.0 +1995,9,30,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,8.8,66,99000,0,0,356,0,0,0,0,0,0,0,170,2.5,9,9,24.1,77777,9,999999999,200,0.1350,0,88,0.190,999.0,99.0 +1995,9,30,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,9.4,69,99000,0,0,357,0,0,0,0,0,0,0,160,4.1,9,9,24.1,77777,9,999999999,200,0.1350,0,88,0.190,999.0,99.0 +1995,9,30,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,9.4,69,99000,0,0,357,0,0,0,0,0,0,0,160,4.6,9,9,16.1,77777,9,999999999,200,0.1350,0,88,0.190,999.0,99.0 +1995,9,30,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,9.4,72,99100,0,0,354,0,0,0,0,0,0,0,180,1.5,9,9,16.1,77777,9,999999999,209,0.1350,0,88,0.190,999.0,99.0 +1995,9,30,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.8,9.4,75,99100,0,0,323,0,0,0,0,0,0,0,160,1.5,2,2,16.1,77777,9,999999999,209,0.1350,0,88,0.190,999.0,99.0 +1995,9,30,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.8,9.4,75,99200,26,625,326,5,1,5,600,0,600,200,180,2.5,3,3,16.1,77777,9,999999999,209,0.1350,0,88,0.190,0.0,6.0 +1995,9,30,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,10.0,72,99200,247,1363,329,92,140,67,9700,9900,7900,1280,190,1.5,2,2,16.1,77777,9,999999999,209,0.1350,0,88,0.190,999.0,99.0 +1995,9,30,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,10.5,60,99300,495,1363,334,271,438,112,28700,41100,13700,2130,200,4.6,0,0,16.1,77777,9,999999999,209,0.1350,0,88,0.190,999.0,99.0 +1995,9,30,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,11.6,57,99300,707,1363,345,453,578,153,48700,58300,18300,3250,190,3.6,0,0,16.1,77777,9,999999999,209,0.1350,0,88,0.190,999.0,99.0 +1995,9,30,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,10.5,46,99300,869,1363,354,599,655,181,62500,65600,20600,4430,220,5.6,0,0,16.1,77777,9,999999999,209,0.1350,0,88,0.190,999.0,99.0 +1995,9,30,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,10.5,43,99200,969,1363,360,690,694,196,72400,70100,22500,5520,220,7.2,0,0,16.1,77777,9,999999999,209,0.1350,0,88,0.190,999.0,99.0 +1995,9,30,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.5,11.1,40,99100,1000,1363,369,718,705,201,75600,71300,23200,5960,180,7.7,0,0,11.3,77777,9,999999999,220,0.1350,0,88,0.190,0.0,6.0 +1995,9,30,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,10.5,39,99000,960,1363,368,681,691,195,71600,69700,22400,5410,210,8.2,0,0,11.3,77777,9,999999999,220,0.1350,0,88,0.190,999.0,99.0 +1995,9,30,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,10.0,36,99000,851,1363,370,582,647,178,60700,64700,20200,4260,180,7.2,0,0,11.3,77777,9,999999999,220,0.1350,0,88,0.190,999.0,99.0 +1995,9,30,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,10.0,36,98900,682,1363,370,430,564,148,46200,56600,17800,3080,200,7.7,0,0,11.3,77777,9,999999999,220,0.1350,0,88,0.190,999.0,99.0 +1995,9,30,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,10.0,38,98900,463,1363,383,221,244,138,23400,23000,15600,2840,180,7.7,3,3,11.3,77777,9,999999999,220,0.1350,0,88,0.190,999.0,99.0 +1995,9,30,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,10.5,43,98900,211,1363,372,74,115,56,7800,7500,6600,1050,180,5.1,2,2,11.3,77777,9,999999999,220,0.1350,0,88,0.190,999.0,99.0 +1995,9,30,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.6,10.5,49,98900,13,443,364,1,0,1,0,0,0,0,170,4.1,3,3,11.3,77777,9,999999999,220,0.1350,0,88,0.190,0.0,6.0 +1995,9,30,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,10.5,54,98800,0,0,342,0,0,0,0,0,0,0,170,4.1,0,0,24.1,77777,9,999999999,220,0.1350,0,88,0.190,999.0,99.0 +1995,9,30,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,10.5,58,98800,0,0,336,0,0,0,0,0,0,0,180,4.1,0,0,24.1,77777,9,999999999,220,0.1350,0,88,0.190,999.0,99.0 +1995,9,30,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,9.9,63,98700,0,0,327,0,0,0,0,0,0,0,170,3.6,0,0,24.1,77777,9,999999999,229,0.1350,0,88,0.190,999.0,99.0 +1995,9,30,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.1,9.2,70,98700,0,0,318,0,0,0,0,0,0,0,160,3.1,0,0,24.1,77777,9,999999999,229,0.1350,0,88,0.190,999.0,99.0 +1995,9,30,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.3,8.6,75,98700,0,0,309,0,0,0,0,0,0,0,160,2.6,0,0,24.1,77777,9,999999999,229,0.1350,0,88,0.190,999.0,99.0 +2001,10,1,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.5,7.9,93,99200,0,0,301,0,0,0,0,0,0,0,110,2.0,0,0,11.3,77777,9,999999999,170,0.1340,0,88,0.170,999.0,99.0 +2001,10,1,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.7,7.3,93,99200,0,0,293,0,0,0,0,0,0,0,100,1.5,0,0,11.3,77777,9,999999999,170,0.1340,0,88,0.170,999.0,99.0 +2001,10,1,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.8,6.6,100,99100,0,0,290,0,0,0,0,0,0,0,90,1.0,2,1,11.3,77777,9,999999999,179,0.1340,0,88,0.170,999.0,99.0 +2001,10,1,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,6.0,100,99000,0,0,282,0,0,0,0,0,0,0,80,0.5,3,1,11.3,77777,9,999999999,179,0.1340,0,88,0.170,999.0,99.0 +2001,10,1,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,5.0,100,99000,0,0,277,0,0,0,0,0,0,0,70,0.5,2,1,8.0,77777,9,999999999,189,0.1340,0,88,0.170,999.0,99.0 +2001,10,1,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,5.0,100,99000,0,0,277,0,0,0,0,0,0,0,60,1.0,3,1,8.0,77777,9,999999999,200,0.1340,0,88,0.170,999.0,99.0 +2001,10,1,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,4.0,100,99100,23,602,272,0,0,0,0,0,0,0,200,1.0,2,1,2.4,77777,9,999999999,200,0.1340,0,88,0.170,999.0,99.0 +2001,10,1,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,8.0,100,99100,240,1364,292,120,254,75,12500,17700,9400,1470,200,0.5,3,1,11.3,77777,9,999999999,209,0.1340,0,88,0.170,999.0,99.0 +2001,10,1,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,11.0,94,99100,488,1364,312,317,575,110,32200,52400,13400,2010,210,1.0,2,1,11.3,77777,9,999999999,220,0.1340,0,88,0.170,999.0,99.0 +2001,10,1,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,12.0,88,99100,700,1364,332,475,662,134,49400,65100,15900,2830,210,1.0,5,4,11.3,77777,9,999999999,220,0.1340,0,88,0.170,999.0,99.0 +2001,10,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,11.0,64,99100,861,1364,360,613,722,156,64500,72700,18500,3860,210,2.1,9,7,11.3,7500,9,999999999,229,0.1340,0,88,0.170,999.0,99.0 +2001,10,1,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,11.0,60,99100,960,1364,371,688,729,173,72700,74000,20500,4880,220,2.1,9,8,11.3,7500,9,999999999,240,0.1340,0,88,0.170,999.0,99.0 +2001,10,1,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,11.0,53,99000,991,1364,365,721,744,179,76300,75600,21200,5290,220,2.6,5,4,11.3,77777,9,999999999,240,0.1340,0,88,0.170,999.0,99.0 +2001,10,1,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,9.0,43,98900,950,1364,367,669,765,135,69800,76600,16400,3470,280,3.1,5,4,11.3,77777,9,999999999,240,0.1340,0,88,0.170,999.0,99.0 +2001,10,1,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,10.0,46,98800,841,1364,368,577,671,162,60400,67300,18800,3880,230,3.6,5,4,11.3,77777,9,999999999,229,0.1340,0,88,0.170,999.0,99.0 +2001,10,1,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,9.0,41,98800,671,1364,372,450,682,114,47300,67100,14100,2410,250,4.1,5,4,11.3,77777,9,999999999,229,0.1340,0,88,0.170,999.0,99.0 +2001,10,1,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,8.0,41,98700,452,1364,366,274,578,81,28300,52400,10900,1530,260,5.7,5,4,11.3,77777,9,999999999,229,0.1340,0,88,0.170,999.0,99.0 +2001,10,1,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,10.0,56,98700,200,1364,354,92,327,44,9300,21700,6100,760,230,2.1,5,4,11.3,77777,9,999999999,220,0.1340,0,88,0.170,999.0,99.0 +2001,10,1,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,12.0,82,98700,10,375,337,0,0,0,0,0,0,0,230,1.5,5,4,11.3,77777,9,999999999,220,0.1340,0,88,0.170,999.0,99.0 +2001,10,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,11.0,82,98700,0,0,331,0,0,0,0,0,0,0,220,0.5,5,4,11.3,77777,9,999999999,209,0.1340,0,88,0.170,999.0,99.0 +2001,10,1,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,11.0,72,98700,0,0,350,0,0,0,0,0,0,0,220,0.5,9,7,11.3,7500,9,999999999,209,0.1340,0,88,0.170,999.0,99.0 +2001,10,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,12.0,88,98700,0,0,347,0,0,0,0,0,0,0,210,1.0,9,8,11.3,3000,9,999999999,200,0.1340,0,88,0.170,999.0,99.0 +2001,10,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,11.0,82,98700,0,0,341,0,0,0,0,0,0,0,200,2.1,9,7,11.3,3600,9,999999999,200,0.1340,0,88,0.170,999.0,99.0 +2001,10,1,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,11.0,77,98700,0,0,351,0,0,0,0,0,0,0,180,2.1,9,8,11.3,2100,9,999999999,200,0.1340,0,88,0.170,999.0,99.0 +2001,10,2,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,14.1,10.5,79,98700,0,0,337,0,0,0,0,0,0,0,160,1.6,9,6,11.3,2850,9,999999999,189,0.1330,0,88,0.170,999.0,99.0 +2001,10,2,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,10.0,82,98600,0,0,326,0,0,0,0,0,0,0,140,1.0,9,4,11.3,3600,9,999999999,200,0.1330,0,88,0.170,999.0,99.0 +2001,10,2,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,10.0,88,98600,0,0,321,0,0,0,0,0,0,0,120,2.1,9,4,11.3,3600,9,999999999,200,0.1330,0,88,0.170,999.0,99.0 +2001,10,2,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,10.0,88,98600,0,0,315,0,0,0,0,0,0,0,140,1.5,5,2,11.3,77777,9,999999999,209,0.1330,0,88,0.170,999.0,99.0 +2001,10,2,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,10.0,94,98600,0,0,314,0,0,0,0,0,0,0,140,1.0,5,3,11.3,77777,9,999999999,220,0.1330,0,88,0.170,999.0,99.0 +2001,10,2,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,10.0,94,98700,0,0,307,0,0,0,0,0,0,0,130,1.0,2,1,11.3,77777,9,999999999,220,0.1330,0,88,0.170,999.0,99.0 +2001,10,2,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,10.0,100,98700,21,580,303,0,0,0,0,0,0,0,160,1.0,3,1,11.3,77777,9,999999999,229,0.1330,0,88,0.170,999.0,99.0 +2001,10,2,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,11.0,94,98800,235,1365,312,132,351,71,13400,24400,9100,1330,180,1.0,2,1,11.3,77777,9,999999999,240,0.1330,0,88,0.170,999.0,99.0 +2001,10,2,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,12.0,72,98800,483,1365,336,296,455,134,30600,42200,15600,2600,210,2.6,3,1,11.3,77777,9,999999999,240,0.1330,0,88,0.170,999.0,99.0 +2001,10,2,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,12.0,64,98900,695,1365,345,455,564,167,48300,56700,19300,3550,240,3.1,2,1,11.3,77777,9,999999999,250,0.1330,0,88,0.170,999.0,99.0 +2001,10,2,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,13.0,64,98900,856,1365,362,601,679,173,62700,68000,19900,4180,250,3.1,9,4,11.3,3000,9,999999999,259,0.1330,0,88,0.170,999.0,99.0 +2001,10,2,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,14.0,60,98900,955,1365,367,658,621,222,68200,62100,24600,5980,230,4.1,5,2,11.3,77777,9,999999999,259,0.1330,0,88,0.170,999.0,99.0 +2001,10,2,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,14.0,57,98800,985,1365,367,733,786,164,78000,80100,20000,4840,230,3.1,3,1,11.3,77777,9,999999999,270,0.1330,0,88,0.170,999.0,99.0 +2001,10,2,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.0,15.0,51,98700,944,1365,388,669,723,168,70800,73300,19900,4620,230,3.6,5,2,11.3,77777,9,999999999,259,0.1330,0,88,0.170,999.0,99.0 +2001,10,2,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,14.0,50,98700,834,1365,377,543,558,200,57900,57300,22700,4790,220,3.1,3,1,11.3,77777,9,999999999,250,0.1330,0,88,0.170,999.0,99.0 +2001,10,2,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.0,12.0,42,98700,664,1365,379,428,617,126,44400,60300,15000,2600,250,3.6,2,1,11.3,77777,9,999999999,250,0.1330,0,88,0.170,999.0,99.0 +2001,10,2,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.8,12.9,50,98700,445,1365,369,268,549,88,27500,49300,11400,1630,250,2.6,2,1,11.3,77777,9,999999999,240,0.1330,0,88,0.170,999.0,99.0 +2001,10,2,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,14.0,64,98700,193,1365,357,76,177,51,8000,10800,6500,950,240,1.5,2,1,11.3,77777,9,999999999,229,0.1330,0,88,0.170,999.0,99.0 +2001,10,2,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,14.0,68,98700,8,353,352,0,0,0,0,0,0,0,240,0.5,3,1,11.3,77777,9,999999999,229,0.1330,0,88,0.170,999.0,99.0 +2001,10,2,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,14.0,82,98700,0,0,338,0,0,0,0,0,0,0,240,1.5,2,1,11.3,77777,9,999999999,220,0.1330,0,88,0.170,999.0,99.0 +2001,10,2,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,14.0,82,98700,0,0,332,0,0,0,0,0,0,0,220,2.6,0,0,11.3,77777,9,999999999,209,0.1330,0,88,0.170,999.0,99.0 +2001,10,2,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,13.0,82,98700,0,0,326,0,0,0,0,0,0,0,220,2.6,0,0,11.3,77777,9,999999999,209,0.1330,0,88,0.170,999.0,99.0 +2001,10,2,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,13.0,88,98800,0,0,322,0,0,0,0,0,0,0,220,2.6,0,0,11.3,77777,9,999999999,200,0.1330,0,88,0.170,999.0,99.0 +2001,10,2,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,13.0,88,98800,0,0,322,0,0,0,0,0,0,0,190,2.1,0,0,11.3,77777,9,999999999,189,0.1330,0,88,0.170,999.0,99.0 +2001,10,3,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,12.0,82,98700,0,0,320,0,0,0,0,0,0,0,200,2.1,0,0,11.3,77777,9,999999999,189,0.1320,0,88,0.170,999.0,99.0 +2001,10,3,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,12.0,82,98800,0,0,320,0,0,0,0,0,0,0,200,1.5,0,0,11.3,77777,9,999999999,179,0.1320,0,88,0.170,999.0,99.0 +2001,10,3,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,11.0,82,98800,0,0,315,0,0,0,0,0,0,0,200,1.5,0,0,11.3,77777,9,999999999,179,0.1320,0,88,0.170,999.0,99.0 +2001,10,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,11.0,82,98800,0,0,315,0,0,0,0,0,0,0,200,2.1,0,0,11.3,77777,9,999999999,179,0.1320,0,88,0.170,999.0,99.0 +2001,10,3,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,11.0,82,98800,0,0,315,0,0,0,0,0,0,0,200,2.1,0,0,11.3,77777,9,999999999,170,0.1320,0,88,0.170,999.0,99.0 +2001,10,3,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,10.0,88,98800,0,0,305,0,0,0,0,0,0,0,200,1.0,0,0,11.3,77777,9,999999999,170,0.1320,0,88,0.170,999.0,99.0 +2001,10,3,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,12.0,88,98800,20,558,316,0,0,0,0,0,0,0,190,2.6,0,0,11.3,77777,9,999999999,170,0.1320,0,88,0.170,999.0,99.0 +2001,10,3,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,12.0,77,98900,231,1365,325,133,360,72,13400,24700,9300,1350,190,3.1,0,0,11.3,77777,9,999999999,170,0.1320,0,88,0.170,999.0,99.0 +2001,10,3,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,12.0,64,98900,478,1365,339,296,532,109,31200,49400,13900,2070,210,4.6,0,0,11.3,77777,9,999999999,160,0.1320,0,88,0.170,999.0,99.0 +2001,10,3,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,11.0,56,98900,690,1365,342,489,742,112,51400,73400,14200,2410,220,5.7,0,0,11.3,77777,9,999999999,160,0.1320,0,88,0.170,999.0,99.0 +2001,10,3,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,12.0,50,98900,851,1365,358,626,801,125,64800,79500,15100,2820,220,4.6,0,0,11.3,77777,9,999999999,160,0.1320,0,88,0.170,999.0,99.0 +2001,10,3,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,10.0,41,98800,949,1365,360,695,784,148,74200,80000,18400,4170,210,6.7,0,0,11.3,77777,9,999999999,150,0.1320,0,88,0.170,999.0,99.0 +2001,10,3,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,10.0,39,98800,979,1365,365,721,774,164,76600,78900,19900,4790,220,6.2,0,0,11.3,77777,9,999999999,150,0.1320,0,88,0.170,999.0,99.0 +2001,10,3,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.0,10.0,37,98700,937,1365,370,669,801,118,70700,80600,15300,3110,210,6.2,0,0,11.3,77777,9,999999999,150,0.1320,0,88,0.170,999.0,99.0 +2001,10,3,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.7,8.9,35,98700,828,1365,367,594,772,124,63200,78200,15700,3030,210,7.0,0,0,11.3,77777,9,999999999,150,0.1320,0,88,0.170,999.0,99.0 +2001,10,3,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,8.0,34,98600,657,1365,362,433,611,138,44700,59300,16100,2790,210,7.7,0,0,11.3,77777,9,999999999,150,0.1320,0,88,0.170,999.0,99.0 +2001,10,3,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,8.0,36,98600,438,1365,358,247,445,103,25900,40200,12900,1940,210,6.7,0,0,11.3,77777,9,999999999,150,0.1320,0,88,0.170,999.0,99.0 +2001,10,3,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,8.0,41,98600,186,1365,348,78,226,47,8000,13900,6100,850,200,5.1,0,0,11.3,77777,9,999999999,160,0.1320,0,88,0.170,999.0,99.0 +2001,10,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,7.0,43,98600,6,307,338,0,0,0,0,0,0,0,190,5.1,0,0,11.3,77777,9,999999999,160,0.1320,0,88,0.170,999.0,99.0 +2001,10,3,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,9.0,56,98600,0,0,331,0,0,0,0,0,0,0,210,3.1,0,0,11.3,77777,9,999999999,160,0.1320,0,88,0.170,999.0,99.0 +2001,10,3,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,9.0,63,98700,0,0,322,0,0,0,0,0,0,0,220,2.6,0,0,11.3,77777,9,999999999,160,0.1320,0,88,0.170,999.0,99.0 +2001,10,3,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,9.0,63,98700,0,0,322,0,0,0,0,0,0,0,200,2.6,0,0,11.3,77777,9,999999999,160,0.1320,0,88,0.170,999.0,99.0 +2001,10,3,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,9.0,56,98700,0,0,331,0,0,0,0,0,0,0,220,4.6,0,0,11.3,77777,9,999999999,160,0.1320,0,88,0.170,999.0,99.0 +2001,10,3,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,9.0,59,98700,0,0,326,0,0,0,0,0,0,0,220,4.1,0,0,11.3,77777,9,999999999,160,0.1320,0,88,0.170,999.0,99.0 +2001,10,4,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,9.0,59,98700,0,0,326,0,0,0,0,0,0,0,220,4.1,0,0,11.3,77777,9,999999999,160,0.1320,0,88,0.170,999.0,99.0 +2001,10,4,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,9.0,67,98700,0,0,317,0,0,0,0,0,0,0,190,3.1,0,0,11.3,77777,9,999999999,170,0.1320,0,88,0.170,999.0,99.0 +2001,10,4,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,9.0,67,98600,0,0,317,0,0,0,0,0,0,0,190,3.1,0,0,11.3,77777,9,999999999,170,0.1320,0,88,0.170,999.0,99.0 +2001,10,4,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,9.0,72,98600,0,0,323,0,0,0,0,0,0,0,200,2.6,2,2,11.3,77777,9,999999999,179,0.1320,0,88,0.170,999.0,99.0 +2001,10,4,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,9.0,72,98600,0,0,326,0,0,0,0,0,0,0,200,3.6,3,3,11.3,77777,9,999999999,179,0.1320,0,88,0.170,999.0,99.0 +2001,10,4,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,9.0,72,98700,0,0,323,0,0,0,0,0,0,0,190,3.6,2,2,11.3,77777,9,999999999,189,0.1320,0,88,0.170,999.0,99.0 +2001,10,4,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,9.0,77,98700,18,535,322,0,0,0,0,0,0,0,190,3.1,3,3,11.3,77777,9,999999999,189,0.1320,0,88,0.170,999.0,99.0 +2001,10,4,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,10.0,72,98700,226,1366,329,114,222,77,11800,14900,9300,1540,190,3.1,2,2,11.3,77777,9,999999999,200,0.1320,0,88,0.170,999.0,99.0 +2001,10,4,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,10.0,59,98800,474,1366,346,275,431,125,28600,39800,14700,2410,200,4.6,3,3,11.3,77777,9,999999999,209,0.1320,0,88,0.170,999.0,99.0 +2001,10,4,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,10.0,56,98800,685,1366,348,443,565,158,47100,56700,18600,3320,210,5.1,2,2,11.3,77777,9,999999999,209,0.1320,0,88,0.170,999.0,99.0 +2001,10,4,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,11.0,53,98800,846,1366,362,601,710,160,63000,71300,18700,3860,210,5.1,3,3,11.3,77777,9,999999999,220,0.1320,0,88,0.170,999.0,99.0 +2001,10,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,12.0,50,98800,944,1366,369,676,729,171,71400,73900,20200,4690,220,5.7,2,2,11.3,77777,9,999999999,220,0.1320,0,88,0.170,999.0,99.0 +2001,10,4,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,13.0,50,98700,973,1366,379,715,768,166,75900,78200,20000,4790,220,6.2,3,3,11.3,77777,9,999999999,229,0.1320,0,88,0.170,999.0,99.0 +2001,10,4,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,13.0,47,98600,931,1366,390,651,729,153,69200,74100,18500,4170,210,7.2,5,5,11.3,77777,9,999999999,229,0.1320,0,88,0.170,999.0,99.0 +2001,10,4,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,12.0,44,98600,821,1366,389,536,594,178,55600,59000,20000,4090,200,8.2,5,5,11.3,77777,9,999999999,229,0.1320,0,88,0.170,999.0,99.0 +2001,10,4,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,13.0,47,98600,650,1366,390,405,523,155,42900,52000,18000,3190,190,7.2,5,5,11.3,77777,9,999999999,229,0.1320,0,88,0.170,999.0,99.0 +2001,10,4,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,12.0,47,98500,431,1366,384,256,547,83,26400,48700,10900,1540,200,5.7,5,5,11.3,77777,9,999999999,229,0.1320,0,88,0.170,999.0,99.0 +2001,10,4,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,12.0,53,98500,179,1366,364,73,234,42,7600,14100,5700,750,190,4.1,2,2,11.3,77777,9,999999999,229,0.1320,0,88,0.170,999.0,99.0 +2001,10,4,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,11.0,56,98600,5,285,357,0,0,0,0,0,0,0,190,4.1,3,3,11.3,77777,9,999999999,240,0.1320,0,88,0.170,999.0,99.0 +2001,10,4,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,10.0,56,98600,0,0,348,0,0,0,0,0,0,0,200,3.1,2,2,11.3,77777,9,999999999,240,0.1320,0,88,0.170,999.0,99.0 +2001,10,4,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,10.0,59,98500,0,0,346,0,0,0,0,0,0,0,200,3.1,3,3,11.3,77777,9,999999999,240,0.1320,0,88,0.170,999.0,99.0 +2001,10,4,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,11.0,68,98500,0,0,339,0,0,0,0,0,0,0,200,2.6,2,2,11.3,77777,9,999999999,240,0.1320,0,88,0.170,999.0,99.0 +2001,10,4,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,11.0,72,98500,0,0,338,0,0,0,0,0,0,0,190,2.6,3,3,11.3,77777,9,999999999,240,0.1320,0,88,0.170,999.0,99.0 +2001,10,4,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,10.0,68,98500,0,0,333,0,0,0,0,0,0,0,160,2.6,2,2,11.3,77777,9,999999999,240,0.1320,0,88,0.170,999.0,99.0 +2001,10,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,10.0,72,98500,0,0,329,0,0,0,0,0,0,0,120,2.1,2,2,11.3,77777,9,999999999,250,0.1310,0,88,0.170,999.0,99.0 +2001,10,5,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,10.0,77,98500,0,0,352,0,0,0,0,0,0,0,140,2.6,9,9,11.3,7500,9,999999999,240,0.1310,0,88,0.170,999.0,99.0 +2001,10,5,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,10.0,82,98400,0,0,347,0,0,0,0,0,0,0,20,1.5,9,9,11.3,1500,9,999999999,240,0.1310,0,88,0.170,999.0,99.0 +2001,10,5,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,10.0,88,98400,0,0,343,0,0,0,0,0,0,0,40,1.0,9,9,11.3,1500,9,999999999,229,0.1310,0,88,0.170,999.0,99.0 +2001,10,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,10.0,82,98400,0,0,347,0,0,0,0,0,0,0,100,1.5,9,9,11.3,7500,9,999999999,229,0.1310,0,88,0.170,999.0,99.0 +2001,10,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,11.0,82,98400,0,0,353,0,0,0,0,0,0,0,160,2.6,9,9,11.3,3600,9,999999999,220,0.1310,0,88,0.170,999.0,99.0 +2001,10,5,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,11.0,77,98400,16,513,369,0,0,0,0,0,0,0,180,2.6,10,10,11.3,1500,9,999999999,220,0.1310,0,88,0.170,999.0,99.0 +2001,10,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,12.0,72,98400,222,1367,370,116,141,93,12300,9800,10700,1980,190,2.1,9,9,11.3,3900,9,999999999,209,0.1310,0,88,0.170,999.0,99.0 +2001,10,5,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,13.0,73,98300,469,1367,387,51,0,51,6200,0,6200,2260,200,3.6,10,10,11.3,1500,9,999999999,209,0.1310,0,88,0.170,999.0,99.0 +2001,10,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,13.0,73,98300,680,1367,376,145,0,145,16900,0,16900,6280,190,4.1,9,9,11.3,1500,9,999999999,200,0.1310,0,88,0.170,999.0,99.0 +2001,10,5,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,13.0,64,98300,841,1367,397,190,0,190,22300,0,22300,8580,210,6.2,10,10,11.3,1500,9,999999999,200,0.1310,0,88,0.170,999.0,99.0 +2001,10,5,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,13.0,57,98200,938,1367,408,313,24,297,36100,2200,34600,12560,200,7.7,10,10,11.3,1500,9,999999999,200,0.1310,0,88,0.170,999.0,99.0 +2001,10,5,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,14.0,60,98100,967,1367,410,438,132,345,47800,14000,37900,10570,210,7.7,10,10,11.3,1500,9,999999999,189,0.1310,0,88,0.170,999.0,99.0 +2001,10,5,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,15.0,69,97900,925,1367,405,135,0,135,16500,0,16500,6740,180,6.2,10,10,11.3,1050,9,999999999,179,0.1310,0,88,0.170,999.0,99.0 +2001,10,5,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,14.0,64,97800,815,1367,404,171,0,171,20200,0,20200,7780,200,7.7,10,10,11.3,1050,9,999999999,179,0.1310,0,88,0.170,999.0,99.0 +2001,10,5,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,13.0,88,97900,644,1367,371,126,0,126,14700,0,14700,5480,300,6.2,10,10,3.2,750,9,999999999,170,0.1310,0,88,0.170,1.0,3.0 +2001,10,5,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,11.0,100,97900,424,1367,349,80,0,80,9200,0,9200,3200,310,4.6,10,10,4.0,300,9,999999999,160,0.1310,0,88,0.170,999.0,99.0 +2001,10,5,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,10.0,100,97900,172,1367,343,29,0,29,3300,0,3300,1060,340,3.6,10,10,4.8,270,9,999999999,160,0.1310,0,88,0.170,999.0,99.0 +2001,10,5,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,10.0,100,97800,4,239,343,0,0,0,0,0,0,0,350,3.1,10,10,6.4,270,9,999999999,150,0.1310,0,88,0.170,13.0,6.0 +2001,10,5,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,10.0,100,97900,0,0,343,0,0,0,0,0,0,0,330,5.1,10,10,8.0,330,9,999999999,139,0.1310,0,88,0.170,999.0,99.0 +2001,10,5,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,7.0,93,98000,0,0,330,0,0,0,0,0,0,0,330,7.7,10,10,8.0,360,9,999999999,139,0.1310,0,88,0.170,999.0,99.0 +2001,10,5,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.0,6.0,93,98200,0,0,324,0,0,0,0,0,0,0,320,5.1,10,10,9.7,450,9,999999999,129,0.1310,0,88,0.170,5.0,3.0 +2001,10,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,5.0,93,98300,0,0,318,0,0,0,0,0,0,0,320,6.2,10,10,9.7,450,9,999999999,120,0.1310,0,88,0.170,999.0,99.0 +2001,10,5,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,5.0,93,98400,0,0,318,0,0,0,0,0,0,0,310,5.7,10,10,11.3,450,9,999999999,110,0.1310,0,88,0.170,999.0,99.0 +2001,10,6,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.0,5.0,93,98500,0,0,318,0,0,0,0,0,0,0,300,4.6,10,10,11.3,2400,9,999999999,110,0.1300,0,88,0.170,7.0,6.0 +2001,10,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,4.0,93,98500,0,0,287,0,0,0,0,0,0,0,290,3.6,5,5,11.3,77777,9,999999999,100,0.1300,0,88,0.170,999.0,99.0 +2001,10,6,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,4.0,93,98600,0,0,283,0,0,0,0,0,0,0,250,2.6,3,3,11.3,77777,9,999999999,100,0.1300,0,88,0.170,999.0,99.0 +2001,10,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,3.0,93,98600,0,0,275,0,0,0,0,0,0,0,210,2.1,2,2,11.3,77777,9,999999999,100,0.1300,0,88,0.170,999.0,99.0 +2001,10,6,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,3.0,93,98700,0,0,266,0,0,0,0,0,0,0,240,2.6,0,0,11.3,77777,9,999999999,89,0.1300,0,88,0.170,999.0,99.0 +2001,10,6,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,3.0,100,98800,0,0,262,0,0,0,0,0,0,0,210,2.1,0,0,11.3,77777,9,999999999,89,0.1300,0,88,0.170,999.0,99.0 +2001,10,6,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.0,3.0,100,98800,15,490,262,0,0,0,0,0,0,0,220,2.6,0,0,11.3,77777,9,999999999,89,0.1300,0,88,0.170,21.0,24.0 +2001,10,6,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,6.0,100,99000,217,1368,277,118,262,76,12100,17100,9400,1530,230,2.6,0,0,11.3,77777,9,999999999,80,0.1300,0,88,0.170,999.0,99.0 +2001,10,6,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,5.0,81,99000,464,1368,284,284,508,111,29800,46700,13900,2110,260,3.1,0,0,11.3,77777,9,999999999,80,0.1300,0,88,0.170,999.0,99.0 +2001,10,6,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,3.0,62,99100,675,1368,290,470,712,117,49200,70000,14500,2470,270,4.6,0,0,11.3,77777,9,999999999,69,0.1300,0,88,0.170,999.0,99.0 +2001,10,6,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,0.0,47,99100,835,1368,308,607,764,139,64200,77100,17000,3370,280,7.7,5,5,11.3,77777,9,999999999,69,0.1300,0,88,0.170,999.0,99.0 +2001,10,6,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,-2.0,39,99000,933,1368,298,652,663,198,68000,66600,22400,5220,280,6.7,2,2,11.3,77777,9,999999999,69,0.1300,0,88,0.170,999.0,99.0 +2001,10,6,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,-2.0,37,99000,961,1368,306,630,516,267,66700,53500,29000,7590,280,7.7,3,3,11.3,77777,9,999999999,60,0.1300,0,88,0.170,999.0,99.0 +2001,10,6,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,-3.0,36,99000,919,1368,297,633,705,158,67000,71500,18800,4210,260,8.2,2,2,11.3,77777,9,999999999,69,0.1300,0,88,0.170,999.0,99.0 +2001,10,6,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,-2.0,37,99000,808,1368,306,564,700,149,59100,70100,17600,3460,280,8.2,3,3,11.3,77777,9,999999999,69,0.1300,0,88,0.170,999.0,99.0 +2001,10,6,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,-3.0,36,98900,637,1368,297,437,733,94,46200,72000,12500,1980,280,5.7,2,2,11.3,77777,9,999999999,69,0.1300,0,88,0.170,999.0,99.0 +2001,10,6,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,-3.0,36,98900,417,1368,300,254,603,70,26400,53600,10000,1320,270,6.7,3,3,11.3,77777,9,999999999,80,0.1300,0,88,0.170,999.0,99.0 +2001,10,6,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,-1.0,46,99000,165,1368,295,70,274,37,7300,15800,5400,660,260,3.6,2,2,11.3,77777,9,999999999,80,0.1300,0,88,0.170,999.0,99.0 +2001,10,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,-1.0,56,99000,3,194,286,0,0,0,0,0,0,0,250,2.6,3,3,11.3,77777,9,999999999,89,0.1300,0,88,0.170,999.0,99.0 +2001,10,6,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,0.0,61,99100,0,0,284,0,0,0,0,0,0,0,260,1.5,2,2,11.3,77777,9,999999999,89,0.1300,0,88,0.170,999.0,99.0 +2001,10,6,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,0.0,70,99100,0,0,267,0,0,0,0,0,0,0,190,2.1,0,0,11.3,77777,9,999999999,89,0.1300,0,88,0.170,999.0,99.0 +2001,10,6,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,0.0,70,99100,0,0,267,0,0,0,0,0,0,0,250,3.1,0,0,11.3,77777,9,999999999,100,0.1300,0,88,0.170,999.0,99.0 +2001,10,6,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-1.0,64,99200,0,0,266,0,0,0,0,0,0,0,290,4.1,0,0,11.3,77777,9,999999999,100,0.1300,0,88,0.170,999.0,99.0 +2001,10,6,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-1.0,69,99200,0,0,262,0,0,0,0,0,0,0,310,2.6,0,0,11.3,77777,9,999999999,100,0.1300,0,88,0.170,999.0,99.0 +2001,10,7,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,-1.0,74,99200,0,0,259,0,0,0,0,0,0,0,280,2.1,0,0,11.3,77777,9,999999999,110,0.1290,0,88,0.170,999.0,99.0 +2001,10,7,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-1.0,80,99300,0,0,255,0,0,0,0,0,0,0,210,1.0,0,0,11.3,77777,9,999999999,110,0.1290,0,88,0.170,999.0,99.0 +2001,10,7,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-1.0,86,99300,0,0,251,0,0,0,0,0,0,0,180,2.1,0,0,11.3,77777,9,999999999,100,0.1290,0,88,0.170,999.0,99.0 +2001,10,7,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-1.0,86,99300,0,0,251,0,0,0,0,0,0,0,190,2.1,0,0,11.3,77777,9,999999999,100,0.1290,0,88,0.170,999.0,99.0 +2001,10,7,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-1.0,92,99400,0,0,248,0,0,0,0,0,0,0,200,1.0,0,0,11.3,77777,9,999999999,100,0.1290,0,88,0.170,999.0,99.0 +2001,10,7,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-2.0,92,99500,0,0,243,0,0,0,0,0,0,0,200,2.1,0,0,11.3,77777,9,999999999,100,0.1290,0,88,0.170,999.0,99.0 +2001,10,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-1.0,92,99600,14,468,248,0,0,0,0,0,0,0,210,2.6,0,0,11.3,77777,9,999999999,89,0.1290,0,88,0.170,999.0,99.0 +2001,10,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,0.0,87,99700,213,1369,256,109,264,68,11000,17300,8300,1280,270,1.5,0,0,11.3,77777,9,999999999,89,0.1290,0,88,0.170,999.0,99.0 +2001,10,7,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,0.0,75,99800,460,1369,263,284,527,107,29900,48300,13700,2020,330,2.6,0,0,11.3,77777,9,999999999,89,0.1290,0,88,0.170,999.0,99.0 +2001,10,7,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,0.0,65,99800,670,1369,276,457,670,128,47500,65500,15300,2650,310,0.5,3,1,11.3,77777,9,999999999,89,0.1290,0,88,0.170,999.0,99.0 +2001,10,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,0.0,57,99900,830,1369,284,595,752,137,62900,75800,16700,3310,300,2.1,2,1,11.3,77777,9,999999999,89,0.1290,0,88,0.170,999.0,99.0 +2001,10,7,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,-3.0,41,99800,927,1369,285,664,735,164,70100,74500,19500,4400,280,2.1,3,1,11.3,77777,9,999999999,80,0.1290,0,88,0.170,999.0,99.0 +2001,10,7,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,-1.0,43,99800,955,1369,295,696,738,180,73400,74700,21100,4980,260,2.6,2,1,11.3,77777,9,999999999,80,0.1290,0,88,0.170,999.0,99.0 +2001,10,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,-3.0,39,99700,912,1369,289,674,788,147,71600,80100,18100,3910,340,2.1,3,1,11.3,77777,9,999999999,89,0.1290,0,88,0.170,999.0,99.0 +2001,10,7,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,-2.0,37,99700,801,1369,299,416,249,269,45200,26000,30000,7180,320,1.0,2,1,11.3,77777,9,999999999,100,0.1290,0,88,0.170,999.0,99.0 +2001,10,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,-2.0,37,99600,630,1369,299,409,545,157,43000,53800,18200,3210,260,3.6,3,1,11.3,77777,9,999999999,100,0.1290,0,88,0.170,999.0,99.0 +2001,10,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,-2.0,37,99600,410,1369,299,248,596,69,25800,52700,9900,1300,220,2.6,2,1,11.3,77777,9,999999999,110,0.1290,0,88,0.170,999.0,99.0 +2001,10,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,-1.0,46,99600,158,1369,303,62,228,35,6400,12800,4900,620,270,2.1,10,5,11.3,7500,9,999999999,120,0.1290,0,88,0.170,999.0,99.0 +2001,10,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,0.0,53,99600,2,171,300,0,0,0,0,0,0,0,20,1.5,10,5,11.3,7500,9,999999999,129,0.1290,0,88,0.170,999.0,99.0 +2001,10,7,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,3.0,81,99700,0,0,290,0,0,0,0,0,0,0,180,1.0,10,5,11.3,7500,9,999999999,129,0.1290,0,88,0.170,999.0,99.0 +2001,10,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,1.0,75,99700,0,0,284,0,0,0,0,0,0,0,30,1.5,10,5,11.3,7500,9,999999999,139,0.1290,0,88,0.170,999.0,99.0 +2001,10,7,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,2.0,81,99700,0,0,281,0,0,0,0,0,0,0,50,1.5,5,3,11.3,77777,9,999999999,150,0.1290,0,88,0.170,999.0,99.0 +2001,10,7,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,2.0,81,99700,0,0,278,0,0,0,0,0,0,0,30,1.0,9,2,11.3,2400,9,999999999,150,0.1290,0,88,0.170,999.0,99.0 +2001,10,7,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,2.0,81,99700,0,0,281,0,0,0,0,0,0,0,30,0.5,9,3,11.3,2400,9,999999999,160,0.1290,0,88,0.170,999.0,99.0 +2001,10,8,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,2.0,81,99700,0,0,288,0,0,0,0,0,0,0,30,1.0,9,6,11.3,2400,9,999999999,170,0.1280,0,88,0.170,999.0,99.0 +2001,10,8,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,1.0,75,99800,0,0,286,0,0,0,0,0,0,0,20,2.1,9,6,11.3,2400,9,999999999,170,0.1280,0,88,0.170,999.0,99.0 +2001,10,8,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,4.0,0.0,75,99800,0,0,277,0,0,0,0,0,0,0,20,2.1,6,4,11.3,12200,9,999999999,170,0.1280,0,88,0.170,999.0,99.0 +2001,10,8,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,-1.0,74,99900,0,0,264,0,0,0,0,0,0,0,20,2.1,2,1,11.3,77777,9,999999999,160,0.1280,0,88,0.170,999.0,99.0 +2001,10,8,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,-1.0,74,99900,0,0,270,0,0,0,0,0,0,0,40,1.5,5,3,11.3,77777,9,999999999,160,0.1280,0,88,0.170,999.0,99.0 +2001,10,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,0.0,75,100000,0,0,281,0,0,0,0,0,0,0,50,1.5,9,6,11.3,1800,9,999999999,160,0.1280,0,88,0.170,999.0,99.0 +2001,10,8,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,3.9,-0.8,71,100100,12,445,276,0,0,0,0,0,0,0,70,2.1,7,4,11.3,11900,9,999999999,160,0.1280,0,88,0.170,999.0,99.0 +2001,10,8,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-1.0,64,100200,208,1369,275,88,114,71,9500,7800,8300,1510,80,2.6,5,2,11.3,77777,9,999999999,160,0.1280,0,88,0.170,999.0,99.0 +2001,10,8,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,-1.0,56,100200,455,1369,293,248,356,130,26400,33300,15300,2640,100,2.6,9,6,11.3,2100,9,999999999,160,0.1280,0,88,0.170,999.0,99.0 +2001,10,8,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,1.0,54,100300,665,1369,308,451,621,148,46300,60100,17000,2960,110,3.6,9,6,11.3,7500,9,999999999,160,0.1280,0,88,0.170,999.0,99.0 +2001,10,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,1.0,47,100300,825,1369,316,564,674,157,59000,67500,18300,3690,110,3.6,9,6,11.3,7500,9,999999999,160,0.1280,0,88,0.170,999.0,99.0 +2001,10,8,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,2.0,44,100200,922,1369,327,670,754,161,70800,76400,19200,4290,150,3.1,9,6,11.3,7500,9,999999999,160,0.1280,0,88,0.170,999.0,99.0 +2001,10,8,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,2.0,41,100200,949,1369,331,672,672,205,70100,67500,23100,5510,120,4.1,9,6,11.3,7500,9,999999999,150,0.1280,0,88,0.170,999.0,99.0 +2001,10,8,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,3.0,42,100100,906,1369,337,633,675,185,66100,67800,21100,4720,180,3.1,9,6,11.3,7500,9,999999999,150,0.1280,0,88,0.170,999.0,99.0 +2001,10,8,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,2.0,39,100100,795,1369,336,404,231,269,43900,24100,29900,7150,160,4.6,9,6,11.3,7500,9,999999999,150,0.1280,0,88,0.170,999.0,99.0 +2001,10,8,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,3.0,42,100000,623,1369,337,299,147,232,32200,14800,25500,5620,150,3.6,9,6,11.3,7500,9,999999999,139,0.1280,0,88,0.170,999.0,99.0 +2001,10,8,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,3.0,42,100000,403,1369,329,178,176,126,19300,15900,14600,2810,140,3.1,5,3,11.3,77777,9,999999999,139,0.1280,0,88,0.170,999.0,99.0 +2001,10,8,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,3.0,47,100000,151,1369,328,60,173,41,6200,9400,5100,750,120,2.6,9,6,11.3,7500,9,999999999,139,0.1280,0,88,0.170,999.0,99.0 +2001,10,8,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,3.0,54,100000,1,126,311,0,0,0,0,0,0,0,130,2.6,5,3,11.3,77777,9,999999999,129,0.1280,0,88,0.170,999.0,99.0 +2001,10,8,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,3.0,58,99900,0,0,304,0,0,0,0,0,0,0,120,3.1,5,2,11.3,77777,9,999999999,129,0.1280,0,88,0.170,999.0,99.0 +2001,10,8,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,3.0,62,99900,0,0,295,0,0,0,0,0,0,0,130,2.6,3,1,11.3,77777,9,999999999,129,0.1280,0,88,0.170,999.0,99.0 +2001,10,8,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,2.0,61,99900,0,0,285,0,0,0,0,0,0,0,120,3.1,0,0,11.3,77777,9,999999999,120,0.1280,0,88,0.170,999.0,99.0 +2001,10,8,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,2.0,61,99900,0,0,285,0,0,0,0,0,0,0,80,1.5,0,0,11.3,77777,9,999999999,120,0.1280,0,88,0.170,999.0,99.0 +2001,10,8,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,2.0,66,99900,0,0,281,0,0,0,0,0,0,0,130,1.5,0,0,11.3,77777,9,999999999,120,0.1280,0,88,0.170,999.0,99.0 +2001,10,9,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,1.0,66,99900,0,0,276,0,0,0,0,0,0,0,130,1.5,0,0,11.3,77777,9,999999999,110,0.1270,0,88,0.170,999.0,99.0 +2001,10,9,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,1.0,66,99900,0,0,276,0,0,0,0,0,0,0,120,2.6,0,0,11.3,77777,9,999999999,120,0.1270,0,88,0.170,999.0,99.0 +2001,10,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,1.0,70,99900,0,0,277,0,0,0,0,0,0,0,130,2.1,2,1,11.3,77777,9,999999999,129,0.1270,0,88,0.170,999.0,99.0 +2001,10,9,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,1.0,70,99900,0,0,272,0,0,0,0,0,0,0,110,2.1,0,0,11.3,77777,9,999999999,139,0.1270,0,88,0.170,999.0,99.0 +2001,10,9,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,1.0,75,99900,0,0,273,0,0,0,0,0,0,0,120,1.0,2,1,11.3,77777,9,999999999,150,0.1270,0,88,0.170,999.0,99.0 +2001,10,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,1.0,70,100000,0,0,277,0,0,0,0,0,0,0,130,1.5,3,1,11.3,77777,9,999999999,160,0.1270,0,88,0.170,999.0,99.0 +2001,10,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,1.0,70,100000,11,422,277,0,0,0,0,0,0,0,140,1.0,2,1,11.3,77777,9,999999999,170,0.1270,0,88,0.170,999.0,99.0 +2001,10,9,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,2.0,70,100100,203,1370,282,113,306,67,11300,19600,8400,1260,140,2.1,3,1,11.3,77777,9,999999999,179,0.1270,0,88,0.170,999.0,99.0 +2001,10,9,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,3.0,62,100100,450,1370,295,271,490,110,28400,44600,13700,2080,150,4.1,2,1,11.3,77777,9,999999999,189,0.1270,0,88,0.170,999.0,99.0 +2001,10,9,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,5.0,55,100100,660,1370,315,451,670,127,46800,65300,15200,2610,160,3.6,3,1,11.3,77777,9,999999999,200,0.1270,0,88,0.170,999.0,99.0 +2001,10,9,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,3.0,39,100000,819,1370,326,576,728,139,60700,73200,16800,3300,180,5.7,2,1,11.3,77777,9,999999999,209,0.1270,0,88,0.170,999.0,99.0 +2001,10,9,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,4.0,39,100000,916,1370,331,658,742,161,69600,75100,19200,4250,190,6.2,3,1,11.3,77777,9,999999999,220,0.1270,0,88,0.170,999.0,99.0 +2001,10,9,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,6.0,40,99900,943,1370,343,696,798,145,71900,79500,17100,3550,210,4.6,2,1,11.3,77777,9,999999999,240,0.1270,0,88,0.170,999.0,99.0 +2001,10,9,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,6.0,40,99900,900,1370,357,644,806,113,67900,80900,14700,2840,190,5.7,5,5,11.3,77777,9,999999999,229,0.1270,0,88,0.170,999.0,99.0 +2001,10,9,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,5.0,37,99800,788,1370,355,540,653,164,56100,64800,18800,3660,190,6.7,5,5,11.3,77777,9,999999999,220,0.1270,0,88,0.170,999.0,99.0 +2001,10,9,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,5.0,37,99700,616,1370,355,375,492,153,39500,48400,17600,3100,170,6.7,5,5,11.3,77777,9,999999999,209,0.1270,0,88,0.170,999.0,99.0 +2001,10,9,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,4.0,35,99700,396,1370,354,232,543,74,23800,47200,10100,1370,160,4.6,5,5,11.3,77777,9,999999999,200,0.1270,0,88,0.170,999.0,99.0 +2001,10,9,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,5.0,42,99700,144,1370,346,55,204,34,5800,10800,4600,610,170,2.6,5,5,11.3,77777,9,999999999,189,0.1270,0,88,0.170,999.0,99.0 +2001,10,9,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,5.0,48,99600,1,103,336,0,0,0,0,0,0,0,160,1.0,5,5,11.3,77777,9,999999999,179,0.1270,0,88,0.170,999.0,99.0 +2001,10,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,5.0,55,99700,0,0,339,0,0,0,0,0,0,0,140,2.1,9,8,11.3,7500,9,999999999,170,0.1270,0,88,0.170,999.0,99.0 +2001,10,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,6.0,62,99700,0,0,330,0,0,0,0,0,0,0,140,1.5,9,7,11.3,7500,9,999999999,160,0.1270,0,88,0.170,999.0,99.0 +2001,10,9,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,5.0,62,99600,0,0,318,0,0,0,0,0,0,0,160,1.0,5,5,11.3,77777,9,999999999,150,0.1270,0,88,0.170,999.0,99.0 +2001,10,9,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,6.0,67,99600,0,0,319,0,0,0,0,0,0,0,140,1.5,5,5,11.3,77777,9,999999999,139,0.1270,0,88,0.170,999.0,99.0 +2001,10,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,6.0,71,99600,0,0,326,0,0,0,0,0,0,0,170,1.0,9,8,11.3,7500,9,999999999,139,0.1270,0,88,0.170,999.0,99.0 +2001,10,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,6.0,67,99600,0,0,338,0,0,0,0,0,0,0,140,1.0,9,9,11.3,7500,9,999999999,129,0.1260,0,88,0.170,999.0,99.0 +2001,10,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,6.0,71,99600,0,0,307,0,0,0,0,0,0,0,150,2.1,2,2,11.3,77777,9,999999999,129,0.1260,0,88,0.170,999.0,99.0 +2001,10,10,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,6.0,71,99500,0,0,310,0,0,0,0,0,0,0,180,2.1,3,3,11.3,77777,9,999999999,139,0.1260,0,88,0.170,999.0,99.0 +2001,10,10,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,6.0,71,99500,0,0,307,0,0,0,0,0,0,0,170,2.6,2,2,11.3,77777,9,999999999,139,0.1260,0,88,0.170,999.0,99.0 +2001,10,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,7.0,76,99500,0,0,311,0,0,0,0,0,0,0,180,1.5,3,3,11.3,77777,9,999999999,150,0.1260,0,88,0.170,999.0,99.0 +2001,10,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,7.0,82,99500,0,0,311,0,0,0,0,0,0,0,180,2.6,5,5,11.3,77777,9,999999999,150,0.1260,0,88,0.170,999.0,99.0 +2001,10,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,8.0,82,99600,10,400,336,0,0,0,0,0,0,0,180,2.6,9,9,11.3,8400,9,999999999,160,0.1260,0,88,0.170,999.0,99.0 +2001,10,10,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,8.0,76,99600,199,1371,340,80,77,69,8600,5100,7800,1460,190,2.6,9,9,11.3,8400,9,999999999,160,0.1260,0,88,0.170,999.0,99.0 +2001,10,10,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,8.0,63,99700,445,1371,355,228,287,134,24000,26600,15300,2750,190,5.1,9,9,11.3,8400,9,999999999,170,0.1260,0,88,0.170,999.0,99.0 +2001,10,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,9.0,59,99700,655,1371,366,445,627,144,45700,60600,16700,2870,200,6.7,9,9,11.3,7500,9,999999999,170,0.1260,0,88,0.170,999.0,99.0 +2001,10,10,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,9.0,52,99600,814,1371,376,570,674,169,59300,67100,19300,3870,200,6.7,9,9,11.3,7500,9,999999999,179,0.1260,0,88,0.170,999.0,99.0 +2001,10,10,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,10.0,53,99600,910,1371,383,584,458,279,61000,47200,29600,7440,210,7.2,9,9,11.3,7500,9,999999999,179,0.1260,0,88,0.170,999.0,99.0 +2001,10,10,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,10.0,49,99500,937,1371,388,672,666,215,69700,66600,24000,5610,210,6.2,9,9,11.3,7500,9,999999999,179,0.1260,0,88,0.170,999.0,99.0 +2001,10,10,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,11.0,50,99400,893,1371,395,615,723,143,65400,73400,17400,3710,200,6.2,9,9,11.3,7500,9,999999999,179,0.1260,0,88,0.170,999.0,99.0 +2001,10,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,11.0,53,99300,782,1371,389,523,564,201,55300,57500,22500,4590,200,4.1,9,9,11.3,7500,9,999999999,179,0.1260,0,88,0.170,999.0,99.0 +2001,10,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,10.0,49,99200,609,1371,399,130,0,130,15100,0,15100,5460,180,3.6,10,10,11.3,4500,9,999999999,179,0.1260,0,88,0.170,999.0,99.0 +2001,10,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,10.0,53,99200,389,1371,383,74,0,74,8500,0,8500,2910,160,3.6,9,9,11.3,4500,9,999999999,179,0.1260,0,88,0.170,999.0,99.0 +2001,10,10,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,10.0,53,99200,137,1371,383,25,0,25,2900,0,2900,890,170,4.1,9,9,11.3,7500,9,999999999,179,0.1260,0,88,0.170,999.0,99.0 +2001,10,10,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,10.0,56,99200,0,57,378,0,0,0,0,0,0,0,170,2.6,9,9,11.3,3600,9,999999999,170,0.1260,0,88,0.170,999.0,99.0 +2001,10,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,10.0,63,99200,0,0,367,0,0,0,0,0,0,0,160,2.1,9,9,11.3,3300,9,999999999,170,0.1260,0,88,0.170,999.0,99.0 +2001,10,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,10.0,59,99200,0,0,372,0,0,0,0,0,0,0,170,3.1,9,9,11.3,3300,9,999999999,170,0.1260,0,88,0.170,999.0,99.0 +2001,10,10,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,10.0,59,99100,0,0,372,0,0,0,0,0,0,0,170,4.1,9,9,11.3,3600,9,999999999,170,0.1260,0,88,0.170,999.0,99.0 +2001,10,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,10.0,59,99100,0,0,372,0,0,0,0,0,0,0,170,5.1,9,9,11.3,3600,9,999999999,170,0.1260,0,88,0.170,999.0,99.0 +2001,10,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,10.0,59,99100,0,0,352,0,0,0,0,0,0,0,170,5.1,5,5,11.3,77777,9,999999999,160,0.1260,0,88,0.170,999.0,99.0 +2001,10,11,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,10.0,59,99100,0,0,372,0,0,0,0,0,0,0,170,5.7,9,9,11.3,1500,9,999999999,160,0.1250,0,88,0.170,999.0,99.0 +2001,10,11,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,11.0,64,99100,0,0,384,0,0,0,0,0,0,0,190,5.1,10,10,11.3,1500,9,999999999,160,0.1250,0,88,0.170,999.0,99.0 +2001,10,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,11.0,64,99100,0,0,384,0,0,0,0,0,0,0,180,4.6,10,10,11.3,1350,9,999999999,160,0.1250,0,88,0.170,999.0,99.0 +2001,10,11,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,12.0,72,99100,0,0,380,0,0,0,0,0,0,0,180,4.6,10,10,11.3,1200,9,999999999,170,0.1250,0,88,0.170,999.0,99.0 +2001,10,11,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,12.0,72,99100,0,0,380,0,0,0,0,0,0,0,190,2.6,10,10,11.3,1350,9,999999999,170,0.1250,0,88,0.170,999.0,99.0 +2001,10,11,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,12.0,72,99200,0,0,380,0,0,0,0,0,0,0,190,3.1,10,10,11.3,1050,9,999999999,170,0.1250,0,88,0.170,999.0,99.0 +2001,10,11,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.0,13.0,82,99200,9,377,376,0,0,0,0,0,0,0,190,2.6,10,10,11.3,1050,9,999999999,170,0.1250,0,88,0.170,0.0,6.0 +2001,10,11,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,13.0,77,99200,194,1372,381,23,0,23,2700,0,2700,900,190,4.1,10,10,11.3,1050,9,999999999,170,0.1250,0,88,0.170,999.0,99.0 +2001,10,11,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,13.0,77,99200,440,1372,381,74,0,74,8600,0,8600,3050,190,4.6,10,10,11.3,1050,9,999999999,170,0.1250,0,88,0.170,999.0,99.0 +2001,10,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.0,14.0,77,99200,650,1372,388,100,0,100,11900,0,11900,4540,200,5.7,10,10,11.3,1050,9,999999999,170,0.1250,0,88,0.170,0.0,3.0 +2001,10,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,14.0,77,99200,808,1372,388,127,0,127,15300,0,15300,6060,200,5.7,10,10,11.3,1050,9,999999999,170,0.1250,0,88,0.170,999.0,99.0 +2001,10,11,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,14.0,73,99200,904,1372,393,178,0,178,21200,0,21200,8410,210,4.6,10,10,11.3,1050,9,999999999,170,0.1250,0,88,0.170,999.0,99.0 +2001,10,11,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,14.0,68,99100,931,1372,399,186,0,186,22200,0,22200,8830,200,5.1,10,10,11.3,1050,9,999999999,170,0.1250,0,88,0.170,0.0,6.0 +2001,10,11,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.0,14.5,66,99000,887,1372,405,176,0,176,20900,0,20900,8270,190,4.4,10,10,11.3,1100,9,999999999,189,0.1250,0,88,0.170,999.0,99.0 +2001,10,11,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.7,15.2,67,98900,775,1372,410,153,0,153,18100,0,18100,6950,190,3.8,10,10,11.3,1150,9,999999999,200,0.1250,0,88,0.170,999.0,99.0 +2001,10,11,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,16.0,69,98900,603,1372,412,157,6,155,18000,500,17800,6190,180,3.1,10,10,11.3,1200,9,999999999,209,0.1250,0,88,0.170,999.0,99.0 +2001,10,11,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,16.0,78,98800,382,1372,401,88,0,88,10000,0,10000,3280,300,1.0,10,10,11.3,1200,9,999999999,220,0.1250,0,88,0.170,999.0,99.0 +2001,10,11,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,16.0,88,98800,131,1372,390,19,0,19,2200,0,2200,700,210,0.5,10,10,11.3,1200,9,999999999,229,0.1250,0,88,0.170,999.0,99.0 +2001,10,11,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.0,16.0,94,98800,0,34,385,0,0,0,0,0,0,0,30,1.5,10,10,11.3,2100,9,999999999,240,0.1250,0,88,0.170,0.0,6.0 +2001,10,11,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,16.0,88,98700,0,0,390,0,0,0,0,0,0,0,250,3.6,10,10,11.3,1500,9,999999999,250,0.1250,0,88,0.170,999.0,99.0 +2001,10,11,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,16.0,94,98700,0,0,385,0,0,0,0,0,0,0,160,1.5,10,10,11.3,1500,9,999999999,259,0.1250,0,88,0.170,999.0,99.0 +2001,10,11,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.0,16.0,94,98600,0,0,385,0,0,0,0,0,0,0,70,1.0,10,10,11.3,2100,9,999999999,270,0.1250,0,88,0.170,1.0,3.0 +2001,10,11,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,16.0,100,98600,0,0,380,0,0,0,0,0,0,0,20,1.0,10,10,9.7,1800,9,999999999,279,0.1250,0,88,0.170,999.0,99.0 +2001,10,11,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.9,15.9,100,98500,0,0,379,0,0,0,0,0,0,0,70,1.6,10,10,9.7,1650,9,999999999,300,0.1250,0,88,0.170,999.0,99.0 +2001,10,12,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.0,16.0,100,98400,0,0,369,0,0,0,0,0,0,0,110,2.1,10,9,11.3,1500,9,999999999,309,0.1240,0,88,0.170,4.0,6.0 +2001,10,12,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,15.0,94,98400,0,0,368,0,0,0,0,0,0,0,120,4.1,10,9,9.7,1500,9,999999999,300,0.1240,0,88,0.170,999.0,99.0 +2001,10,12,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,15.0,100,98300,0,0,363,0,0,0,0,0,0,0,140,6.2,10,9,9.7,1500,9,999999999,290,0.1240,0,88,0.170,999.0,99.0 +2001,10,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.0,15.0,94,98200,0,0,368,0,0,0,0,0,0,0,140,6.2,10,9,11.3,900,9,999999999,290,0.1240,0,88,0.170,7.0,3.0 +2001,10,12,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,15.0,94,98200,0,0,368,0,0,0,0,0,0,0,150,6.2,10,9,8.0,600,9,999999999,279,0.1240,0,88,0.170,999.0,99.0 +2001,10,12,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,15.0,100,98300,0,0,363,0,0,0,0,0,0,0,160,4.6,10,9,8.0,540,9,999999999,279,0.1240,0,88,0.170,999.0,99.0 +2001,10,12,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,15.0,100,98200,7,355,363,0,0,0,0,0,0,0,160,6.2,10,9,11.3,540,9,999999999,270,0.1240,0,88,0.170,9.0,6.0 +2001,10,12,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,16.0,100,98300,189,1373,369,84,63,75,9100,4700,8500,1600,170,5.7,10,9,11.3,450,9,999999999,259,0.1240,0,88,0.170,999.0,99.0 +2001,10,12,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,16.0,100,98300,435,1373,369,89,0,89,10200,0,10200,3510,170,4.1,10,9,11.3,450,9,999999999,259,0.1240,0,88,0.170,999.0,99.0 +2001,10,12,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.0,16.0,94,98400,645,1373,375,140,0,140,16200,0,16200,5940,170,5.1,10,9,11.3,300,9,999999999,250,0.1240,0,88,0.170,0.0,3.0 +2001,10,12,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,17.0,94,98400,803,1373,381,184,0,184,21500,0,21500,8160,190,5.7,10,9,11.3,360,9,999999999,240,0.1240,0,88,0.170,999.0,99.0 +2001,10,12,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,17.0,88,98400,899,1373,386,375,90,316,41200,9200,35200,10520,170,4.6,10,9,11.3,360,9,999999999,240,0.1240,0,88,0.170,999.0,99.0 +2001,10,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,17.0,88,98300,925,1373,362,384,90,323,42200,9200,36000,10980,150,3.1,9,4,11.3,450,9,999999999,229,0.1240,0,88,0.170,999.0,99.0 +2001,10,12,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,17.0,94,98300,881,1373,381,591,633,184,61600,63400,20800,4520,260,4.1,10,9,9.7,540,9,999999999,229,0.1240,0,88,0.170,999.0,99.0 +2001,10,12,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,19.0,88,98300,768,1373,374,517,617,170,53300,60800,19200,3680,220,2.6,9,4,11.3,3600,9,999999999,240,0.1240,0,88,0.170,999.0,99.0 +2001,10,12,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.0,18.0,83,98300,596,1373,373,303,263,188,32100,26500,20500,4110,220,3.1,9,4,11.3,1050,9,999999999,240,0.1240,0,88,0.170,1.0,3.0 +2001,10,12,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,16.0,69,98300,375,1373,373,131,62,114,14300,5500,12800,2900,230,3.1,5,3,11.3,77777,9,999999999,240,0.1240,0,88,0.170,999.0,99.0 +2001,10,12,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,17.0,83,98400,124,1361,367,27,18,25,2900,1100,2800,620,210,1.5,9,4,11.3,960,9,999999999,240,0.1240,0,88,0.170,999.0,99.0 +2001,10,12,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.0,17.0,88,98400,0,0,362,0,0,0,0,0,0,0,180,3.1,9,4,11.3,1050,9,999999999,240,0.1240,0,88,0.170,1.0,6.0 +2001,10,12,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,17.0,94,98500,0,0,381,0,0,0,0,0,0,0,190,2.1,10,9,11.3,2100,9,999999999,240,0.1240,0,88,0.170,999.0,99.0 +2001,10,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,16.0,94,98500,0,0,340,0,0,0,0,0,0,0,180,1.5,3,1,11.3,77777,9,999999999,250,0.1240,0,88,0.170,999.0,99.0 +2001,10,12,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,16.0,100,98500,0,0,335,0,0,0,0,0,0,0,160,1.0,2,1,9.7,77777,9,999999999,250,0.1240,0,88,0.170,999.0,99.0 +2001,10,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,16.0,100,98500,0,0,346,0,0,0,0,0,0,0,130,1.0,9,4,10.5,1050,9,999999999,250,0.1240,0,88,0.170,999.0,99.0 +2001,10,12,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,16.0,100,98400,0,0,346,0,0,0,0,0,0,0,160,1.5,9,4,9.7,1050,9,999999999,250,0.1240,0,88,0.170,999.0,99.0 +2001,10,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,17.0,100,98400,0,0,362,0,0,0,0,0,0,0,140,2.1,10,7,11.3,420,9,999999999,250,0.1230,0,88,0.170,999.0,99.0 +2001,10,13,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,17.0,100,98400,0,0,368,0,0,0,0,0,0,0,150,1.5,10,8,11.3,240,9,999999999,270,0.1230,0,88,0.170,999.0,99.0 +2001,10,13,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,17.0,100,98400,0,0,362,0,0,0,0,0,0,0,130,2.1,10,7,9.7,240,9,999999999,279,0.1230,0,88,0.170,999.0,99.0 +2001,10,13,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.0,17.0,100,98300,0,0,368,0,0,0,0,0,0,0,120,1.5,10,8,6.4,180,9,999999999,290,0.1230,0,88,0.170,0.0,3.0 +2001,10,13,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,17.0,100,98300,0,0,362,0,0,0,0,0,0,0,120,2.6,10,7,6.4,240,9,999999999,309,0.1230,0,88,0.170,999.0,99.0 +2001,10,13,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,17.0,94,98300,0,0,373,0,0,0,0,0,0,0,130,3.6,10,8,6.4,270,9,999999999,320,0.1230,0,88,0.170,999.0,99.0 +2001,10,13,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.0,17.0,94,98300,6,309,357,0,0,0,0,0,0,0,130,3.6,9,4,6.4,480,9,999999999,340,0.1230,0,88,0.170,1.0,6.0 +2001,10,13,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,18.0,100,98300,185,1373,358,86,151,65,8800,8900,7600,1300,130,2.6,9,4,9.7,1050,9,999999999,350,0.1230,0,88,0.170,999.0,99.0 +2001,10,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,18.0,100,98300,430,1373,358,193,179,136,20800,16500,15600,3060,140,5.1,9,4,11.3,1050,9,999999999,359,0.1230,0,88,0.170,999.0,99.0 +2001,10,13,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.0,18.0,94,98300,640,1373,363,106,0,106,12600,0,12600,4740,140,5.1,9,4,11.3,2100,9,999999999,379,0.1230,0,88,0.170,0.0,3.0 +2001,10,13,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,17.0,73,98200,798,1373,377,108,0,108,13100,0,13100,5240,160,5.7,9,4,11.3,2100,9,999999999,390,0.1230,0,88,0.170,999.0,99.0 +2001,10,13,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,16.0,65,98100,893,1373,381,228,12,220,26600,1000,26000,9860,150,7.2,9,4,11.3,2100,9,999999999,400,0.1230,0,88,0.170,999.0,99.0 +2001,10,13,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.0,16.0,61,98000,919,1373,386,420,138,327,45700,14500,35900,9530,170,6.7,9,4,11.3,2100,9,999999999,419,0.1230,0,88,0.170,0.0,6.0 +2001,10,13,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,16.0,57,97900,874,1373,391,287,24,271,32800,2200,31500,11290,150,8.2,9,4,11.3,2100,9,999999999,409,0.1230,0,88,0.170,999.0,99.0 +2001,10,13,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,16.0,61,97800,762,1373,397,238,18,228,27200,1600,26300,9240,150,6.2,10,7,11.3,2100,9,999999999,400,0.1230,0,88,0.170,999.0,99.0 +2001,10,13,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,16.0,61,97800,589,1373,403,141,0,141,16200,0,16200,5710,160,6.7,10,8,11.3,1500,9,999999999,390,0.1230,0,88,0.170,999.0,99.0 +2001,10,13,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.8,15.9,61,97800,368,1373,402,97,6,95,10800,300,10800,3400,160,5.9,10,8,11.3,1650,9,999999999,390,0.1230,0,88,0.170,999.0,99.0 +2001,10,13,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,16.0,65,97700,118,1339,398,20,0,20,2300,0,2300,730,160,5.1,10,8,11.3,1800,9,999999999,379,0.1230,0,88,0.170,999.0,99.0 +2001,10,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,16.0,65,97700,0,0,392,0,0,0,0,0,0,0,150,5.1,10,7,11.3,2400,9,999999999,370,0.1230,0,88,0.170,999.0,99.0 +2001,10,13,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,16.0,69,97700,0,0,393,0,0,0,0,0,0,0,150,5.1,10,8,11.3,1800,9,999999999,359,0.1230,0,88,0.170,999.0,99.0 +2001,10,13,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,16.0,69,97600,0,0,386,0,0,0,0,0,0,0,150,6.2,10,7,11.3,2700,9,999999999,359,0.1230,0,88,0.170,999.0,99.0 +2001,10,13,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.0,15.0,69,97500,0,0,386,0,0,0,0,0,0,0,130,5.7,10,8,11.3,2700,9,999999999,350,0.1230,0,88,0.170,0.0,3.0 +2001,10,13,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,15.0,73,97400,0,0,375,0,0,0,0,0,0,0,130,6.2,10,7,11.3,3900,9,999999999,340,0.1230,0,88,0.170,999.0,99.0 +2001,10,13,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,15.0,73,97300,0,0,381,0,0,0,0,0,0,0,130,6.7,10,8,11.3,2700,9,999999999,329,0.1230,0,88,0.170,999.0,99.0 +2001,10,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.0,15.0,78,97200,0,0,395,0,0,0,0,0,0,0,130,6.7,10,10,11.3,2700,9,999999999,320,0.1220,0,88,0.170,0.0,6.0 +2001,10,14,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,16.0,88,97100,0,0,390,0,0,0,0,0,0,0,130,6.2,10,10,11.3,2700,9,999999999,320,0.1220,0,88,0.170,999.0,99.0 +2001,10,14,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,16.0,94,97000,0,0,385,0,0,0,0,0,0,0,130,5.1,10,10,3.2,750,9,999999999,309,0.1220,0,88,0.170,999.0,99.0 +2001,10,14,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.0,16.0,94,96900,0,0,385,0,0,0,0,0,0,0,130,6.7,10,10,11.3,1500,9,999999999,300,0.1220,0,88,0.170,6.0,3.0 +2001,10,14,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,17.0,100,97200,0,0,386,0,0,0,0,0,0,0,210,8.2,10,10,4.8,450,9,999999999,290,0.1220,0,88,0.170,999.0,99.0 +2001,10,14,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,16.0,100,97200,0,0,380,0,0,0,0,0,0,0,180,3.1,10,10,11.3,450,9,999999999,279,0.1220,0,88,0.170,999.0,99.0 +2001,10,14,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,15.0,100,97000,5,286,373,0,0,0,0,0,0,0,160,3.1,10,10,11.3,1500,9,999999999,279,0.1220,0,88,0.170,14.0,6.0 +2001,10,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,15.0,100,97100,180,1374,373,13,0,13,1600,0,1600,530,140,3.6,10,10,8.0,1050,9,999999999,270,0.1220,0,88,0.170,999.0,99.0 +2001,10,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,16.0,100,97100,425,1374,369,45,0,45,5400,0,5400,1970,110,2.1,9,9,4.8,150,9,999999999,259,0.1220,0,88,0.170,999.0,99.0 +2001,10,14,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.0,12.0,100,97200,634,1374,355,67,0,67,8200,0,8200,3170,280,4.1,10,10,11.3,450,9,999999999,250,0.1220,0,88,0.170,10.0,3.0 +2001,10,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,13.0,100,97400,792,1374,361,165,0,165,19400,0,19400,7450,270,4.6,10,10,11.3,1500,9,999999999,240,0.1220,0,88,0.170,999.0,99.0 +2001,10,14,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,12.0,94,97600,887,1374,360,185,0,185,21900,0,21900,8600,250,4.6,10,10,11.3,900,9,999999999,240,0.1220,0,88,0.170,999.0,99.0 +2001,10,14,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.0,10.0,88,97600,913,1374,343,192,6,188,22800,500,22500,8820,260,4.6,9,9,11.3,2100,9,999999999,229,0.1220,0,88,0.170,21.0,6.0 +2001,10,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,8.0,67,97700,868,1374,350,509,358,282,54600,38200,30400,7400,250,6.7,9,9,11.3,7500,9,999999999,220,0.1220,0,88,0.170,999.0,99.0 +2001,10,14,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,7.0,59,97800,755,1374,334,448,409,222,48100,43000,24400,5220,230,7.7,5,5,11.3,77777,9,999999999,209,0.1220,0,88,0.170,999.0,99.0 +2001,10,14,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,7.0,59,97900,582,1374,334,318,368,162,34100,36900,18400,3430,220,6.2,5,5,11.3,77777,9,999999999,200,0.1220,0,88,0.170,999.0,99.0 +2001,10,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,7.0,63,97900,362,1374,349,208,533,67,21400,45000,9500,1230,200,6.7,9,9,11.3,1500,9,999999999,189,0.1220,0,88,0.170,999.0,99.0 +2001,10,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,9.0,93,98000,111,1294,332,36,159,23,4000,7700,3300,400,220,3.1,9,9,11.3,3000,9,999999999,179,0.1220,0,88,0.170,999.0,99.0 +2001,10,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,9.0,93,98100,0,0,332,0,0,0,0,0,0,0,220,3.1,9,9,11.3,2700,9,999999999,170,0.1220,0,88,0.170,3.0,6.0 +2001,10,14,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,8.0,87,98200,0,0,331,0,0,0,0,0,0,0,190,3.6,9,9,11.3,2700,9,999999999,160,0.1220,0,88,0.170,999.0,99.0 +2001,10,14,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,7.0,93,98200,0,0,303,0,0,0,0,0,0,0,210,2.6,5,5,11.3,77777,9,999999999,150,0.1220,0,88,0.170,999.0,99.0 +2001,10,14,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.0,8.0,93,98400,0,0,300,0,0,0,0,0,0,0,210,2.6,2,2,11.3,77777,9,999999999,139,0.1220,0,88,0.170,0.0,3.0 +2001,10,14,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,7.0,93,98400,0,0,303,0,0,0,0,0,0,0,210,2.6,5,5,11.3,77777,9,999999999,129,0.1220,0,88,0.170,999.0,99.0 +2001,10,14,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,8.0,93,98400,0,0,291,0,0,0,0,0,0,0,210,3.1,0,0,11.3,77777,9,999999999,120,0.1220,0,88,0.170,999.0,99.0 +2001,10,15,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.0,6.0,93,98400,0,0,281,0,0,0,0,0,0,0,200,3.1,0,0,11.3,77777,9,999999999,110,0.1220,0,88,0.170,0.0,6.0 +2001,10,15,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,6.0,93,98500,0,0,281,0,0,0,0,0,0,0,210,2.6,0,0,11.3,77777,9,999999999,110,0.1220,0,88,0.170,999.0,99.0 +2001,10,15,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,6.0,93,98600,0,0,281,0,0,0,0,0,0,0,210,3.1,0,0,11.3,77777,9,999999999,110,0.1220,0,88,0.170,999.0,99.0 +2001,10,15,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,6.0,93,98700,0,0,281,0,0,0,0,0,0,0,220,3.6,0,0,11.3,77777,9,999999999,110,0.1220,0,88,0.170,999.0,99.0 +2001,10,15,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,5.0,93,98700,0,0,276,0,0,0,0,0,0,0,230,4.1,0,0,11.3,77777,9,999999999,110,0.1220,0,88,0.170,999.0,99.0 +2001,10,15,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,5.0,93,98800,0,0,276,0,0,0,0,0,0,0,210,2.6,0,0,11.3,77777,9,999999999,110,0.1220,0,88,0.170,999.0,99.0 +2001,10,15,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,4.0,93,98900,5,264,276,0,0,0,0,0,0,0,200,2.1,2,1,11.3,77777,9,999999999,110,0.1220,0,88,0.170,24.0,24.0 +2001,10,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,4.0,93,99000,175,1375,271,90,211,63,9200,12000,7700,1260,220,3.1,0,0,11.3,77777,9,999999999,110,0.1220,0,88,0.170,999.0,99.0 +2001,10,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,6.0,76,99100,420,1375,293,246,494,94,25900,44000,12400,1750,230,5.1,0,0,11.3,77777,9,999999999,110,0.1220,0,88,0.170,999.0,99.0 +2001,10,15,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,6.0,62,99200,629,1375,311,433,702,111,45200,68200,13900,2270,230,3.6,3,1,11.3,77777,9,999999999,110,0.1220,0,88,0.170,999.0,99.0 +2001,10,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,3.0,47,99200,786,1375,312,565,783,115,58300,77200,14000,2440,260,5.7,2,1,11.3,77777,9,999999999,110,0.1220,0,88,0.170,999.0,99.0 +2001,10,15,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,3.0,44,99200,881,1375,324,627,712,170,65800,71600,19700,4220,260,4.1,5,3,11.3,77777,9,999999999,110,0.1220,0,88,0.170,999.0,99.0 +2001,10,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,3.0,42,99100,907,1375,334,654,612,249,69000,63100,27300,6520,250,5.1,9,5,11.3,7500,9,999999999,110,0.1220,0,88,0.170,999.0,99.0 +2001,10,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,2.0,39,99000,862,1375,333,251,30,233,27800,3000,25900,7950,260,3.6,9,5,11.3,3600,9,999999999,120,0.1220,0,88,0.170,999.0,99.0 +2001,10,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,3.0,44,99100,749,1375,329,227,12,220,25900,1000,25300,8920,230,3.6,9,5,11.3,3600,9,999999999,129,0.1220,0,88,0.170,999.0,99.0 +2001,10,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,4.0,48,99100,576,1375,331,162,12,157,18400,900,18000,6080,190,5.1,9,5,11.3,4200,9,999999999,129,0.1220,0,88,0.170,999.0,99.0 +2001,10,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,5.0,55,99100,355,1375,327,154,174,109,16700,15000,12800,2400,230,3.6,9,5,11.3,3900,9,999999999,139,0.1220,0,88,0.170,999.0,99.0 +2001,10,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,5.0,58,99100,105,1272,323,24,35,21,2700,1800,2500,440,210,1.5,9,5,11.3,6000,9,999999999,150,0.1220,0,88,0.170,999.0,99.0 +2001,10,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,4.0,62,99000,0,0,313,0,0,0,0,0,0,0,250,2.6,9,5,11.3,6600,9,999999999,150,0.1220,0,88,0.170,999.0,99.0 +2001,10,15,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,4.0,71,98900,0,0,304,0,0,0,0,0,0,0,300,2.1,9,5,11.3,6600,9,999999999,160,0.1220,0,88,0.170,999.0,99.0 +2001,10,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,5.0,76,98800,0,0,305,0,0,0,0,0,0,0,340,1.5,9,5,11.3,6600,9,999999999,160,0.1220,0,88,0.170,999.0,99.0 +2001,10,15,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,5.0,76,98800,0,0,323,0,0,0,0,0,0,0,20,1.5,10,9,11.3,6600,9,999999999,170,0.1220,0,88,0.170,999.0,99.0 +2001,10,15,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,5.0,81,98700,0,0,318,0,0,0,0,0,0,0,30,2.1,10,9,11.3,3000,9,999999999,179,0.1220,0,88,0.170,999.0,99.0 +2001,10,15,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,6.0,81,98500,0,0,306,0,0,0,0,0,0,0,40,2.6,9,5,11.3,3000,9,999999999,179,0.1220,0,88,0.170,999.0,99.0 +2001,10,16,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.0,4.0,62,98400,0,0,340,0,0,0,0,0,0,0,50,4.6,10,10,11.3,2100,9,999999999,189,0.1210,0,88,0.170,0.0,6.0 +2001,10,16,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,5.0,66,98300,0,0,342,0,0,0,0,0,0,0,90,3.1,10,10,11.3,1800,9,999999999,179,0.1210,0,88,0.170,999.0,99.0 +2001,10,16,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,7.0,87,98100,0,0,334,0,0,0,0,0,0,0,100,4.1,10,10,6.4,1800,9,999999999,179,0.1210,0,88,0.170,999.0,99.0 +2001,10,16,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.0,8.0,93,97900,0,0,335,0,0,0,0,0,0,0,110,4.6,10,10,11.3,1500,9,999999999,179,0.1210,0,88,0.170,7.0,3.0 +2001,10,16,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,7.2,6.7,97,97900,0,0,326,0,0,0,0,0,0,0,130,6.1,10,10,11.3,8333,9,999999999,170,0.1210,0,88,0.170,999.0,99.0 +2001,10,16,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,5.4,5.3,99,97900,0,0,316,0,0,0,0,0,0,0,160,7.7,10,10,11.3,15167,9,999999999,170,0.1210,0,88,0.170,999.0,99.0 +2001,10,16,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9?9?9,3.8,3.8,100,98000,4,241,307,0,0,0,0,0,0,0,180,9.2,10,10,11.3,77777,9,999999999,160,0.1210,0,88,0.170,7.0,6.0 +2001,10,16,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,3.4,3.4,100,98000,171,1376,305,26,0,26,3000,0,3000,970,210,10.8,10,10,11.3,77777,9,999999999,160,0.1210,0,88,0.170,999.0,99.0 +2001,10,16,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,3.0,93,98000,415,1376,307,60,0,60,7100,0,7100,2500,230,12.3,10,10,8.0,450,9,999999999,150,0.1210,0,88,0.170,999.0,99.0 +2001,10,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.0,3.0,93,98100,624,1376,307,67,0,67,8200,0,8200,3150,230,9.3,10,10,11.3,360,9,999999999,150,0.1210,0,88,0.170,0.0,3.0 +2001,10,16,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,4.0,93,98100,781,1376,313,89,0,89,11000,0,11000,4380,220,9.3,10,10,11.3,360,9,999999999,139,0.1210,0,88,0.170,999.0,99.0 +2001,10,16,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,5.0,93,98200,875,1376,318,105,0,105,13000,0,13000,5290,240,9.3,10,10,11.3,600,9,999999999,139,0.1210,0,88,0.170,999.0,99.0 +2001,10,16,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.0,5.0,87,98300,901,1376,323,108,0,108,13300,0,13300,5470,240,7.7,10,10,11.3,600,9,999999999,139,0.1210,0,88,0.170,0.0,6.0 +2001,10,16,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,6.0,93,98400,855,1376,324,117,0,117,14300,0,14300,5770,250,9.8,10,10,11.3,600,9,999999999,129,0.1210,0,88,0.170,999.0,99.0 +2001,10,16,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,5.0,87,98500,742,1376,323,181,0,181,21000,0,21000,7730,240,7.7,10,10,11.3,600,9,999999999,129,0.1210,0,88,0.170,999.0,99.0 +2001,10,16,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.0,6.0,93,98500,569,1376,324,124,0,124,14300,0,14300,5090,250,7.2,10,10,9.7,600,9,999999999,129,0.1210,0,88,0.170,0.0,3.0 +2001,10,16,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,6.0,93,98600,348,1376,324,57,0,57,6600,0,6600,2260,250,6.7,10,10,11.3,600,9,999999999,120,0.1210,0,88,0.170,999.0,99.0 +2001,10,16,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,5.0,87,98700,100,1227,323,15,0,15,1800,0,1800,560,250,6.2,10,10,11.3,600,9,999999999,120,0.1210,0,88,0.170,999.0,99.0 +2001,10,16,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.0,4.0,81,98700,0,0,298,0,0,0,0,0,0,0,250,6.2,9,6,11.3,1500,9,999999999,120,0.1210,0,88,0.170,0.0,6.0 +2001,10,16,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,4.0,81,98800,0,0,298,0,0,0,0,0,0,0,260,8.2,9,6,11.3,960,9,999999999,120,0.1210,0,88,0.170,999.0,99.0 +2001,10,16,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,3.0,76,98900,0,0,297,0,0,0,0,0,0,0,250,5.7,9,6,11.3,1500,9,999999999,110,0.1210,0,88,0.170,999.0,99.0 +2001,10,16,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,3.0,76,99000,0,0,297,0,0,0,0,0,0,0,260,4.6,9,6,11.3,1800,9,999999999,110,0.1210,0,88,0.170,999.0,99.0 +2001,10,16,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,3.0,81,99000,0,0,286,0,0,0,0,0,0,0,260,4.1,5,3,11.3,77777,9,999999999,110,0.1210,0,88,0.170,999.0,99.0 +2001,10,16,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,3.0,81,99000,0,0,293,0,0,0,0,0,0,0,270,6.2,9,6,11.3,2100,9,999999999,100,0.1210,0,88,0.170,999.0,99.0 +2001,10,17,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,3.0,81,99000,0,0,290,0,0,0,0,0,0,0,260,4.6,9,5,11.3,900,9,999999999,100,0.1200,0,88,0.170,999.0,99.0 +2001,10,17,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,3.0,81,99000,0,0,290,0,0,0,0,0,0,0,260,3.6,9,5,11.3,900,9,999999999,100,0.1200,0,88,0.170,999.0,99.0 +2001,10,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,3.0,81,99100,0,0,290,0,0,0,0,0,0,0,270,5.7,9,5,11.3,1200,9,999999999,100,0.1200,0,88,0.170,999.0,99.0 +2001,10,17,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,3.0,87,99100,0,0,286,0,0,0,0,0,0,0,260,4.1,9,5,11.3,900,9,999999999,100,0.1200,0,88,0.170,999.0,99.0 +2001,10,17,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,2.0,87,99100,0,0,281,0,0,0,0,0,0,0,250,4.1,9,5,11.3,2100,9,999999999,110,0.1200,0,88,0.170,999.0,99.0 +2001,10,17,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,1.0,93,99200,0,0,268,0,0,0,0,0,0,0,250,3.1,5,3,11.3,77777,9,999999999,110,0.1200,0,88,0.170,999.0,99.0 +2001,10,17,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.0,1.0,93,99300,3,218,272,0,0,0,0,0,0,0,220,2.6,9,5,11.3,2100,9,999999999,110,0.1200,0,88,0.170,9.0,24.0 +2001,10,17,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,2.0,93,99300,166,1377,277,68,58,61,7400,4100,6900,1320,230,2.1,9,5,11.3,1050,9,999999999,110,0.1200,0,88,0.170,999.0,99.0 +2001,10,17,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,2.0,81,99400,410,1377,285,247,514,94,26000,45400,12500,1750,260,4.6,9,5,11.3,2100,9,999999999,110,0.1200,0,88,0.170,999.0,99.0 +2001,10,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,2.0,70,99400,618,1377,293,414,493,192,42600,48300,20800,4000,270,4.6,9,5,11.3,1050,9,999999999,110,0.1200,0,88,0.170,999.0,99.0 +2001,10,17,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,1.0,61,99500,775,1377,296,286,61,251,31400,6200,27900,7830,300,5.7,9,5,11.3,960,9,999999999,110,0.1200,0,88,0.170,999.0,99.0 +2001,10,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,-1.0,49,99500,869,1377,299,517,338,303,55200,36000,32400,8060,290,6.2,9,5,11.3,1050,9,999999999,110,0.1200,0,88,0.170,999.0,99.0 +2001,10,17,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,-1.0,52,99500,894,1377,294,288,42,260,31700,4300,28900,8950,260,6.7,9,5,11.3,1200,9,999999999,110,0.1200,0,88,0.170,999.0,99.0 +2001,10,17,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,-2.0,48,99400,849,1377,293,333,84,281,36600,8500,31300,9140,290,6.2,9,5,11.3,1350,9,999999999,110,0.1200,0,88,0.170,999.0,99.0 +2001,10,17,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,-1.0,49,99400,736,1377,299,374,201,266,40400,20700,29300,6800,280,6.7,9,5,11.3,1350,9,999999999,110,0.1200,0,88,0.170,999.0,99.0 +2001,10,17,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,-1.0,52,99400,562,1377,294,333,420,161,34400,40400,17900,3240,300,4.1,9,5,11.3,1350,9,999999999,110,0.1200,0,88,0.170,999.0,99.0 +2001,10,17,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,-1.0,52,99500,341,1377,287,119,84,98,12900,7200,11100,2150,280,3.1,5,2,11.3,77777,9,999999999,110,0.1200,0,88,0.170,999.0,99.0 +2001,10,17,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,7.2,-0.5,58,99500,94,1205,280,29,101,23,3300,4600,2900,400,280,2.1,3,1,11.3,77777,9,999999999,110,0.1200,0,88,0.170,999.0,99.0 +2001,10,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,0.0,65,99500,0,0,271,0,0,0,0,0,0,0,270,1.0,0,0,11.3,77777,9,999999999,110,0.1200,0,88,0.170,999.0,99.0 +2001,10,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,1.0,87,99500,0,0,260,0,0,0,0,0,0,0,200,1.5,0,0,11.3,77777,9,999999999,110,0.1200,0,88,0.170,999.0,99.0 +2001,10,17,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,1.0,93,99500,0,0,257,0,0,0,0,0,0,0,190,2.1,0,0,11.3,77777,9,999999999,110,0.1200,0,88,0.170,999.0,99.0 +2001,10,17,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,1.0,93,99500,0,0,257,0,0,0,0,0,0,0,200,1.5,0,0,11.3,77777,9,999999999,110,0.1200,0,88,0.170,999.0,99.0 +2001,10,17,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,1.0,93,99500,0,0,257,0,0,0,0,0,0,0,190,1.0,0,0,11.3,77777,9,999999999,110,0.1200,0,88,0.170,999.0,99.0 +2001,10,17,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,0.0,93,99500,0,0,252,0,0,0,0,0,0,0,180,1.5,0,0,11.3,77777,9,999999999,110,0.1200,0,88,0.170,999.0,99.0 +2001,10,18,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,0.0,93,99500,0,0,252,0,0,0,0,0,0,0,170,1.0,0,0,11.3,77777,9,999999999,110,0.1190,0,88,0.170,999.0,99.0 +2001,10,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,0.0,93,99500,0,0,252,0,0,0,0,0,0,0,150,1.0,0,0,11.3,77777,9,999999999,110,0.1190,0,88,0.170,999.0,99.0 +2001,10,18,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,0.0,100,99500,0,0,248,0,0,0,0,0,0,0,140,1.0,0,0,11.3,77777,9,999999999,110,0.1190,0,88,0.170,999.0,99.0 +2001,10,18,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-1.0,92,99500,0,0,248,0,0,0,0,0,0,0,130,1.0,0,0,11.3,77777,9,999999999,110,0.1190,0,88,0.170,999.0,99.0 +2001,10,18,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-1.0,92,99600,0,0,248,0,0,0,0,0,0,0,120,1.0,0,0,11.3,77777,9,999999999,110,0.1190,0,88,0.170,999.0,99.0 +2001,10,18,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-1.0,100,99600,0,0,244,0,0,0,0,0,0,0,120,2.6,0,0,11.3,77777,9,999999999,110,0.1190,0,88,0.170,999.0,99.0 +2001,10,18,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-1.0,92,99600,2,195,248,0,0,0,0,0,0,0,100,1.5,0,0,11.3,77777,9,999999999,110,0.1190,0,88,0.170,999.0,99.0 +2001,10,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,0.0,87,99600,161,1377,264,84,194,61,8600,10300,7300,1240,110,1.5,2,2,11.3,77777,9,999999999,100,0.1190,0,88,0.170,999.0,99.0 +2001,10,18,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,1.0,66,99700,405,1377,288,241,496,94,25200,43600,12400,1750,140,2.6,3,3,11.3,77777,9,999999999,100,0.1190,0,88,0.170,999.0,99.0 +2001,10,18,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,0.0,53,99700,613,1377,292,401,567,148,42300,55700,17400,2980,160,5.1,2,2,11.3,77777,9,999999999,100,0.1190,0,88,0.170,999.0,99.0 +2001,10,18,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,0.0,47,99600,770,1377,308,540,723,135,56700,72100,16300,3040,170,5.7,5,5,11.3,77777,9,999999999,100,0.1190,0,88,0.170,999.0,99.0 +2001,10,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,0.0,44,99500,863,1377,313,628,790,131,66900,80100,16400,3290,170,5.1,5,5,11.3,77777,9,999999999,100,0.1190,0,88,0.170,999.0,99.0 +2001,10,18,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,-1.0,38,99400,888,1377,311,648,774,147,68600,78400,17900,3750,180,5.1,3,3,11.3,77777,9,999999999,100,0.1190,0,88,0.170,999.0,99.0 +2001,10,18,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,-1.0,35,99300,842,1377,312,596,812,98,63300,81300,13300,2380,180,6.2,2,2,11.3,77777,9,999999999,100,0.1190,0,88,0.170,999.0,99.0 +2001,10,18,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,-1.0,33,99200,729,1377,320,515,770,106,53100,75400,13100,2170,170,5.1,3,3,11.3,77777,9,999999999,110,0.1190,0,88,0.170,999.0,99.0 +2001,10,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,0.0,36,99100,556,1377,345,349,583,113,35900,54900,13700,2160,150,6.2,9,9,11.3,7500,9,999999999,120,0.1190,0,88,0.170,999.0,99.0 +2001,10,18,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,0.0,38,99000,335,1377,340,185,468,71,18800,38200,9500,1260,150,5.1,9,9,11.3,7500,9,999999999,120,0.1190,0,88,0.170,999.0,99.0 +2001,10,18,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,0.0,44,99000,89,1159,331,16,21,15,1900,1000,1800,310,140,3.1,9,9,11.3,7500,9,999999999,129,0.1190,0,88,0.170,999.0,99.0 +2001,10,18,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,-1.0,43,99000,0,0,325,0,0,0,0,0,0,0,150,3.1,9,9,11.3,7500,9,999999999,129,0.1190,0,88,0.170,999.0,99.0 +2001,10,18,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,-1.0,46,98900,0,0,321,0,0,0,0,0,0,0,160,3.6,9,9,11.3,7500,9,999999999,139,0.1190,0,88,0.170,999.0,99.0 +2001,10,18,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,0.0,50,98800,0,0,322,0,0,0,0,0,0,0,160,3.6,9,9,11.3,7500,9,999999999,139,0.1190,0,88,0.170,999.0,99.0 +2001,10,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,0.0,53,98800,0,0,317,0,0,0,0,0,0,0,160,2.1,9,9,11.3,7500,9,999999999,150,0.1190,0,88,0.170,999.0,99.0 +2001,10,18,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,-1.0,52,98800,0,0,312,0,0,0,0,0,0,0,160,2.1,9,9,11.3,7500,9,999999999,160,0.1190,0,88,0.170,999.0,99.0 +2001,10,18,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,0.0,57,98700,0,0,322,0,0,0,0,0,0,0,160,1.5,10,10,11.3,7500,9,999999999,160,0.1190,0,88,0.170,999.0,99.0 +2001,10,19,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,1.0,61,98700,0,0,314,0,0,0,0,0,0,0,150,2.1,10,9,11.3,7500,9,999999999,170,0.1180,0,88,0.170,999.0,99.0 +2001,10,19,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,0.0,57,98700,0,0,295,0,0,0,0,0,0,0,150,3.1,9,5,11.3,7500,9,999999999,170,0.1180,0,88,0.170,999.0,99.0 +2001,10,19,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,0.0,61,98700,0,0,291,0,0,0,0,0,0,0,150,2.6,9,5,11.3,7500,9,999999999,170,0.1180,0,88,0.170,999.0,99.0 +2001,10,19,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,1.0,66,98600,0,0,292,0,0,0,0,0,0,0,150,2.6,9,5,11.3,7500,9,999999999,170,0.1180,0,88,0.170,999.0,99.0 +2001,10,19,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,3.0,62,98600,0,0,307,0,0,0,0,0,0,0,150,2.6,9,5,11.3,7500,9,999999999,170,0.1180,0,88,0.170,999.0,99.0 +2001,10,19,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,4.0,66,98600,0,0,308,0,0,0,0,0,0,0,190,4.6,9,5,11.3,7500,9,999999999,170,0.1180,0,88,0.170,999.0,99.0 +2001,10,19,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,4.0,71,98600,2,172,296,0,0,0,0,0,0,0,190,3.6,5,2,11.3,77777,9,999999999,170,0.1180,0,88,0.170,999.0,99.0 +2001,10,19,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,4.0,66,98700,156,1378,308,29,0,29,3300,0,3300,1030,200,4.1,9,5,11.3,7500,9,999999999,170,0.1180,0,88,0.170,999.0,99.0 +2001,10,19,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,4.0,62,98700,400,1378,313,45,0,45,5400,0,5400,1930,200,5.1,9,5,11.3,3600,9,999999999,170,0.1180,0,88,0.170,999.0,99.0 +2001,10,19,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,5.0,62,98700,608,1378,318,141,0,141,16200,0,16200,5790,200,5.7,9,5,11.3,3600,9,999999999,179,0.1180,0,88,0.170,999.0,99.0 +2001,10,19,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,5.0,58,98600,764,1378,323,299,73,258,32800,7400,28700,7910,200,6.7,9,5,11.3,7500,9,999999999,179,0.1180,0,88,0.170,999.0,99.0 +2001,10,19,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,5.0,51,98700,858,1378,327,578,543,240,60800,55700,26000,5930,200,7.7,5,3,11.3,77777,9,999999999,179,0.1180,0,88,0.170,999.0,99.0 +2001,10,19,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,6.0,51,98600,882,1378,329,630,672,198,65200,67000,22200,4790,210,7.7,5,2,11.3,77777,9,999999999,179,0.1180,0,88,0.170,999.0,99.0 +2001,10,19,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,6.0,51,98600,836,1378,337,514,489,216,54400,50100,23800,5180,220,6.7,9,5,11.3,1350,9,999999999,179,0.1180,0,88,0.170,999.0,99.0 +2001,10,19,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,7.0,52,98600,723,1378,343,435,403,223,46500,42100,24400,5190,210,5.7,9,5,11.3,2100,9,999999999,170,0.1180,0,88,0.170,999.0,99.0 +2001,10,19,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,7.0,55,98600,549,1378,339,214,93,177,23500,9000,19900,4860,210,4.1,9,5,11.3,2100,9,999999999,170,0.1180,0,88,0.170,999.0,99.0 +2001,10,19,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,8.0,59,98500,328,1378,340,52,0,52,6100,0,6100,2060,200,3.1,9,5,11.3,1800,9,999999999,170,0.1180,0,88,0.170,999.0,99.0 +2001,10,19,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,8.0,67,98600,83,1137,330,11,0,11,1300,0,1300,420,220,2.6,9,5,11.3,1500,9,999999999,160,0.1180,0,88,0.170,999.0,99.0 +2001,10,19,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,8.0,67,98600,0,0,330,0,0,0,0,0,0,0,190,2.1,9,5,11.3,1500,9,999999999,160,0.1180,0,88,0.170,999.0,99.0 +2001,10,19,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,8.0,67,98600,0,0,330,0,0,0,0,0,0,0,200,1.0,9,5,11.3,1500,9,999999999,160,0.1180,0,88,0.170,999.0,99.0 +2001,10,19,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,5.0,71,98600,0,0,302,0,0,0,0,0,0,0,120,0.5,5,2,11.3,77777,9,999999999,160,0.1180,0,88,0.170,999.0,99.0 +2001,10,19,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,6.0,76,98600,0,0,306,0,0,0,0,0,0,0,120,1.0,5,3,11.3,77777,9,999999999,150,0.1180,0,88,0.170,999.0,99.0 +2001,10,19,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,7.0,93,98600,0,0,295,0,0,0,0,0,0,0,120,1.5,5,2,11.3,77777,9,999999999,150,0.1180,0,88,0.170,999.0,99.0 +2001,10,19,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,9.0,93,98600,0,0,313,0,0,0,0,0,0,0,120,1.5,9,5,11.3,3300,9,999999999,150,0.1180,0,88,0.170,999.0,99.0 +2001,10,20,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,6.0,87,98600,0,0,302,0,0,0,0,0,0,0,120,1.0,5,5,11.3,77777,9,999999999,150,0.1170,0,88,0.170,999.0,99.0 +2001,10,20,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,5.0,87,98700,0,0,296,0,0,0,0,0,0,0,110,1.0,5,5,11.3,77777,9,999999999,139,0.1170,0,88,0.170,999.0,99.0 +2001,10,20,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,6.0,93,98700,0,0,315,0,0,0,0,0,0,0,110,1.0,9,9,11.3,3600,9,999999999,139,0.1170,0,88,0.170,999.0,99.0 +2001,10,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,5.0,93,98700,0,0,309,0,0,0,0,0,0,0,110,0.5,9,9,11.3,6600,9,999999999,139,0.1170,0,88,0.170,999.0,99.0 +2001,10,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,6.0,100,98700,0,0,310,0,0,0,0,0,0,0,110,1.5,9,9,11.3,6600,9,999999999,129,0.1170,0,88,0.170,999.0,99.0 +2001,10,20,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,4.0,93,98800,0,0,287,0,0,0,0,0,0,0,70,1.0,5,5,11.3,77777,9,999999999,129,0.1170,0,88,0.170,999.0,99.0 +2001,10,20,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,4.0,93,98800,1,149,283,0,0,0,0,0,0,0,150,0.5,3,3,11.3,77777,9,999999999,129,0.1170,0,88,0.170,999.0,99.0 +2001,10,20,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,5.0,93,98800,151,1379,285,60,26,57,6500,1800,6300,1220,220,1.0,2,2,11.3,77777,9,999999999,120,0.1170,0,88,0.170,999.0,99.0 +2001,10,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,9.0,93,98900,395,1379,313,212,375,105,22000,32600,12600,1980,210,0.5,5,5,11.3,77777,9,999999999,120,0.1170,0,88,0.170,999.0,99.0 +2001,10,20,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,10.0,82,98900,602,1379,320,382,543,144,40300,53100,17000,2880,210,0.5,2,2,11.3,77777,9,999999999,120,0.1170,0,88,0.170,999.0,99.0 +2001,10,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,10.0,68,99000,758,1379,362,515,529,223,53500,53500,24000,5050,200,1.5,9,9,11.3,3000,9,999999999,120,0.1170,0,88,0.170,999.0,99.0 +2001,10,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,10.0,63,98900,852,1379,367,111,0,111,13600,0,13600,5490,190,4.1,9,9,11.3,3000,9,999999999,110,0.1170,0,88,0.170,999.0,99.0 +2001,10,20,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.0,12.0,68,98900,876,1379,375,114,0,114,14000,0,14000,5680,210,2.6,9,9,11.3,3000,9,999999999,110,0.1170,0,88,0.170,0.0,6.0 +2001,10,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,12.0,64,98800,830,1379,359,397,197,278,43300,20600,30800,7530,220,5.1,5,5,11.3,77777,9,999999999,120,0.1170,0,88,0.170,999.0,99.0 +2001,10,20,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,19.7,12.4,63,98800,716,1379,363,367,213,256,39700,21900,28300,6470,220,3.9,5,5,11.3,77777,9,999999999,129,0.1170,0,88,0.170,999.0,99.0 +2001,10,20,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,13.0,64,98800,543,1379,365,326,478,138,34200,45700,16100,2710,220,2.6,5,5,11.3,77777,9,999999999,139,0.1170,0,88,0.170,999.0,99.0 +2001,10,20,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,13.0,68,98800,322,1379,354,173,432,72,18200,34800,10000,1310,190,2.6,3,3,11.3,77777,9,999999999,150,0.1170,0,88,0.170,999.0,99.0 +2001,10,20,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,13.0,77,98800,79,1092,341,19,106,13,2200,5400,1800,250,190,1.5,2,2,11.3,77777,9,999999999,150,0.1170,0,88,0.170,999.0,99.0 +2001,10,20,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,12.0,82,98800,0,0,334,0,0,0,0,0,0,0,180,1.0,3,3,11.3,77777,9,999999999,160,0.1170,0,88,0.170,999.0,99.0 +2001,10,20,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,12.0,77,98900,0,0,336,0,0,0,0,0,0,0,160,2.1,2,2,11.3,77777,9,999999999,170,0.1170,0,88,0.170,999.0,99.0 +2001,10,20,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.3,11.5,78,98900,0,0,327,0,0,0,0,0,0,0,170,2.4,1,1,11.3,77777,9,999999999,179,0.1170,0,88,0.170,999.0,99.0 +2001,10,20,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,11.0,77,98900,0,0,319,0,0,0,0,0,0,0,170,2.6,0,0,11.3,77777,9,999999999,189,0.1170,0,88,0.170,999.0,99.0 +2001,10,20,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,10.0,82,98900,0,0,310,0,0,0,0,0,0,0,140,1.5,0,0,11.3,77777,9,999999999,200,0.1170,0,88,0.170,999.0,99.0 +2001,10,20,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,10.0,77,98900,0,0,314,0,0,0,0,0,0,0,160,2.6,0,0,11.3,77777,9,999999999,209,0.1170,0,88,0.170,999.0,99.0 +2001,10,21,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,10.0,88,98900,0,0,330,0,0,0,0,0,0,0,120,2.6,9,7,11.3,7500,9,999999999,220,0.1170,0,88,0.170,999.0,99.0 +2001,10,21,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,10.0,88,98900,0,0,335,0,0,0,0,0,0,0,100,2.6,9,8,11.3,7500,9,999999999,220,0.1170,0,88,0.170,999.0,99.0 +2001,10,21,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,9.0,82,98900,0,0,329,0,0,0,0,0,0,0,130,2.1,9,7,11.3,7500,9,999999999,220,0.1170,0,88,0.170,999.0,99.0 +2001,10,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,9.0,87,98900,0,0,330,0,0,0,0,0,0,0,140,2.6,9,8,11.3,7500,9,999999999,220,0.1170,0,88,0.170,999.0,99.0 +2001,10,21,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,9.0,93,99000,0,0,313,0,0,0,0,0,0,0,120,2.6,5,5,11.3,77777,9,999999999,220,0.1170,0,88,0.170,999.0,99.0 +2001,10,21,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,9.0,93,99000,0,0,313,0,0,0,0,0,0,0,140,2.6,5,5,11.3,77777,9,999999999,220,0.1170,0,88,0.170,999.0,99.0 +2001,10,21,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,9.0,93,99000,1,126,313,0,0,0,0,0,0,0,140,2.6,5,5,11.3,77777,9,999999999,220,0.1170,0,88,0.170,999.0,99.0 +2001,10,21,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,10.0,88,99000,147,1380,323,47,0,47,5100,0,5100,1390,150,3.1,5,5,11.3,77777,9,999999999,220,0.1170,0,88,0.170,999.0,99.0 +2001,10,21,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,10.0,77,99000,390,1380,339,190,239,122,19900,21000,13900,2490,140,3.1,9,7,11.3,7500,9,999999999,220,0.1170,0,88,0.170,999.0,99.0 +2001,10,21,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,11.0,64,99100,597,1380,366,376,463,175,38800,45000,19300,3580,210,3.6,9,8,11.3,7500,9,999999999,220,0.1170,0,88,0.170,999.0,99.0 +2001,10,21,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,13.0,68,99100,753,1380,367,445,389,232,47600,40800,25300,5500,200,3.6,9,7,11.3,7500,9,999999999,220,0.1170,0,88,0.170,999.0,99.0 +2001,10,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,13.0,64,99000,846,1380,378,548,561,203,58500,57600,23000,4880,210,5.7,9,8,11.3,7500,9,999999999,220,0.1170,0,88,0.170,999.0,99.0 +2001,10,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,13.0,60,99000,870,1380,403,576,516,249,60300,53000,26800,6250,220,6.7,10,10,11.3,7500,9,999999999,220,0.1170,0,88,0.170,999.0,99.0 +2001,10,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,13.0,60,99000,824,1380,384,269,48,240,29600,4800,26700,7870,210,5.7,9,8,11.3,7500,9,999999999,209,0.1170,0,88,0.170,999.0,99.0 +2001,10,21,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,13.0,57,98900,710,1380,383,378,266,241,40100,27600,25800,5680,190,6.7,9,7,11.3,7500,9,999999999,209,0.1170,0,88,0.170,999.0,99.0 +2001,10,21,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,13.0,57,98900,536,1380,408,267,274,160,28300,26900,17800,3380,190,5.1,10,10,11.3,1500,9,999999999,209,0.1170,0,88,0.170,999.0,99.0 +2001,10,21,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,13.0,64,98900,316,1380,397,135,171,96,14200,13700,11000,1910,190,3.6,10,10,11.3,7500,9,999999999,209,0.1170,0,88,0.170,999.0,99.0 +2001,10,21,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,13.0,73,98900,74,1069,387,10,0,10,1200,0,1200,380,200,2.6,10,10,11.3,7500,9,999999999,209,0.1170,0,88,0.170,999.0,99.0 +2001,10,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,13.0,77,98900,0,0,357,0,0,0,0,0,0,0,200,2.1,9,7,11.3,2100,9,999999999,209,0.1170,0,88,0.170,999.0,99.0 +2001,10,21,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,13.0,82,98900,0,0,358,0,0,0,0,0,0,0,210,2.1,9,8,11.3,7500,9,999999999,209,0.1170,0,88,0.170,999.0,99.0 +2001,10,21,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,13.0,77,98900,0,0,357,0,0,0,0,0,0,0,180,2.6,9,7,11.3,1800,9,999999999,209,0.1170,0,88,0.170,999.0,99.0 +2001,10,21,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,12.0,77,98900,0,0,344,0,0,0,0,0,0,0,180,2.6,5,5,11.3,77777,9,999999999,200,0.1170,0,88,0.170,999.0,99.0 +2001,10,21,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,11.0,88,98900,0,0,321,0,0,0,0,0,0,0,200,3.1,2,2,11.3,77777,9,999999999,200,0.1170,0,88,0.170,999.0,99.0 +2001,10,21,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,11.0,88,98900,0,0,311,0,0,0,0,0,0,0,20,2.1,0,0,11.3,77777,9,999999999,200,0.1170,0,88,0.170,999.0,99.0 +2001,10,22,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,10.0,88,98800,0,0,305,0,0,0,0,0,0,0,60,1.5,0,0,11.3,77777,9,999999999,200,0.1160,0,88,0.170,999.0,99.0 +2001,10,22,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,11.0,94,98800,0,0,306,0,0,0,0,0,0,0,120,1.0,0,0,11.3,77777,9,999999999,200,0.1160,0,88,0.170,999.0,99.0 +2001,10,22,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,11.0,94,98800,0,0,306,0,0,0,0,0,0,0,90,0.5,0,0,11.3,77777,9,999999999,200,0.1160,0,88,0.170,999.0,99.0 +2001,10,22,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,9.0,93,98800,0,0,306,0,0,0,0,0,0,0,50,1.0,2,2,11.3,77777,9,999999999,189,0.1160,0,88,0.170,999.0,99.0 +2001,10,22,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,12.0,94,98900,0,0,350,0,0,0,0,0,0,0,310,1.5,9,9,11.3,3600,9,999999999,189,0.1160,0,88,0.170,999.0,99.0 +2001,10,22,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,10.0,94,98800,0,0,319,0,0,0,0,0,0,0,210,2.1,5,5,11.3,77777,9,999999999,189,0.1160,0,88,0.170,999.0,99.0 +2001,10,22,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,11.0,100,98800,1,104,339,0,0,0,0,0,0,0,210,1.0,9,9,8.0,7500,9,999999999,189,0.1160,0,88,0.170,999.0,99.0 +2001,10,22,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,11.0,94,98900,142,1381,344,49,0,49,5300,0,5300,1400,200,0.5,9,9,9.7,7500,9,999999999,189,0.1160,0,88,0.170,999.0,99.0 +2001,10,22,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,14.0,88,98900,384,1381,367,221,454,95,23100,39100,12200,1770,200,2.6,9,9,11.3,7500,9,999999999,179,0.1160,0,88,0.170,999.0,99.0 +2001,10,22,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,13.0,77,98900,591,1381,371,363,519,140,38300,50600,16600,2790,190,1.0,9,9,11.3,7500,9,999999999,179,0.1160,0,88,0.170,999.0,99.0 +2001,10,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,13.0,68,98900,747,1381,381,509,663,149,52900,65500,17300,3220,170,2.6,9,9,11.3,7500,9,999999999,179,0.1160,0,88,0.170,999.0,99.0 +2001,10,22,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,13.0,60,98800,840,1381,392,585,682,169,61000,68100,19400,3970,160,2.6,9,9,11.3,7500,9,999999999,179,0.1160,0,88,0.170,999.0,99.0 +2001,10,22,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,13.0,57,98700,864,1381,408,551,498,239,58000,51100,25900,5930,210,4.6,10,10,11.3,7500,9,999999999,179,0.1160,0,88,0.170,999.0,99.0 +2001,10,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.6,13.0,58,98700,817,1381,406,473,412,228,49600,42100,24600,5400,200,4.4,10,10,11.3,6750,9,999999999,179,0.1160,0,88,0.170,999.0,99.0 +2001,10,22,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,13.0,60,98600,703,1381,403,401,349,222,42700,36300,24100,5130,190,4.1,10,10,11.3,6000,9,999999999,189,0.1160,0,88,0.170,999.0,99.0 +2001,10,22,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,14.0,64,98600,530,1381,404,155,23,146,17500,1700,16800,5510,190,3.1,10,10,11.3,6000,9,999999999,200,0.1160,0,88,0.170,999.0,99.0 +2001,10,22,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,13.0,64,98500,309,1381,397,97,50,86,10600,4200,9700,2160,180,3.1,10,10,11.3,4500,9,999999999,200,0.1160,0,88,0.170,999.0,99.0 +2001,10,22,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,13.0,68,98400,69,1047,392,4,0,4,500,0,500,160,140,2.6,10,10,11.3,4500,9,999999999,209,0.1160,0,88,0.170,999.0,99.0 +2001,10,22,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,13.0,73,98400,0,0,387,0,0,0,0,0,0,0,120,2.1,10,10,11.3,4500,9,999999999,220,0.1160,0,88,0.170,999.0,99.0 +2001,10,22,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,13.0,77,98400,0,0,381,0,0,0,0,0,0,0,120,2.6,10,10,11.3,4500,9,999999999,220,0.1160,0,88,0.170,999.0,99.0 +2001,10,22,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,12.0,77,98300,0,0,365,0,0,0,0,0,0,0,130,2.6,9,9,11.3,7500,9,999999999,229,0.1160,0,88,0.170,999.0,99.0 +2001,10,22,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,12.0,72,98200,0,0,370,0,0,0,0,0,0,0,150,3.1,9,9,11.3,1800,9,999999999,240,0.1160,0,88,0.170,999.0,99.0 +2001,10,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,12.0,77,98100,0,0,365,0,0,0,0,0,0,0,140,3.6,9,9,11.3,1800,9,999999999,240,0.1160,0,88,0.170,999.0,99.0 +2001,10,22,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,12.0,72,98000,0,0,370,0,0,0,0,0,0,0,140,3.1,9,9,11.3,1800,9,999999999,250,0.1160,0,88,0.170,999.0,99.0 +2001,10,23,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,12.0,72,98000,0,0,370,0,0,0,0,0,0,0,140,3.6,9,9,11.3,3600,9,999999999,259,0.1150,0,88,0.170,999.0,99.0 +2001,10,23,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,12.0,68,98000,0,0,385,0,0,0,0,0,0,0,190,3.6,10,10,11.3,3600,9,999999999,259,0.1150,0,88,0.170,999.0,99.0 +2001,10,23,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,13.0,73,97900,0,0,387,0,0,0,0,0,0,0,180,4.6,10,10,11.3,3600,9,999999999,259,0.1150,0,88,0.170,999.0,99.0 +2001,10,23,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,13.0,73,97800,0,0,387,0,0,0,0,0,0,0,190,4.1,10,10,11.3,3600,9,999999999,259,0.1150,0,88,0.170,999.0,99.0 +2001,10,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,13.0,73,97700,0,0,376,0,0,0,0,0,0,0,170,5.1,9,9,11.3,7500,9,999999999,259,0.1150,0,88,0.170,999.0,99.0 +2001,10,23,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,13.0,73,97700,0,0,376,0,0,0,0,0,0,0,180,6.2,9,9,11.3,7500,9,999999999,259,0.1150,0,88,0.170,999.0,99.0 +2001,10,23,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,14.0,77,97600,0,81,388,0,0,0,0,0,0,0,180,6.2,10,10,11.3,7500,9,999999999,259,0.1150,0,88,0.170,999.0,99.0 +2001,10,23,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,14.0,73,97600,137,1381,393,17,0,17,2000,0,2000,640,180,7.2,10,10,11.3,3600,9,999999999,259,0.1150,0,88,0.170,999.0,99.0 +2001,10,23,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,15.0,73,97600,379,1381,400,54,0,54,6400,0,6400,2220,190,7.2,10,10,11.3,1200,9,999999999,259,0.1150,0,88,0.170,999.0,99.0 +2001,10,23,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.0,17.0,88,97600,586,1381,397,87,0,87,10400,0,10400,3870,190,6.2,10,10,11.3,1200,9,999999999,259,0.1150,0,88,0.170,0.0,3.0 +2001,10,23,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,20.3,17.1,82,97600,741,1381,404,140,0,140,16500,0,16500,6320,200,8.0,10,10,11.3,1125,9,999999999,259,0.1150,0,88,0.170,999.0,99.0 +2001,10,23,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,17.0,78,97600,834,1381,408,99,0,99,12200,0,12200,4930,200,9.8,10,10,11.3,1050,9,999999999,259,0.1150,0,88,0.170,999.0,99.0 +2001,10,23,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.0,17.0,73,97600,858,1381,414,102,0,102,12600,0,12600,5110,200,7.2,10,10,11.3,1050,9,999999999,259,0.1150,0,88,0.170,0.0,6.0 +2001,10,23,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,17.0,73,97500,811,1381,414,128,0,128,15400,0,15400,6100,200,8.2,10,10,11.3,1050,9,999999999,259,0.1150,0,88,0.170,999.0,99.0 +2001,10,23,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,17.0,69,97500,697,1381,419,101,0,101,12100,0,12100,4690,190,5.7,10,10,11.3,1050,9,999999999,259,0.1150,0,88,0.170,999.0,99.0 +2001,10,23,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,17.0,83,97400,524,1381,403,75,0,75,8900,0,8900,3270,190,5.7,10,10,8.0,900,9,999999999,259,0.1150,0,88,0.170,0.0,3.0 +2001,10,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,18.0,100,97500,303,1381,393,60,0,60,6800,0,6800,2240,200,5.7,10,10,4.4,750,9,999999999,250,0.1150,0,88,0.170,999.0,99.0 +2001,10,23,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,17.0,100,97600,65,1002,386,5,0,5,600,0,600,200,200,5.1,10,10,4.8,900,9,999999999,250,0.1150,0,88,0.170,999.0,99.0 +2001,10,23,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.0,16.0,100,97600,0,0,380,0,0,0,0,0,0,0,160,1.0,10,10,8.0,1200,9,999999999,250,0.1150,0,88,0.170,8.0,6.0 +2001,10,23,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,17.0,100,97600,0,0,386,0,0,0,0,0,0,0,150,2.6,10,10,8.0,240,9,999999999,250,0.1150,0,88,0.170,999.0,99.0 +2001,10,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,17.0,100,97600,0,0,386,0,0,0,0,0,0,0,180,4.6,10,10,8.0,240,9,999999999,250,0.1150,0,88,0.170,999.0,99.0 +2001,10,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.0,16.0,100,97700,0,0,380,0,0,0,0,0,0,0,240,3.6,10,10,11.3,1200,9,999999999,250,0.1150,0,88,0.170,2.0,3.0 +2001,10,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,16.0,100,97600,0,0,380,0,0,0,0,0,0,0,180,3.6,10,10,11.3,1200,9,999999999,250,0.1150,0,88,0.170,999.0,99.0 +2001,10,23,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,16.0,100,97600,0,0,380,0,0,0,0,0,0,0,180,3.6,10,10,9.7,450,9,999999999,250,0.1150,0,88,0.170,999.0,99.0 +2001,10,24,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.0,16.0,100,97600,0,0,380,0,0,0,0,0,0,0,190,3.6,10,10,6.4,480,9,999999999,250,0.1140,0,88,0.170,4.0,6.0 +2001,10,24,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,16.0,100,97600,0,0,380,0,0,0,0,0,0,0,180,2.1,10,10,6.4,480,9,999999999,259,0.1140,0,88,0.170,999.0,99.0 +2001,10,24,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,15.0,100,97600,0,0,373,0,0,0,0,0,0,0,220,3.1,10,10,6.4,180,9,999999999,259,0.1140,0,88,0.170,999.0,99.0 +2001,10,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,15.0,100,97700,0,0,373,0,0,0,0,0,0,0,210,2.6,10,10,6.4,180,9,999999999,270,0.1140,0,88,0.170,10.0,3.0 +2001,10,24,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,14.0,100,97600,0,0,367,0,0,0,0,0,0,0,140,3.6,10,10,9.7,180,9,999999999,279,0.1140,0,88,0.170,999.0,99.0 +2001,10,24,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,14.0,100,97500,0,0,367,0,0,0,0,0,0,0,130,3.6,10,10,11.3,1050,9,999999999,279,0.1140,0,88,0.170,999.0,99.0 +2001,10,24,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.0,14.0,100,97500,0,58,357,0,0,0,0,0,0,0,140,3.1,9,9,11.3,3000,9,999999999,290,0.1140,0,88,0.170,15.0,6.0 +2001,10,24,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,14.0,100,97500,132,1382,337,0,0,0,0,0,0,0,150,4.1,5,5,11.3,77777,9,999999999,300,0.1140,0,88,0.170,999.0,99.0 +2001,10,24,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,14.0,94,97600,374,1382,342,215,286,138,22300,24700,15600,2920,160,4.6,5,5,11.3,77777,9,999999999,300,0.1140,0,88,0.170,999.0,99.0 +2001,10,24,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,15.0,88,97600,580,1382,373,141,0,141,16100,0,16100,5640,170,5.1,9,9,11.3,2100,9,999999999,309,0.1140,0,88,0.170,999.0,99.0 +2001,10,24,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,16.0,83,97500,735,1382,358,516,584,204,53900,58900,22400,4510,170,5.1,3,3,11.3,77777,9,999999999,320,0.1140,0,88,0.170,999.0,99.0 +2001,10,24,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,16.0,73,97400,828,1382,396,585,585,233,61300,59800,25300,5580,200,9.3,9,9,11.3,2100,9,999999999,320,0.1140,0,88,0.170,999.0,99.0 +2001,10,24,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,17.0,78,97400,852,1382,408,336,72,291,36900,7300,32300,9390,180,7.7,10,10,9.7,750,9,999999999,329,0.1140,0,88,0.170,999.0,99.0 +2001,10,24,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,17.0,78,97200,805,1382,408,187,6,183,21800,500,21500,8110,180,6.2,10,10,11.3,720,9,999999999,309,0.1140,0,88,0.170,999.0,99.0 +2001,10,24,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,18.0,78,97200,691,1382,404,130,0,130,15300,0,15300,5770,180,6.7,9,9,11.3,780,9,999999999,290,0.1140,0,88,0.170,999.0,99.0 +2001,10,24,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,18.0,78,97100,517,1382,404,250,232,162,26300,22500,17800,3430,180,7.2,9,9,11.3,1050,9,999999999,270,0.1140,0,88,0.170,999.0,99.0 +2001,10,24,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,17.0,73,97000,297,1382,402,156,417,66,16400,32400,9400,1200,180,6.2,9,9,9.7,1350,9,999999999,250,0.1140,0,88,0.170,999.0,99.0 +2001,10,24,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,16.0,69,96900,61,979,401,5,0,5,600,0,600,200,180,8.2,9,9,9.7,1500,9,999999999,229,0.1140,0,88,0.170,999.0,99.0 +2001,10,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,16.0,69,96900,0,0,401,0,0,0,0,0,0,0,180,8.7,9,9,11.3,2400,9,999999999,209,0.1140,0,88,0.170,999.0,99.0 +2001,10,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,12.0,88,97000,0,0,365,0,0,0,0,0,0,0,250,7.7,10,10,3.2,750,9,999999999,189,0.1140,0,88,0.170,999.0,99.0 +2001,10,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,13.0,94,97000,0,0,366,0,0,0,0,0,0,0,230,3.1,10,10,6.4,900,9,999999999,160,0.1140,0,88,0.170,999.0,99.0 +2001,10,24,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.0,13.0,94,97100,0,0,366,0,0,0,0,0,0,0,220,5.1,10,10,11.3,1800,9,999999999,139,0.1140,0,88,0.170,11.0,3.0 +2001,10,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,10.0,94,97300,0,0,347,0,0,0,0,0,0,0,260,8.7,10,10,11.3,1050,9,999999999,120,0.1140,0,88,0.170,999.0,99.0 +2001,10,24,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,7.0,82,97500,0,0,311,0,0,0,0,0,0,0,240,6.7,5,5,11.3,77777,9,999999999,100,0.1140,0,88,0.170,999.0,99.0 +2001,10,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.0,7.0,87,97600,0,0,307,0,0,0,0,0,0,0,240,5.7,5,5,11.3,77777,9,999999999,80,0.1130,0,88,0.170,11.0,6.0 +2001,10,25,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,7.0,87,97600,0,0,307,0,0,0,0,0,0,0,220,5.7,5,5,11.3,77777,9,999999999,80,0.1130,0,88,0.170,999.0,99.0 +2001,10,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,7.0,87,97700,0,0,325,0,0,0,0,0,0,0,220,6.2,9,9,11.3,660,9,999999999,89,0.1130,0,88,0.170,999.0,99.0 +2001,10,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,7.0,87,97700,0,0,325,0,0,0,0,0,0,0,240,8.7,9,9,11.3,660,9,999999999,89,0.1130,0,88,0.170,999.0,99.0 +2001,10,25,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,4.0,87,97800,0,0,308,0,0,0,0,0,0,0,250,7.2,9,9,11.3,720,9,999999999,89,0.1130,0,88,0.170,999.0,99.0 +2001,10,25,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,2.0,81,97900,0,0,302,0,0,0,0,0,0,0,250,4.6,9,9,11.3,720,9,999999999,89,0.1130,0,88,0.170,999.0,99.0 +2001,10,25,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,2.0,81,97900,0,35,278,0,0,0,0,0,0,0,230,7.2,2,2,11.3,77777,9,999999999,89,0.1130,0,88,0.170,0.0,6.0 +2001,10,25,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,2.0,75,98000,127,1383,285,0,0,0,0,0,0,0,230,9.8,3,3,11.3,77777,9,999999999,89,0.1130,0,88,0.170,999.0,99.0 +2001,10,25,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,0.0,65,98100,369,1383,280,201,384,98,20700,32500,12000,1840,220,10.3,2,2,11.3,77777,9,999999999,89,0.1130,0,88,0.170,999.0,99.0 +2001,10,25,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,7.6,-1.3,53,98100,575,1383,285,384,643,116,39600,61000,14200,2240,230,11.6,2,2,11.3,77777,9,999999999,89,0.1130,0,88,0.170,999.0,99.0 +2001,10,25,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,-3.0,41,98100,730,1383,289,503,687,139,52400,67800,16400,2980,230,12.9,2,2,11.3,77777,9,999999999,100,0.1130,0,88,0.170,999.0,99.0 +2001,10,25,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,-3.0,39,98100,822,1383,296,604,802,125,64100,81000,15800,2990,240,11.8,3,3,11.3,77777,9,999999999,100,0.1130,0,88,0.170,999.0,99.0 +2001,10,25,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,-2.0,39,98100,845,1383,298,623,810,127,64400,80200,15200,2780,240,12.3,2,2,11.3,77777,9,999999999,100,0.1130,0,88,0.170,999.0,99.0 +2001,10,25,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,-2.0,37,98100,799,1383,306,548,740,120,58300,74600,15100,2820,240,12.3,3,3,11.3,77777,9,999999999,100,0.1130,0,88,0.170,999.0,99.0 +2001,10,25,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,-2.0,37,98100,685,1383,303,479,662,150,49300,64300,17300,3030,250,10.3,2,2,11.3,77777,9,999999999,100,0.1130,0,88,0.170,999.0,99.0 +2001,10,25,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,-3.0,36,98200,511,1383,300,228,174,164,24700,16800,18500,3790,250,12.3,3,3,11.3,77777,9,999999999,100,0.1130,0,88,0.170,999.0,99.0 +2001,10,25,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,-4.0,36,98200,291,1383,292,150,340,79,15500,26100,10000,1470,250,9.3,2,2,11.3,77777,9,999999999,100,0.1130,0,88,0.170,999.0,99.0 +2001,10,25,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,-5.0,35,98300,57,957,294,8,54,7,1200,2200,1100,120,260,9.3,5,5,11.3,77777,9,999999999,89,0.1130,0,88,0.170,999.0,99.0 +2001,10,25,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,-3.0,44,98400,0,0,292,0,0,0,0,0,0,0,260,8.7,5,5,11.3,77777,9,999999999,89,0.1130,0,88,0.170,999.0,99.0 +2001,10,25,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,-4.0,41,98400,0,0,308,0,0,0,0,0,0,0,250,8.7,9,9,11.3,2100,9,999999999,89,0.1130,0,88,0.170,999.0,99.0 +2001,10,25,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,-4.0,44,98400,0,0,304,0,0,0,0,0,0,0,250,8.7,9,9,11.3,2100,9,999999999,89,0.1130,0,88,0.170,999.0,99.0 +2001,10,25,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,-4.0,47,98500,0,0,283,0,0,0,0,0,0,0,240,9.8,5,5,11.3,77777,9,999999999,89,0.1130,0,88,0.170,999.0,99.0 +2001,10,25,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,5.5,-4.0,48,98400,0,0,277,0,0,0,0,0,0,0,240,8.5,3,3,11.3,77777,9,999999999,89,0.1130,0,88,0.170,999.0,99.0 +2001,10,25,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-4.0,50,98400,0,0,263,0,0,0,0,0,0,0,240,7.2,0,0,11.3,77777,9,999999999,89,0.1130,0,88,0.170,999.0,99.0 +2001,10,26,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-4.0,50,98400,0,0,263,0,0,0,0,0,0,0,240,7.7,0,0,11.3,77777,9,999999999,89,0.1130,0,88,0.170,999.0,99.0 +2001,10,26,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-4.0,50,98400,0,0,279,0,0,0,0,0,0,0,250,8.7,5,5,11.3,77777,9,999999999,89,0.1130,0,88,0.170,999.0,99.0 +2001,10,26,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-4.0,50,98400,0,0,295,0,0,0,0,0,0,0,260,9.8,9,9,11.3,1500,9,999999999,89,0.1130,0,88,0.170,999.0,99.0 +2001,10,26,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-4.0,50,98400,0,0,295,0,0,0,0,0,0,0,250,9.3,9,9,11.3,1500,9,999999999,100,0.1130,0,88,0.170,999.0,99.0 +2001,10,26,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-4.0,54,98500,0,0,299,0,0,0,0,0,0,0,250,9.8,10,10,11.3,1500,9,999999999,100,0.1130,0,88,0.170,999.0,99.0 +2001,10,26,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-4.0,54,98500,0,0,299,0,0,0,0,0,0,0,240,8.2,10,10,11.3,1500,9,999999999,100,0.1130,0,88,0.170,999.0,99.0 +2001,10,26,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,-4.0,58,98600,0,12,295,0,0,0,0,0,0,0,260,9.3,10,10,11.3,1080,9,999999999,100,0.1130,0,88,0.170,999.0,99.0 +2001,10,26,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,-3.0,63,98700,122,1384,296,0,0,0,0,0,0,0,250,8.2,10,10,11.3,1500,9,999999999,110,0.1130,0,88,0.170,999.0,99.0 +2001,10,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,-4.0,58,98700,363,1384,295,93,0,93,10400,0,10400,3320,250,10.3,10,10,11.3,1500,9,999999999,110,0.1130,0,88,0.170,999.0,99.0 +2001,10,26,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,-4.0,58,98800,569,1384,295,67,0,67,8100,0,8100,3050,250,9.3,10,10,11.3,1500,9,999999999,110,0.1130,0,88,0.170,999.0,99.0 +2001,10,26,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-4.0,54,98900,724,1384,299,153,0,153,17900,0,17900,6700,260,10.8,10,10,11.3,1500,9,999999999,110,0.1130,0,88,0.170,999.0,99.0 +2001,10,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-3.0,55,98900,816,1384,297,530,495,237,55300,50500,25400,5630,250,10.8,9,9,11.3,1500,9,999999999,110,0.1130,0,88,0.170,999.0,99.0 +2001,10,26,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-4.0,50,98900,839,1384,295,545,486,250,56900,49700,26600,6090,250,8.2,9,9,11.3,1500,9,999999999,120,0.1130,0,88,0.170,999.0,99.0 +2001,10,26,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-4.0,54,98900,793,1384,291,227,24,214,26200,2000,25100,9020,260,8.7,9,9,11.3,1350,9,999999999,120,0.1130,0,88,0.170,999.0,99.0 +2001,10,26,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-4.0,54,98900,678,1384,291,79,0,79,9600,0,9600,3750,270,10.3,9,9,11.3,1350,9,999999999,110,0.1130,0,88,0.170,999.0,99.0 +2001,10,26,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,4.3,-3.9,53,99000,505,1384,293,90,0,90,10500,0,10500,3750,270,10.1,9,9,11.3,1275,9,999999999,110,0.1130,0,88,0.170,999.0,99.0 +2001,10,26,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-4.0,54,99000,285,1384,291,91,60,78,9900,4900,8900,1940,270,9.8,9,9,11.3,1200,9,999999999,110,0.1130,0,88,0.170,999.0,99.0 +2001,10,26,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,3.7,-4.0,55,99100,53,911,290,5,0,5,600,0,600,200,270,8.3,9,9,11.3,1650,9,999999999,110,0.1130,0,88,0.170,999.0,99.0 +2001,10,26,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.0,-4.0,58,99100,0,0,287,0,0,0,0,0,0,0,270,6.7,9,9,11.3,2100,9,999999999,110,0.1130,0,88,0.170,0.0,6.0 +2001,10,26,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-3.0,67,99200,0,0,292,0,0,0,0,0,0,0,260,6.7,10,10,11.3,2400,9,999999999,110,0.1130,0,88,0.170,999.0,99.0 +2001,10,26,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-3.0,67,99200,0,0,284,0,0,0,0,0,0,0,260,6.2,9,9,11.3,2400,9,999999999,110,0.1130,0,88,0.170,999.0,99.0 +2001,10,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-3.0,67,99200,0,0,284,0,0,0,0,0,0,0,260,7.2,9,9,11.3,2400,9,999999999,100,0.1130,0,88,0.170,999.0,99.0 +2001,10,26,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-3.0,67,99200,0,0,268,0,0,0,0,0,0,0,270,7.7,5,5,11.3,77777,9,999999999,100,0.1130,0,88,0.170,999.0,99.0 +2001,10,26,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-2.0,79,99200,0,0,265,0,0,0,0,0,0,0,260,6.2,5,5,11.3,77777,9,999999999,100,0.1130,0,88,0.170,999.0,99.0 +2001,10,27,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-2.0,73,99200,0,0,285,0,0,0,0,0,0,0,260,5.7,9,9,11.3,2400,9,999999999,100,0.1120,0,88,0.170,999.0,99.0 +2001,10,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-2.0,73,99200,0,0,285,0,0,0,0,0,0,0,270,6.2,9,9,11.3,2400,9,999999999,100,0.1120,0,88,0.170,999.0,99.0 +2001,10,27,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-2.0,73,99200,0,0,285,0,0,0,0,0,0,0,270,4.6,9,9,11.3,2100,9,999999999,100,0.1120,0,88,0.170,999.0,99.0 +2001,10,27,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.0,-1.0,86,99200,0,0,282,0,0,0,0,0,0,0,270,4.6,9,9,11.3,2100,9,999999999,100,0.1120,0,88,0.170,0.0,3.0 +2001,10,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-1.0,86,99300,0,0,282,0,0,0,0,0,0,0,270,4.6,9,9,11.3,2100,9,999999999,89,0.1120,0,88,0.170,999.0,99.0 +2001,10,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-1.0,80,99400,0,0,286,0,0,0,0,0,0,0,270,4.1,9,9,11.3,2100,9,999999999,89,0.1120,0,88,0.170,999.0,99.0 +2001,10,27,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.0,-1.0,80,99500,0,0,294,0,0,0,0,0,0,0,280,4.1,10,10,11.3,1800,9,999999999,89,0.1120,0,88,0.170,0.0,6.0 +2001,10,27,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-1.0,80,99600,118,1350,294,0,0,0,0,0,0,0,290,4.1,10,10,11.3,1800,9,999999999,89,0.1120,0,88,0.170,999.0,99.0 +2001,10,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,-1.0,74,99600,358,1385,290,195,242,132,20100,20500,14800,2780,290,4.6,9,9,11.3,1800,9,999999999,89,0.1120,0,88,0.170,999.0,99.0 +2001,10,27,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-1.0,69,99700,564,1385,294,169,19,161,19000,1400,18400,6080,280,5.7,9,9,11.3,1800,9,999999999,89,0.1120,0,88,0.170,999.0,99.0 +2001,10,27,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-1.0,69,99700,718,1385,303,274,67,239,30100,6700,26600,7130,300,5.1,10,10,11.3,1500,9,999999999,80,0.1120,0,88,0.170,999.0,99.0 +2001,10,27,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-2.0,59,99700,810,1385,306,376,157,284,40800,16400,31200,7580,300,5.1,10,10,11.3,1500,9,999999999,80,0.1120,0,88,0.170,999.0,99.0 +2001,10,27,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-2.0,59,99700,833,1385,306,240,12,232,27600,1000,26900,9830,300,5.1,10,10,11.3,1500,9,999999999,80,0.1120,0,88,0.170,999.0,99.0 +2001,10,27,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-2.0,59,99800,786,1385,306,227,18,217,26100,1500,25200,9070,290,6.2,10,10,11.3,1500,9,999999999,80,0.1120,0,88,0.170,999.0,99.0 +2001,10,27,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-2.0,59,99800,672,1385,306,309,142,240,33400,14400,26400,5930,290,4.6,10,10,11.3,1500,9,999999999,89,0.1120,0,88,0.170,999.0,99.0 +2001,10,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-1.0,64,99800,499,1385,307,212,133,163,22800,12700,18200,3750,280,5.1,10,10,11.3,1500,9,999999999,89,0.1120,0,88,0.170,0.0,3.0 +2001,10,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-2.0,59,99800,279,1385,306,153,365,79,15600,27400,10100,1470,290,4.1,10,10,11.3,1500,9,999999999,100,0.1120,0,88,0.170,999.0,99.0 +2001,10,27,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-2.0,64,99900,50,888,302,7,73,5,1000,3500,800,100,290,4.6,10,10,11.3,1500,9,999999999,100,0.1120,0,88,0.170,999.0,99.0 +2001,10,27,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-1.0,69,99900,0,0,303,0,0,0,0,0,0,0,290,5.1,10,10,11.3,1440,9,999999999,110,0.1120,0,88,0.170,999.0,99.0 +2001,10,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,3.9,-0.9,70,100000,0,0,302,0,0,0,0,0,0,0,300,4.6,10,10,11.3,1470,9,999999999,110,0.1120,0,88,0.170,999.0,99.0 +2001,10,27,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-1.0,69,100000,0,0,303,0,0,0,0,0,0,0,300,4.1,10,10,11.3,1500,9,999999999,120,0.1120,0,88,0.170,999.0,99.0 +2001,10,27,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,-1.0,74,100000,0,0,298,0,0,0,0,0,0,0,290,2.6,10,10,11.3,1500,9,999999999,120,0.1120,0,88,0.170,999.0,99.0 +2001,10,27,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,-1.0,74,100100,0,0,298,0,0,0,0,0,0,0,300,2.6,10,10,11.3,1500,9,999999999,120,0.1120,0,88,0.170,999.0,99.0 +2001,10,27,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,-1.0,74,100100,0,0,298,0,0,0,0,0,0,0,300,2.1,10,10,11.3,1500,9,999999999,129,0.1120,0,88,0.170,999.0,99.0 +2001,10,28,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,0.0,81,100100,0,0,299,0,0,0,0,0,0,0,280,1.0,10,10,11.3,1500,9,999999999,129,0.1110,0,88,0.170,999.0,99.0 +2001,10,28,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,0.0,81,100100,0,0,299,0,0,0,0,0,0,0,250,1.5,10,10,11.3,1350,9,999999999,129,0.1110,0,88,0.170,999.0,99.0 +2001,10,28,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,1.0,87,100100,0,0,301,0,0,0,0,0,0,0,230,1.5,10,10,11.3,1350,9,999999999,129,0.1110,0,88,0.170,999.0,99.0 +2001,10,28,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,0.0,81,100100,0,0,291,0,0,0,0,0,0,0,210,1.5,9,9,11.3,1350,9,999999999,120,0.1110,0,88,0.170,999.0,99.0 +2001,10,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,0.0,87,100200,0,0,267,0,0,0,0,0,0,0,260,1.5,3,3,11.3,77777,9,999999999,120,0.1110,0,88,0.170,999.0,99.0 +2001,10,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-2.0,85,100300,0,0,255,0,0,0,0,0,0,0,210,0.5,2,2,11.3,77777,9,999999999,120,0.1110,0,88,0.170,999.0,99.0 +2001,10,28,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-2.0,92,100300,0,0,254,0,0,0,0,0,0,0,110,1.0,3,3,11.3,77777,9,999999999,110,0.1110,0,88,0.170,999.0,99.0 +2001,10,28,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,0.0,100,100400,113,1328,263,0,0,0,0,0,0,0,150,1.0,5,5,11.3,77777,9,999999999,110,0.1110,0,88,0.170,999.0,99.0 +2001,10,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,2.0,93,100500,353,1385,302,180,282,108,18900,23800,12800,2170,300,1.0,10,10,11.3,7500,9,999999999,110,0.1110,0,88,0.170,999.0,99.0 +2001,10,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,0.0,70,100500,558,1385,276,359,570,128,37900,54800,15700,2500,220,1.5,2,2,11.3,77777,9,999999999,100,0.1110,0,88,0.170,999.0,99.0 +2001,10,28,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,-3.0,51,100500,712,1385,280,466,590,161,49600,59400,19000,3420,200,2.1,3,3,11.3,77777,9,999999999,100,0.1110,0,88,0.170,999.0,99.0 +2001,10,28,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,-2.0,48,100500,804,1385,286,542,664,156,56600,66200,18100,3550,230,2.6,2,2,11.3,77777,9,999999999,89,0.1110,0,88,0.170,999.0,99.0 +2001,10,28,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,-2.0,48,100400,827,1385,289,581,714,153,60900,71500,18000,3580,160,1.5,3,3,11.3,77777,9,999999999,89,0.1110,0,88,0.170,999.0,99.0 +2001,10,28,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,-2.0,45,100300,780,1385,290,530,739,112,56400,74400,14300,2600,170,1.0,2,2,11.3,77777,9,999999999,100,0.1110,0,88,0.170,999.0,99.0 +2001,10,28,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,-2.0,42,100300,666,1385,297,444,668,122,46300,65200,14800,2520,220,2.1,3,3,11.3,77777,9,999999999,100,0.1110,0,88,0.170,999.0,99.0 +2001,10,28,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,-2.0,42,100300,493,1385,285,296,527,107,31300,49200,13700,2030,210,4.1,0,0,11.3,77777,9,999999999,110,0.1110,0,88,0.170,999.0,99.0 +2001,10,28,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,-1.0,49,100300,273,1385,282,143,413,61,14400,31000,8300,1060,190,3.1,0,0,11.3,77777,9,999999999,120,0.1110,0,88,0.170,999.0,99.0 +2001,10,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,-1.0,56,100200,46,866,274,5,46,4,800,2200,600,80,190,3.1,0,0,11.3,77777,9,999999999,120,0.1110,0,88,0.170,999.0,99.0 +2001,10,28,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,-1.0,56,100200,0,0,274,0,0,0,0,0,0,0,160,2.6,0,0,11.3,77777,9,999999999,129,0.1110,0,88,0.170,999.0,99.0 +2001,10,28,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-2.0,59,100200,0,0,265,0,0,0,0,0,0,0,130,2.6,0,0,11.3,77777,9,999999999,129,0.1110,0,88,0.170,999.0,99.0 +2001,10,28,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-2.0,64,100200,0,0,261,0,0,0,0,0,0,0,150,1.0,0,0,11.3,77777,9,999999999,139,0.1110,0,88,0.170,999.0,99.0 +2001,10,28,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,3.9,-1.5,67,100200,0,0,261,0,0,0,0,0,0,0,160,0.8,0,0,11.3,77777,9,999999999,150,0.1110,0,88,0.170,999.0,99.0 +2001,10,28,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-1.0,69,100200,0,0,262,0,0,0,0,0,0,0,180,0.5,0,0,11.3,77777,9,999999999,150,0.1110,0,88,0.170,999.0,99.0 +2001,10,28,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,-1.0,74,100200,0,0,259,0,0,0,0,0,0,0,190,1.5,0,0,11.3,77777,9,999999999,160,0.1110,0,88,0.170,999.0,99.0 +2001,10,29,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-1.0,80,100200,0,0,255,0,0,0,0,0,0,0,110,1.5,0,0,11.3,77777,9,999999999,170,0.1100,0,88,0.170,999.0,99.0 +2001,10,29,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-1.0,86,100200,0,0,251,0,0,0,0,0,0,0,210,1.0,0,0,11.3,77777,9,999999999,160,0.1100,0,88,0.170,999.0,99.0 +2001,10,29,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-1.0,86,100200,0,0,251,0,0,0,0,0,0,0,140,2.6,0,0,11.3,77777,9,999999999,160,0.1100,0,88,0.170,999.0,99.0 +2001,10,29,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-2.0,85,100200,0,0,247,0,0,0,0,0,0,0,110,1.0,0,0,11.3,77777,9,999999999,150,0.1100,0,88,0.170,999.0,99.0 +2001,10,29,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-2.0,85,100200,0,0,247,0,0,0,0,0,0,0,140,2.6,0,0,11.3,77777,9,999999999,150,0.1100,0,88,0.170,999.0,99.0 +2001,10,29,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-1.0,86,100200,0,0,251,0,0,0,0,0,0,0,100,2.1,0,0,11.3,77777,9,999999999,139,0.1100,0,88,0.170,999.0,99.0 +2001,10,29,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-2.0,85,100200,0,0,247,0,0,0,0,0,0,0,130,2.1,0,0,11.3,77777,9,999999999,139,0.1100,0,88,0.170,999.0,99.0 +2001,10,29,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-1.0,86,100300,108,1305,256,0,0,0,0,0,0,0,160,1.0,3,1,11.3,77777,9,999999999,139,0.1100,0,88,0.170,999.0,99.0 +2001,10,29,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,1.0,70,100400,348,1386,277,189,342,103,19300,28200,12200,1950,190,2.6,2,1,11.3,77777,9,999999999,129,0.1100,0,88,0.170,999.0,99.0 +2001,10,29,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,0.0,53,100400,553,1386,288,339,521,130,35700,50000,15700,2540,210,5.7,3,1,11.3,77777,9,999999999,129,0.1100,0,88,0.170,999.0,99.0 +2001,10,29,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,0.0,47,100400,707,1386,296,492,712,127,51300,70200,15400,2700,210,5.1,2,1,11.3,77777,9,999999999,120,0.1100,0,88,0.170,999.0,99.0 +2001,10,29,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,0.0,41,100400,798,1386,305,567,742,138,59600,74300,16700,3170,210,4.6,3,1,11.3,77777,9,999999999,120,0.1100,0,88,0.170,999.0,99.0 +2001,10,29,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,0.0,38,100300,821,1386,309,581,744,139,61300,74800,16800,3280,220,4.1,2,1,11.3,77777,9,999999999,110,0.1100,0,88,0.170,999.0,99.0 +2001,10,29,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,0.0,36,100200,774,1386,314,518,704,124,54800,70500,15200,2820,210,4.1,3,1,11.3,77777,9,999999999,120,0.1100,0,88,0.170,999.0,99.0 +2001,10,29,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,1.0,36,100200,660,1386,319,444,673,122,46200,65600,14800,2510,200,3.6,2,1,11.3,77777,9,999999999,120,0.1100,0,88,0.170,999.0,99.0 +2001,10,29,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,1.0,36,100200,487,1386,319,285,515,103,30200,47900,13300,1940,200,4.1,3,1,11.3,77777,9,999999999,120,0.1100,0,88,0.170,999.0,99.0 +2001,10,29,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,13.3,0.9,43,100200,268,1386,307,138,390,62,14300,28800,8800,1130,200,3.4,3,1,11.3,77777,9,999999999,129,0.1100,0,88,0.170,999.0,99.0 +2001,10,29,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,1.0,54,100200,43,843,293,3,12,3,400,400,400,40,200,2.6,3,1,11.3,77777,9,999999999,129,0.1100,0,88,0.170,999.0,99.0 +2001,10,29,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,1.0,57,100200,0,0,289,0,0,0,0,0,0,0,170,1.0,2,1,11.3,77777,9,999999999,129,0.1100,0,88,0.170,999.0,99.0 +2001,10,29,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,2.0,61,100200,0,0,299,0,0,0,0,0,0,0,150,1.5,9,4,11.3,2400,9,999999999,139,0.1100,0,88,0.170,999.0,99.0 +2001,10,29,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,2.0,54,100200,0,0,303,0,0,0,0,0,0,0,120,1.5,5,2,11.3,77777,9,999999999,139,0.1100,0,88,0.170,999.0,99.0 +2001,10,29,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,3.0,62,100200,0,0,305,0,0,0,0,0,0,0,100,1.0,9,4,11.3,2400,9,999999999,150,0.1100,0,88,0.170,999.0,99.0 +2001,10,29,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,2.0,54,100200,0,0,308,0,0,0,0,0,0,0,70,0.5,9,4,11.3,2400,9,999999999,150,0.1100,0,88,0.170,999.0,99.0 +2001,10,29,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,4.0,66,100200,0,0,306,0,0,0,0,0,0,0,150,0.5,9,4,11.3,2400,9,999999999,150,0.1100,0,88,0.170,999.0,99.0 +2001,10,30,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,2.0,54,100200,0,0,329,0,0,0,0,0,0,0,170,1.0,9,9,11.3,2400,9,999999999,160,0.1100,0,88,0.170,999.0,99.0 +2001,10,30,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,4.0,66,100100,0,0,326,0,0,0,0,0,0,0,90,1.0,9,9,11.3,2400,9,999999999,160,0.1100,0,88,0.170,999.0,99.0 +2001,10,30,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,3.0,71,100100,0,0,316,0,0,0,0,0,0,0,40,1.0,9,9,11.3,1800,9,999999999,150,0.1100,0,88,0.170,999.0,99.0 +2001,10,30,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,6.0,81,100100,0,0,324,0,0,0,0,0,0,0,50,1.0,9,9,11.3,1800,9,999999999,150,0.1100,0,88,0.170,999.0,99.0 +2001,10,30,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,5.0,76,100100,0,0,323,0,0,0,0,0,0,0,50,1.0,9,9,11.3,1800,9,999999999,150,0.1100,0,88,0.170,999.0,99.0 +2001,10,30,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,5.0,81,100100,0,0,318,0,0,0,0,0,0,0,340,1.0,9,9,11.3,2100,9,999999999,150,0.1100,0,88,0.170,999.0,99.0 +2001,10,30,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,6.0,87,100200,0,0,319,0,0,0,0,0,0,0,340,1.5,9,9,11.3,2100,9,999999999,150,0.1100,0,88,0.170,999.0,99.0 +2001,10,30,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,5.0,76,100300,104,1283,332,0,0,0,0,0,0,0,20,2.1,10,10,11.3,1800,9,999999999,150,0.1100,0,88,0.170,999.0,99.0 +2001,10,30,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,4.0,66,100300,342,1387,336,119,53,106,13000,4600,11900,2630,40,3.1,10,10,11.3,1800,9,999999999,150,0.1100,0,88,0.170,999.0,99.0 +2001,10,30,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,3.0,58,100300,547,1387,339,102,0,102,11900,0,11900,4280,80,2.6,10,10,11.3,1800,9,999999999,150,0.1100,0,88,0.170,999.0,99.0 +2001,10,30,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,2.0,50,100200,701,1387,343,134,0,134,15800,0,15800,5940,100,2.6,10,10,11.3,1800,9,999999999,150,0.1100,0,88,0.170,999.0,99.0 +2001,10,30,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,3.0,54,100300,793,1387,344,99,0,99,12100,0,12100,4830,90,2.6,10,10,11.3,1800,9,999999999,150,0.1100,0,88,0.170,999.0,99.0 +2001,10,30,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,3.0,51,100200,815,1387,349,102,0,102,12500,0,12500,5010,100,2.6,10,10,11.3,1800,9,999999999,139,0.1100,0,88,0.170,999.0,99.0 +2001,10,30,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,4.0,51,100100,768,1387,355,93,0,93,11400,0,11400,4520,100,2.1,10,10,11.3,2100,9,999999999,150,0.1100,0,88,0.170,999.0,99.0 +2001,10,30,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,3.0,47,100000,654,1387,354,213,35,196,23300,3500,21700,5770,110,3.1,10,10,11.3,2100,9,999999999,150,0.1100,0,88,0.170,999.0,99.0 +2001,10,30,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,3.0,47,100100,482,1387,354,89,0,89,10300,0,10300,3640,90,1.5,10,10,11.3,2100,9,999999999,150,0.1100,0,88,0.170,999.0,99.0 +2001,10,30,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,4.0,51,100000,262,1387,345,102,157,72,10700,11400,8500,1380,70,1.5,9,9,11.3,2100,9,999999999,150,0.1100,0,88,0.170,999.0,99.0 +2001,10,30,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,5.0,62,100000,40,797,337,1,0,1,100,0,100,40,40,2.1,9,9,11.3,2100,9,999999999,150,0.1100,0,88,0.170,999.0,99.0 +2001,10,30,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,5.0,62,100000,0,0,337,0,0,0,0,0,0,0,70,2.1,9,9,11.3,2100,9,999999999,160,0.1100,0,88,0.170,999.0,99.0 +2001,10,30,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,4.0,58,99900,0,0,336,0,0,0,0,0,0,0,100,4.1,9,9,11.3,2100,9,999999999,160,0.1100,0,88,0.170,999.0,99.0 +2001,10,30,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,5.0,62,99900,0,0,337,0,0,0,0,0,0,0,80,1.5,9,9,11.3,2100,9,999999999,160,0.1100,0,88,0.170,999.0,99.0 +2001,10,30,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,5.0,62,99900,0,0,346,0,0,0,0,0,0,0,100,2.6,10,10,11.3,2400,9,999999999,160,0.1100,0,88,0.170,999.0,99.0 +2001,10,30,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,5.0,62,99900,0,0,346,0,0,0,0,0,0,0,130,1.0,10,10,11.3,2100,9,999999999,160,0.1100,0,88,0.170,999.0,99.0 +2001,10,30,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,4.0,62,99800,0,0,340,0,0,0,0,0,0,0,130,2.1,10,10,11.3,2400,9,999999999,160,0.1100,0,88,0.170,999.0,99.0 +2001,10,31,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,2.0,54,99800,0,0,329,0,0,0,0,0,0,0,140,3.1,9,9,11.3,2400,9,999999999,170,0.1090,0,88,0.170,999.0,99.0 +2001,10,31,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.4,2.0,56,99700,0,0,326,0,0,0,0,0,0,0,140,2.3,9,9,11.3,4950,9,999999999,170,0.1090,0,88,0.170,999.0,99.0 +2001,10,31,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,2.0,57,99700,0,0,324,0,0,0,0,0,0,0,140,1.5,9,9,11.3,7500,9,999999999,160,0.1090,0,88,0.170,999.0,99.0 +2001,10,31,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,3.0,71,99700,0,0,316,0,0,0,0,0,0,0,310,2.1,9,9,11.3,7500,9,999999999,160,0.1090,0,88,0.170,999.0,99.0 +2001,10,31,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,3.0,66,99600,0,0,321,0,0,0,0,0,0,0,170,1.0,9,9,11.3,7500,9,999999999,160,0.1090,0,88,0.170,999.0,99.0 +2001,10,31,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,3.0,66,99700,0,0,321,0,0,0,0,0,0,0,160,1.0,9,9,11.3,7500,9,999999999,160,0.1090,0,88,0.170,999.0,99.0 +2001,10,31,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,2.0,66,99600,0,0,315,0,0,0,0,0,0,0,150,3.1,9,9,11.3,7500,9,999999999,160,0.1090,0,88,0.170,999.0,99.0 +2001,10,31,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,3.0,58,99700,99,1260,311,0,0,0,0,0,0,0,170,1.0,5,5,11.3,77777,9,999999999,160,0.1090,0,88,0.170,999.0,99.0 +2001,10,31,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,2.0,50,99700,337,1388,307,135,112,108,14600,9400,12300,2360,180,4.1,2,2,11.3,77777,9,999999999,160,0.1090,0,88,0.170,999.0,99.0 +2001,10,31,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,2.0,41,99700,542,1388,323,319,403,161,33800,39600,18300,3400,190,4.6,3,3,11.3,77777,9,999999999,150,0.1090,0,88,0.170,999.0,99.0 +2001,10,31,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,1.0,32,99600,695,1388,332,428,499,177,45000,50000,19900,3760,200,5.1,2,2,11.3,77777,9,999999999,150,0.1090,0,88,0.170,999.0,99.0 +2001,10,31,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,1.0,30,99500,787,1388,340,518,610,171,53500,60200,19300,3740,190,4.6,3,3,11.3,77777,9,999999999,150,0.1090,0,88,0.170,999.0,99.0 +2001,10,31,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,2.0,32,99400,810,1388,338,557,672,164,58000,66800,18800,3710,200,5.1,2,2,11.3,77777,9,999999999,150,0.1090,0,88,0.170,999.0,99.0 +2001,10,31,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,2.0,30,99400,763,1388,346,506,691,125,53300,69000,15300,2810,180,6.2,3,3,11.3,77777,9,999999999,150,0.1090,0,88,0.170,999.0,99.0 +2001,10,31,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,2.0,30,99300,649,1388,343,443,673,127,45800,65200,15200,2560,190,5.1,2,2,11.3,77777,9,999999999,139,0.1090,0,88,0.170,999.0,99.0 +2001,10,31,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,1.0,28,99200,476,1388,382,273,497,102,28900,45900,13100,1920,180,6.7,10,10,11.3,7500,9,999999999,139,0.1090,0,88,0.170,999.0,99.0 +2001,10,31,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,1.0,30,99200,256,1388,366,127,345,63,13200,24900,8500,1150,190,6.2,9,9,11.3,7500,9,999999999,139,0.1090,0,88,0.170,999.0,99.0 +2001,10,31,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,1.0,36,99100,37,775,351,2,35,2,500,1900,400,60,180,3.1,9,9,11.3,7500,9,999999999,139,0.1090,0,88,0.170,999.0,99.0 +2001,10,31,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,1.0,39,99200,0,0,356,0,0,0,0,0,0,0,160,3.1,10,10,11.3,7500,9,999999999,129,0.1090,0,88,0.170,999.0,99.0 +2001,10,31,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,1.0,44,99100,0,0,346,0,0,0,0,0,0,0,140,3.1,10,10,11.3,7500,9,999999999,129,0.1090,0,88,0.170,999.0,99.0 +2001,10,31,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,1.0,41,99100,0,0,351,0,0,0,0,0,0,0,150,3.1,10,10,11.3,7500,9,999999999,129,0.1090,0,88,0.170,999.0,99.0 +2001,10,31,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.6,0.7,44,99100,0,0,344,0,0,0,0,0,0,0,140,3.2,10,10,11.3,7500,9,999999999,129,0.1090,0,88,0.170,999.0,99.0 +2001,10,31,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.1,0.4,50,99000,0,0,337,0,0,0,0,0,0,0,140,3.2,10,10,11.3,7500,9,999999999,120,0.1090,0,88,0.170,999.0,99.0 +2001,10,31,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.7,0.1,50,99000,0,0,330,0,0,0,0,0,0,0,150,3.3,10,10,11.3,7500,9,999999999,120,0.1090,0,88,0.170,999.0,99.0 +1996,11,1,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.3,0.0,50,98600,0,0,303,0,0,0,0,0,0,0,260,3.4,9,7,11.3,3000,9,999999999,139,0.1070,0,88,0.170,999.0,99.0 +1996,11,1,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.9,-0.3,54,98500,0,0,301,0,0,0,0,0,0,0,250,3.5,9,8,11.3,2100,9,999999999,139,0.1070,0,88,0.170,999.0,99.0 +1996,11,1,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.4,-0.6,69,98500,0,0,290,0,0,0,0,0,0,0,260,3.5,9,7,11.3,1800,9,999999999,139,0.1070,0,88,0.170,999.0,99.0 +1996,11,1,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.0,-1.0,69,98500,0,0,288,0,0,0,0,0,0,0,270,3.6,9,8,11.3,1500,9,999999999,139,0.1070,0,88,0.170,0.0,3.0 +1996,11,1,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-1.0,69,98500,0,0,284,0,0,0,0,0,0,0,290,6.2,9,7,11.3,1500,9,999999999,139,0.1070,0,88,0.170,999.0,99.0 +1996,11,1,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,0.0,75,98600,0,0,289,0,0,0,0,0,0,0,240,4.6,9,8,11.3,1500,9,999999999,139,0.1070,0,88,0.170,999.0,99.0 +1996,11,1,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.0,1.0,81,98500,0,0,286,0,0,0,0,0,0,0,240,4.1,9,7,11.3,1500,9,999999999,139,0.1070,0,88,0.170,0.0,6.0 +1996,11,1,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,1.0,81,98600,94,1239,290,30,15,29,3300,900,3200,680,220,3.6,9,8,11.3,2100,9,999999999,129,0.1070,0,88,0.170,999.0,99.0 +1996,11,1,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,1.0,81,98600,331,1389,286,132,227,78,14100,18600,9700,1470,250,5.1,9,7,11.3,3600,9,999999999,129,0.1070,0,88,0.170,999.0,99.0 +1996,11,1,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,4.2,-0.8,69,98600,535,1389,285,265,175,197,28400,17000,21800,4590,260,4.9,9,7,11.3,3150,9,999999999,129,0.1070,0,88,0.170,999.0,99.0 +1996,11,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-3.0,59,98500,689,1389,282,239,174,152,26100,18100,17100,3250,270,4.6,9,7,11.3,2700,9,999999999,129,0.1070,0,88,0.170,999.0,99.0 +1996,11,1,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-3.0,59,98500,780,1389,286,312,312,137,34300,31900,16300,3000,260,6.2,9,8,11.3,2700,9,999999999,129,0.1070,0,88,0.170,999.0,99.0 +1996,11,1,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-1.0,69,98400,803,1389,278,528,632,163,55000,62800,18600,3660,260,4.6,5,5,11.3,77777,9,999999999,120,0.1070,0,88,0.170,999.0,99.0 +1996,11,1,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-1.0,64,98300,756,1389,278,552,743,148,57600,73500,17500,3210,290,6.2,3,3,11.3,77777,9,999999999,120,0.1070,0,88,0.170,999.0,99.0 +1996,11,1,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-1.0,64,98300,642,1389,275,403,681,88,42900,66900,11800,1870,270,7.2,2,2,11.3,77777,9,999999999,120,0.1070,0,88,0.170,999.0,99.0 +1996,11,1,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,0.0,61,98300,469,1389,287,250,389,118,26000,35700,13900,2250,270,6.7,3,3,11.3,77777,9,999999999,120,0.1070,0,88,0.170,999.0,99.0 +1996,11,1,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,0.0,61,98300,250,1389,284,114,310,59,12000,22100,8000,1070,260,5.1,2,2,11.3,77777,9,999999999,120,0.1070,0,88,0.170,999.0,99.0 +1996,11,1,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,0.0,70,98300,34,752,279,8,36,6,900,1200,800,100,270,3.6,3,3,11.3,77777,9,999999999,110,0.1070,0,88,0.170,999.0,99.0 +1996,11,1,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,0.0,75,98300,0,0,272,0,0,0,0,0,0,0,280,3.1,2,2,11.3,77777,9,999999999,110,0.1070,0,88,0.170,999.0,99.0 +1996,11,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,0.0,75,98400,0,0,275,0,0,0,0,0,0,0,270,3.1,3,3,7.0,77777,9,999999999,110,0.1070,0,88,0.170,999.0,99.0 +1996,11,1,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,-1.0,74,98300,0,0,259,0,0,0,0,0,0,0,280,2.6,0,0,11.3,77777,9,999999999,110,0.1070,0,88,0.170,999.0,99.0 +1996,11,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,2.5,-2.5,68,98400,0,0,260,0,0,0,0,0,0,0,260,2.6,1,1,11.3,77777,9,999999999,100,0.1070,0,88,0.170,999.0,99.0 +1996,11,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-4.0,62,98400,0,0,260,0,0,0,0,0,0,0,230,2.6,2,2,11.3,77777,9,999999999,100,0.1070,0,88,0.170,999.0,99.0 +1996,11,1,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-6.0,56,98400,0,0,261,0,0,0,0,0,0,0,250,2.6,5,5,11.3,77777,9,999999999,100,0.1070,0,88,0.170,999.0,99.0 +1996,11,2,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-6.0,56,98400,0,0,277,0,0,0,0,0,0,0,240,3.1,9,9,11.3,3600,9,999999999,100,0.1070,0,88,0.170,999.0,99.0 +1996,11,2,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-6.0,56,98400,0,0,277,0,0,0,0,0,0,0,250,3.1,9,9,11.3,3300,9,999999999,100,0.1070,0,88,0.170,999.0,99.0 +1996,11,2,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-5.0,66,98400,0,0,274,0,0,0,0,0,0,0,270,3.1,9,9,11.3,3000,9,999999999,89,0.1070,0,88,0.170,999.0,99.0 +1996,11,2,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-5.0,66,98400,0,0,274,0,0,0,0,0,0,0,270,3.1,9,9,11.3,3000,9,999999999,89,0.1070,0,88,0.170,999.0,99.0 +1996,11,2,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-5.0,66,98400,0,0,274,0,0,0,0,0,0,0,270,3.6,9,9,11.3,3000,9,999999999,89,0.1070,0,88,0.170,999.0,99.0 +1996,11,2,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-5.0,66,98400,0,0,274,0,0,0,0,0,0,0,270,4.6,9,9,11.3,3000,9,999999999,89,0.1070,0,88,0.170,999.0,99.0 +1996,11,2,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-5.0,66,98400,0,0,274,0,0,0,0,0,0,0,270,3.6,9,9,11.3,7500,9,999999999,80,0.1070,0,88,0.170,999.0,99.0 +1996,11,2,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-5.0,66,98500,90,1193,274,20,21,18,2200,1000,2100,370,270,4.1,9,9,11.3,7500,9,999999999,89,0.1070,0,88,0.170,999.0,99.0 +1996,11,2,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-6.0,60,98600,325,1390,257,147,361,63,15700,29200,8900,1130,290,6.2,5,5,11.3,77777,9,999999999,89,0.1070,0,88,0.170,999.0,99.0 +1996,11,2,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-4.0,72,98600,530,1390,259,322,468,143,33400,44300,16400,2810,280,5.7,5,5,11.3,77777,9,999999999,89,0.1070,0,88,0.170,999.0,99.0 +1996,11,2,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-4.0,67,98700,683,1390,263,476,681,141,49300,66300,16500,2870,270,5.7,5,5,11.3,77777,9,999999999,89,0.1070,0,88,0.170,999.0,99.0 +1996,11,2,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-5.0,61,98700,774,1390,278,145,6,141,17100,400,16900,6460,270,5.7,9,9,11.3,1200,9,999999999,89,0.1070,0,88,0.170,999.0,99.0 +1996,11,2,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,-5.0,53,98700,797,1390,286,232,31,215,25600,3100,23800,7000,300,6.2,9,9,11.3,1200,9,999999999,89,0.1070,0,88,0.170,999.0,99.0 +1996,11,2,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,-5.0,53,98800,750,1390,286,375,119,310,41000,12100,34500,8870,290,5.7,9,9,11.3,1200,9,999999999,89,0.1070,0,88,0.170,999.0,99.0 +1996,11,2,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-3.0,59,98800,636,1390,292,182,147,115,20200,15100,13300,2320,280,5.7,9,9,11.3,1200,9,999999999,89,0.1070,0,88,0.170,999.0,99.0 +1996,11,2,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-3.0,59,98900,464,1390,292,132,60,112,14500,5600,12600,3120,280,6.2,9,9,11.3,1200,9,999999999,89,0.1070,0,88,0.170,999.0,99.0 +1996,11,2,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,-4.0,58,98900,245,1390,287,91,67,79,9900,5300,9000,1840,280,4.1,9,9,11.3,1200,9,999999999,89,0.1070,0,88,0.170,999.0,99.0 +1996,11,2,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,-4.0,58,99000,31,730,271,7,13,7,900,500,900,140,270,4.6,5,5,11.3,77777,9,999999999,89,0.1070,0,88,0.170,999.0,99.0 +1996,11,2,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,-4.0,58,99100,0,0,287,0,0,0,0,0,0,0,290,5.1,9,9,11.3,1500,9,999999999,89,0.1070,0,88,0.170,999.0,99.0 +1996,11,2,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-5.0,57,99100,0,0,282,0,0,0,0,0,0,0,280,5.7,9,9,11.3,1500,9,999999999,89,0.1070,0,88,0.170,999.0,99.0 +1996,11,2,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-5.0,57,99200,0,0,290,0,0,0,0,0,0,0,300,4.1,10,10,11.3,1200,9,999999999,89,0.1070,0,88,0.170,999.0,99.0 +1996,11,2,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.0,-2.0,73,99200,0,0,293,0,0,0,0,0,0,0,290,5.7,10,10,11.3,1500,9,999999999,89,0.1070,0,88,0.170,0.0,3.0 +1996,11,2,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-2.0,73,99300,0,0,285,0,0,0,0,0,0,0,270,3.6,9,9,11.3,1500,9,999999999,89,0.1070,0,88,0.170,999.0,99.0 +1996,11,2,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-5.0,71,99300,0,0,240,0,0,0,0,0,0,0,270,2.6,0,0,11.3,77777,9,999999999,100,0.1070,0,88,0.170,999.0,99.0 +1996,11,3,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.0,-5.0,71,99300,0,0,240,0,0,0,0,0,0,0,300,3.1,0,0,11.3,77777,9,999999999,100,0.1060,0,88,0.170,0.0,6.0 +1996,11,3,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-7.0,65,99300,0,0,235,0,0,0,0,0,0,0,290,3.6,0,0,11.3,77777,9,999999999,100,0.1060,0,88,0.170,999.0,99.0 +1996,11,3,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-7.0,65,99300,0,0,235,0,0,0,0,0,0,0,200,2.6,0,0,11.3,77777,9,999999999,100,0.1060,0,88,0.170,999.0,99.0 +1996,11,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-7.0,65,99400,0,0,235,0,0,0,0,0,0,0,200,2.1,0,0,11.3,77777,9,999999999,100,0.1060,0,88,0.170,999.0,99.0 +1996,11,3,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-6.0,77,99400,0,0,233,0,0,0,0,0,0,0,220,2.1,0,0,11.3,77777,9,999999999,100,0.1060,0,88,0.170,999.0,99.0 +1996,11,3,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.0,-7.0,77,99500,0,0,228,0,0,0,0,0,0,0,200,2.1,0,0,11.3,77777,9,999999999,100,0.1060,0,88,0.170,999.0,99.0 +1996,11,3,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.0,-6.0,84,99500,0,0,229,0,0,0,0,0,0,0,200,2.6,0,0,6.4,77777,9,999999999,100,0.1060,0,88,0.170,999.0,99.0 +1996,11,3,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-6.0,77,99600,86,1170,233,29,138,19,3200,6100,2700,330,190,2.1,0,0,11.3,77777,9,999999999,100,0.1060,0,88,0.170,999.0,99.0 +1996,11,3,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-5.0,71,99700,320,1391,240,172,515,53,17800,41800,8100,980,220,4.1,0,0,11.3,77777,9,999999999,110,0.1060,0,88,0.170,999.0,99.0 +1996,11,3,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-4.0,67,99700,524,1391,248,337,694,75,35600,65500,10800,1500,220,4.6,0,0,11.3,77777,9,999999999,110,0.1060,0,88,0.170,999.0,99.0 +1996,11,3,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-4.0,67,99700,677,1391,248,470,778,91,48900,75800,11900,1870,230,5.1,0,0,11.3,77777,9,999999999,110,0.1060,0,88,0.170,999.0,99.0 +1996,11,3,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,-3.0,63,99700,768,1391,257,551,816,100,57700,80700,13000,2190,230,6.7,0,0,11.3,77777,9,999999999,110,0.1060,0,88,0.170,999.0,99.0 +1996,11,3,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-3.0,59,99700,791,1391,260,571,824,102,59900,81700,13200,2270,220,4.1,0,0,11.3,77777,9,999999999,120,0.1060,0,88,0.170,999.0,99.0 +1996,11,3,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-2.0,59,99600,744,1391,265,529,805,98,55300,79300,12700,2100,240,4.6,0,0,11.3,77777,9,999999999,120,0.1060,0,88,0.170,999.0,99.0 +1996,11,3,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,-4.0,41,99600,631,1391,275,428,753,86,44400,72600,11300,1730,230,4.6,0,0,11.3,77777,9,999999999,120,0.1060,0,88,0.170,999.0,99.0 +1996,11,3,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,-2.0,48,99600,458,1391,277,280,643,68,29400,58700,10000,1320,230,5.1,0,0,11.3,77777,9,999999999,129,0.1060,0,88,0.170,999.0,99.0 +1996,11,3,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,-2.0,52,99600,240,1391,273,115,406,45,11800,29200,6700,810,250,5.1,0,0,11.3,77777,9,999999999,129,0.1060,0,88,0.170,999.0,99.0 +1996,11,3,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-3.0,55,99600,29,684,264,7,42,5,800,1400,800,80,220,3.1,0,0,11.3,77777,9,999999999,129,0.1060,0,88,0.170,999.0,99.0 +1996,11,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-3.0,59,99600,0,0,260,0,0,0,0,0,0,0,230,1.5,0,0,11.3,77777,9,999999999,129,0.1060,0,88,0.170,999.0,99.0 +1996,11,3,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-4.0,54,99600,0,0,259,0,0,0,0,0,0,0,140,1.0,0,0,11.3,77777,9,999999999,139,0.1060,0,88,0.170,999.0,99.0 +1996,11,3,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-4.0,62,99600,0,0,252,0,0,0,0,0,0,0,220,2.1,0,0,11.3,77777,9,999999999,139,0.1060,0,88,0.170,999.0,99.0 +1996,11,3,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,-4.0,58,99600,0,0,256,0,0,0,0,0,0,0,160,1.5,0,0,11.3,77777,9,999999999,139,0.1060,0,88,0.170,999.0,99.0 +1996,11,3,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-4.0,62,99600,0,0,252,0,0,0,0,0,0,0,120,2.6,0,0,11.3,77777,9,999999999,139,0.1060,0,88,0.170,999.0,99.0 +1996,11,3,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-4.0,62,99600,0,0,252,0,0,0,0,0,0,0,120,1.0,0,0,11.3,77777,9,999999999,150,0.1060,0,88,0.170,999.0,99.0 +1996,11,4,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-5.0,66,99600,0,0,244,0,0,0,0,0,0,0,120,2.1,0,0,11.3,77777,9,999999999,150,0.1050,0,88,0.170,999.0,99.0 +1996,11,4,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-5.0,66,99500,0,0,244,0,0,0,0,0,0,0,130,2.1,0,0,11.3,77777,9,999999999,150,0.1050,0,88,0.170,999.0,99.0 +1996,11,4,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-7.0,55,99500,0,0,242,0,0,0,0,0,0,0,170,2.6,0,0,11.3,77777,9,999999999,160,0.1050,0,88,0.170,999.0,99.0 +1996,11,4,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-7.0,55,99500,0,0,242,0,0,0,0,0,0,0,120,2.1,0,0,11.3,77777,9,999999999,160,0.1050,0,88,0.170,999.0,99.0 +1996,11,4,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-6.0,60,99600,0,0,256,0,0,0,0,0,0,0,140,2.1,5,4,11.3,77777,9,999999999,160,0.1050,0,88,0.170,999.0,99.0 +1996,11,4,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-4.0,72,99600,0,0,250,0,0,0,0,0,0,0,140,1.5,2,1,11.3,77777,9,999999999,160,0.1050,0,88,0.170,999.0,99.0 +1996,11,4,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-4.0,72,99600,0,0,250,0,0,0,0,0,0,0,130,1.5,3,1,11.3,77777,9,999999999,170,0.1050,0,88,0.170,999.0,99.0 +1996,11,4,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-5.0,57,99600,82,1148,264,33,33,31,3600,1600,3500,640,170,1.5,5,4,11.3,77777,9,999999999,170,0.1050,0,88,0.170,999.0,99.0 +1996,11,4,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,-4.0,58,99700,315,1391,261,160,462,55,16500,37200,8000,1010,180,4.1,3,1,11.3,77777,9,999999999,170,0.1050,0,88,0.170,999.0,99.0 +1996,11,4,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-3.0,59,99700,519,1391,274,311,504,122,32700,47600,14900,2350,170,5.1,5,4,11.3,77777,9,999999999,170,0.1050,0,88,0.170,999.0,99.0 +1996,11,4,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-1.0,64,99700,672,1391,284,336,247,217,35700,25400,23400,4940,190,4.6,9,6,11.3,7500,9,999999999,170,0.1050,0,88,0.170,999.0,99.0 +1996,11,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,0.0,53,99700,763,1391,302,363,370,160,39100,37600,18400,3500,200,6.2,9,6,11.3,7500,9,999999999,160,0.1050,0,88,0.170,999.0,99.0 +1996,11,4,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,-1.0,40,99600,786,1391,314,397,370,188,42300,37700,20900,4240,190,5.1,9,6,11.3,7500,9,999999999,160,0.1050,0,88,0.170,999.0,99.0 +1996,11,4,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,-1.0,40,99500,739,1391,314,442,378,241,47100,39500,26000,5710,190,4.6,9,6,11.3,7500,9,999999999,160,0.1050,0,88,0.170,999.0,99.0 +1996,11,4,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,-4.0,29,99400,625,1391,340,154,0,154,17600,0,17600,6240,180,4.6,10,10,11.3,7500,9,999999999,160,0.1050,0,88,0.170,999.0,99.0 +1996,11,4,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,-6.0,25,99400,453,1391,338,101,0,101,11500,0,11500,3900,200,4.1,10,10,11.3,3600,9,999999999,160,0.1050,0,88,0.170,999.0,99.0 +1996,11,4,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,-6.0,25,99400,235,1391,313,97,166,69,10100,11300,8200,1340,150,3.6,9,6,11.3,3600,9,999999999,160,0.1050,0,88,0.170,999.0,99.0 +1996,11,4,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,-6.0,26,99300,27,661,309,5,10,5,600,400,600,100,160,3.1,9,6,11.3,3600,9,999999999,160,0.1050,0,88,0.170,999.0,99.0 +1996,11,4,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,-6.0,26,99300,0,0,309,0,0,0,0,0,0,0,140,3.1,9,6,11.3,3600,9,999999999,160,0.1050,0,88,0.170,999.0,99.0 +1996,11,4,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,-5.0,31,99300,0,0,300,0,0,0,0,0,0,0,150,4.1,5,4,11.3,77777,9,999999999,160,0.1050,0,88,0.170,999.0,99.0 +1996,11,4,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,-1.0,46,99300,0,0,301,0,0,0,0,0,0,0,150,3.6,5,4,11.3,77777,9,999999999,160,0.1050,0,88,0.170,999.0,99.0 +1996,11,4,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,1.0,54,99300,0,0,308,0,0,0,0,0,0,0,150,4.1,9,6,11.3,3600,9,999999999,160,0.1050,0,88,0.170,999.0,99.0 +1996,11,4,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,1.0,54,99300,0,0,308,0,0,0,0,0,0,0,70,2.6,9,6,11.3,3600,9,999999999,160,0.1050,0,88,0.170,999.0,99.0 +1996,11,4,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,2.0,61,99200,0,0,329,0,0,0,0,0,0,0,150,3.1,10,10,11.3,3600,9,999999999,160,0.1050,0,88,0.170,999.0,99.0 +1996,11,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,-1.0,46,99200,0,0,330,0,0,0,0,0,0,0,160,4.6,10,10,11.3,3000,9,999999999,160,0.1050,0,88,0.170,999.0,99.0 +1996,11,5,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,-1.0,46,99200,0,0,330,0,0,0,0,0,0,0,190,2.6,10,10,11.3,3000,9,999999999,160,0.1050,0,88,0.170,999.0,99.0 +1996,11,5,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,3.0,66,99200,0,0,330,0,0,0,0,0,0,0,180,2.6,10,10,11.3,3000,9,999999999,160,0.1050,0,88,0.170,999.0,99.0 +1996,11,5,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.0,2.0,61,99200,0,0,329,0,0,0,0,0,0,0,180,4.1,10,10,11.3,3000,9,999999999,160,0.1050,0,88,0.170,0.0,3.0 +1996,11,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,3.0,58,99200,0,0,339,0,0,0,0,0,0,0,190,4.1,10,10,11.3,3000,9,999999999,160,0.1050,0,88,0.170,999.0,99.0 +1996,11,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,3.0,58,99300,0,0,339,0,0,0,0,0,0,0,190,3.6,10,10,11.3,1500,9,999999999,160,0.1050,0,88,0.170,999.0,99.0 +1996,11,5,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.8,4.4,65,99300,0,0,340,0,0,0,0,0,0,0,190,3.6,10,10,11.3,1500,9,999999999,160,0.1050,0,88,0.170,999.0,99.0 +1996,11,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,6.0,71,99300,78,1125,343,11,0,11,1300,0,1300,420,190,3.6,10,10,11.3,1500,9,999999999,160,0.1050,0,88,0.170,999.0,99.0 +1996,11,5,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,6.0,71,99400,309,1392,333,128,38,119,13900,3300,13200,2710,180,3.1,9,9,11.3,2100,9,999999999,160,0.1050,0,88,0.170,999.0,99.0 +1996,11,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,12.2,7.2,71,99400,513,1392,340,174,57,152,19000,5400,17000,4160,200,3.6,9,9,11.3,2400,9,999999999,160,0.1050,0,88,0.170,999.0,99.0 +1996,11,5,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,8.0,72,99400,666,1392,345,231,125,171,25500,12800,19300,4200,210,4.1,9,9,11.3,2700,9,999999999,160,0.1050,0,88,0.170,999.0,99.0 +1996,11,5,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,9.0,72,99300,757,1392,351,343,160,256,37300,16500,28300,6600,230,3.1,9,9,11.3,2700,9,999999999,160,0.1050,0,88,0.170,999.0,99.0 +1996,11,5,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,8.0,63,99300,780,1392,365,167,0,167,19600,0,19600,7420,210,3.6,10,10,11.3,2100,9,999999999,160,0.1050,0,88,0.170,999.0,99.0 +1996,11,5,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,8.0,63,99300,733,1392,365,155,0,155,18100,0,18100,6790,210,3.1,10,10,11.3,2400,9,999999999,160,0.1050,0,88,0.170,999.0,99.0 +1996,11,5,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,8.0,63,99200,620,1392,355,108,60,82,12500,6100,9700,1970,150,4.6,9,9,11.3,2400,9,999999999,160,0.1050,0,88,0.170,999.0,99.0 +1996,11,5,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,7.0,55,99200,448,1392,359,100,61,80,11200,5700,9300,1800,160,4.1,9,9,11.3,2400,9,999999999,160,0.1050,0,88,0.170,999.0,99.0 +1996,11,5,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,8.0,63,99200,230,1392,365,36,0,36,4200,0,4200,1360,130,2.6,10,10,11.3,2400,9,999999999,160,0.1050,0,88,0.170,999.0,99.0 +1996,11,5,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,8.0,63,99200,25,638,365,3,0,3,0,0,0,0,150,2.6,10,10,11.3,2400,9,999999999,160,0.1050,0,88,0.170,999.0,99.0 +1996,11,5,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,9.0,67,99300,0,0,366,0,0,0,0,0,0,0,160,3.6,10,10,11.3,2100,9,999999999,170,0.1050,0,88,0.170,999.0,99.0 +1996,11,5,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,9.0,67,99300,0,0,366,0,0,0,0,0,0,0,150,3.1,10,10,11.3,2100,9,999999999,170,0.1050,0,88,0.170,999.0,99.0 +1996,11,5,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,11.0,82,99300,0,0,364,0,0,0,0,0,0,0,160,3.6,10,10,11.3,2100,9,999999999,170,0.1050,0,88,0.170,999.0,99.0 +1996,11,5,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,11.0,82,99300,0,0,364,0,0,0,0,0,0,0,180,3.6,10,10,11.3,2400,9,999999999,170,0.1050,0,88,0.170,999.0,99.0 +1996,11,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,11.0,82,99300,0,0,325,0,0,0,0,0,0,0,160,3.1,2,2,11.3,77777,9,999999999,170,0.1050,0,88,0.170,999.0,99.0 +1996,11,5,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,11.0,88,99300,0,0,349,0,0,0,0,0,0,0,170,1.0,9,9,11.3,2400,9,999999999,170,0.1050,0,88,0.170,999.0,99.0 +1996,11,6,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,11.0,88,99300,0,0,317,0,0,0,0,0,0,0,190,3.6,3,1,11.3,77777,9,999999999,170,0.1040,0,88,0.170,999.0,99.0 +1996,11,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,12.5,10.9,90,99300,0,0,319,0,0,0,0,0,0,0,160,3.1,4,2,11.3,77777,9,999999999,170,0.1040,0,88,0.170,999.0,99.0 +1996,11,6,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,11.0,94,99200,0,0,320,0,0,0,0,0,0,0,130,2.6,5,3,11.3,77777,9,999999999,170,0.1040,0,88,0.170,999.0,99.0 +1996,11,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,11.0,94,99300,0,0,325,0,0,0,0,0,0,0,140,2.1,9,5,11.3,1500,9,999999999,170,0.1040,0,88,0.170,999.0,99.0 +1996,11,6,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,11.0,94,99300,0,0,325,0,0,0,0,0,0,0,120,2.1,9,5,11.3,2100,9,999999999,170,0.1040,0,88,0.170,999.0,99.0 +1996,11,6,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,11.0,94,99300,0,0,316,0,0,0,0,0,0,0,160,3.1,5,2,9.7,77777,9,999999999,170,0.1040,0,88,0.170,999.0,99.0 +1996,11,6,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,11.0,94,99300,0,0,312,0,0,0,0,0,0,0,140,2.1,3,1,8.0,77777,9,999999999,179,0.1040,0,88,0.170,999.0,99.0 +1996,11,6,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,11.0,94,99300,74,1103,353,13,0,13,1500,0,1500,480,160,3.1,10,10,8.0,2100,9,999999999,179,0.1040,0,88,0.170,999.0,99.0 +1996,11,6,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,12.0,100,99300,304,1393,326,104,161,69,11200,12700,8400,1290,190,3.6,9,5,8.0,2400,9,999999999,179,0.1040,0,88,0.170,999.0,99.0 +1996,11,6,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,12.0,100,99300,508,1393,355,86,0,86,10100,0,10100,3620,160,3.6,10,10,8.0,2100,9,999999999,179,0.1040,0,88,0.170,999.0,99.0 +1996,11,6,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,12.0,88,99300,661,1393,365,123,0,123,14400,0,14400,5390,170,4.1,10,10,9.7,1500,9,999999999,189,0.1040,0,88,0.170,999.0,99.0 +1996,11,6,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,13.0,94,99200,751,1393,366,147,0,147,17300,0,17300,6590,170,4.6,10,10,8.0,900,9,999999999,189,0.1040,0,88,0.170,999.0,99.0 +1996,11,6,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.0,13.0,94,99100,774,1393,366,128,0,128,15300,0,15300,5960,160,4.1,10,10,4.8,300,9,999999999,189,0.1040,0,88,0.170,0.0,6.0 +1996,11,6,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,13.0,94,99000,728,1393,366,98,0,98,11800,0,11800,4630,160,5.7,10,10,2.4,150,9,999999999,200,0.1040,0,88,0.170,999.0,99.0 +1996,11,6,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,13.0,94,98900,614,1393,366,78,0,78,9400,0,9400,3570,160,4.6,10,10,4.8,180,9,999999999,200,0.1040,0,88,0.170,999.0,99.0 +1996,11,6,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,13.0,94,98900,443,1393,366,49,0,49,5900,0,5900,2140,170,3.6,10,10,4.8,180,9,999999999,200,0.1040,0,88,0.170,999.0,99.0 +1996,11,6,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,14.0,94,98900,225,1393,372,27,0,27,3200,0,3200,1060,160,3.6,10,10,4.8,180,9,999999999,209,0.1040,0,88,0.170,999.0,99.0 +1996,11,6,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,14.0,88,98800,23,615,377,3,0,3,0,0,0,0,160,3.6,10,10,6.4,600,9,999999999,209,0.1040,0,88,0.170,999.0,99.0 +1996,11,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,14.0,88,98800,0,0,377,0,0,0,0,0,0,0,170,3.6,10,10,6.4,750,9,999999999,209,0.1040,0,88,0.170,999.0,99.0 +1996,11,6,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,14.0,88,98800,0,0,377,0,0,0,0,0,0,0,160,4.1,10,10,8.0,1800,9,999999999,220,0.1040,0,88,0.170,999.0,99.0 +1996,11,6,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.9,13.9,88,98800,0,0,377,0,0,0,0,0,0,0,160,4.2,10,10,8.0,1613,9,999999999,220,0.1040,0,88,0.170,999.0,99.0 +1996,11,6,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.9,14.0,88,98700,0,0,377,0,0,0,0,0,0,0,160,4.4,10,10,8.0,1425,9,999999999,220,0.1040,0,88,0.170,999.0,99.0 +1996,11,6,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.9,14.0,88,98600,0,0,377,0,0,0,0,0,0,0,160,4.5,10,10,8.0,1238,9,999999999,229,0.1040,0,88,0.170,999.0,99.0 +1996,11,6,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,14.0,88,98500,0,0,377,0,0,0,0,0,0,0,160,4.6,10,10,11.3,1050,9,999999999,229,0.1040,0,88,0.170,999.0,99.0 +1996,11,7,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,14.0,88,98400,0,0,377,0,0,0,0,0,0,0,160,7.2,10,10,11.3,1050,9,999999999,229,0.1030,0,88,0.170,999.0,99.0 +1996,11,7,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,14.0,82,98400,0,0,383,0,0,0,0,0,0,0,160,6.2,10,10,11.3,3600,9,999999999,240,0.1030,0,88,0.170,999.0,99.0 +1996,11,7,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,14.0,77,98300,0,0,388,0,0,0,0,0,0,0,170,4.6,10,10,11.3,1050,9,999999999,240,0.1030,0,88,0.170,999.0,99.0 +1996,11,7,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,16.0,94,98200,0,0,385,0,0,0,0,0,0,0,180,4.6,10,10,11.3,1050,9,999999999,240,0.1030,0,88,0.170,999.0,99.0 +1996,11,7,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,14.0,77,98200,0,0,388,0,0,0,0,0,0,0,170,6.2,10,10,11.3,1200,9,999999999,250,0.1030,0,88,0.170,999.0,99.0 +1996,11,7,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,14.0,73,98200,0,0,393,0,0,0,0,0,0,0,180,7.2,10,10,11.3,2400,9,999999999,250,0.1030,0,88,0.170,999.0,99.0 +1996,11,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.0,15.0,78,98200,0,0,395,0,0,0,0,0,0,0,180,10.3,10,10,11.3,1200,9,999999999,250,0.1030,0,88,0.170,0.0,6.0 +1996,11,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,16.0,83,98100,70,1080,396,9,0,9,1100,0,1100,350,170,8.7,10,10,11.3,600,9,999999999,250,0.1030,0,88,0.170,999.0,99.0 +1996,11,7,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,16.0,83,98100,299,1393,396,56,0,56,6400,0,6400,2110,180,8.2,10,10,11.3,600,9,999999999,250,0.1030,0,88,0.170,999.0,99.0 +1996,11,7,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,16.0,83,98000,502,1393,396,104,0,104,12000,0,12000,4180,180,10.8,10,10,11.3,600,9,999999999,240,0.1030,0,88,0.170,999.0,99.0 +1996,11,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,16.0,73,97900,655,1393,407,142,0,142,16500,0,16500,6010,180,9.3,10,10,11.3,600,9,999999999,240,0.1030,0,88,0.170,999.0,99.0 +1996,11,7,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,16.0,73,97800,746,1393,407,164,0,164,19100,0,19100,7150,170,12.3,10,10,11.3,750,9,999999999,240,0.1030,0,88,0.170,999.0,99.0 +1996,11,7,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,16.0,69,97700,769,1393,412,170,0,170,19800,0,19800,7460,180,10.3,10,10,11.3,1500,9,999999999,229,0.1030,0,88,0.170,999.0,99.0 +1996,11,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,14.0,57,97500,722,1393,415,198,0,198,22600,0,22600,8060,170,9.3,10,10,11.3,4200,9,999999999,229,0.1030,0,88,0.170,999.0,99.0 +1996,11,7,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,16.0,69,97300,609,1393,412,131,0,131,15200,0,15200,5450,180,9.3,10,10,11.3,1500,9,999999999,229,0.1030,0,88,0.170,999.0,99.0 +1996,11,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.0,16.0,69,97300,438,1393,412,89,0,89,10200,0,10200,3490,190,10.8,10,10,6.4,1500,9,999999999,220,0.1030,0,88,0.170,0.0,3.0 +1996,11,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,8.0,93,97500,220,1393,335,39,0,39,4500,0,4500,1430,320,6.2,10,10,4.8,600,9,999999999,220,0.1030,0,88,0.170,999.0,99.0 +1996,11,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,8.0,93,97600,21,592,335,2,0,2,0,0,0,0,360,5.1,10,10,6.4,600,9,999999999,220,0.1030,0,88,0.170,999.0,99.0 +1996,11,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.0,8.0,93,97800,0,0,335,0,0,0,0,0,0,0,260,4.1,10,10,8.0,300,9,999999999,209,0.1030,0,88,0.170,10.0,6.0 +1996,11,7,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,4.0,76,97900,0,0,326,0,0,0,0,0,0,0,290,3.6,10,10,11.3,300,9,999999999,209,0.1030,0,88,0.170,999.0,99.0 +1996,11,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,4.0,76,97900,0,0,326,0,0,0,0,0,0,0,320,4.6,10,10,11.3,450,9,999999999,209,0.1030,0,88,0.170,999.0,99.0 +1996,11,7,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.0,4.0,76,97900,0,0,326,0,0,0,0,0,0,0,310,2.1,10,10,11.3,450,9,999999999,200,0.1030,0,88,0.170,0.0,3.0 +1996,11,7,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,4.0,76,98000,0,0,326,0,0,0,0,0,0,0,290,3.1,10,10,11.3,450,9,999999999,200,0.1030,0,88,0.170,999.0,99.0 +1996,11,7,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,4.0,81,98000,0,0,322,0,0,0,0,0,0,0,300,4.1,10,10,11.3,450,9,999999999,200,0.1030,0,88,0.170,999.0,99.0 +1996,11,8,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,4.0,87,98000,0,0,317,0,0,0,0,0,0,0,310,5.1,10,10,11.3,450,9,999999999,189,0.1030,0,88,0.170,999.0,99.0 +1996,11,8,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,3.0,87,98000,0,0,311,0,0,0,0,0,0,0,300,4.1,10,10,11.3,450,9,999999999,189,0.1030,0,88,0.170,999.0,99.0 +1996,11,8,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,3.0,93,98000,0,0,307,0,0,0,0,0,0,0,290,4.6,10,10,11.3,450,9,999999999,189,0.1030,0,88,0.170,999.0,99.0 +1996,11,8,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,2.0,87,98000,0,0,306,0,0,0,0,0,0,0,300,3.6,10,10,11.3,450,9,999999999,179,0.1030,0,88,0.170,999.0,99.0 +1996,11,8,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,2.0,87,98000,0,0,306,0,0,0,0,0,0,0,300,2.6,10,10,11.3,450,9,999999999,179,0.1030,0,88,0.170,999.0,99.0 +1996,11,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,2.0,87,98000,0,0,306,0,0,0,0,0,0,0,300,3.6,10,10,11.3,1200,9,999999999,179,0.1030,0,88,0.170,999.0,99.0 +1996,11,8,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,3.0,87,98100,0,0,311,0,0,0,0,0,0,0,280,2.1,10,10,11.3,1200,9,999999999,170,0.1030,0,88,0.170,10.0,24.0 +1996,11,8,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,3.0,87,98100,66,1057,311,9,0,9,1100,0,1100,350,270,3.1,10,10,11.3,1200,9,999999999,170,0.1030,0,88,0.170,999.0,99.0 +1996,11,8,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,2.0,75,98200,294,1394,306,44,45,35,5100,3700,4300,750,270,3.6,9,9,9.7,450,9,999999999,160,0.1030,0,88,0.170,999.0,99.0 +1996,11,8,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,4.0,87,98200,497,1394,317,101,0,101,11600,0,11600,4070,300,4.1,10,10,9.7,450,9,999999999,160,0.1030,0,88,0.170,999.0,99.0 +1996,11,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,2.0,70,98200,650,1394,311,95,10,90,11400,600,11100,4120,300,2.6,9,9,11.3,1800,9,999999999,160,0.1030,0,88,0.170,999.0,99.0 +1996,11,8,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,2.0,66,98100,740,1394,315,202,88,155,22600,9200,17700,3950,320,2.6,9,9,11.3,4500,9,999999999,150,0.1030,0,88,0.170,999.0,99.0 +1996,11,8,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,1.0,57,98000,763,1394,301,568,786,137,59500,78100,16600,3030,310,4.6,5,5,11.3,77777,9,999999999,150,0.1030,0,88,0.170,999.0,99.0 +1996,11,8,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,1.0,57,97900,717,1394,318,289,105,235,31700,10500,26300,7000,290,4.6,9,9,11.3,4500,9,999999999,139,0.1030,0,88,0.170,999.0,99.0 +1996,11,8,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,1.0,54,97900,604,1394,323,271,71,240,29600,7000,26600,6360,280,5.7,9,9,11.3,4500,9,999999999,139,0.1030,0,88,0.170,999.0,99.0 +1996,11,8,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,-1.0,49,97900,433,1394,325,86,0,86,9900,0,9900,3390,270,5.1,10,10,11.3,2400,9,999999999,129,0.1030,0,88,0.170,999.0,99.0 +1996,11,8,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,-1.0,49,97900,216,1394,325,36,0,36,4100,0,4100,1340,280,4.1,10,10,11.3,2700,9,999999999,129,0.1030,0,88,0.170,999.0,99.0 +1996,11,8,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,0.0,57,97900,19,569,322,2,0,2,0,0,0,0,260,2.6,10,10,11.3,3000,9,999999999,129,0.1030,0,88,0.170,999.0,99.0 +1996,11,8,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.0,1.0,66,98000,0,0,318,0,0,0,0,0,0,0,290,8.2,10,10,11.3,1800,9,999999999,120,0.1030,0,88,0.170,0.0,6.0 +1996,11,8,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,3.0,81,98000,0,0,307,0,0,0,0,0,0,0,290,1.5,9,9,11.3,1200,9,999999999,120,0.1030,0,88,0.170,999.0,99.0 +1996,11,8,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,4.0,87,98000,0,0,317,0,0,0,0,0,0,0,290,5.7,10,10,11.3,1200,9,999999999,110,0.1030,0,88,0.170,999.0,99.0 +1996,11,8,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,2.0,81,97900,0,0,310,0,0,0,0,0,0,0,280,5.1,10,10,11.3,900,9,999999999,110,0.1030,0,88,0.170,0.0,3.0 +1996,11,8,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,2.0,81,97900,0,0,310,0,0,0,0,0,0,0,280,3.6,10,10,11.3,360,9,999999999,100,0.1030,0,88,0.170,999.0,99.0 +1996,11,8,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,2.0,87,97900,0,0,306,0,0,0,0,0,0,0,260,4.1,10,10,11.3,360,9,999999999,100,0.1030,0,88,0.170,999.0,99.0 +1996,11,9,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.0,2.0,93,97900,0,0,302,0,0,0,0,0,0,0,270,4.1,10,10,11.3,420,9,999999999,100,0.1020,0,88,0.170,0.0,6.0 +1996,11,9,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,2.0,93,97800,0,0,302,0,0,0,0,0,0,0,270,3.1,10,10,11.3,420,9,999999999,89,0.1020,0,88,0.170,999.0,99.0 +1996,11,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,1.0,93,97800,0,0,296,0,0,0,0,0,0,0,250,4.6,10,10,11.3,300,9,999999999,89,0.1020,0,88,0.170,999.0,99.0 +1996,11,9,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.0,1.0,93,97700,0,0,296,0,0,0,0,0,0,0,260,5.1,10,10,11.3,300,9,999999999,80,0.1020,0,88,0.170,0.0,3.0 +1996,11,9,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,1.9,1.0,94,97800,0,0,296,0,0,0,0,0,0,0,260,5.4,10,10,11.3,330,9,999999999,80,0.1020,0,88,0.170,999.0,99.0 +1996,11,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,1.7,0.9,94,97800,0,0,295,0,0,0,0,0,0,0,260,5.6,10,10,11.3,360,9,999999999,69,0.1020,0,88,0.170,999.0,99.0 +1996,11,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,1.6,0.9,95,97800,0,0,294,0,0,0,0,0,0,0,260,5.9,10,10,11.3,390,9,999999999,69,0.1020,0,88,0.170,999.0,99.0 +1996,11,9,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,1.0,93,97800,63,1011,296,11,0,11,1300,0,1300,410,260,6.2,10,10,9.7,420,9,999999999,69,0.1020,0,88,0.170,999.0,99.0 +1996,11,9,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,1.0,93,97900,288,1395,296,52,0,52,6000,0,6000,1960,240,5.1,10,10,9.7,420,9,999999999,69,0.1020,0,88,0.170,999.0,99.0 +1996,11,9,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.0,1.0,93,97900,492,1395,296,81,0,81,9500,0,9500,3400,240,5.7,10,10,9.7,420,9,999999999,69,0.1020,0,88,0.170,0.0,3.0 +1996,11,9,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,1.0,93,97900,644,1395,296,96,0,96,11500,0,11500,4340,240,6.2,10,10,4.8,270,9,999999999,69,0.1020,0,88,0.170,999.0,99.0 +1996,11,9,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,1.0,93,97900,735,1395,296,116,0,116,13900,0,13900,5370,250,5.1,10,10,2.0,210,9,999999999,69,0.1020,0,88,0.170,999.0,99.0 +1996,11,9,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.0,1.0,93,97900,758,1395,296,121,0,121,14500,0,14500,5640,260,5.7,10,10,2.0,210,9,999999999,69,0.1020,0,88,0.170,0.0,6.0 +1996,11,9,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,1.0,93,98000,712,1395,296,111,0,111,13300,0,13300,5110,290,6.2,10,10,2.4,210,9,999999999,69,0.1020,0,88,0.170,999.0,99.0 +1996,11,9,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,1.0,93,98100,599,1395,296,87,0,87,10400,0,10400,3890,290,4.6,10,10,2.4,210,9,999999999,69,0.1020,0,88,0.170,999.0,99.0 +1996,11,9,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.0,1.0,93,98100,428,1395,296,60,0,60,7100,0,7100,2520,280,5.1,10,10,4.8,240,9,999999999,69,0.1020,0,88,0.170,0.0,3.0 +1996,11,9,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,0.0,93,98200,211,1395,291,40,0,40,4600,0,4600,1440,280,5.1,10,10,9.7,750,9,999999999,69,0.1020,0,88,0.170,999.0,99.0 +1996,11,9,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,0.0,93,98300,18,546,291,2,0,2,0,0,0,0,260,4.6,10,10,11.3,1350,9,999999999,69,0.1020,0,88,0.170,999.0,99.0 +1996,11,9,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-1.0,92,98400,0,0,286,0,0,0,0,0,0,0,250,4.6,10,10,11.3,1800,9,999999999,69,0.1020,0,88,0.170,0.0,6.0 +1996,11,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-1.0,92,98400,0,0,286,0,0,0,0,0,0,0,250,5.1,10,10,11.3,2400,9,999999999,69,0.1020,0,88,0.170,999.0,99.0 +1996,11,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-2.0,85,98500,0,0,261,0,0,0,0,0,0,0,250,4.6,9,5,11.3,2700,9,999999999,69,0.1020,0,88,0.170,999.0,99.0 +1996,11,9,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-2.0,85,98500,0,0,261,0,0,0,0,0,0,0,240,4.6,9,5,11.3,2700,9,999999999,69,0.1020,0,88,0.170,999.0,99.0 +1996,11,9,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-2.0,85,98500,0,0,261,0,0,0,0,0,0,0,240,4.1,9,5,11.3,2700,9,999999999,69,0.1020,0,88,0.170,999.0,99.0 +1996,11,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-2.0,79,98500,0,0,265,0,0,0,0,0,0,0,230,2.6,9,5,11.3,2100,9,999999999,69,0.1020,0,88,0.170,999.0,99.0 +1996,11,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-2.0,79,98500,0,0,267,0,0,0,0,0,0,0,240,3.6,9,6,11.3,2100,9,999999999,69,0.1010,0,88,0.170,999.0,99.0 +1996,11,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-2.0,79,98500,0,0,263,0,0,0,0,0,0,0,240,3.1,5,4,11.3,77777,9,999999999,69,0.1010,0,88,0.170,999.0,99.0 +1996,11,10,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-2.0,79,98500,0,0,267,0,0,0,0,0,0,0,230,3.1,9,6,11.3,2100,9,999999999,69,0.1010,0,88,0.170,999.0,99.0 +1996,11,10,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-2.0,79,98500,0,0,267,0,0,0,0,0,0,0,220,3.1,9,6,11.3,2100,9,999999999,69,0.1010,0,88,0.170,999.0,99.0 +1996,11,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-2.0,85,98500,0,0,264,0,0,0,0,0,0,0,220,3.1,9,6,11.3,2100,9,999999999,69,0.1010,0,88,0.170,999.0,99.0 +1996,11,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-2.0,85,98500,0,0,264,0,0,0,0,0,0,0,220,3.6,9,6,11.3,2100,9,999999999,69,0.1010,0,88,0.170,999.0,99.0 +1996,11,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-2.0,85,98600,0,0,264,0,0,0,0,0,0,0,240,3.6,9,6,9.7,2100,9,999999999,69,0.1010,0,88,0.170,0.0,6.0 +1996,11,10,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-2.0,85,98600,59,988,285,7,0,7,900,0,900,270,240,3.6,10,10,9.7,1500,9,999999999,69,0.1010,0,88,0.170,999.0,99.0 +1996,11,10,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-1.0,86,98700,283,1395,264,119,170,84,12400,12800,9800,1650,250,4.6,5,4,11.3,77777,9,999999999,69,0.1010,0,88,0.170,999.0,99.0 +1996,11,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.0,-1.0,86,98700,486,1395,268,162,263,70,17900,24500,9300,1280,270,5.7,9,6,11.3,1800,9,999999999,69,0.1010,0,88,0.170,0.0,3.0 +1996,11,10,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-1.0,86,98800,639,1395,290,139,0,139,16100,0,16100,5830,250,6.2,10,10,2.0,1800,9,999999999,69,0.1010,0,88,0.170,999.0,99.0 +1996,11,10,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,1.0,93,98700,730,1395,274,449,358,262,47500,37300,27900,6310,290,5.1,9,6,11.3,1800,9,999999999,69,0.1010,0,88,0.170,999.0,99.0 +1996,11,10,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.0,-1.0,80,98700,753,1395,268,538,801,106,55800,78700,13200,2210,270,5.7,5,4,11.3,77777,9,999999999,69,0.1010,0,88,0.170,0.0,6.0 +1996,11,10,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-2.0,73,98700,706,1395,271,379,305,225,40400,31600,24300,5210,270,6.7,9,6,11.3,1800,9,999999999,60,0.1010,0,88,0.170,999.0,99.0 +1996,11,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-3.0,67,98800,594,1395,292,128,0,128,14800,0,14800,5290,260,7.2,10,10,11.3,1800,9,999999999,60,0.1010,0,88,0.170,999.0,99.0 +1996,11,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.0,-4.0,67,98800,423,1395,266,131,104,100,14500,9600,11600,2240,270,5.7,9,6,9.7,1800,9,999999999,60,0.1010,0,88,0.170,1.0,3.0 +1996,11,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-4.0,67,98900,207,1395,287,36,0,36,4100,0,4100,1320,270,5.1,10,10,11.3,1800,9,999999999,60,0.1010,0,88,0.170,999.0,99.0 +1996,11,10,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-4.0,67,98900,16,523,287,1,0,1,0,0,0,0,290,3.6,10,10,11.3,1800,9,999999999,60,0.1010,0,88,0.170,999.0,99.0 +1996,11,10,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-6.0,60,99000,0,0,280,0,0,0,0,0,0,0,270,4.6,10,10,11.3,2400,9,999999999,60,0.1010,0,88,0.170,1.0,6.0 +1996,11,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-6.0,60,99000,0,0,280,0,0,0,0,0,0,0,290,4.1,10,10,11.3,2100,9,999999999,60,0.1010,0,88,0.170,999.0,99.0 +1996,11,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-6.0,66,99100,0,0,256,0,0,0,0,0,0,0,270,3.1,9,6,11.3,2100,9,999999999,60,0.1010,0,88,0.170,999.0,99.0 +1996,11,10,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-6.0,66,99100,0,0,256,0,0,0,0,0,0,0,270,3.1,9,6,11.3,2100,9,999999999,60,0.1010,0,88,0.170,999.0,99.0 +1996,11,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-6.0,66,99100,0,0,252,0,0,0,0,0,0,0,270,3.1,5,4,11.3,77777,9,999999999,60,0.1010,0,88,0.170,999.0,99.0 +1996,11,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-6.0,66,99200,0,0,252,0,0,0,0,0,0,0,240,3.1,5,4,11.3,77777,9,999999999,60,0.1010,0,88,0.170,999.0,99.0 +1996,11,11,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-7.0,65,99200,0,0,243,0,0,0,0,0,0,0,250,3.1,2,2,11.3,77777,9,999999999,60,0.1010,0,88,0.170,999.0,99.0 +1996,11,11,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-7.0,65,99200,0,0,245,0,0,0,0,0,0,0,250,3.1,3,3,11.3,77777,9,999999999,50,0.1010,0,88,0.170,999.0,99.0 +1996,11,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-7.0,65,99200,0,0,249,0,0,0,0,0,0,0,250,3.1,5,5,11.3,77777,9,999999999,50,0.1010,0,88,0.170,999.0,99.0 +1996,11,11,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-7.0,65,99300,0,0,249,0,0,0,0,0,0,0,260,3.6,5,5,11.3,77777,9,999999999,50,0.1010,0,88,0.170,999.0,99.0 +1996,11,11,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-6.0,71,99300,0,0,255,0,0,0,0,0,0,0,250,3.1,9,7,11.3,2100,9,999999999,50,0.1010,0,88,0.170,999.0,99.0 +1996,11,11,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-6.0,77,99300,0,0,255,0,0,0,0,0,0,0,200,2.1,9,8,11.3,1500,9,999999999,50,0.1010,0,88,0.170,999.0,99.0 +1996,11,11,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.0,-6.0,77,99400,0,0,251,0,0,0,0,0,0,0,260,3.6,9,7,11.3,1500,9,999999999,50,0.1010,0,88,0.170,1.0,24.0 +1996,11,11,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-6.0,77,99500,56,966,246,15,74,11,1700,2900,1600,190,260,3.6,5,5,11.3,77777,9,999999999,50,0.1010,0,88,0.170,999.0,99.0 +1996,11,11,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-6.0,77,99600,278,1396,240,137,428,51,14000,32700,7500,920,250,4.1,2,2,11.3,77777,9,999999999,50,0.1010,0,88,0.170,999.0,99.0 +1996,11,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-6.0,66,99700,481,1396,254,254,401,116,26700,37000,13900,2210,270,3.1,5,5,11.3,77777,9,999999999,50,0.1010,0,88,0.170,999.0,99.0 +1996,11,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-6.0,66,99700,633,1396,254,285,244,174,30600,24900,19200,3760,270,5.1,5,5,11.3,77777,9,999999999,50,0.1010,0,88,0.170,999.0,99.0 +1996,11,11,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-4.0,67,99700,724,1396,263,398,282,252,42200,29300,26900,6010,300,6.7,5,5,11.3,77777,9,999999999,50,0.1010,0,88,0.170,999.0,99.0 +1996,11,11,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-4.0,67,99700,747,1396,269,306,178,210,33600,18500,23600,5370,290,6.2,9,7,11.3,1500,9,999999999,50,0.1010,0,88,0.170,999.0,99.0 +1996,11,11,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-4.0,67,99700,701,1396,273,277,99,227,30400,9900,25400,6720,270,5.7,9,8,11.3,1500,9,999999999,50,0.1010,0,88,0.170,999.0,99.0 +1996,11,11,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-4.0,72,99800,589,1396,265,287,367,132,30500,35700,15300,2600,260,5.1,9,7,11.3,1500,9,999999999,50,0.1010,0,88,0.170,999.0,99.0 +1996,11,11,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.0,-2.0,79,99800,419,1396,275,191,75,168,20800,6900,18700,3990,260,5.1,9,8,11.3,1500,9,999999999,50,0.1010,0,88,0.170,0.0,3.0 +1996,11,11,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-3.0,72,99900,203,1396,270,72,58,63,7800,4300,7200,1460,260,5.1,9,7,11.3,1500,9,999999999,50,0.1010,0,88,0.170,999.0,99.0 +1996,11,11,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-3.0,85,99900,15,500,257,3,10,3,0,0,0,0,250,4.6,5,5,11.3,77777,9,999999999,50,0.1010,0,88,0.170,999.0,99.0 +1996,11,11,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.0,-6.0,71,100000,0,0,236,0,0,0,0,0,0,0,250,3.6,0,0,11.3,77777,9,999999999,50,0.1010,0,88,0.170,0.0,6.0 +1996,11,11,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-6.0,71,100000,0,0,236,0,0,0,0,0,0,0,250,3.1,0,0,11.3,77777,9,999999999,60,0.1010,0,88,0.170,999.0,99.0 +1996,11,11,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-6.0,77,100100,0,0,240,0,0,0,0,0,0,0,260,3.6,2,2,11.3,77777,9,999999999,60,0.1010,0,88,0.170,999.0,99.0 +1996,11,11,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-6.0,77,100100,0,0,246,0,0,0,0,0,0,0,250,2.6,5,5,11.3,77777,9,999999999,60,0.1010,0,88,0.170,999.0,99.0 +1996,11,11,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-6.0,77,100100,0,0,240,0,0,0,0,0,0,0,240,1.5,2,2,11.3,77777,9,999999999,60,0.1010,0,88,0.170,999.0,99.0 +1996,11,11,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-6.0,77,100100,0,0,243,0,0,0,0,0,0,0,240,3.1,3,3,11.3,77777,9,999999999,60,0.1010,0,88,0.170,999.0,99.0 +1996,11,12,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-6.0,77,100200,0,0,246,0,0,0,0,0,0,0,240,2.1,5,5,11.3,77777,9,999999999,60,0.1000,0,88,0.170,999.0,99.0 +1996,11,12,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-6.0,77,100200,0,0,246,0,0,0,0,0,0,0,190,2.6,5,5,11.3,77777,9,999999999,60,0.1000,0,88,0.170,999.0,99.0 +1996,11,12,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-6.0,77,100300,0,0,243,0,0,0,0,0,0,0,170,1.5,3,3,11.3,77777,9,999999999,60,0.1000,0,88,0.170,999.0,99.0 +1996,11,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-6.0,77,100300,0,0,233,0,0,0,0,0,0,0,190,2.6,0,0,11.3,77777,9,999999999,60,0.1000,0,88,0.170,999.0,99.0 +1996,11,12,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-6.0,77,100400,0,0,233,0,0,0,0,0,0,0,120,1.5,0,0,11.3,77777,9,999999999,60,0.1000,0,88,0.170,999.0,99.0 +1996,11,12,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.0,-9.0,71,100400,0,0,223,0,0,0,0,0,0,0,130,1.5,0,0,11.3,77777,9,999999999,60,0.1000,0,88,0.170,999.0,99.0 +1996,11,12,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.0,-9.0,71,100400,0,0,223,0,0,0,0,0,0,0,200,2.1,0,0,11.3,77777,9,999999999,60,0.1000,0,88,0.170,999.0,99.0 +1996,11,12,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.0,-8.0,71,100500,53,943,227,15,63,11,1600,2400,1500,190,200,2.1,0,0,11.3,77777,9,999999999,60,0.1000,0,88,0.170,999.0,99.0 +1996,11,12,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-9.0,60,100600,273,1397,230,135,424,52,13800,32100,7500,930,270,3.1,0,0,11.3,77777,9,999999999,60,0.1000,0,88,0.170,999.0,99.0 +1996,11,12,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-7.0,65,100600,476,1397,249,235,400,99,25100,36900,12400,1860,290,3.1,5,5,11.3,77777,9,999999999,60,0.1000,0,88,0.170,999.0,99.0 +1996,11,12,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-12.0,39,100700,628,1397,248,419,644,129,43200,61800,15300,2540,270,5.7,5,5,11.3,77777,9,999999999,69,0.1000,0,88,0.170,999.0,99.0 +1996,11,12,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-4.0,67,100600,719,1397,263,379,341,203,40700,35500,22400,4610,250,4.6,5,5,11.3,77777,9,999999999,69,0.1000,0,88,0.170,999.0,99.0 +1996,11,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-7.0,51,100500,742,1397,260,293,166,205,32300,17200,23100,5230,230,5.1,5,5,11.3,77777,9,999999999,69,0.1000,0,88,0.170,999.0,99.0 +1996,11,12,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-3.0,67,100500,696,1397,268,271,132,205,29600,13500,22900,5100,270,5.7,5,5,11.3,77777,9,999999999,69,0.1000,0,88,0.170,999.0,99.0 +1996,11,12,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-2.0,73,100500,585,1397,269,270,195,188,29300,19300,21100,4450,270,4.6,5,5,11.3,77777,9,999999999,69,0.1000,0,88,0.170,999.0,99.0 +1996,11,12,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-2.0,73,100500,415,1397,269,163,279,80,17400,24700,10100,1460,270,5.1,5,5,11.3,77777,9,999999999,69,0.1000,0,88,0.170,999.0,99.0 +1996,11,12,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-2.0,73,100500,199,1397,265,80,257,44,8400,16300,6100,790,300,4.6,3,3,11.3,77777,9,999999999,80,0.1000,0,88,0.170,999.0,99.0 +1996,11,12,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-6.0,66,100500,14,477,247,2,8,2,0,0,0,0,320,3.1,2,2,11.3,77777,9,999999999,80,0.1000,0,88,0.170,999.0,99.0 +1996,11,12,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-6.0,71,100600,0,0,246,0,0,0,0,0,0,0,300,2.6,3,3,11.3,77777,9,999999999,80,0.1000,0,88,0.170,999.0,99.0 +1996,11,12,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-6.0,71,100600,0,0,250,0,0,0,0,0,0,0,300,3.1,5,5,11.3,77777,9,999999999,80,0.1000,0,88,0.170,999.0,99.0 +1996,11,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-6.0,71,100600,0,0,272,0,0,0,0,0,0,0,320,2.6,10,10,11.3,4200,9,999999999,80,0.1000,0,88,0.170,999.0,99.0 +1996,11,12,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-5.0,78,100600,0,0,273,0,0,0,0,0,0,0,350,2.1,10,10,11.3,4200,9,999999999,80,0.1000,0,88,0.170,999.0,99.0 +1996,11,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-5.0,78,100600,0,0,273,0,0,0,0,0,0,0,50,1.5,10,10,11.3,4200,9,999999999,80,0.1000,0,88,0.170,999.0,99.0 +1996,11,12,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-6.0,77,100500,0,0,268,0,0,0,0,0,0,0,240,1.0,10,10,11.3,4200,9,999999999,89,0.1000,0,88,0.170,999.0,99.0 +1996,11,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-6.0,77,100500,0,0,245,0,0,0,0,0,0,0,230,1.0,10,4,11.3,3000,9,999999999,89,0.1000,0,88,0.170,999.0,99.0 +1996,11,13,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.0,-6.0,84,100600,0,0,241,0,0,0,0,0,0,0,280,2.1,10,4,11.3,3000,9,999999999,89,0.1000,0,88,0.170,999.0,99.0 +1996,11,13,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.0,-6.0,84,100600,0,0,241,0,0,0,0,0,0,0,280,1.5,10,4,11.3,3000,9,999999999,89,0.1000,0,88,0.170,999.0,99.0 +1996,11,13,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.0,-6.0,84,100600,0,0,241,0,0,0,0,0,0,0,320,2.1,10,4,11.3,2400,9,999999999,89,0.1000,0,88,0.170,999.0,99.0 +1996,11,13,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.0,-7.0,84,100600,0,0,236,0,0,0,0,0,0,0,280,2.6,10,4,11.3,2400,9,999999999,89,0.1000,0,88,0.170,999.0,99.0 +1996,11,13,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.0,-7.0,77,100600,0,0,240,0,0,0,0,0,0,0,300,2.1,10,4,11.3,2400,9,999999999,100,0.1000,0,88,0.170,999.0,99.0 +1996,11,13,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.0,-6.0,71,100600,0,0,248,0,0,0,0,0,0,0,40,2.1,10,4,11.3,2400,9,999999999,100,0.1000,0,88,0.170,0.0,6.0 +1996,11,13,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-7.0,65,100700,50,920,247,12,15,11,1400,600,1300,230,250,0.5,10,4,11.3,2400,9,999999999,100,0.1000,0,88,0.170,999.0,99.0 +1996,11,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-7.0,65,100700,268,1397,247,126,362,56,13200,26700,8100,1010,50,1.5,10,4,11.3,2400,9,999999999,100,0.1000,0,88,0.170,999.0,99.0 +1996,11,13,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-6.0,66,100700,470,1397,252,267,444,117,27800,40700,14100,2230,350,0.5,10,4,11.3,2400,9,999999999,100,0.1000,0,88,0.170,999.0,99.0 +1996,11,13,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-6.0,66,100700,623,1397,252,411,648,122,42600,62300,14700,2420,100,1.5,10,4,11.3,2700,9,999999999,100,0.1000,0,88,0.170,999.0,99.0 +1996,11,13,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-6.0,66,100600,714,1397,252,414,446,186,43500,44800,20600,4000,50,1.5,10,4,11.3,2400,9,999999999,100,0.1000,0,88,0.170,999.0,99.0 +1996,11,13,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-5.0,66,100600,737,1397,257,448,613,125,47200,60800,15000,2730,260,1.5,10,4,11.3,2400,9,999999999,100,0.1000,0,88,0.170,999.0,99.0 +1996,11,13,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-5.0,66,100500,692,1397,257,410,463,181,43100,46300,20100,3840,290,2.1,10,4,11.3,2400,9,999999999,100,0.1000,0,88,0.170,999.0,99.0 +1996,11,13,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-5.0,66,100400,580,1397,257,332,293,211,34800,29100,22700,4750,40,0.5,10,4,11.3,2400,9,999999999,100,0.1000,0,88,0.170,999.0,99.0 +1996,11,13,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-5.0,66,100500,410,1397,257,212,455,78,21800,39700,10100,1430,330,1.5,10,4,11.3,2400,9,999999999,100,0.1000,0,88,0.170,999.0,99.0 +1996,11,13,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-5.0,71,100400,195,1397,248,82,253,47,8500,15800,6300,850,30,3.1,9,2,11.3,2400,9,999999999,100,0.1000,0,88,0.170,999.0,99.0 +1996,11,13,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-4.0,78,100400,13,477,252,3,22,3,0,0,0,0,10,2.1,9,3,11.3,2400,9,999999999,100,0.1000,0,88,0.170,999.0,99.0 +1996,11,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-4.0,85,100400,0,0,250,0,0,0,0,0,0,0,50,3.1,10,4,11.3,2400,9,999999999,100,0.1000,0,88,0.170,999.0,99.0 +1996,11,13,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-4.0,85,100400,0,0,250,0,0,0,0,0,0,0,50,3.1,10,4,11.3,2400,9,999999999,100,0.1000,0,88,0.170,999.0,99.0 +1996,11,13,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-4.0,92,100400,0,0,246,0,0,0,0,0,0,0,30,2.1,10,4,4.8,1350,9,999999999,100,0.1000,0,88,0.170,999.0,99.0 +1996,11,13,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.0,-3.0,92,100400,0,0,251,0,0,0,0,0,0,0,10,2.1,10,4,8.0,1500,9,999999999,100,0.1000,0,88,0.170,0.0,3.0 +1996,11,13,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-3.0,100,100300,0,0,247,0,0,0,0,0,0,0,20,2.1,10,4,8.0,1050,9,999999999,100,0.1000,0,88,0.170,999.0,99.0 +1996,11,13,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-3.0,100,100300,0,0,247,0,0,0,0,0,0,0,320,1.5,10,4,11.3,1050,9,999999999,100,0.1000,0,88,0.170,999.0,99.0 +1996,11,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.0,-4.0,92,100300,0,0,250,0,0,0,0,0,0,0,360,1.5,10,6,11.3,2400,9,999999999,100,0.0990,0,88,0.170,0.0,6.0 +1996,11,14,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.0,-5.0,92,100300,0,0,246,0,0,0,0,0,0,0,350,2.6,10,6,11.3,2400,9,999999999,89,0.0990,0,88,0.170,999.0,99.0 +1996,11,14,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.0,-5.0,92,100300,0,0,246,0,0,0,0,0,0,0,340,1.5,10,6,11.3,2400,9,999999999,89,0.0990,0,88,0.170,999.0,99.0 +1996,11,14,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.0,-7.0,92,100300,0,0,233,0,0,0,0,0,0,0,340,1.5,9,4,11.3,2400,9,999999999,89,0.0990,0,88,0.170,999.0,99.0 +1996,11,14,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.0,-7.0,92,100300,0,0,233,0,0,0,0,0,0,0,170,3.1,9,4,11.3,2400,9,999999999,89,0.0990,0,88,0.170,999.0,99.0 +1996,11,14,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-7.0,-7.0,100,100400,0,0,233,0,0,0,0,0,0,0,170,2.1,10,6,4.8,150,9,999999999,89,0.0990,0,88,0.170,999.0,99.0 +1996,11,14,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-7.0,-7.0,100,100400,0,0,233,0,0,0,0,0,0,0,360,1.5,10,6,4.8,150,9,999999999,89,0.0990,0,88,0.170,999.0,99.0 +1996,11,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.0,-6.0,100,100500,47,897,227,14,97,9,1600,4400,1300,170,210,1.0,2,1,4.8,77777,9,999999999,89,0.0990,0,88,0.170,999.0,99.0 +1996,11,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.0,-8.0,71,100600,263,1398,232,132,450,48,13600,33600,7300,860,70,1.5,3,1,6.4,77777,9,999999999,100,0.0990,0,88,0.170,999.0,99.0 +1996,11,14,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-8.0,65,100600,465,1398,235,276,631,66,29100,57900,9800,1290,60,2.6,2,1,11.3,77777,9,999999999,100,0.0990,0,88,0.170,999.0,99.0 +1996,11,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-7.0,65,100600,617,1398,240,393,724,74,41400,70000,10400,1560,100,2.6,3,1,11.3,77777,9,999999999,100,0.0990,0,88,0.170,999.0,99.0 +1996,11,14,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-7.0,55,100600,709,1398,250,424,580,130,44300,57000,15300,2740,360,2.6,5,2,11.3,77777,9,999999999,100,0.0990,0,88,0.170,999.0,99.0 +1996,11,14,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-6.0,56,100600,732,1398,257,449,529,171,47700,53400,19600,3680,60,4.1,5,3,11.3,77777,9,999999999,100,0.0990,0,88,0.170,999.0,99.0 +1996,11,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-7.0,51,100600,687,1398,254,435,645,118,45600,63400,14400,2480,30,4.1,5,2,11.3,77777,9,999999999,100,0.0990,0,88,0.170,999.0,99.0 +1996,11,14,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-7.0,51,100600,576,1398,256,305,465,113,32800,45000,14100,2190,10,3.6,5,3,11.3,77777,9,999999999,100,0.0990,0,88,0.170,999.0,99.0 +1996,11,14,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-6.0,56,100600,406,1398,255,214,468,78,22000,40700,10100,1430,20,3.6,5,2,11.3,77777,9,999999999,100,0.0990,0,88,0.170,999.0,99.0 +1996,11,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-6.0,56,100700,191,1398,251,84,353,35,8500,23000,5400,630,10,3.1,3,1,11.3,77777,9,999999999,100,0.0990,0,88,0.170,999.0,99.0 +1996,11,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-6.0,66,100700,12,454,244,2,33,1,0,0,0,0,60,3.1,2,1,11.3,77777,9,999999999,100,0.0990,0,88,0.170,999.0,99.0 +1996,11,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-6.0,71,100800,0,0,241,0,0,0,0,0,0,0,60,3.6,3,1,11.3,77777,9,999999999,100,0.0990,0,88,0.170,999.0,99.0 +1996,11,14,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-6.0,77,100800,0,0,233,0,0,0,0,0,0,0,70,2.6,0,0,11.3,77777,9,999999999,100,0.0990,0,88,0.170,999.0,99.0 +1996,11,14,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-6.0,77,100800,0,0,233,0,0,0,0,0,0,0,60,2.6,0,0,11.3,77777,9,999999999,100,0.0990,0,88,0.170,999.0,99.0 +1996,11,14,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.0,-7.0,77,100800,0,0,228,0,0,0,0,0,0,0,30,1.5,0,0,11.3,77777,9,999999999,100,0.0990,0,88,0.170,999.0,99.0 +1996,11,14,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.0,-7.0,77,100800,0,0,228,0,0,0,0,0,0,0,60,3.1,0,0,11.3,77777,9,999999999,100,0.0990,0,88,0.170,999.0,99.0 +1996,11,14,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.0,-7.0,84,100700,0,0,225,0,0,0,0,0,0,0,100,2.1,0,0,11.3,77777,9,999999999,100,0.0990,0,88,0.170,999.0,99.0 +1996,11,15,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.0,-8.0,84,100800,0,0,221,0,0,0,0,0,0,0,80,3.1,0,0,11.3,77777,9,999999999,100,0.0980,0,88,0.170,999.0,99.0 +1996,11,15,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.0,-8.0,84,100800,0,0,221,0,0,0,0,0,0,0,90,2.6,0,0,11.3,77777,9,999999999,100,0.0980,0,88,0.170,999.0,99.0 +1996,11,15,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.0,-8.0,84,100800,0,0,221,0,0,0,0,0,0,0,80,3.1,0,0,11.3,77777,9,999999999,110,0.0980,0,88,0.170,999.0,99.0 +1996,11,15,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.0,-8.0,84,100800,0,0,221,0,0,0,0,0,0,0,70,3.1,0,0,11.3,77777,9,999999999,110,0.0980,0,88,0.170,999.0,99.0 +1996,11,15,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.0,-8.0,84,100800,0,0,221,0,0,0,0,0,0,0,90,3.1,0,0,11.3,77777,9,999999999,110,0.0980,0,88,0.170,999.0,99.0 +1996,11,15,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.0,-8.0,84,100800,0,0,221,0,0,0,0,0,0,0,80,3.1,0,0,11.3,77777,9,999999999,110,0.0980,0,88,0.170,999.0,99.0 +1996,11,15,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.0,-8.0,84,100800,0,0,234,0,0,0,0,0,0,0,90,4.1,5,5,11.3,77777,9,999999999,110,0.0980,0,88,0.170,999.0,99.0 +1996,11,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.0,-9.0,65,100700,44,874,240,9,8,9,1000,400,1000,230,100,5.1,5,5,11.3,77777,9,999999999,110,0.0980,0,88,0.170,999.0,99.0 +1996,11,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-8.0,65,100800,258,1399,245,94,115,73,10200,8700,8600,1560,120,5.7,5,5,11.3,77777,9,999999999,110,0.0980,0,88,0.170,999.0,99.0 +1996,11,15,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-8.0,55,100800,460,1399,252,210,276,119,22400,25800,13900,2370,140,6.2,5,5,11.3,77777,9,999999999,110,0.0980,0,88,0.170,999.0,99.0 +1996,11,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-9.0,43,100800,612,1399,252,374,559,129,40000,54800,15900,2560,120,8.2,2,2,11.3,77777,9,999999999,110,0.0980,0,88,0.170,999.0,99.0 +1996,11,15,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-9.0,40,100700,703,1399,258,462,532,194,48200,53200,21300,4170,130,7.7,3,3,11.3,77777,9,999999999,110,0.0980,0,88,0.170,999.0,99.0 +1996,11,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,-8.0,41,100600,727,1399,260,455,585,151,47200,57300,17200,3160,120,7.2,2,2,11.3,77777,9,999999999,110,0.0980,0,88,0.170,999.0,99.0 +1996,11,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-7.0,42,100500,682,1399,268,401,359,226,42500,37000,24400,5200,120,6.7,3,3,11.3,77777,9,999999999,110,0.0980,0,88,0.170,999.0,99.0 +1996,11,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-6.0,42,100400,571,1399,270,343,563,113,35400,53200,13600,2180,130,7.2,2,2,11.3,77777,9,999999999,110,0.0980,0,88,0.170,999.0,99.0 +1996,11,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,-6.0,39,100400,402,1399,277,208,359,105,21600,31200,12600,1980,110,6.2,3,3,11.3,77777,9,999999999,110,0.0980,0,88,0.170,999.0,99.0 +1996,11,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-3.0,55,100300,187,1399,273,66,166,44,7000,9800,5700,800,120,6.2,2,2,11.3,77777,9,999999999,110,0.0980,0,88,0.170,999.0,99.0 +1996,11,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,-3.0,63,100300,11,431,268,1,1,1,0,0,0,0,100,3.6,3,3,11.3,77777,9,999999999,110,0.0980,0,88,0.170,999.0,99.0 +1996,11,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,-3.0,63,100400,0,0,265,0,0,0,0,0,0,0,120,3.6,2,2,11.3,77777,9,999999999,110,0.0980,0,88,0.170,999.0,99.0 +1996,11,15,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-3.0,67,100400,0,0,264,0,0,0,0,0,0,0,120,2.6,3,3,11.3,77777,9,999999999,110,0.0980,0,88,0.170,999.0,99.0 +1996,11,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-3.0,67,100400,0,0,261,0,0,0,0,0,0,0,100,3.1,2,2,11.3,77777,9,999999999,110,0.0980,0,88,0.170,999.0,99.0 +1996,11,15,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-4.0,67,100300,0,0,263,0,0,0,0,0,0,0,130,3.1,5,5,11.3,77777,9,999999999,110,0.0980,0,88,0.170,999.0,99.0 +1996,11,15,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-6.0,56,100300,0,0,261,0,0,0,0,0,0,0,130,3.1,5,5,11.3,77777,9,999999999,110,0.0980,0,88,0.170,999.0,99.0 +1996,11,15,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-6.0,56,100300,0,0,261,0,0,0,0,0,0,0,130,4.1,5,5,11.3,77777,9,999999999,110,0.0980,0,88,0.170,999.0,99.0 +1996,11,16,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-6.0,56,100200,0,0,261,0,0,0,0,0,0,0,140,4.6,5,5,11.3,77777,9,999999999,110,0.0980,0,88,0.170,999.0,99.0 +1996,11,16,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-6.0,56,100200,0,0,261,0,0,0,0,0,0,0,130,1.5,5,5,11.3,77777,9,999999999,110,0.0980,0,88,0.170,999.0,99.0 +1996,11,16,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-6.0,56,100300,0,0,261,0,0,0,0,0,0,0,150,2.1,5,5,11.3,77777,9,999999999,110,0.0980,0,88,0.170,999.0,99.0 +1996,11,16,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-6.0,56,100200,0,0,261,0,0,0,0,0,0,0,150,1.5,5,5,11.3,77777,9,999999999,110,0.0980,0,88,0.170,999.0,99.0 +1996,11,16,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-6.0,56,100300,0,0,257,0,0,0,0,0,0,0,60,1.0,3,3,11.3,77777,9,999999999,110,0.0980,0,88,0.170,999.0,99.0 +1996,11,16,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-6.0,56,100300,0,0,267,0,0,0,0,0,0,0,110,1.0,9,7,11.3,7500,9,999999999,110,0.0980,0,88,0.170,999.0,99.0 +1996,11,16,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-6.0,56,100300,0,0,271,0,0,0,0,0,0,0,130,2.1,9,8,11.3,7500,9,999999999,110,0.0980,0,88,0.170,999.0,99.0 +1996,11,16,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-6.0,56,100300,41,828,267,12,3,12,1400,0,1400,430,140,3.1,9,7,11.3,7500,9,999999999,120,0.0980,0,88,0.170,999.0,99.0 +1996,11,16,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-6.0,56,100300,253,1399,271,70,31,65,7700,2500,7300,1610,150,3.1,9,8,11.3,7500,9,999999999,120,0.0980,0,88,0.170,999.0,99.0 +1996,11,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,-6.0,49,100300,455,1399,275,157,100,125,17200,9400,14100,2830,160,3.1,9,7,11.3,7500,9,999999999,120,0.0980,0,88,0.170,999.0,99.0 +1996,11,16,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,-7.0,36,100300,607,1399,290,198,135,139,21900,13600,16000,3320,160,5.7,9,8,11.3,7500,9,999999999,120,0.0980,0,88,0.170,999.0,99.0 +1996,11,16,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,-6.0,39,100200,698,1399,287,371,147,297,40600,14900,33100,8110,150,4.6,9,7,11.3,7500,9,999999999,120,0.0980,0,88,0.170,999.0,99.0 +1996,11,16,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,-3.0,36,100200,723,1399,316,211,18,201,24000,1500,23200,8130,160,5.7,9,8,11.3,7500,9,999999999,120,0.0980,0,88,0.170,999.0,99.0 +1996,11,16,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,-5.0,29,100100,678,1399,313,321,288,181,34600,29700,20100,3970,160,6.2,9,7,11.3,7500,9,999999999,120,0.0980,0,88,0.170,999.0,99.0 +1996,11,16,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,-2.0,32,100100,567,1399,331,199,159,134,21900,15800,15500,3150,160,5.1,9,8,11.3,7500,9,999999999,120,0.0980,0,88,0.170,999.0,99.0 +1996,11,16,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,-1.0,38,100100,398,1399,322,200,222,137,20800,19600,15200,2870,120,4.6,9,7,11.3,7500,9,999999999,120,0.0980,0,88,0.170,999.0,99.0 +1996,11,16,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,-2.0,37,100000,184,1399,322,52,17,50,5700,1200,5600,1190,120,3.6,9,8,11.3,7500,9,999999999,120,0.0980,0,88,0.170,999.0,99.0 +1996,11,16,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,-2.0,45,100000,10,408,304,1,0,1,0,0,0,0,110,4.1,9,7,11.3,7500,9,999999999,120,0.0980,0,88,0.170,999.0,99.0 +1996,11,16,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,-3.0,44,100000,0,0,318,0,0,0,0,0,0,0,110,2.6,10,10,11.3,7500,9,999999999,120,0.0980,0,88,0.170,999.0,99.0 +1996,11,16,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,-3.0,48,100000,0,0,294,0,0,0,0,0,0,0,130,4.1,9,7,11.3,7500,9,999999999,120,0.0980,0,88,0.170,999.0,99.0 +1996,11,16,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,-4.0,44,100000,0,0,298,0,0,0,0,0,0,0,140,4.1,9,8,11.3,7500,9,999999999,120,0.0980,0,88,0.170,999.0,99.0 +1996,11,16,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,-3.0,51,99900,0,0,290,0,0,0,0,0,0,0,160,1.5,9,7,11.3,7500,9,999999999,120,0.0980,0,88,0.170,999.0,99.0 +1996,11,16,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,-2.0,55,99900,0,0,296,0,0,0,0,0,0,0,140,2.1,9,8,11.3,7500,9,999999999,129,0.0980,0,88,0.170,999.0,99.0 +1996,11,16,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,-2.0,55,99900,0,0,291,0,0,0,0,0,0,0,120,2.6,9,7,11.3,7500,9,999999999,129,0.0980,0,88,0.170,999.0,99.0 +1996,11,17,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-4.0,50,99900,0,0,295,0,0,0,0,0,0,0,130,1.0,9,9,11.3,7500,9,999999999,129,0.0970,0,88,0.170,999.0,99.0 +1996,11,17,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,-2.0,55,99900,0,0,302,0,0,0,0,0,0,0,140,2.6,9,9,11.3,7500,9,999999999,129,0.0970,0,88,0.170,999.0,99.0 +1996,11,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,-2.0,55,99800,0,0,302,0,0,0,0,0,0,0,150,3.1,9,9,11.3,7500,9,999999999,129,0.0970,0,88,0.170,999.0,99.0 +1996,11,17,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,-2.0,55,99800,0,0,302,0,0,0,0,0,0,0,140,4.1,9,9,11.3,7500,9,999999999,129,0.0970,0,88,0.170,999.0,99.0 +1996,11,17,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,-1.0,56,99800,0,0,316,0,0,0,0,0,0,0,150,3.6,10,10,11.3,3600,9,999999999,129,0.0970,0,88,0.170,999.0,99.0 +1996,11,17,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,-1.0,56,99700,0,0,316,0,0,0,0,0,0,0,140,3.1,10,10,11.3,3600,9,999999999,129,0.0970,0,88,0.170,999.0,99.0 +1996,11,17,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,-2.0,52,99700,0,0,315,0,0,0,0,0,0,0,150,3.6,10,10,11.3,3600,9,999999999,129,0.0970,0,88,0.170,999.0,99.0 +1996,11,17,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,0.0,53,99700,38,805,326,6,0,6,700,0,700,230,140,3.1,10,10,11.3,3600,9,999999999,129,0.0970,0,88,0.170,999.0,99.0 +1996,11,17,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,3.0,58,99700,248,1400,339,55,0,55,6200,0,6200,1930,160,5.7,10,10,11.3,3600,9,999999999,139,0.0970,0,88,0.170,999.0,99.0 +1996,11,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,3.0,54,99700,450,1400,344,114,0,114,12900,0,12900,4230,170,5.1,10,10,11.3,3600,9,999999999,139,0.0970,0,88,0.170,999.0,99.0 +1996,11,17,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,3.0,51,99600,602,1400,349,160,0,160,18200,0,18200,6250,170,6.2,10,10,11.3,3600,9,999999999,139,0.0970,0,88,0.170,999.0,99.0 +1996,11,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,4.0,51,99600,694,1400,355,151,0,151,17500,0,17500,6460,190,5.7,10,10,11.3,1500,9,999999999,139,0.0970,0,88,0.170,999.0,99.0 +1996,11,17,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.0,6.0,62,99500,718,1400,353,157,0,157,18300,0,18300,6770,190,6.2,10,10,11.3,1050,9,999999999,139,0.0970,0,88,0.170,0.0,6.0 +1996,11,17,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,9.0,87,99500,673,1400,346,146,0,146,16900,0,16900,6210,190,6.7,10,10,6.4,900,9,999999999,150,0.0970,0,88,0.170,999.0,99.0 +1996,11,17,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,9.0,93,99400,563,1400,341,118,0,118,13600,0,13600,4840,180,5.7,10,10,6.4,900,9,999999999,150,0.0970,0,88,0.170,999.0,99.0 +1996,11,17,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.8,9.5,92,99400,395,1400,346,78,0,78,8900,0,8900,3020,190,5.7,10,10,6.4,675,9,999999999,150,0.0970,0,88,0.170,999.0,99.0 +1996,11,17,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,10.0,94,99400,181,1400,347,30,0,30,3400,0,3400,1100,190,5.7,10,10,11.3,450,9,999999999,150,0.0970,0,88,0.170,999.0,99.0 +1996,11,17,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,10.0,94,99500,9,385,347,0,0,0,0,0,0,0,190,4.1,10,10,11.3,360,9,999999999,150,0.0970,0,88,0.170,999.0,99.0 +1996,11,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.0,11.0,100,99400,0,0,349,0,0,0,0,0,0,0,190,4.1,10,10,11.3,180,9,999999999,160,0.0970,0,88,0.170,1.0,6.0 +1996,11,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,11.0,100,99500,0,0,349,0,0,0,0,0,0,0,210,3.1,10,10,9.7,180,9,999999999,160,0.0970,0,88,0.170,999.0,99.0 +1996,11,17,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,10.0,100,99500,0,0,343,0,0,0,0,0,0,0,210,3.1,10,10,6.4,180,9,999999999,160,0.0970,0,88,0.170,999.0,99.0 +1996,11,17,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.0,10.0,94,99400,0,0,347,0,0,0,0,0,0,0,210,3.1,10,10,9.7,210,9,999999999,160,0.0970,0,88,0.170,1.0,3.0 +1996,11,17,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,10.0,94,99400,0,0,347,0,0,0,0,0,0,0,220,2.6,10,10,11.3,300,9,999999999,170,0.0970,0,88,0.170,999.0,99.0 +1996,11,17,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,10.0,94,99400,0,0,347,0,0,0,0,0,0,0,240,2.6,10,10,11.3,300,9,999999999,170,0.0970,0,88,0.170,999.0,99.0 +1996,11,18,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,8.0,93,99400,0,0,335,0,0,0,0,0,0,0,330,4.6,10,10,11.3,300,9,999999999,170,0.0970,0,88,0.170,999.0,99.0 +1996,11,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,7.0,93,99400,0,0,330,0,0,0,0,0,0,0,350,4.1,10,10,11.3,420,9,999999999,170,0.0970,0,88,0.170,999.0,99.0 +1996,11,18,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,7.0,93,99400,0,0,330,0,0,0,0,0,0,0,310,4.1,10,10,11.3,420,9,999999999,170,0.0970,0,88,0.170,999.0,99.0 +1996,11,18,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,4.0,87,99400,0,0,317,0,0,0,0,0,0,0,340,5.1,10,10,11.3,420,9,999999999,179,0.0970,0,88,0.170,999.0,99.0 +1996,11,18,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,2.0,87,99300,0,0,291,0,0,0,0,0,0,0,340,4.1,9,8,11.3,1200,9,999999999,179,0.0970,0,88,0.170,999.0,99.0 +1996,11,18,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,2.0,87,99300,0,0,287,0,0,0,0,0,0,0,340,3.6,9,7,11.3,1200,9,999999999,179,0.0970,0,88,0.170,999.0,99.0 +1996,11,18,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.0,0.0,87,99300,0,0,281,0,0,0,0,0,0,0,340,3.1,9,8,11.3,450,9,999999999,179,0.0970,0,88,0.170,3.0,24.0 +1996,11,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,1.0,93,99300,36,782,296,5,0,5,600,0,600,200,340,2.1,10,10,9.7,4500,9,999999999,179,0.0970,0,88,0.170,999.0,99.0 +1996,11,18,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,1.0,100,99300,243,1400,292,53,0,53,6000,0,6000,1870,340,1.5,10,10,9.7,4500,9,999999999,179,0.0970,0,88,0.170,999.0,99.0 +1996,11,18,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,0.0,87,99300,445,1400,295,112,0,112,12600,0,12600,4150,300,1.5,10,10,9.7,3900,9,999999999,170,0.0970,0,88,0.170,999.0,99.0 +1996,11,18,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-1.0,80,99200,597,1400,294,158,0,158,17900,0,17900,6170,340,2.1,10,10,9.7,3900,9,999999999,170,0.0970,0,88,0.170,999.0,99.0 +1996,11,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,-1.0,74,99100,689,1400,298,149,0,149,17300,0,17300,6370,50,3.6,10,10,9.7,1200,9,999999999,170,0.0970,0,88,0.170,999.0,99.0 +1996,11,18,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.0,1.0,87,98900,713,1400,286,286,68,251,31300,6800,27900,7310,170,3.6,9,8,9.7,2700,9,999999999,160,0.0970,0,88,0.170,0.0,6.0 +1996,11,18,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,1.0,81,98900,669,1400,286,290,148,219,31500,15000,24200,5380,320,1.5,9,7,9.7,3000,9,999999999,160,0.0970,0,88,0.170,999.0,99.0 +1996,11,18,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,2.0,87,98900,559,1400,291,150,101,109,16700,10000,12700,2550,250,2.6,9,8,9.7,3000,9,999999999,160,0.0970,0,88,0.170,999.0,99.0 +1996,11,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,2.0,81,98800,391,1400,291,141,87,117,15300,7700,13100,2590,310,3.1,9,7,9.7,3000,9,999999999,150,0.0970,0,88,0.170,999.0,99.0 +1996,11,18,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,2.0,81,98800,177,1400,295,73,54,66,7900,3900,7400,1430,260,1.5,9,8,9.7,3300,9,999999999,150,0.0970,0,88,0.170,999.0,99.0 +1996,11,18,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,2.0,87,98800,8,385,287,1,4,1,0,0,0,0,320,2.6,9,7,9.7,3300,9,999999999,150,0.0970,0,88,0.170,999.0,99.0 +1996,11,18,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,2.0,93,98800,0,0,287,0,0,0,0,0,0,0,210,1.5,9,8,11.3,3300,9,999999999,150,0.0970,0,88,0.170,999.0,99.0 +1996,11,18,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,1.0,87,98700,0,0,282,0,0,0,0,0,0,0,300,2.1,9,7,11.3,3300,9,999999999,139,0.0970,0,88,0.170,999.0,99.0 +1996,11,18,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,1.0,87,98700,0,0,286,0,0,0,0,0,0,0,250,1.0,9,8,11.3,3300,9,999999999,139,0.0970,0,88,0.170,999.0,99.0 +1996,11,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,1.0,87,98700,0,0,282,0,0,0,0,0,0,0,50,1.5,9,7,11.3,3300,9,999999999,139,0.0970,0,88,0.170,999.0,99.0 +1996,11,18,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,1.0,87,98600,0,0,286,0,0,0,0,0,0,0,10,1.5,9,8,11.3,3300,9,999999999,129,0.0970,0,88,0.170,999.0,99.0 +1996,11,18,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,1.0,87,98700,0,0,282,0,0,0,0,0,0,0,330,2.6,9,7,11.3,3300,9,999999999,129,0.0970,0,88,0.170,999.0,99.0 +1996,11,19,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,1.0,93,98600,0,0,270,0,0,0,0,0,0,0,10,1.5,5,4,11.3,77777,9,999999999,129,0.0960,0,88,0.170,999.0,99.0 +1996,11,19,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,1.0,93,98600,0,0,270,0,0,0,0,0,0,0,10,1.5,5,4,11.3,77777,9,999999999,120,0.0960,0,88,0.170,999.0,99.0 +1996,11,19,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,0.0,93,98600,0,0,265,0,0,0,0,0,0,0,30,2.1,5,4,11.3,77777,9,999999999,120,0.0960,0,88,0.170,999.0,99.0 +1996,11,19,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-1.0,86,98600,0,0,256,0,0,0,0,0,0,0,350,3.1,3,1,11.3,77777,9,999999999,120,0.0960,0,88,0.170,999.0,99.0 +1996,11,19,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-1.0,86,98600,0,0,256,0,0,0,0,0,0,0,340,4.6,2,1,11.3,77777,9,999999999,110,0.0960,0,88,0.170,999.0,99.0 +1996,11,19,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-1.0,86,98700,0,0,256,0,0,0,0,0,0,0,20,1.0,3,1,11.3,77777,9,999999999,110,0.0960,0,88,0.170,999.0,99.0 +1996,11,19,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-1.0,92,98600,0,0,262,0,0,0,0,0,0,0,360,2.1,9,5,11.3,4500,9,999999999,110,0.0960,0,88,0.170,999.0,99.0 +1996,11,19,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-2.0,92,98700,33,759,257,11,29,9,1200,800,1100,150,40,1.0,9,5,8.0,4500,9,999999999,110,0.0960,0,88,0.170,999.0,99.0 +1996,11,19,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-2.0,92,98700,238,1401,257,88,111,69,9500,8000,8100,1470,140,1.0,9,5,9.7,4500,9,999999999,110,0.0960,0,88,0.170,999.0,99.0 +1996,11,19,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-2.0,79,98700,440,1401,289,108,0,108,12200,0,12200,4020,70,2.1,10,10,9.7,4500,9,999999999,110,0.0960,0,88,0.170,999.0,99.0 +1996,11,19,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-1.0,80,98700,592,1401,270,355,533,129,37700,51900,15700,2540,70,2.6,9,5,9.7,4500,9,999999999,110,0.0960,0,88,0.170,999.0,99.0 +1996,11,19,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,1.0,87,98700,684,1401,301,183,0,183,20900,0,20900,7380,270,1.5,10,10,9.7,4500,9,999999999,110,0.0960,0,88,0.170,999.0,99.0 +1996,11,19,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,1.0,87,98600,709,1401,301,191,0,191,21800,0,21800,7760,270,1.0,10,10,9.7,4500,9,999999999,110,0.0960,0,88,0.170,999.0,99.0 +1996,11,19,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,2.0,87,98500,665,1401,306,177,0,177,20200,0,20200,7090,230,2.6,10,10,9.7,3900,9,999999999,120,0.0960,0,88,0.170,999.0,99.0 +1996,11,19,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,2.0,87,98600,555,1401,306,143,0,143,16200,0,16200,5530,320,2.1,10,10,9.7,3900,9,999999999,120,0.0960,0,88,0.170,999.0,99.0 +1996,11,19,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,1.0,81,98600,387,1401,305,93,0,93,10500,0,10500,3410,290,2.6,10,10,9.7,3900,9,999999999,120,0.0960,0,88,0.170,999.0,99.0 +1996,11,19,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,1.0,87,98600,174,1401,301,27,0,27,3100,0,3100,1000,320,1.5,10,10,11.3,3000,9,999999999,120,0.0960,0,88,0.170,999.0,99.0 +1996,11,19,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,1.0,87,98500,7,362,301,0,0,0,0,0,0,0,320,2.1,10,10,11.3,3000,9,999999999,120,0.0960,0,88,0.170,999.0,99.0 +1996,11,19,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,1.0,87,98600,0,0,301,0,0,0,0,0,0,0,320,3.1,10,10,11.3,2700,9,999999999,120,0.0960,0,88,0.170,999.0,99.0 +1996,11,19,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,1.0,93,98500,0,0,296,0,0,0,0,0,0,0,340,3.6,10,10,11.3,2700,9,999999999,120,0.0960,0,88,0.170,999.0,99.0 +1996,11,19,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,0.0,87,98600,0,0,295,0,0,0,0,0,0,0,330,3.1,10,10,11.3,2100,9,999999999,120,0.0960,0,88,0.170,999.0,99.0 +1996,11,19,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-1.0,86,98500,0,0,290,0,0,0,0,0,0,0,10,3.1,10,10,11.3,1800,9,999999999,120,0.0960,0,88,0.170,999.0,99.0 +1996,11,19,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,0.0,87,98500,0,0,295,0,0,0,0,0,0,0,10,3.1,10,10,11.3,1800,9,999999999,129,0.0960,0,88,0.170,999.0,99.0 +1996,11,19,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,0.0,87,98600,0,0,295,0,0,0,0,0,0,0,10,3.6,10,10,11.3,1800,9,999999999,129,0.0960,0,88,0.170,999.0,99.0 +1996,11,20,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.0,0.0,87,98600,0,0,273,0,0,0,0,0,0,0,320,2.6,10,6,11.3,1800,9,999999999,129,0.0960,0,88,0.170,0.0,6.0 +1996,11,20,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,0.0,87,98600,0,0,273,0,0,0,0,0,0,0,340,3.1,10,6,11.3,2400,9,999999999,129,0.0960,0,88,0.170,999.0,99.0 +1996,11,20,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,0.0,87,98600,0,0,273,0,0,0,0,0,0,0,340,3.1,10,6,11.3,1050,9,999999999,129,0.0960,0,88,0.170,999.0,99.0 +1996,11,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.0,-1.0,86,98500,0,0,264,0,0,0,0,0,0,0,350,3.6,9,4,11.3,1050,9,999999999,129,0.0960,0,88,0.170,0.0,3.0 +1996,11,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-1.0,86,98600,0,0,264,0,0,0,0,0,0,0,360,2.1,9,4,11.3,1050,9,999999999,129,0.0960,0,88,0.170,999.0,99.0 +1996,11,20,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-1.0,86,98600,0,0,259,0,0,0,0,0,0,0,350,4.1,5,2,11.3,77777,9,999999999,129,0.0960,0,88,0.170,999.0,99.0 +1996,11,20,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.0,-1.0,86,98600,0,0,268,0,0,0,0,0,0,0,350,1.5,10,6,9.7,4200,9,999999999,129,0.0960,0,88,0.170,0.0,6.0 +1996,11,20,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-2.0,79,98600,31,736,263,7,4,7,800,200,800,180,40,3.1,9,4,9.7,4200,9,999999999,139,0.0960,0,88,0.170,999.0,99.0 +1996,11,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-2.0,85,98700,233,1402,264,94,36,88,10200,2800,9800,1940,50,3.6,10,6,9.7,3900,9,999999999,139,0.0960,0,88,0.170,999.0,99.0 +1996,11,20,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-2.0,79,98800,435,1402,267,189,256,110,20200,23400,12900,2170,50,3.6,10,6,11.3,3900,9,999999999,139,0.0960,0,88,0.170,999.0,99.0 +1996,11,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-2.0,79,98700,587,1402,263,330,335,189,34800,33400,20700,4140,80,3.1,9,4,11.3,3900,9,999999999,139,0.0960,0,88,0.170,999.0,99.0 +1996,11,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-2.0,79,98700,679,1402,263,378,422,173,39700,42000,19300,3630,60,2.1,9,4,11.3,3000,9,999999999,139,0.0960,0,88,0.170,999.0,99.0 +1996,11,20,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-1.0,80,98600,704,1402,268,443,557,163,47100,55900,18900,3440,150,1.5,9,4,11.3,3000,9,999999999,139,0.0960,0,88,0.170,999.0,99.0 +1996,11,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-1.0,69,98600,661,1402,276,399,529,149,42400,52500,17500,3050,190,1.0,9,4,11.3,3600,9,999999999,150,0.0960,0,88,0.170,999.0,99.0 +1996,11,20,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-2.0,64,98500,551,1402,275,344,498,148,35800,47500,17000,2930,20,1.5,9,4,11.3,3300,9,999999999,150,0.0960,0,88,0.170,999.0,99.0 +1996,11,20,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,-2.0,68,98500,384,1402,271,153,212,95,16300,18500,11300,1840,70,3.1,9,4,11.3,3000,9,999999999,150,0.0960,0,88,0.170,999.0,99.0 +1996,11,20,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-2.0,73,98500,172,1402,267,53,80,43,5800,4900,5200,900,60,2.1,9,4,11.3,3000,9,999999999,150,0.0960,0,88,0.170,999.0,99.0 +1996,11,20,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-2.0,79,98600,7,339,263,1,0,1,0,0,0,0,50,2.1,9,4,11.3,2400,9,999999999,150,0.0960,0,88,0.170,999.0,99.0 +1996,11,20,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-2.0,79,98600,0,0,267,0,0,0,0,0,0,0,70,2.6,10,6,11.3,1800,9,999999999,150,0.0960,0,88,0.170,999.0,99.0 +1996,11,20,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-2.0,79,98600,0,0,267,0,0,0,0,0,0,0,60,2.6,10,6,11.3,1800,9,999999999,150,0.0960,0,88,0.170,999.0,99.0 +1996,11,20,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-2.0,79,98600,0,0,267,0,0,0,0,0,0,0,110,3.1,10,6,11.3,2400,9,999999999,160,0.0960,0,88,0.170,999.0,99.0 +1996,11,20,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-2.0,79,98600,0,0,267,0,0,0,0,0,0,0,80,3.1,10,6,11.3,1800,9,999999999,160,0.0960,0,88,0.170,999.0,99.0 +1996,11,20,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-2.0,79,98600,0,0,267,0,0,0,0,0,0,0,60,3.6,10,6,11.3,1800,9,999999999,160,0.0960,0,88,0.170,999.0,99.0 +1996,11,20,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-1.0,86,98500,0,0,268,0,0,0,0,0,0,0,70,3.6,10,6,4.8,1200,9,999999999,160,0.0960,0,88,0.170,999.0,99.0 +1996,11,21,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.0,-1.0,86,98500,0,0,282,0,0,0,0,0,0,0,80,3.6,10,9,4.8,900,9,999999999,160,0.0950,0,88,0.170,0.0,6.0 +1996,11,21,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-2.0,92,98400,0,0,273,0,0,0,0,0,0,0,80,4.1,10,9,2.4,600,9,999999999,160,0.0950,0,88,0.170,999.0,99.0 +1996,11,21,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-2.0,92,98400,0,0,273,0,0,0,0,0,0,0,90,4.6,10,9,2.4,600,9,999999999,170,0.0950,0,88,0.170,999.0,99.0 +1996,11,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.0,-2.0,92,98400,0,0,273,0,0,0,0,0,0,0,90,3.6,10,9,2.4,600,9,999999999,170,0.0950,0,88,0.170,1.0,3.0 +1996,11,21,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-1.0,100,98400,0,0,274,0,0,0,0,0,0,0,70,3.1,10,9,2.4,360,9,999999999,170,0.0950,0,88,0.170,999.0,99.0 +1996,11,21,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-1.0,100,98300,0,0,274,0,0,0,0,0,0,0,80,4.6,10,9,8.0,510,9,999999999,170,0.0950,0,88,0.170,999.0,99.0 +1996,11,21,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.0,-1.0,100,98400,0,0,274,0,0,0,0,0,0,0,70,3.6,10,9,8.0,510,9,999999999,170,0.0950,0,88,0.170,1.0,6.0 +1996,11,21,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-1.0,100,98300,29,713,274,5,0,5,600,0,600,190,60,3.6,10,9,4.8,300,9,999999999,170,0.0950,0,88,0.170,999.0,99.0 +1996,11,21,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,0.0,100,98400,228,1402,279,53,11,51,5900,200,5900,1770,70,4.1,10,9,4.0,300,9,999999999,170,0.0950,0,88,0.170,999.0,99.0 +1996,11,21,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,0.0,100,98400,430,1402,279,98,0,98,11100,0,11100,3710,70,4.1,10,9,4.8,750,9,999999999,160,0.0950,0,88,0.170,0.0,3.0 +1996,11,21,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,0.0,100,98400,583,1402,261,319,291,198,33600,29000,21500,4380,60,3.1,9,4,2.4,300,9,999999999,160,0.0950,0,88,0.170,999.0,99.0 +1996,11,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-1.0,86,98400,675,1402,264,333,351,165,36200,36200,18700,3560,30,3.6,9,4,11.3,600,9,999999999,160,0.0950,0,88,0.170,999.0,99.0 +1996,11,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.0,0.0,87,98400,700,1402,269,411,338,243,43500,34900,26000,5710,50,4.1,9,4,11.3,1050,9,999999999,160,0.0950,0,88,0.170,0.0,6.0 +1996,11,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-1.0,80,98400,657,1402,268,337,387,156,35700,38400,17700,3200,10,4.1,9,4,11.3,2400,9,999999999,150,0.0950,0,88,0.170,999.0,99.0 +1996,11,21,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-1.0,80,98500,548,1402,268,308,336,176,32400,33000,19500,3790,350,3.6,9,4,11.3,2400,9,999999999,150,0.0950,0,88,0.170,999.0,99.0 +1996,11,21,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-2.0,79,98500,381,1402,263,197,302,114,20600,26200,13500,2300,350,4.1,9,4,11.3,2400,9,999999999,150,0.0950,0,88,0.170,999.0,99.0 +1996,11,21,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-2.0,79,98600,169,1402,263,51,38,46,5500,2600,5200,1080,330,4.1,9,4,11.3,3000,9,999999999,139,0.0950,0,88,0.170,999.0,99.0 +1996,11,21,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-2.0,85,98700,6,339,259,0,0,0,0,0,0,0,340,3.1,9,4,11.3,1800,9,999999999,139,0.0950,0,88,0.170,999.0,99.0 +1996,11,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-3.0,78,98800,0,0,258,0,0,0,0,0,0,0,300,4.6,9,4,11.3,1800,9,999999999,139,0.0950,0,88,0.170,999.0,99.0 +1996,11,21,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-4.0,78,98900,0,0,252,0,0,0,0,0,0,0,300,2.6,5,3,11.3,77777,9,999999999,139,0.0950,0,88,0.170,999.0,99.0 +1996,11,21,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-4.0,78,99000,0,0,271,0,0,0,0,0,0,0,290,3.6,10,9,11.3,900,9,999999999,129,0.0950,0,88,0.170,999.0,99.0 +1996,11,21,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-4.0,78,99100,0,0,271,0,0,0,0,0,0,0,300,3.6,10,9,11.3,1050,9,999999999,129,0.0950,0,88,0.170,999.0,99.0 +1996,11,21,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-4.0,78,99100,0,0,271,0,0,0,0,0,0,0,320,3.1,10,9,11.3,900,9,999999999,129,0.0950,0,88,0.170,999.0,99.0 +1996,11,21,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-4.0,78,99100,0,0,271,0,0,0,0,0,0,0,350,3.1,10,9,11.3,750,9,999999999,129,0.0950,0,88,0.170,999.0,99.0 +1996,11,22,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-6.0,71,99200,0,0,265,0,0,0,0,0,0,0,330,3.6,10,9,11.3,750,9,999999999,120,0.0950,0,88,0.170,999.0,99.0 +1996,11,22,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-5.0,71,99200,0,0,270,0,0,0,0,0,0,0,330,2.1,10,9,11.3,750,9,999999999,120,0.0950,0,88,0.170,999.0,99.0 +1996,11,22,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-5.0,71,99300,0,0,270,0,0,0,0,0,0,0,350,4.1,10,9,11.3,750,9,999999999,120,0.0950,0,88,0.170,999.0,99.0 +1996,11,22,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-5.0,71,99300,0,0,270,0,0,0,0,0,0,0,330,2.6,10,9,11.3,750,9,999999999,110,0.0950,0,88,0.170,999.0,99.0 +1996,11,22,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-5.0,71,99400,0,0,270,0,0,0,0,0,0,0,360,3.1,10,9,11.3,750,9,999999999,110,0.0950,0,88,0.170,999.0,99.0 +1996,11,22,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-3.0,85,99400,0,0,272,0,0,0,0,0,0,0,340,2.1,10,9,11.3,750,9,999999999,110,0.0950,0,88,0.170,999.0,99.0 +1996,11,22,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-3.0,85,99500,0,0,272,0,0,0,0,0,0,0,320,2.1,10,9,11.3,750,9,999999999,110,0.0950,0,88,0.170,999.0,99.0 +1996,11,22,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-4.0,67,99600,26,690,279,9,0,9,0,0,0,0,360,2.1,10,9,11.3,750,9,999999999,110,0.0950,0,88,0.170,999.0,99.0 +1996,11,22,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-4.0,67,99600,224,1403,279,46,13,44,5100,1000,4900,1130,360,1.5,10,9,11.3,750,9,999999999,110,0.0950,0,88,0.170,999.0,99.0 +1996,11,22,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-3.0,72,99600,425,1403,280,85,60,67,9600,5600,7900,1500,10,3.1,10,9,11.3,750,9,999999999,110,0.0950,0,88,0.170,999.0,99.0 +1996,11,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-3.0,72,99700,578,1403,280,96,29,84,10600,2800,9500,2640,340,2.1,10,9,11.3,750,9,999999999,110,0.0950,0,88,0.170,999.0,99.0 +1996,11,22,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-3.0,72,99700,670,1403,280,130,75,94,14900,7700,11100,2300,30,2.1,10,9,11.3,750,9,999999999,110,0.0950,0,88,0.170,999.0,99.0 +1996,11,22,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-3.0,72,99600,696,1403,280,239,57,211,26300,5700,23500,6300,20,3.1,10,9,11.3,750,9,999999999,110,0.0950,0,88,0.170,999.0,99.0 +1996,11,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-2.0,79,99600,653,1403,281,327,53,302,35700,5300,33200,7770,50,1.5,10,9,11.3,750,9,999999999,110,0.0950,0,88,0.170,999.0,99.0 +1996,11,22,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-2.0,79,99500,544,1403,263,282,395,129,29700,37600,15100,2510,70,3.1,9,4,11.3,750,9,999999999,110,0.0950,0,88,0.170,999.0,99.0 +1996,11,22,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-3.0,72,99500,378,1403,262,185,206,129,19800,18000,15000,2850,350,1.0,9,4,11.3,750,9,999999999,110,0.0950,0,88,0.170,999.0,99.0 +1996,11,22,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-4.0,67,99500,166,1403,259,52,118,38,5500,6400,4800,690,170,1.5,5,3,11.3,77777,9,999999999,110,0.0950,0,88,0.170,999.0,99.0 +1996,11,22,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-4.0,72,99500,6,316,253,0,2,0,0,0,0,0,240,1.0,5,2,11.3,77777,9,999999999,110,0.0950,0,88,0.170,999.0,99.0 +1996,11,22,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-4.0,72,99600,0,0,250,0,0,0,0,0,0,0,300,0.5,3,1,11.3,77777,9,999999999,110,0.0950,0,88,0.170,999.0,99.0 +1996,11,22,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-4.0,72,99500,0,0,257,0,0,0,0,0,0,0,30,1.0,9,4,11.3,7500,9,999999999,110,0.0950,0,88,0.170,999.0,99.0 +1996,11,22,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-4.0,78,99500,0,0,254,0,0,0,0,0,0,0,190,1.0,9,4,11.3,7500,9,999999999,110,0.0950,0,88,0.170,999.0,99.0 +1996,11,22,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-6.0,71,99400,0,0,248,0,0,0,0,0,0,0,110,2.1,9,4,11.3,7500,9,999999999,110,0.0950,0,88,0.170,999.0,99.0 +1996,11,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-6.0,71,99400,0,0,248,0,0,0,0,0,0,0,140,1.5,9,4,11.3,7500,9,999999999,110,0.0950,0,88,0.170,999.0,99.0 +1996,11,22,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-6.0,71,99300,0,0,248,0,0,0,0,0,0,0,150,2.6,9,4,11.3,7500,9,999999999,120,0.0950,0,88,0.170,999.0,99.0 +1996,11,23,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-6.0,71,99300,0,0,265,0,0,0,0,0,0,0,360,0.5,9,9,11.3,7500,9,999999999,120,0.0940,0,88,0.170,999.0,99.0 +1996,11,23,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-6.0,71,99200,0,0,265,0,0,0,0,0,0,0,60,1.0,9,9,11.3,7500,9,999999999,120,0.0940,0,88,0.170,999.0,99.0 +1996,11,23,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-6.0,71,99200,0,0,265,0,0,0,0,0,0,0,170,1.5,9,9,11.3,7500,9,999999999,120,0.0940,0,88,0.170,999.0,99.0 +1996,11,23,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-5.0,84,99100,0,0,262,0,0,0,0,0,0,0,160,2.6,9,9,11.3,7500,9,999999999,120,0.0940,0,88,0.170,999.0,99.0 +1996,11,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-5.0,84,99000,0,0,262,0,0,0,0,0,0,0,150,3.1,9,9,11.3,7500,9,999999999,120,0.0940,0,88,0.170,999.0,99.0 +1996,11,23,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-5.0,71,99100,0,0,270,0,0,0,0,0,0,0,170,3.1,9,9,11.3,7500,9,999999999,120,0.0940,0,88,0.170,999.0,99.0 +1996,11,23,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-5.0,71,99000,0,0,277,0,0,0,0,0,0,0,130,3.1,10,10,11.3,3600,9,999999999,120,0.0940,0,88,0.170,999.0,99.0 +1996,11,23,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-5.0,71,99000,24,667,270,9,7,9,0,0,0,0,150,3.1,9,9,11.3,3600,9,999999999,120,0.0940,0,88,0.170,999.0,99.0 +1996,11,23,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-5.0,71,99000,219,1403,270,71,70,60,7700,4900,6900,1270,160,5.1,9,9,11.3,7500,9,999999999,120,0.0940,0,88,0.170,999.0,99.0 +1996,11,23,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-4.0,67,98900,421,1403,279,155,35,145,17000,3200,16000,3610,170,5.1,9,9,11.3,7500,9,999999999,129,0.0940,0,88,0.170,999.0,99.0 +1996,11,23,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-4.0,62,98800,573,1403,283,282,169,213,30300,16600,23500,5020,190,6.7,9,9,11.3,7500,9,999999999,129,0.0940,0,88,0.170,999.0,99.0 +1996,11,23,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-4.0,62,98700,666,1403,267,438,686,113,46000,67100,14000,2350,190,5.1,5,5,11.3,77777,9,999999999,129,0.0940,0,88,0.170,999.0,99.0 +1996,11,23,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,-3.0,51,98700,692,1403,284,268,133,202,29300,13600,22500,5010,190,4.6,5,5,11.3,77777,9,999999999,139,0.0940,0,88,0.170,999.0,99.0 +1996,11,23,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,-2.0,52,98700,649,1403,306,162,37,144,17800,3600,16100,4440,210,4.1,9,9,11.3,7500,9,999999999,139,0.0940,0,88,0.170,999.0,99.0 +1996,11,23,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,-1.0,49,98600,541,1403,316,159,105,118,17600,10300,13600,2740,200,4.6,9,9,11.3,7500,9,999999999,139,0.0940,0,88,0.170,999.0,99.0 +1996,11,23,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,-1.0,52,98600,375,1403,312,110,28,103,12100,2500,11400,2660,190,4.6,9,9,11.3,7500,9,999999999,139,0.0940,0,88,0.170,999.0,99.0 +1996,11,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,0.0,57,98700,164,1403,313,51,24,48,5600,1700,5400,1110,200,3.6,9,9,11.3,7500,9,999999999,150,0.0940,0,88,0.170,999.0,99.0 +1996,11,23,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,0.0,61,98700,5,316,308,0,2,0,0,0,0,0,210,2.1,9,9,11.3,7500,9,999999999,150,0.0940,0,88,0.170,999.0,99.0 +1996,11,23,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,0.0,61,98800,0,0,317,0,0,0,0,0,0,0,60,2.1,10,10,11.3,7500,9,999999999,150,0.0940,0,88,0.170,999.0,99.0 +1996,11,23,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,-1.0,56,98800,0,0,316,0,0,0,0,0,0,0,30,1.5,10,10,11.3,2100,9,999999999,150,0.0940,0,88,0.170,999.0,99.0 +1996,11,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,0.0,70,98800,0,0,308,0,0,0,0,0,0,0,230,1.0,10,10,11.3,1500,9,999999999,160,0.0940,0,88,0.170,999.0,99.0 +1996,11,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,0.0,65,98800,0,0,313,0,0,0,0,0,0,0,120,1.5,10,10,11.3,1200,9,999999999,160,0.0940,0,88,0.170,999.0,99.0 +1996,11,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,0.0,65,98800,0,0,313,0,0,0,0,0,0,0,130,1.5,10,10,11.3,1050,9,999999999,160,0.0940,0,88,0.170,999.0,99.0 +1996,11,23,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,-1.0,60,98900,0,0,312,0,0,0,0,0,0,0,140,2.6,10,10,11.3,1050,9,999999999,170,0.0940,0,88,0.170,999.0,99.0 +1996,11,24,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,-1.0,60,98900,0,0,303,0,0,0,0,0,0,0,150,1.5,10,9,11.3,1050,9,999999999,170,0.0940,0,88,0.170,999.0,99.0 +1996,11,24,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,0.0,65,98900,0,0,304,0,0,0,0,0,0,0,130,1.5,10,9,11.3,1050,9,999999999,170,0.0940,0,88,0.170,999.0,99.0 +1996,11,24,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,0.0,70,98800,0,0,300,0,0,0,0,0,0,0,140,2.1,10,9,11.3,1050,9,999999999,170,0.0940,0,88,0.170,999.0,99.0 +1996,11,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,0.0,70,98900,0,0,300,0,0,0,0,0,0,0,60,1.5,10,9,11.3,1050,9,999999999,179,0.0940,0,88,0.170,999.0,99.0 +1996,11,24,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,1.0,75,98900,0,0,301,0,0,0,0,0,0,0,150,1.0,10,9,11.3,1050,9,999999999,179,0.0940,0,88,0.170,999.0,99.0 +1996,11,24,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,1.0,66,98900,0,0,310,0,0,0,0,0,0,0,40,1.0,10,9,11.3,900,9,999999999,179,0.0940,0,88,0.170,999.0,99.0 +1996,11,24,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,2.0,70,98900,0,0,311,0,0,0,0,0,0,0,340,1.5,10,9,11.3,900,9,999999999,189,0.0940,0,88,0.170,999.0,99.0 +1996,11,24,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,2.0,70,99000,22,620,311,3,0,3,0,0,0,0,80,2.1,10,9,11.3,900,9,999999999,189,0.0940,0,88,0.170,999.0,99.0 +1996,11,24,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,2.0,70,99000,214,1404,311,40,44,33,4500,3100,4000,700,120,2.1,10,9,11.3,900,9,999999999,189,0.0940,0,88,0.170,999.0,99.0 +1996,11,24,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,3.0,71,99000,416,1404,316,175,70,154,19100,6400,17200,3750,200,2.1,10,9,11.3,900,9,999999999,189,0.0940,0,88,0.170,999.0,99.0 +1996,11,24,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,4.0,71,99000,569,1404,322,262,47,243,28600,4600,26800,6120,100,2.1,10,9,11.3,810,9,999999999,189,0.0940,0,88,0.170,999.0,99.0 +1996,11,24,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,5.0,76,98900,662,1404,323,267,22,256,29500,2100,28500,8790,140,2.1,10,9,11.3,750,9,999999999,189,0.0940,0,88,0.170,999.0,99.0 +1996,11,24,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,5.0,76,98900,688,1404,323,153,136,87,17500,14200,10600,1720,160,2.1,10,9,11.3,750,9,999999999,189,0.0940,0,88,0.170,999.0,99.0 +1996,11,24,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,6.0,81,98800,646,1404,324,278,48,256,30400,4800,28200,6920,130,2.6,10,9,11.3,870,9,999999999,189,0.0940,0,88,0.170,999.0,99.0 +1996,11,24,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,6.0,81,98800,538,1404,324,155,44,138,17000,4200,15400,3920,130,1.5,10,9,9.7,870,9,999999999,189,0.0940,0,88,0.170,999.0,99.0 +1996,11,24,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.0,6.0,81,98800,372,1404,324,119,51,106,13100,4500,11900,2710,170,2.6,10,9,9.7,690,9,999999999,189,0.0940,0,88,0.170,0.0,3.0 +1996,11,24,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,7.0,93,98800,161,1404,321,53,21,51,5800,1400,5700,1150,60,1.0,10,9,4.0,360,9,999999999,189,0.0940,0,88,0.170,999.0,99.0 +1996,11,24,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,7.7,7.2,97,98800,5,292,319,0,0,0,0,0,0,0,70,1.4,10,9,4.0,380,9,999999999,189,0.0940,0,88,0.170,999.0,99.0 +1996,11,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,7.6,7.6,100,98800,0,0,319,0,0,0,0,0,0,0,90,1.7,10,9,4.0,400,9,999999999,189,0.0940,0,88,0.170,999.0,99.0 +1996,11,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,8.0,100,98800,0,0,322,0,0,0,0,0,0,0,100,2.1,10,9,2.4,420,9,999999999,189,0.0940,0,88,0.170,999.0,99.0 +1996,11,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,7.0,100,98800,0,0,316,0,0,0,0,0,0,0,20,2.6,10,9,2.4,420,9,999999999,189,0.0940,0,88,0.170,999.0,99.0 +1996,11,24,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.0,7.0,100,98800,0,0,316,0,0,0,0,0,0,0,10,2.6,10,9,2.4,540,9,999999999,189,0.0940,0,88,0.170,0.0,3.0 +1996,11,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,7.0,100,98800,0,0,316,0,0,0,0,0,0,0,40,2.1,10,9,2.4,540,9,999999999,200,0.0940,0,88,0.170,999.0,99.0 +1996,11,24,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,7.0,100,98800,0,0,316,0,0,0,0,0,0,0,30,2.1,10,9,2.4,540,9,999999999,200,0.0940,0,88,0.170,999.0,99.0 +1996,11,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.0,7.0,100,98800,0,0,325,0,0,0,0,0,0,0,340,3.1,10,10,2.4,300,9,999999999,200,0.0930,0,88,0.170,0.0,6.0 +1996,11,25,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.6,6.2,97,98800,0,0,322,0,0,0,0,0,0,0,340,3.6,10,10,8.0,250,9,999999999,200,0.0930,0,88,0.170,999.0,99.0 +1996,11,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.3,5.6,95,98800,0,0,320,0,0,0,0,0,0,0,340,3.6,10,10,8.0,200,9,999999999,200,0.0930,0,88,0.170,999.0,99.0 +1996,11,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.0,5.0,93,98800,0,0,318,0,0,0,0,0,0,0,340,3.6,10,10,9.7,150,9,999999999,200,0.0930,0,88,0.170,0.0,3.0 +1996,11,25,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,5.0,93,98800,0,0,318,0,0,0,0,0,0,0,360,3.1,10,10,9.7,150,9,999999999,200,0.0930,0,88,0.170,999.0,99.0 +1996,11,25,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,4.0,93,98900,0,0,313,0,0,0,0,0,0,0,350,4.1,10,10,11.3,150,9,999999999,200,0.0930,0,88,0.170,999.0,99.0 +1996,11,25,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,4.0,93,98900,0,0,313,0,0,0,0,0,0,0,40,3.1,10,10,11.3,150,9,999999999,200,0.0930,0,88,0.170,0.0,6.0 +1996,11,25,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,3.0,100,98900,21,597,303,1,0,1,0,0,0,0,360,2.6,10,10,8.0,150,9,999999999,200,0.0930,0,88,0.170,999.0,99.0 +1996,11,25,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,3.0,100,98900,210,1404,303,26,0,26,3100,0,3100,1010,50,3.6,10,10,8.0,150,9,999999999,200,0.0930,0,88,0.170,999.0,99.0 +1996,11,25,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.0,3.0,100,98900,412,1404,303,44,0,44,5300,0,5300,1900,60,4.1,10,10,6.4,150,9,999999999,189,0.0930,0,88,0.170,0.0,3.0 +1996,11,25,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,3.0,100,98800,565,1404,303,69,0,69,8300,0,8300,3110,70,4.1,10,10,6.4,150,9,999999999,189,0.0930,0,88,0.170,999.0,99.0 +1996,11,25,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,4.0,100,98600,657,1404,308,85,0,85,10300,0,10300,3930,40,4.1,10,10,6.4,150,9,999999999,189,0.0930,0,88,0.170,999.0,99.0 +1996,11,25,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.0,3.0,100,98600,684,1404,303,89,0,89,10700,0,10700,4150,60,3.6,10,10,6.4,150,9,999999999,189,0.0930,0,88,0.170,3.0,6.0 +1996,11,25,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,3.0,100,98400,642,1404,303,82,0,82,9900,0,9900,3780,60,4.1,10,10,3.2,150,9,999999999,189,0.0930,0,88,0.170,999.0,99.0 +1996,11,25,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,4.0,100,98300,535,1404,308,63,0,63,7600,0,7600,2820,50,4.1,10,10,3.2,150,9,999999999,179,0.0930,0,88,0.170,999.0,99.0 +1996,11,25,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,5.0,100,98200,370,1404,314,39,0,39,4700,0,4700,1660,50,3.1,10,10,3.2,150,9,999999999,179,0.0930,0,88,0.170,10.0,3.0 +1996,11,25,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,6.0,100,98200,159,1404,319,21,0,21,2500,0,2500,790,40,3.6,10,10,3.2,150,9,999999999,179,0.0930,0,88,0.170,999.0,99.0 +1996,11,25,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,5.0,100,98100,5,293,314,0,0,0,0,0,0,0,60,5.1,10,10,11.3,240,9,999999999,179,0.0930,0,88,0.170,999.0,99.0 +1996,11,25,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,4.0,93,98100,0,0,313,0,0,0,0,0,0,0,30,2.1,10,10,11.3,240,9,999999999,179,0.0930,0,88,0.170,17.0,6.0 +1996,11,25,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,5.0,100,98000,0,0,314,0,0,0,0,0,0,0,60,4.1,10,10,11.3,270,9,999999999,170,0.0930,0,88,0.170,999.0,99.0 +1996,11,25,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,4.0,100,98100,0,0,308,0,0,0,0,0,0,0,340,4.6,10,10,9.7,270,9,999999999,170,0.0930,0,88,0.170,999.0,99.0 +1996,11,25,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.0,3.0,100,98000,0,0,303,0,0,0,0,0,0,0,30,5.1,10,10,11.3,270,9,999999999,170,0.0930,0,88,0.170,6.0,3.0 +1996,11,25,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,2.0,93,98000,0,0,302,0,0,0,0,0,0,0,20,4.6,10,10,11.3,270,9,999999999,170,0.0930,0,88,0.170,999.0,99.0 +1996,11,25,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,2.0,93,98000,0,0,302,0,0,0,0,0,0,0,10,4.6,10,10,11.3,270,9,999999999,170,0.0930,0,88,0.170,999.0,99.0 +1996,11,26,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.0,2.0,100,98100,0,0,297,0,0,0,0,0,0,0,360,3.6,10,10,11.3,270,9,999999999,160,0.0930,0,88,0.170,21.0,6.0 +1996,11,26,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,2.0,100,98100,0,0,297,0,0,0,0,0,0,0,360,4.6,10,10,11.3,270,9,999999999,160,0.0930,0,88,0.170,999.0,99.0 +1996,11,26,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,0.0,87,98200,0,0,295,0,0,0,0,0,0,0,340,4.6,10,10,11.3,270,9,999999999,160,0.0930,0,88,0.170,999.0,99.0 +1996,11,26,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-1.0,92,98300,0,0,286,0,0,0,0,0,0,0,360,4.6,10,10,11.3,270,9,999999999,160,0.0930,0,88,0.170,4.0,3.0 +1996,11,26,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-1.0,92,98500,0,0,286,0,0,0,0,0,0,0,350,4.6,10,10,1.2,270,9,999999999,150,0.0930,0,88,0.170,999.0,99.0 +1996,11,26,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-2.0,85,98600,0,0,285,0,0,0,0,0,0,0,350,5.1,10,10,11.3,360,9,999999999,150,0.0930,0,88,0.170,999.0,99.0 +1996,11,26,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-2.0,85,98800,0,0,285,0,0,0,0,0,0,0,340,4.1,10,10,11.3,360,9,999999999,150,0.0930,0,88,0.170,4.0,6.0 +1996,11,26,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-2.0,92,98900,19,574,280,2,0,2,0,0,0,0,330,4.6,10,10,11.3,450,9,999999999,150,0.0930,0,88,0.170,999.0,99.0 +1996,11,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-2.0,92,99100,205,1405,280,31,0,31,3600,0,3600,1170,320,5.7,10,10,11.3,450,9,999999999,139,0.0930,0,88,0.170,999.0,99.0 +1996,11,26,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-2.0,92,99200,407,1405,280,74,0,74,8500,0,8500,2930,320,4.6,10,10,11.3,900,9,999999999,139,0.0930,0,88,0.170,999.0,99.0 +1996,11,26,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-2.0,92,99300,560,1405,280,111,0,111,12900,0,12900,4600,340,4.6,10,10,11.3,900,9,999999999,139,0.0930,0,88,0.170,999.0,99.0 +1996,11,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-2.0,85,99400,653,1405,285,135,0,135,15700,0,15700,5750,330,4.6,10,10,11.3,900,9,999999999,139,0.0930,0,88,0.170,999.0,99.0 +1996,11,26,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-2.0,92,99500,680,1405,280,141,0,141,16400,0,16400,6060,330,5.1,10,10,11.3,900,9,999999999,129,0.0930,0,88,0.170,999.0,99.0 +1996,11,26,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-2.0,92,99600,639,1405,273,155,159,82,17500,16300,10100,1580,300,4.6,9,9,11.3,750,9,999999999,129,0.0930,0,88,0.170,999.0,99.0 +1996,11,26,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-3.0,85,99600,532,1405,272,234,96,198,25700,9300,22100,5120,310,4.6,9,9,11.3,750,9,999999999,129,0.0930,0,88,0.170,999.0,99.0 +1996,11,26,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-3.0,92,99700,367,1405,268,79,31,71,8700,2700,8000,1950,320,3.6,9,9,11.3,840,9,999999999,120,0.0930,0,88,0.170,999.0,99.0 +1996,11,26,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-3.0,92,99700,157,1405,268,36,20,34,4000,1300,3800,840,320,4.1,9,9,11.3,900,9,999999999,120,0.0930,0,88,0.170,999.0,99.0 +1996,11,26,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-3.0,92,99800,4,269,268,0,1,0,0,0,0,0,320,3.6,9,9,11.3,900,9,999999999,120,0.0930,0,88,0.170,999.0,99.0 +1996,11,26,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-3.0,92,99900,0,0,268,0,0,0,0,0,0,0,310,4.1,9,9,11.3,900,9,999999999,110,0.0930,0,88,0.170,999.0,99.0 +1996,11,26,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-3.0,92,100000,0,0,268,0,0,0,0,0,0,0,310,3.6,9,9,11.3,900,9,999999999,110,0.0930,0,88,0.170,999.0,99.0 +1996,11,26,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-5.0,71,100100,0,0,277,0,0,0,0,0,0,0,310,4.6,10,10,11.3,900,9,999999999,110,0.0930,0,88,0.170,999.0,99.0 +1996,11,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-6.0,66,100100,0,0,276,0,0,0,0,0,0,0,300,3.6,10,10,11.3,900,9,999999999,100,0.0930,0,88,0.170,999.0,99.0 +1996,11,26,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-6.0,66,100200,0,0,276,0,0,0,0,0,0,0,280,5.7,10,10,11.3,900,9,999999999,100,0.0930,0,88,0.170,999.0,99.0 +1996,11,26,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-5.0,78,100200,0,0,273,0,0,0,0,0,0,0,280,6.2,10,10,11.3,900,9,999999999,100,0.0930,0,88,0.170,999.0,99.0 +1996,11,27,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-6.0,71,100300,0,0,272,0,0,0,0,0,0,0,280,4.6,10,10,11.3,900,9,999999999,89,0.0920,0,88,0.170,999.0,99.0 +1996,11,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-6.0,77,100300,0,0,268,0,0,0,0,0,0,0,280,4.1,10,10,11.3,600,9,999999999,89,0.0920,0,88,0.170,999.0,99.0 +1996,11,27,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-6.0,77,100300,0,0,268,0,0,0,0,0,0,0,330,4.1,10,10,11.3,750,9,999999999,89,0.0920,0,88,0.170,999.0,99.0 +1996,11,27,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-6.0,77,100300,0,0,268,0,0,0,0,0,0,0,320,3.6,10,10,11.3,750,9,999999999,80,0.0920,0,88,0.170,999.0,99.0 +1996,11,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-6.0,77,100300,0,0,268,0,0,0,0,0,0,0,320,4.1,10,10,11.3,750,9,999999999,80,0.0920,0,88,0.170,999.0,99.0 +1996,11,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-3.2,-6.8,74,100400,0,0,267,0,0,0,0,0,0,0,320,3.4,10,10,11.3,780,9,999999999,80,0.0920,0,88,0.170,999.0,99.0 +1996,11,27,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-3.3,-7.5,70,100400,0,0,266,0,0,0,0,0,0,0,330,2.8,10,10,11.3,810,9,999999999,80,0.0920,0,88,0.170,999.0,99.0 +1996,11,27,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-8.0,65,100400,17,550,266,2,0,2,0,0,0,0,330,2.1,10,10,11.3,840,9,999999999,80,0.0920,0,88,0.170,999.0,99.0 +1996,11,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-8.0,65,100500,201,1405,266,34,0,34,3900,0,3900,1250,320,2.6,10,10,11.3,750,9,999999999,80,0.0920,0,88,0.170,999.0,99.0 +1996,11,27,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-7.0,65,100600,403,1405,271,79,0,79,9100,0,9100,3070,340,1.5,10,10,11.3,750,9,999999999,80,0.0920,0,88,0.170,999.0,99.0 +1996,11,27,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-7.0,65,100600,556,1405,271,117,0,117,13500,0,13500,4770,300,1.5,10,10,11.3,750,9,999999999,80,0.0920,0,88,0.170,999.0,99.0 +1996,11,27,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-7.0,65,100600,649,1405,271,140,0,140,16200,0,16200,5900,330,2.1,10,10,11.3,720,9,999999999,80,0.0920,0,88,0.170,999.0,99.0 +1996,11,27,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-7.0,65,100600,677,1405,271,146,0,146,16900,0,16900,6210,310,2.1,10,10,11.3,720,9,999999999,80,0.0920,0,88,0.170,999.0,99.0 +1996,11,27,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-7.0,65,100600,636,1405,271,136,0,136,15700,0,15700,5710,350,2.6,10,10,11.3,720,9,999999999,80,0.0920,0,88,0.170,999.0,99.0 +1996,11,27,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-7.0,65,100600,529,1405,271,110,0,110,12700,0,12700,4450,290,2.1,10,10,11.3,720,9,999999999,80,0.0920,0,88,0.170,999.0,99.0 +1996,11,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-7.0,65,100600,365,1405,271,70,0,70,8000,0,8000,2690,40,2.6,10,10,11.3,720,9,999999999,80,0.0920,0,88,0.170,999.0,99.0 +1996,11,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-1.8,-6.9,65,100500,156,1405,272,30,9,29,3300,600,3200,730,360,1.6,10,10,11.3,690,9,999999999,80,0.0920,0,88,0.170,999.0,99.0 +1996,11,27,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-7.0,65,100500,4,269,264,0,1,0,0,0,0,0,320,0.5,9,9,11.3,660,9,999999999,80,0.0920,0,88,0.170,999.0,99.0 +1996,11,27,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-6.0,71,100500,0,0,265,0,0,0,0,0,0,0,60,1.0,9,9,11.3,690,9,999999999,80,0.0920,0,88,0.170,999.0,99.0 +1996,11,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-6.0,77,100500,0,0,261,0,0,0,0,0,0,0,60,2.1,9,9,11.3,690,9,999999999,80,0.0920,0,88,0.170,999.0,99.0 +1996,11,27,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-6.0,77,100400,0,0,246,0,0,0,0,0,0,0,80,2.6,5,5,11.3,77777,9,999999999,80,0.0920,0,88,0.170,999.0,99.0 +1996,11,27,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-6.0,77,100300,0,0,246,0,0,0,0,0,0,0,100,2.6,5,5,11.3,77777,9,999999999,80,0.0920,0,88,0.170,999.0,99.0 +1996,11,27,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-6.0,77,100300,0,0,261,0,0,0,0,0,0,0,280,0.5,9,9,11.3,3600,9,999999999,80,0.0920,0,88,0.170,999.0,99.0 +1996,11,27,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-6.0,77,100200,0,0,261,0,0,0,0,0,0,0,260,1.5,9,9,11.3,3600,9,999999999,80,0.0920,0,88,0.170,999.0,99.0 +1996,11,28,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.0,-6.0,84,100200,0,0,243,0,0,0,0,0,0,0,180,2.1,9,5,11.3,3300,9,999999999,80,0.0920,0,88,0.170,999.0,99.0 +1996,11,28,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.0,-7.0,77,100100,0,0,242,0,0,0,0,0,0,0,170,4.6,9,5,11.3,3300,9,999999999,80,0.0920,0,88,0.170,999.0,99.0 +1996,11,28,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-6.0,77,100100,0,0,246,0,0,0,0,0,0,0,230,0.5,9,5,11.3,3600,9,999999999,80,0.0920,0,88,0.170,999.0,99.0 +1996,11,28,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-6.0,77,100100,0,0,246,0,0,0,0,0,0,0,160,2.1,9,5,11.3,3600,9,999999999,80,0.0920,0,88,0.170,999.0,99.0 +1996,11,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-6.0,77,100100,0,0,246,0,0,0,0,0,0,0,200,1.5,9,5,11.3,3600,9,999999999,80,0.0920,0,88,0.170,999.0,99.0 +1996,11,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-6.0,77,100000,0,0,268,0,0,0,0,0,0,0,180,2.6,10,10,11.3,3600,9,999999999,89,0.0920,0,88,0.170,999.0,99.0 +1996,11,28,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-6.0,77,100000,0,0,268,0,0,0,0,0,0,0,170,2.6,10,10,11.3,3000,9,999999999,89,0.0920,0,88,0.170,999.0,99.0 +1996,11,28,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-6.0,71,100000,16,527,272,1,0,1,0,0,0,0,180,3.1,10,10,11.3,3000,9,999999999,80,0.0920,0,88,0.170,999.0,99.0 +1996,11,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-6.0,71,100000,197,1406,272,32,0,32,3700,0,3700,1180,200,2.1,10,10,11.3,3000,9,999999999,80,0.0920,0,88,0.170,999.0,99.0 +1996,11,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-4.0,78,100000,398,1406,278,63,0,63,7400,0,7400,2550,200,3.1,10,10,11.3,2100,9,999999999,80,0.0920,0,88,0.170,999.0,99.0 +1996,11,28,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-6.0,56,100000,552,1406,261,192,95,155,21000,9300,17300,3620,260,3.1,9,5,11.3,2100,9,999999999,80,0.0920,0,88,0.170,999.0,99.0 +1996,11,28,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-3.0,72,100000,646,1406,254,406,633,115,42400,61400,14000,2340,230,4.6,2,1,11.3,77777,9,999999999,80,0.0920,0,88,0.170,999.0,99.0 +1996,11,28,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-2.0,73,99900,673,1406,254,458,736,106,48400,72300,13600,2230,220,4.1,0,0,11.3,77777,9,999999999,80,0.0920,0,88,0.170,999.0,99.0 +1996,11,28,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,-2.0,68,99900,633,1406,258,422,714,101,44400,69400,13100,2080,250,4.1,0,0,11.3,77777,9,999999999,80,0.0920,0,88,0.170,999.0,99.0 +1996,11,28,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,-2.0,68,99800,527,1406,258,330,646,87,34400,60500,11600,1700,270,4.1,0,0,11.3,77777,9,999999999,80,0.0920,0,88,0.170,999.0,99.0 +1996,11,28,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-4.0,54,99800,363,1406,259,196,501,67,20200,42000,9300,1220,230,3.1,0,0,11.3,77777,9,999999999,80,0.0920,0,88,0.170,999.0,99.0 +1996,11,28,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,-6.0,49,99800,154,1406,254,58,201,36,6000,10900,4800,650,250,3.1,0,0,11.3,77777,9,999999999,80,0.0920,0,88,0.170,999.0,99.0 +1996,11,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-6.0,56,99800,4,269,247,0,2,0,0,0,0,0,150,1.5,0,0,11.3,77777,9,999999999,80,0.0920,0,88,0.170,999.0,99.0 +1996,11,28,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-6.0,56,99800,0,0,247,0,0,0,0,0,0,0,90,1.5,0,0,11.3,77777,9,999999999,80,0.0920,0,88,0.170,999.0,99.0 +1996,11,28,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-7.0,65,99700,0,0,235,0,0,0,0,0,0,0,110,1.5,0,0,11.3,77777,9,999999999,80,0.0920,0,88,0.170,999.0,99.0 +1996,11,28,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-7.0,65,99700,0,0,235,0,0,0,0,0,0,0,320,0.5,0,0,11.3,77777,9,999999999,80,0.0920,0,88,0.170,999.0,99.0 +1996,11,28,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-7.0,71,99700,0,0,232,0,0,0,0,0,0,0,110,0.5,0,0,11.3,77777,9,999999999,80,0.0920,0,88,0.170,999.0,99.0 +1996,11,28,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-7.0,65,99700,0,0,235,0,0,0,0,0,0,0,30,1.0,0,0,11.3,77777,9,999999999,80,0.0920,0,88,0.170,999.0,99.0 +1996,11,28,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-7.0,65,99700,0,0,235,0,0,0,0,0,0,0,100,1.5,0,0,11.3,77777,9,999999999,69,0.0920,0,88,0.170,999.0,99.0 +1996,11,29,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-7.0,65,99600,0,0,235,0,0,0,0,0,0,0,40,2.1,0,0,11.3,77777,9,999999999,69,0.0910,0,88,0.170,999.0,99.0 +1996,11,29,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.0,-7.0,77,99500,0,0,228,0,0,0,0,0,0,0,50,2.1,0,0,11.3,77777,9,999999999,69,0.0910,0,88,0.170,999.0,99.0 +1996,11,29,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.0,-7.0,77,99600,0,0,228,0,0,0,0,0,0,0,120,1.0,0,0,11.3,77777,9,999999999,69,0.0910,0,88,0.170,999.0,99.0 +1996,11,29,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.0,-7.0,77,99500,0,0,228,0,0,0,0,0,0,0,80,1.5,0,0,11.3,77777,9,999999999,69,0.0910,0,88,0.170,999.0,99.0 +1996,11,29,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.0,-7.0,77,99600,0,0,228,0,0,0,0,0,0,0,70,2.1,0,0,11.3,77777,9,999999999,69,0.0910,0,88,0.170,999.0,99.0 +1996,11,29,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-7.0,71,99500,0,0,232,0,0,0,0,0,0,0,210,0.5,0,0,11.3,77777,9,999999999,69,0.0910,0,88,0.170,999.0,99.0 +1996,11,29,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-7.0,71,99500,0,0,232,0,0,0,0,0,0,0,50,1.5,0,0,11.3,77777,9,999999999,69,0.0910,0,88,0.170,999.0,99.0 +1996,11,29,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-6.0,77,99600,14,504,261,3,2,3,0,0,0,0,50,2.1,9,9,11.3,7500,9,999999999,80,0.0910,0,88,0.170,999.0,99.0 +1996,11,29,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-5.0,71,99600,192,1406,270,31,21,28,3400,1500,3200,740,50,1.0,9,9,11.3,7500,9,999999999,80,0.0910,0,88,0.170,999.0,99.0 +1996,11,29,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-2.0,73,99600,394,1406,285,123,49,110,13600,4400,12300,2860,140,3.1,9,9,11.3,7500,9,999999999,89,0.0910,0,88,0.170,999.0,99.0 +1996,11,29,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,-4.0,58,99600,548,1406,287,305,79,274,33200,7800,30200,6380,160,4.1,9,9,11.3,7500,9,999999999,89,0.0910,0,88,0.170,999.0,99.0 +1996,11,29,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,-4.0,47,99500,642,1406,300,256,92,214,28100,9100,23900,6060,160,3.6,9,9,11.3,7500,9,999999999,100,0.0910,0,88,0.170,999.0,99.0 +1996,11,29,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,-3.0,48,99400,670,1406,305,164,79,126,18400,8100,14500,3090,170,4.6,9,9,11.3,7500,9,999999999,100,0.0910,0,88,0.170,999.0,99.0 +1996,11,29,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,-1.0,52,99300,630,1406,312,271,66,241,29600,6600,26700,6520,160,4.1,9,9,11.3,7500,9,999999999,110,0.0910,0,88,0.170,999.0,99.0 +1996,11,29,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,-1.0,52,99200,524,1406,321,132,0,132,15000,0,15000,5060,140,4.6,10,10,11.3,7500,9,999999999,110,0.0910,0,88,0.170,999.0,99.0 +1996,11,29,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,-3.0,44,99100,361,1406,310,71,42,60,7800,3600,6900,1680,140,4.1,9,9,11.3,4200,9,999999999,120,0.0910,0,88,0.170,999.0,99.0 +1996,11,29,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,0.0,61,99100,152,1406,317,28,0,28,3200,0,3200,990,130,4.6,10,10,11.3,7500,9,999999999,120,0.0910,0,88,0.170,999.0,99.0 +1996,11,29,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,-2.0,55,99000,3,246,310,0,0,0,0,0,0,0,120,4.6,10,10,11.3,3300,9,999999999,129,0.0910,0,88,0.170,999.0,99.0 +1996,11,29,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,-2.0,55,99000,0,0,310,0,0,0,0,0,0,0,120,4.1,10,10,11.3,3000,9,999999999,129,0.0910,0,88,0.170,999.0,99.0 +1996,11,29,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,-1.0,60,98900,0,0,312,0,0,0,0,0,0,0,130,4.1,10,10,11.3,3000,9,999999999,139,0.0910,0,88,0.170,999.0,99.0 +1996,11,29,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-1.0,64,98900,0,0,307,0,0,0,0,0,0,0,140,4.1,10,10,11.3,2100,9,999999999,139,0.0910,0,88,0.170,999.0,99.0 +1996,11,29,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,0.0,70,98900,0,0,308,0,0,0,0,0,0,0,120,3.1,10,10,11.3,1800,9,999999999,150,0.0910,0,88,0.170,0.0,3.0 +1996,11,29,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,0.0,70,98800,0,0,308,0,0,0,0,0,0,0,150,3.1,10,10,11.3,1800,9,999999999,150,0.0910,0,88,0.170,999.0,99.0 +1996,11,29,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,0.0,70,98800,0,0,308,0,0,0,0,0,0,0,140,4.1,10,10,9.7,1800,9,999999999,160,0.0910,0,88,0.170,999.0,99.0 +1996,11,30,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,0.0,70,98700,0,0,308,0,0,0,0,0,0,0,140,3.1,10,10,9.7,1800,9,999999999,170,0.0910,0,88,0.170,3.0,6.0 +1996,11,30,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,3.0,87,98500,0,0,311,0,0,0,0,0,0,0,130,5.1,10,10,9.7,1800,9,999999999,170,0.0910,0,88,0.170,999.0,99.0 +1996,11,30,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,3.0,87,98500,0,0,311,0,0,0,0,0,0,0,180,5.7,10,10,9.7,900,9,999999999,179,0.0910,0,88,0.170,999.0,99.0 +1996,11,30,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,3.0,87,98500,0,0,311,0,0,0,0,0,0,0,170,5.1,10,10,9.7,900,9,999999999,179,0.0910,0,88,0.170,5.0,3.0 +1996,11,30,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,3.0,81,98500,0,0,316,0,0,0,0,0,0,0,170,5.1,10,10,9.7,900,9,999999999,189,0.0910,0,88,0.170,999.0,99.0 +1996,11,30,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,3.0,81,98400,0,0,316,0,0,0,0,0,0,0,150,5.1,10,10,9.7,900,9,999999999,189,0.0910,0,88,0.170,999.0,99.0 +1996,11,30,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,6.3,4.4,88,98400,0,0,319,0,0,0,0,0,0,0,160,4.9,10,10,9.7,555,9,999999999,200,0.0910,0,88,0.170,999.0,99.0 +1996,11,30,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,6.0,93,98400,13,481,324,1,0,1,0,0,0,0,170,4.6,10,10,9.7,210,9,999999999,200,0.0910,0,88,0.170,999.0,99.0 +1996,11,30,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,7.0,93,98300,188,1407,330,23,0,23,2700,0,2700,890,150,4.1,10,10,8.0,210,9,999999999,200,0.0910,0,88,0.170,999.0,99.0 +1996,11,30,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.0,7.0,93,98300,390,1407,330,55,0,55,6500,0,6500,2270,170,4.6,10,10,9.7,210,9,999999999,200,0.0910,0,88,0.170,1.0,3.0 +1996,11,30,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,7.0,93,98300,544,1407,330,85,0,85,10000,0,10000,3660,180,4.1,10,10,3.6,210,9,999999999,200,0.0910,0,88,0.170,999.0,99.0 +1996,11,30,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,9.0,100,98200,638,1407,337,105,0,105,12400,0,12400,4650,180,5.1,10,10,4.8,210,9,999999999,189,0.0910,0,88,0.170,999.0,99.0 +1996,11,30,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,9.0,93,98100,667,1407,341,111,0,111,13100,0,13100,4960,170,4.6,10,10,4.8,210,9,999999999,189,0.0910,0,88,0.170,1.0,6.0 +1996,11,30,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,10.0,100,98000,627,1407,343,103,0,103,12200,0,12200,4540,170,4.1,10,10,4.8,210,9,999999999,189,0.0910,0,88,0.170,999.0,99.0 +1996,11,30,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,11.0,100,98000,522,1407,349,81,0,81,9500,0,9500,3470,180,4.6,10,10,4.8,210,9,999999999,189,0.0910,0,88,0.170,999.0,99.0 +1996,11,30,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.0,11.0,100,98000,359,1407,349,49,0,49,5800,0,5800,2000,180,4.1,10,10,4.8,210,9,999999999,189,0.0910,0,88,0.170,0.0,3.0 +1996,11,30,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,11.0,100,98000,151,1407,349,20,0,20,2300,0,2300,750,180,4.1,10,10,4.8,210,9,999999999,189,0.0910,0,88,0.170,999.0,99.0 +1996,11,30,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,11.0,100,97900,3,246,349,0,0,0,0,0,0,0,170,3.6,10,10,6.4,210,9,999999999,189,0.0910,0,88,0.170,999.0,99.0 +1996,11,30,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.0,11.0,100,97900,0,0,349,0,0,0,0,0,0,0,160,3.1,10,10,6.4,210,9,999999999,189,0.0910,0,88,0.170,0.0,6.0 +1996,11,30,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,12.0,100,97900,0,0,355,0,0,0,0,0,0,0,160,3.1,10,10,8.0,210,9,999999999,189,0.0910,0,88,0.170,999.0,99.0 +1996,11,30,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,12.0,100,97900,0,0,355,0,0,0,0,0,0,0,160,3.1,10,10,11.3,210,9,999999999,189,0.0910,0,88,0.170,999.0,99.0 +1996,11,30,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,10.7,100,97800,0,0,349,0,0,0,0,0,0,0,180,3.5,10,10,4.8,150,9,999999999,189,0.0910,0,88,0.170,0.0,3.0 +1996,11,30,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.3,9.4,100,97700,0,0,343,0,0,0,0,0,0,0,150,3.8,10,10,4.8,150,9,999999999,189,0.0910,0,88,0.170,999.0,99.0 +1996,11,30,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.4,8.1,100,97600,0,0,337,0,0,0,0,0,0,0,150,4.2,10,10,11.3,150,9,999999999,189,0.0910,0,88,0.170,999.0,99.0 +2001,12,1,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.6,6.9,81,98700,0,0,332,0,0,0,0,0,0,0,220,4.6,10,10,11.3,570,9,999999999,189,0.0910,0,88,0.180,999.0,99.0 +2001,12,1,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.7,5.6,81,98700,0,0,327,0,0,0,0,0,0,0,230,5.0,10,10,11.3,570,9,999999999,189,0.0910,0,88,0.180,999.0,99.0 +2001,12,1,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.9,4.3,81,98800,0,0,322,0,0,0,0,0,0,0,250,5.3,10,10,11.3,630,9,999999999,179,0.0910,0,88,0.180,999.0,99.0 +2001,12,1,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,3.0,81,98800,0,0,316,0,0,0,0,0,0,0,240,5.7,10,10,11.3,600,9,999999999,179,0.0910,0,88,0.180,999.0,99.0 +2001,12,1,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,3.0,87,98800,0,0,311,0,0,0,0,0,0,0,220,5.1,10,10,11.3,690,9,999999999,179,0.0910,0,88,0.180,999.0,99.0 +2001,12,1,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,3.0,81,98900,0,0,316,0,0,0,0,0,0,0,220,5.1,10,10,11.3,600,9,999999999,170,0.0910,0,88,0.180,999.0,99.0 +2001,12,1,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,3.0,87,99000,0,0,311,0,0,0,0,0,0,0,210,4.6,10,10,11.3,540,9,999999999,170,0.0910,0,88,0.180,999.0,99.0 +2001,12,1,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,3.0,81,99100,12,457,316,0,0,0,0,0,0,0,210,4.1,10,10,11.3,540,9,999999999,170,0.0910,0,88,0.180,999.0,99.0 +2001,12,1,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,4.0,87,99200,185,1407,308,43,0,43,4800,0,4800,1450,200,4.6,9,9,11.3,690,9,999999999,160,0.0910,0,88,0.180,999.0,99.0 +2001,12,1,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,3.0,81,99200,387,1407,316,58,0,58,6800,0,6800,2360,200,5.1,10,10,11.3,630,9,999999999,160,0.0910,0,88,0.180,999.0,99.0 +2001,12,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,4.0,81,99300,541,1407,322,72,0,72,8600,0,8600,3180,210,5.1,10,10,11.3,600,9,999999999,160,0.0910,0,88,0.180,999.0,99.0 +2001,12,1,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,4.0,81,99300,635,1407,322,75,0,75,9100,0,9100,3480,220,5.1,10,10,11.3,750,9,999999999,150,0.0910,0,88,0.180,999.0,99.0 +2001,12,1,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,4.0,76,99200,664,1407,317,234,42,214,25700,4200,23700,6180,220,6.2,9,9,11.3,750,9,999999999,150,0.0910,0,88,0.180,999.0,99.0 +2001,12,1,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,3.0,71,99200,625,1407,316,215,42,196,23600,4100,21700,5580,220,4.6,9,9,11.3,660,9,999999999,150,0.0910,0,88,0.180,999.0,99.0 +2001,12,1,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,3.0,71,99300,520,1407,316,94,0,94,10900,0,10900,3910,230,3.1,9,9,11.3,750,9,999999999,139,0.0910,0,88,0.180,999.0,99.0 +2001,12,1,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,3.0,71,99300,358,1407,316,106,40,96,11600,3500,10700,2470,270,4.1,9,9,11.3,780,9,999999999,139,0.0910,0,88,0.180,999.0,99.0 +2001,12,1,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,3.0,76,99400,150,1407,312,43,79,35,4600,4000,4200,630,230,3.1,9,9,11.3,780,9,999999999,139,0.0910,0,88,0.180,999.0,99.0 +2001,12,1,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,3.0,81,99400,3,246,307,0,0,0,0,0,0,0,250,3.1,9,9,11.3,780,9,999999999,129,0.0910,0,88,0.180,999.0,99.0 +2001,12,1,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,3.0,81,99500,0,0,307,0,0,0,0,0,0,0,230,2.1,9,9,11.3,780,9,999999999,129,0.0910,0,88,0.180,999.0,99.0 +2001,12,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,3.0,87,99500,0,0,286,0,0,0,0,0,0,0,230,1.5,5,5,11.3,77777,9,999999999,120,0.0910,0,88,0.180,999.0,99.0 +2001,12,1,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,1.0,87,99500,0,0,276,0,0,0,0,0,0,0,220,2.1,5,5,11.3,77777,9,999999999,120,0.0910,0,88,0.180,999.0,99.0 +2001,12,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,1.0,93,99500,0,0,288,0,0,0,0,0,0,0,290,1.0,9,9,11.3,6000,9,999999999,110,0.0910,0,88,0.180,999.0,99.0 +2001,12,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,2.0,100,99500,0,0,289,0,0,0,0,0,0,0,120,1.0,9,9,11.3,6000,9,999999999,110,0.0910,0,88,0.180,999.0,99.0 +2001,12,1,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,2.0,100,99500,0,0,297,0,0,0,0,0,0,0,110,0.5,10,10,11.3,6000,9,999999999,110,0.0910,0,88,0.180,999.0,99.0 +2001,12,2,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,1.0,93,99500,0,0,296,0,0,0,0,0,0,0,90,0.5,10,10,11.3,6000,9,999999999,100,0.0910,0,88,0.180,999.0,99.0 +2001,12,2,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,1.0,93,99500,0,0,296,0,0,0,0,0,0,0,80,1.0,10,10,9.7,6000,9,999999999,100,0.0910,0,88,0.180,999.0,99.0 +2001,12,2,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,2.0,100,99500,0,0,297,0,0,0,0,0,0,0,60,0.5,10,10,9.7,6000,9,999999999,100,0.0910,0,88,0.180,999.0,99.0 +2001,12,2,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,2.0,93,99500,0,0,302,0,0,0,0,0,0,0,50,1.0,10,10,9.7,6000,9,999999999,100,0.0910,0,88,0.180,999.0,99.0 +2001,12,2,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,2.0,93,99500,0,0,302,0,0,0,0,0,0,0,30,1.5,10,10,9.7,6000,9,999999999,100,0.0910,0,88,0.180,999.0,99.0 +2001,12,2,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,1.0,93,99500,0,0,288,0,0,0,0,0,0,0,20,1.0,9,9,9.7,6000,9,999999999,100,0.0910,0,88,0.180,999.0,99.0 +2001,12,2,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,0.0,93,99600,0,0,267,0,0,0,0,0,0,0,40,0.5,5,5,6.4,77777,9,999999999,100,0.0910,0,88,0.180,999.0,99.0 +2001,12,2,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,0.0,100,99600,11,434,259,0,0,0,0,0,0,0,50,1.5,3,3,4.8,77777,9,999999999,100,0.0910,0,88,0.180,999.0,99.0 +2001,12,2,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,2.0,100,99700,181,1407,266,99,290,62,9900,17100,7700,1180,80,0.5,2,2,4.8,77777,9,999999999,100,0.0910,0,88,0.180,999.0,99.0 +2001,12,2,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,5.0,100,99800,383,1407,284,232,542,84,23600,45800,11000,1480,120,0.5,3,3,8.0,77777,9,999999999,100,0.0910,0,88,0.180,999.0,99.0 +2001,12,2,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,4.0,81,99800,537,1407,288,360,707,89,37500,66500,12000,1740,160,2.6,2,2,9.7,77777,9,999999999,100,0.0910,0,88,0.180,999.0,99.0 +2001,12,2,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,4.0,71,99800,632,1407,299,430,733,99,45100,71300,13000,2040,160,1.5,3,3,11.3,77777,9,999999999,100,0.0910,0,88,0.180,999.0,99.0 +2001,12,2,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,4.0,71,99700,661,1407,304,445,708,111,46600,69200,13900,2300,180,2.6,5,5,11.3,77777,9,999999999,100,0.0910,0,88,0.180,999.0,99.0 +2001,12,2,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,4.0,62,99700,622,1407,308,400,649,112,41600,62600,13800,2240,160,2.1,3,3,11.3,77777,9,999999999,100,0.0910,0,88,0.180,999.0,99.0 +2001,12,2,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,4.0,58,99600,518,1407,309,321,611,95,33200,56700,12200,1810,150,3.1,2,2,11.3,77777,9,999999999,100,0.0910,0,88,0.180,999.0,99.0 +2001,12,2,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,4.0,62,99600,356,1407,308,202,528,67,20600,44000,9500,1220,160,2.6,3,3,11.3,77777,9,999999999,100,0.0910,0,88,0.180,999.0,99.0 +2001,12,2,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,3.0,66,99600,149,1407,295,61,280,31,6200,16000,4500,540,150,2.6,2,2,11.3,77777,9,999999999,110,0.0910,0,88,0.180,999.0,99.0 +2001,12,2,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,3.0,71,99500,3,246,294,0,0,0,0,0,0,0,120,1.5,3,3,11.3,77777,9,999999999,110,0.0910,0,88,0.180,999.0,99.0 +2001,12,2,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,3.0,81,99500,0,0,283,0,0,0,0,0,0,0,130,1.0,2,2,11.3,77777,9,999999999,110,0.0910,0,88,0.180,999.0,99.0 +2001,12,2,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,3.0,81,99500,0,0,307,0,0,0,0,0,0,0,130,1.5,9,9,11.3,7500,9,999999999,110,0.0910,0,88,0.180,999.0,99.0 +2001,12,2,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,2.0,100,99500,0,0,289,0,0,0,0,0,0,0,150,1.0,9,9,11.3,7500,9,999999999,110,0.0910,0,88,0.180,999.0,99.0 +2001,12,2,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,2.0,100,99500,0,0,297,0,0,0,0,0,0,0,160,1.5,10,10,11.3,7500,9,999999999,110,0.0910,0,88,0.180,999.0,99.0 +2001,12,2,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,2.0,93,99500,0,0,277,0,0,0,0,0,0,0,160,1.0,5,5,11.3,77777,9,999999999,110,0.0910,0,88,0.180,999.0,99.0 +2001,12,2,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,3.0,100,99400,0,0,274,0,0,0,0,0,0,0,120,3.1,3,3,11.3,77777,9,999999999,110,0.0910,0,88,0.180,999.0,99.0 +2001,12,3,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,2.0,93,99300,0,0,287,0,0,0,0,0,0,0,140,1.5,9,8,11.3,7500,9,999999999,110,0.0900,0,88,0.180,999.0,99.0 +2001,12,3,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,2.0,93,99300,0,0,283,0,0,0,0,0,0,0,130,1.0,9,7,11.3,7500,9,999999999,110,0.0900,0,88,0.180,999.0,99.0 +2001,12,3,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,2.0,93,99300,0,0,273,0,0,0,0,0,0,0,120,1.5,3,3,11.3,77777,9,999999999,110,0.0900,0,88,0.180,999.0,99.0 +2001,12,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,1.0,87,99300,0,0,269,0,0,0,0,0,0,0,120,1.0,2,2,11.3,77777,9,999999999,110,0.0900,0,88,0.180,999.0,99.0 +2001,12,3,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,0.0,87,99300,0,0,269,0,0,0,0,0,0,0,110,1.0,5,4,11.3,77777,9,999999999,110,0.0900,0,88,0.180,999.0,99.0 +2001,12,3,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,0.0,93,99300,0,0,273,0,0,0,0,0,0,0,100,0.5,9,7,11.3,3600,9,999999999,110,0.0900,0,88,0.180,999.0,99.0 +2001,12,3,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,1.0,93,99300,0,0,268,0,0,0,0,0,0,0,160,2.1,3,3,11.3,77777,9,999999999,110,0.0900,0,88,0.180,999.0,99.0 +2001,12,3,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,1.0,93,99300,10,411,257,0,0,0,0,0,0,0,130,2.6,0,0,11.3,77777,9,999999999,110,0.0900,0,88,0.180,999.0,99.0 +2001,12,3,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,3.0,87,99400,177,1408,270,79,108,65,8400,6700,7500,1370,120,2.1,0,0,11.3,77777,9,999999999,110,0.0900,0,88,0.180,999.0,99.0 +2001,12,3,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,4.0,71,99400,379,1408,287,233,555,83,23700,46700,11000,1460,180,2.6,0,0,11.3,77777,9,999999999,110,0.0900,0,88,0.180,999.0,99.0 +2001,12,3,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,4.0,58,99400,534,1408,312,354,695,90,36900,65200,12100,1750,200,4.1,3,3,11.3,77777,9,999999999,110,0.0900,0,88,0.180,999.0,99.0 +2001,12,3,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,4.0,51,99400,629,1408,318,430,697,118,44600,67200,14500,2350,190,3.6,2,2,11.3,77777,9,999999999,110,0.0900,0,88,0.180,999.0,99.0 +2001,12,3,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,3.0,44,99300,658,1408,324,397,492,166,41700,48700,18800,3430,190,5.1,3,3,11.3,77777,9,999999999,110,0.0900,0,88,0.180,999.0,99.0 +2001,12,3,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,4.0,48,99300,620,1408,337,366,494,147,38500,48400,17100,2960,210,4.1,9,7,11.3,7500,9,999999999,120,0.0900,0,88,0.180,999.0,99.0 +2001,12,3,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,5.0,48,99300,516,1408,334,265,305,153,28100,29400,17200,3200,200,4.1,5,4,11.3,77777,9,999999999,120,0.0900,0,88,0.180,999.0,99.0 +2001,12,3,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,5.0,48,99300,355,1408,334,197,488,73,20000,40400,9800,1300,190,3.6,5,4,11.3,77777,9,999999999,120,0.0900,0,88,0.180,999.0,99.0 +2001,12,3,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,5.0,58,99300,148,1408,334,57,240,32,6000,12800,4700,570,190,3.1,9,8,11.3,7500,9,999999999,129,0.0900,0,88,0.180,999.0,99.0 +2001,12,3,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,3.0,54,99300,3,223,322,0,0,0,0,0,0,0,160,2.6,9,7,11.3,7500,9,999999999,129,0.0900,0,88,0.180,999.0,99.0 +2001,12,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,4.0,62,99300,0,0,324,0,0,0,0,0,0,0,170,2.6,9,8,11.3,7500,9,999999999,139,0.0900,0,88,0.180,999.0,99.0 +2001,12,3,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.5,3.6,62,99400,0,0,308,0,0,0,0,0,0,0,180,1.5,5,4,11.3,77777,9,999999999,139,0.0900,0,88,0.180,999.0,99.0 +2001,12,3,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,3.0,62,99300,0,0,334,0,0,0,0,0,0,0,180,2.6,10,10,11.3,2400,9,999999999,150,0.0900,0,88,0.180,999.0,99.0 +2001,12,3,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,4.0,76,99300,0,0,326,0,0,0,0,0,0,0,150,1.0,10,10,11.3,1500,9,999999999,150,0.0900,0,88,0.180,999.0,99.0 +2001,12,3,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,3.0,71,99300,0,0,296,0,0,0,0,0,0,0,110,1.5,5,4,11.3,77777,9,999999999,150,0.0900,0,88,0.180,999.0,99.0 +2001,12,3,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,3.0,62,99300,0,0,305,0,0,0,0,0,0,0,150,2.1,5,4,11.3,77777,9,999999999,160,0.0900,0,88,0.180,999.0,99.0 +2001,12,4,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,3.0,66,99300,0,0,309,0,0,0,0,0,0,0,140,1.0,9,7,11.3,2100,9,999999999,160,0.0900,0,88,0.180,999.0,99.0 +2001,12,4,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,5.0,71,99400,0,0,321,0,0,0,0,0,0,0,130,1.5,9,8,11.3,2100,9,999999999,170,0.0900,0,88,0.180,999.0,99.0 +2001,12,4,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,4.0,66,99400,0,0,315,0,0,0,0,0,0,0,120,2.1,9,7,11.3,2400,9,999999999,179,0.0900,0,88,0.180,999.0,99.0 +2001,12,4,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,4.0,62,99400,0,0,324,0,0,0,0,0,0,0,150,1.5,9,8,11.3,3000,9,999999999,179,0.0900,0,88,0.180,999.0,99.0 +2001,12,4,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,4.0,66,99300,0,0,315,0,0,0,0,0,0,0,140,2.1,9,7,11.3,3000,9,999999999,189,0.0900,0,88,0.180,999.0,99.0 +2001,12,4,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,4.0,62,99400,0,0,324,0,0,0,0,0,0,0,160,3.1,9,8,11.3,3000,9,999999999,200,0.0900,0,88,0.180,999.0,99.0 +2001,12,4,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,5.0,62,99400,0,0,325,0,0,0,0,0,0,0,120,4.6,9,7,11.3,3000,9,999999999,209,0.0900,0,88,0.180,999.0,99.0 +2001,12,4,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,5.0,66,99400,9,387,325,0,0,0,0,0,0,0,190,3.6,9,8,11.3,2700,9,999999999,209,0.0900,0,88,0.180,999.0,99.0 +2001,12,4,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,6.0,67,99500,173,1408,326,69,93,57,7300,5700,6600,1200,170,4.1,9,7,11.3,2700,9,999999999,220,0.0900,0,88,0.180,999.0,99.0 +2001,12,4,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.0,6.0,62,99500,375,1408,353,51,0,51,6000,0,6000,2100,210,6.2,10,10,11.3,77777,9,999999999,229,0.0900,0,88,0.180,0.0,3.0 +2001,12,4,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,6.0,59,99600,530,1408,335,85,0,85,10000,0,10000,3630,230,5.1,9,7,11.3,1350,9,999999999,240,0.0900,0,88,0.180,999.0,99.0 +2001,12,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,9.0,77,99500,626,1408,339,106,0,106,12500,0,12500,4650,180,4.6,9,8,11.3,1350,9,999999999,240,0.0900,0,88,0.180,999.0,99.0 +2001,12,4,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.0,8.0,67,99400,656,1408,337,114,0,114,13400,0,13400,5030,180,5.7,9,7,11.3,1350,9,999999999,250,0.0900,0,88,0.180,0.0,6.0 +2001,12,4,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,8.0,63,99400,618,1408,347,104,0,104,12300,0,12300,4550,190,5.1,9,8,11.3,1350,9,999999999,250,0.0900,0,88,0.180,999.0,99.0 +2001,12,4,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,8.0,63,99300,515,1408,342,83,0,83,9700,0,9700,3520,180,5.7,9,7,11.3,2700,9,999999999,250,0.0900,0,88,0.180,999.0,99.0 +2001,12,4,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,9.0,67,99400,354,1408,349,181,267,114,18900,22400,13300,2320,210,5.1,9,8,11.3,1350,9,999999999,250,0.0900,0,88,0.180,999.0,99.0 +2001,12,4,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,9.0,67,99400,147,1408,343,43,83,34,4500,4100,4100,610,180,2.6,9,7,11.3,1440,9,999999999,250,0.0900,0,88,0.180,999.0,99.0 +2001,12,4,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,9.0,67,99400,3,223,349,0,0,0,0,0,0,0,170,2.6,9,8,11.3,1350,9,999999999,250,0.0900,0,88,0.180,999.0,99.0 +2001,12,4,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,9.0,72,99400,0,0,361,0,0,0,0,0,0,0,150,2.1,10,10,11.3,1350,9,999999999,250,0.0900,0,88,0.180,999.0,99.0 +2001,12,4,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.5,9.1,70,99400,0,0,346,0,0,0,0,0,0,0,180,2.6,9,8,11.3,1350,9,999999999,250,0.0900,0,88,0.180,999.0,99.0 +2001,12,4,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,9.0,67,99400,0,0,366,0,0,0,0,0,0,0,190,3.1,10,10,11.3,1500,9,999999999,250,0.0900,0,88,0.180,999.0,99.0 +2001,12,4,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,9.0,67,99500,0,0,366,0,0,0,0,0,0,0,190,2.6,10,10,11.3,1500,9,999999999,250,0.0900,0,88,0.180,999.0,99.0 +2001,12,4,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,8.0,63,99500,0,0,342,0,0,0,0,0,0,0,200,3.6,9,7,11.3,2100,9,999999999,250,0.0900,0,88,0.180,999.0,99.0 +2001,12,4,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,8.0,59,99500,0,0,370,0,0,0,0,0,0,0,210,4.1,10,10,11.3,2100,9,999999999,240,0.0900,0,88,0.180,999.0,99.0 +2001,12,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,8.0,63,99500,0,0,355,0,0,0,0,0,0,0,210,2.6,9,9,11.3,2100,9,999999999,240,0.0900,0,88,0.180,999.0,99.0 +2001,12,5,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,8.0,63,99500,0,0,355,0,0,0,0,0,0,0,210,3.1,9,9,11.3,2400,9,999999999,240,0.0900,0,88,0.180,999.0,99.0 +2001,12,5,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,8.0,63,99500,0,0,355,0,0,0,0,0,0,0,210,3.6,9,9,11.3,2400,9,999999999,229,0.0900,0,88,0.180,999.0,99.0 +2001,12,5,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,7.0,63,99600,0,0,349,0,0,0,0,0,0,0,220,2.6,9,9,11.3,2400,9,999999999,229,0.0900,0,88,0.180,999.0,99.0 +2001,12,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,6.0,59,99500,0,0,348,0,0,0,0,0,0,0,180,1.0,9,9,11.3,7500,9,999999999,220,0.0900,0,88,0.180,999.0,99.0 +2001,12,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,6.0,71,99500,0,0,307,0,0,0,0,0,0,0,130,1.0,2,2,11.3,77777,9,999999999,209,0.0900,0,88,0.180,999.0,99.0 +2001,12,5,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,6.0,71,99600,0,0,310,0,0,0,0,0,0,0,180,3.1,3,3,11.3,77777,9,999999999,209,0.0900,0,88,0.180,999.0,99.0 +2001,12,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,6.0,67,99600,8,364,319,0,0,0,0,0,0,0,180,3.4,5,5,11.3,77777,9,999999999,200,0.0900,0,88,0.180,999.0,99.0 +2001,12,5,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,5.0,55,99600,169,1409,327,23,0,23,2700,0,2700,870,170,3.6,5,5,11.3,77777,9,999999999,200,0.0900,0,88,0.180,999.0,99.0 +2001,12,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,5.0,48,99600,372,1409,328,183,262,113,19100,22400,13200,2280,190,5.7,2,2,11.3,77777,9,999999999,189,0.0900,0,88,0.180,999.0,99.0 +2001,12,5,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,6.0,45,99600,527,1409,347,328,437,164,33500,41100,18000,3280,200,7.2,5,5,11.3,77777,9,999999999,179,0.0900,0,88,0.180,999.0,99.0 +2001,12,5,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,6.0,45,99500,623,1409,347,256,115,205,27700,11500,22600,4920,200,5.7,5,5,11.3,77777,9,999999999,179,0.0900,0,88,0.180,999.0,99.0 +2001,12,5,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,4.0,37,99400,653,1409,344,445,576,177,46300,56900,19900,3680,200,6.2,3,3,11.3,77777,9,999999999,170,0.0900,0,88,0.180,999.0,99.0 +2001,12,5,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,4.0,35,99300,616,1409,345,406,690,103,42400,66600,13200,2080,170,5.7,2,2,11.3,77777,9,999999999,170,0.0900,0,88,0.180,999.0,99.0 +2001,12,5,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,3.0,32,99300,513,1409,347,332,687,81,34700,64100,11300,1580,180,6.7,3,3,11.3,77777,9,999999999,179,0.0900,0,88,0.180,999.0,99.0 +2001,12,5,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,3.0,32,99200,353,1409,344,196,494,72,20000,40800,9700,1280,180,4.6,2,2,11.3,77777,9,999999999,179,0.0900,0,88,0.180,999.0,99.0 +2001,12,5,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,3.0,37,99200,146,1409,338,53,216,31,5600,11400,4400,550,170,3.6,3,3,11.3,77777,9,999999999,179,0.0900,0,88,0.180,999.0,99.0 +2001,12,5,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,3.0,39,99200,3,223,330,0,0,0,0,0,0,0,200,1.0,2,2,11.3,77777,9,999999999,179,0.0900,0,88,0.180,999.0,99.0 +2001,12,5,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,2.0,36,99100,0,0,337,0,0,0,0,0,0,0,170,3.1,5,5,11.3,77777,9,999999999,179,0.0900,0,88,0.180,999.0,99.0 +2001,12,5,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,2.0,36,99100,0,0,337,0,0,0,0,0,0,0,200,3.1,5,5,11.3,77777,9,999999999,189,0.0900,0,88,0.180,999.0,99.0 +2001,12,5,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,2.0,39,99100,0,0,333,0,0,0,0,0,0,0,210,5.1,5,5,11.3,77777,9,999999999,189,0.0900,0,88,0.180,999.0,99.0 +2001,12,5,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,2.0,39,99100,0,0,324,0,0,0,0,0,0,0,200,5.7,2,2,11.3,77777,9,999999999,189,0.0900,0,88,0.180,999.0,99.0 +2001,12,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,2.0,41,99000,0,0,323,0,0,0,0,0,0,0,200,4.1,3,3,11.3,77777,9,999999999,189,0.0900,0,88,0.180,999.0,99.0 +2001,12,5,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,2.0,41,99000,0,0,328,0,0,0,0,0,0,0,210,5.7,5,5,11.3,77777,9,999999999,189,0.0900,0,88,0.180,999.0,99.0 +2001,12,6,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,3.0,44,99000,0,0,327,0,0,0,0,0,0,0,210,5.7,9,4,11.3,7500,9,999999999,200,0.0890,0,88,0.180,999.0,99.0 +2001,12,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,4.0,51,98900,0,0,323,0,0,0,0,0,0,0,210,5.7,9,4,11.3,3900,9,999999999,200,0.0890,0,88,0.180,999.0,99.0 +2001,12,6,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,7.0,67,99100,0,0,354,0,0,0,0,0,0,0,240,3.6,10,10,11.3,1050,9,999999999,200,0.0890,0,88,0.180,999.0,99.0 +2001,12,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.0,8.0,72,99200,0,0,355,0,0,0,0,0,0,0,280,6.7,10,10,11.3,990,9,999999999,200,0.0890,0,88,0.180,0.0,3.0 +2001,12,6,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,8.0,82,99200,0,0,345,0,0,0,0,0,0,0,220,3.1,10,10,11.3,1500,9,999999999,200,0.0890,0,88,0.180,999.0,99.0 +2001,12,6,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,9.0,87,99200,0,0,346,0,0,0,0,0,0,0,250,2.1,10,10,11.3,1500,9,999999999,200,0.0890,0,88,0.180,999.0,99.0 +2001,12,6,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,8.0,87,99200,0,0,340,0,0,0,0,0,0,0,220,1.5,10,10,11.3,1500,9,999999999,200,0.0890,0,88,0.180,0.0,6.0 +2001,12,6,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,8.0,87,99200,7,364,340,0,0,0,0,0,0,0,200,2.6,10,10,8.0,1500,9,999999999,200,0.0890,0,88,0.180,999.0,99.0 +2001,12,6,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,8.0,87,99300,166,1409,340,12,0,12,1500,0,1500,490,180,1.5,10,10,9.7,1500,9,999999999,200,0.0890,0,88,0.180,999.0,99.0 +2001,12,6,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.0,7.0,87,99300,368,1409,334,37,0,37,4500,0,4500,1580,170,1.0,10,10,9.7,1500,9,999999999,200,0.0890,0,88,0.180,2.0,3.0 +2001,12,6,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,7.0,93,99100,523,1409,330,59,0,59,7100,0,7100,2640,150,6.7,10,10,6.4,960,9,999999999,200,0.0890,0,88,0.180,999.0,99.0 +2001,12,6,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,8.0,100,98900,620,1409,331,69,0,69,8400,0,8400,3200,150,5.1,10,10,11.3,1050,9,999999999,200,0.0890,0,88,0.180,999.0,99.0 +2001,12,6,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.0,8.0,100,99000,651,1409,331,78,0,78,9500,0,9500,3630,260,0.5,10,10,11.3,360,9,999999999,200,0.0890,0,88,0.180,5.0,6.0 +2001,12,6,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,8.0,93,98900,614,1409,335,70,0,70,8500,0,8500,3240,220,0.5,10,10,11.3,420,9,999999999,200,0.0890,0,88,0.180,999.0,99.0 +2001,12,6,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,8.0,93,98800,512,1409,335,89,0,89,10400,0,10400,3710,190,1.0,10,10,11.3,420,9,999999999,189,0.0890,0,88,0.180,999.0,99.0 +2001,12,6,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,8.0,93,98800,352,1409,335,55,0,55,6400,0,6400,2190,150,1.0,10,10,11.3,360,9,999999999,189,0.0890,0,88,0.180,999.0,99.0 +2001,12,6,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,9.0,93,98800,146,1409,341,18,0,18,2100,0,2100,680,40,0.5,10,10,11.3,360,9,999999999,179,0.0890,0,88,0.180,999.0,99.0 +2001,12,6,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,8.0,93,98700,3,223,335,0,0,0,0,0,0,0,140,1.0,10,10,11.3,360,9,999999999,170,0.0890,0,88,0.180,999.0,99.0 +2001,12,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,8.0,93,98700,0,0,335,0,0,0,0,0,0,0,140,2.1,10,10,11.3,330,9,999999999,170,0.0890,0,88,0.180,999.0,99.0 +2001,12,6,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,9.0,100,98600,0,0,337,0,0,0,0,0,0,0,140,2.1,10,10,11.3,270,9,999999999,160,0.0890,0,88,0.180,999.0,99.0 +2001,12,6,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,9.0,100,98600,0,0,337,0,0,0,0,0,0,0,160,1.5,10,10,11.3,150,9,999999999,150,0.0890,0,88,0.180,999.0,99.0 +2001,12,6,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,9.0,93,98600,0,0,341,0,0,0,0,0,0,0,250,2.1,10,10,4.8,120,9,999999999,150,0.0890,0,88,0.180,999.0,99.0 +2001,12,6,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,10.0,100,98600,0,0,343,0,0,0,0,0,0,0,250,2.6,10,10,4.0,150,9,999999999,139,0.0890,0,88,0.180,999.0,99.0 +2001,12,6,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,10.0,100,98600,0,0,343,0,0,0,0,0,0,0,250,3.1,10,10,9.7,150,9,999999999,129,0.0890,0,88,0.180,999.0,99.0 +2001,12,7,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,10.0,100,98600,0,0,343,0,0,0,0,0,0,0,240,3.1,10,10,11.3,720,9,999999999,129,0.0890,0,88,0.180,0.0,6.0 +2001,12,7,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,9.0,100,98700,0,0,327,0,0,0,0,0,0,0,250,2.1,9,9,11.3,870,9,999999999,129,0.0890,0,88,0.180,999.0,99.0 +2001,12,7,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,7.0,93,98700,0,0,303,0,0,0,0,0,0,0,270,2.1,5,5,11.3,77777,9,999999999,129,0.0890,0,88,0.180,999.0,99.0 +2001,12,7,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.0,8.0,100,98700,0,0,322,0,0,0,0,0,0,0,260,1.5,9,9,11.3,840,9,999999999,129,0.0890,0,88,0.180,0.0,3.0 +2001,12,7,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,7.0,93,98800,0,0,330,0,0,0,0,0,0,0,250,2.6,10,10,11.3,810,9,999999999,139,0.0890,0,88,0.180,999.0,99.0 +2001,12,7,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,6.0,93,98800,0,0,315,0,0,0,0,0,0,0,270,1.5,9,9,11.3,750,9,999999999,139,0.0890,0,88,0.180,999.0,99.0 +2001,12,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.0,6.0,93,98900,0,0,315,0,0,0,0,0,0,0,190,1.5,9,9,11.3,750,9,999999999,139,0.0890,0,88,0.180,6.0,24.0 +2001,12,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,5.0,93,98900,6,341,318,0,0,0,0,0,0,0,300,1.0,10,10,6.4,630,9,999999999,139,0.0890,0,88,0.180,999.0,99.0 +2001,12,7,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,6.0,93,98900,162,1409,315,85,222,59,8700,11800,7300,1190,300,1.0,9,9,8.0,630,9,999999999,139,0.0890,0,88,0.180,999.0,99.0 +2001,12,7,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,7.0,93,99000,365,1409,330,213,468,91,22100,39200,11900,1690,290,1.0,10,10,9.7,630,9,999999999,150,0.0890,0,88,0.180,999.0,99.0 +2001,12,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,5.0,76,99000,520,1409,332,296,394,150,30400,36900,16700,2960,300,1.0,10,10,9.7,540,9,999999999,150,0.0890,0,88,0.180,999.0,99.0 +2001,12,7,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,5.0,71,99000,617,1409,337,287,194,202,31100,19400,22600,4840,300,0.5,10,10,9.7,600,9,999999999,150,0.0890,0,88,0.180,999.0,99.0 +2001,12,7,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,5.0,76,98900,649,1409,323,120,0,120,14100,0,14100,5220,310,3.1,9,9,9.7,660,9,999999999,150,0.0890,0,88,0.180,999.0,99.0 +2001,12,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,5.0,71,98900,612,1409,328,308,238,204,33300,23800,22900,4880,310,2.6,9,9,9.7,660,9,999999999,150,0.0890,0,88,0.180,999.0,99.0 +2001,12,7,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,5.0,71,98900,511,1409,328,326,563,121,34200,52700,15000,2330,270,1.0,9,9,9.7,7500,9,999999999,150,0.0890,0,88,0.180,999.0,99.0 +2001,12,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,5.0,71,98900,351,1409,328,186,420,81,19400,34700,10800,1490,270,1.0,9,9,11.3,7500,9,999999999,150,0.0890,0,88,0.180,999.0,99.0 +2001,12,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,4.0,71,98900,146,1409,322,39,59,33,4300,3300,4000,690,70,1.0,9,9,11.3,7500,9,999999999,160,0.0890,0,88,0.180,999.0,99.0 +2001,12,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,3.0,76,98900,3,223,321,0,0,0,0,0,0,0,10,1.5,10,10,11.3,7500,9,999999999,160,0.0890,0,88,0.180,999.0,99.0 +2001,12,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,2.0,81,99000,0,0,310,0,0,0,0,0,0,0,340,1.5,10,10,11.3,7500,9,999999999,160,0.0890,0,88,0.180,999.0,99.0 +2001,12,7,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,3.0,87,99000,0,0,311,0,0,0,0,0,0,0,20,1.5,10,10,11.3,4500,9,999999999,160,0.0890,0,88,0.180,999.0,99.0 +2001,12,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,4.0,93,98900,0,0,313,0,0,0,0,0,0,0,310,1.0,10,10,11.3,4500,9,999999999,160,0.0890,0,88,0.180,999.0,99.0 +2001,12,7,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,4.0,93,98900,0,0,313,0,0,0,0,0,0,0,30,0.5,10,10,11.3,4500,9,999999999,160,0.0890,0,88,0.180,999.0,99.0 +2001,12,7,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,3.0,93,98900,0,0,307,0,0,0,0,0,0,0,330,1.5,10,10,11.3,4500,9,999999999,160,0.0890,0,88,0.180,999.0,99.0 +2001,12,7,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,2.0,93,98900,0,0,302,0,0,0,0,0,0,0,20,1.0,10,10,11.3,4500,9,999999999,160,0.0890,0,88,0.180,999.0,99.0 +2001,12,8,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,1.0,93,98800,0,0,296,0,0,0,0,0,0,0,20,2.6,10,10,11.3,7500,9,999999999,170,0.0890,0,88,0.180,999.0,99.0 +2001,12,8,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,2.0,93,98700,0,0,302,0,0,0,0,0,0,0,20,1.5,10,10,11.3,7500,9,999999999,160,0.0890,0,88,0.180,999.0,99.0 +2001,12,8,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,4.0,93,98800,0,0,313,0,0,0,0,0,0,0,40,0.5,10,10,11.3,3600,9,999999999,160,0.0890,0,88,0.180,999.0,99.0 +2001,12,8,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,4.0,87,98700,0,0,317,0,0,0,0,0,0,0,60,3.1,10,10,11.3,3600,9,999999999,150,0.0890,0,88,0.180,999.0,99.0 +2001,12,8,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,3.0,87,98600,0,0,311,0,0,0,0,0,0,0,80,3.6,10,10,11.3,3600,9,999999999,150,0.0890,0,88,0.180,999.0,99.0 +2001,12,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,4.0,87,98500,0,0,317,0,0,0,0,0,0,0,50,3.1,10,10,11.3,3600,9,999999999,150,0.0890,0,88,0.180,999.0,99.0 +2001,12,8,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,3.0,87,98500,0,0,311,0,0,0,0,0,0,0,40,3.6,10,10,11.3,3600,9,999999999,139,0.0890,0,88,0.180,999.0,99.0 +2001,12,8,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,3.0,87,98400,5,317,311,0,0,0,0,0,0,0,70,3.6,10,10,9.7,2400,9,999999999,139,0.0890,0,88,0.180,999.0,99.0 +2001,12,8,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,4.0,87,98400,159,1410,317,37,0,37,4100,0,4100,1230,60,3.1,10,10,9.7,2400,9,999999999,139,0.0890,0,88,0.180,999.0,99.0 +2001,12,8,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.0,4.0,87,98400,361,1410,317,66,0,66,7600,0,7600,2560,40,1.5,10,10,9.7,2400,9,999999999,129,0.0890,0,88,0.180,0.0,3.0 +2001,12,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,4.0,81,98400,517,1410,322,99,0,99,11500,0,11500,4060,60,2.1,10,10,9.7,2400,9,999999999,129,0.0890,0,88,0.180,999.0,99.0 +2001,12,8,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,4.0,81,98400,615,1410,322,119,0,119,13900,0,13900,5060,360,2.1,10,10,9.7,2400,9,999999999,129,0.0890,0,88,0.180,999.0,99.0 +2001,12,8,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.0,4.0,81,98400,646,1410,322,102,0,102,12100,0,12100,4560,340,3.1,10,10,9.7,2400,9,999999999,120,0.0890,0,88,0.180,0.0,6.0 +2001,12,8,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,4.0,81,98300,611,1410,322,93,0,93,11000,0,11000,4130,330,3.6,10,10,9.7,1200,9,999999999,120,0.0890,0,88,0.180,999.0,99.0 +2001,12,8,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,4.0,81,98300,509,1410,322,94,0,94,10900,0,10900,3870,320,2.6,10,10,9.7,1200,9,999999999,120,0.0890,0,88,0.180,999.0,99.0 +2001,12,8,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,4.0,87,98400,350,1410,317,71,0,71,8100,0,8100,2670,320,2.6,10,10,8.0,510,9,999999999,120,0.0890,0,88,0.180,999.0,99.0 +2001,12,8,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,4.0,87,98400,146,1410,317,25,0,25,2900,0,2900,900,320,2.6,10,10,8.0,510,9,999999999,120,0.0890,0,88,0.180,999.0,99.0 +2001,12,8,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,4.0,87,98500,3,223,317,0,0,0,0,0,0,0,310,4.6,10,10,8.0,420,9,999999999,120,0.0890,0,88,0.180,999.0,99.0 +2001,12,8,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,4.0,87,98600,0,0,317,0,0,0,0,0,0,0,310,3.1,10,10,8.0,420,9,999999999,120,0.0890,0,88,0.180,999.0,99.0 +2001,12,8,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,4.0,87,98700,0,0,317,0,0,0,0,0,0,0,320,6.7,10,10,8.0,420,9,999999999,120,0.0890,0,88,0.180,999.0,99.0 +2001,12,8,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,3.0,87,98700,0,0,311,0,0,0,0,0,0,0,290,4.6,10,10,8.0,450,9,999999999,120,0.0890,0,88,0.180,999.0,99.0 +2001,12,8,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,3.0,87,98800,0,0,311,0,0,0,0,0,0,0,280,4.6,10,10,8.0,480,9,999999999,120,0.0890,0,88,0.180,999.0,99.0 +2001,12,8,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,2.0,87,98800,0,0,281,0,0,0,0,0,0,0,270,2.6,5,5,8.0,77777,9,999999999,120,0.0890,0,88,0.180,999.0,99.0 +2001,12,8,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,2.0,93,98900,0,0,261,0,0,0,0,0,0,0,260,3.1,0,0,8.0,77777,9,999999999,120,0.0890,0,88,0.180,999.0,99.0 +2001,12,9,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,1.0,93,98900,0,0,257,0,0,0,0,0,0,0,260,3.1,0,0,8.0,77777,9,999999999,120,0.0880,0,88,0.180,999.0,99.0 +2001,12,9,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,2.0,93,98900,0,0,275,0,0,0,0,0,0,0,260,3.6,9,4,8.0,150,9,999999999,120,0.0880,0,88,0.180,999.0,99.0 +2001,12,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,2.0,93,99000,0,0,275,0,0,0,0,0,0,0,270,2.1,9,4,8.0,150,9,999999999,110,0.0880,0,88,0.180,999.0,99.0 +2001,12,9,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,3.0,100,99000,0,0,276,0,0,0,0,0,0,0,300,4.1,9,4,9.7,150,9,999999999,110,0.0880,0,88,0.180,999.0,99.0 +2001,12,9,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,2.0,93,99100,0,0,275,0,0,0,0,0,0,0,310,3.6,9,4,8.0,360,9,999999999,110,0.0880,0,88,0.180,999.0,99.0 +2001,12,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,0.0,87,99200,0,0,269,0,0,0,0,0,0,0,320,3.6,9,4,8.0,360,9,999999999,100,0.0880,0,88,0.180,999.0,99.0 +2001,12,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,0.0,93,99200,0,0,263,0,0,0,0,0,0,0,330,4.1,5,3,9.7,77777,9,999999999,100,0.0880,0,88,0.180,999.0,99.0 +2001,12,9,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-1.0,92,99300,5,294,256,0,0,0,0,0,0,0,290,1.0,5,2,9.7,77777,9,999999999,100,0.0880,0,88,0.180,999.0,99.0 +2001,12,9,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-1.0,86,99400,156,1410,256,75,169,57,7800,8700,6800,1150,300,3.6,3,1,9.7,77777,9,999999999,89,0.0880,0,88,0.180,999.0,99.0 +2001,12,9,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-1.0,80,99500,358,1410,255,214,514,83,21600,42300,10800,1440,10,4.1,0,0,11.3,77777,9,999999999,89,0.0880,0,88,0.180,999.0,99.0 +2001,12,9,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,-1.0,74,99500,515,1410,264,330,634,97,34000,58600,12500,1840,20,2.6,3,1,11.3,77777,9,999999999,89,0.0880,0,88,0.180,999.0,99.0 +2001,12,9,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-2.0,64,99500,612,1410,270,413,715,101,43100,69000,13100,2040,30,2.1,5,2,11.3,77777,9,999999999,80,0.0880,0,88,0.180,999.0,99.0 +2001,12,9,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-2.0,64,99400,645,1410,273,409,522,170,42700,51400,19100,3500,30,0.5,5,3,11.3,77777,9,999999999,80,0.0880,0,88,0.180,999.0,99.0 +2001,12,9,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-2.0,59,99400,609,1410,274,256,131,199,27700,13100,22000,4750,40,1.5,5,2,11.3,77777,9,999999999,80,0.0880,0,88,0.180,999.0,99.0 +2001,12,9,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,-2.0,55,99400,509,1410,281,299,464,131,31100,43300,15400,2540,50,2.1,5,3,11.3,77777,9,999999999,80,0.0880,0,88,0.180,999.0,99.0 +2001,12,9,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-2.0,59,99400,350,1410,274,201,539,67,20600,44500,9500,1210,90,3.1,5,2,11.3,77777,9,999999999,89,0.0880,0,88,0.180,999.0,99.0 +2001,12,9,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,-1.0,74,99400,145,1410,270,64,299,33,6400,16800,4700,570,110,3.6,5,3,11.3,77777,9,999999999,89,0.0880,0,88,0.180,999.0,99.0 +2001,12,9,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,-2.0,68,99500,3,223,263,0,0,0,0,0,0,0,80,2.6,2,1,11.3,77777,9,999999999,89,0.0880,0,88,0.180,999.0,99.0 +2001,12,9,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-2.0,79,99500,0,0,255,0,0,0,0,0,0,0,90,2.1,3,1,11.3,77777,9,999999999,89,0.0880,0,88,0.180,999.0,99.0 +2001,12,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-2.0,79,99500,0,0,250,0,0,0,0,0,0,0,100,2.1,0,0,11.3,77777,9,999999999,89,0.0880,0,88,0.180,999.0,99.0 +2001,12,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-2.0,85,99500,0,0,247,0,0,0,0,0,0,0,70,1.5,0,0,11.3,77777,9,999999999,89,0.0880,0,88,0.180,999.0,99.0 +2001,12,9,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-2.0,92,99400,0,0,243,0,0,0,0,0,0,0,90,1.5,0,0,11.3,77777,9,999999999,89,0.0880,0,88,0.180,999.0,99.0 +2001,12,9,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-3.0,92,99400,0,0,239,0,0,0,0,0,0,0,100,1.5,0,0,11.3,77777,9,999999999,100,0.0880,0,88,0.180,999.0,99.0 +2001,12,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-3.0,92,99400,0,0,239,0,0,0,0,0,0,0,80,1.0,0,0,11.3,77777,9,999999999,100,0.0880,0,88,0.180,999.0,99.0 +2001,12,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-4.0,92,99300,0,0,234,0,0,0,0,0,0,0,60,1.0,0,0,11.3,77777,9,999999999,100,0.0880,0,88,0.180,999.0,99.0 +2001,12,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-3.0,92,99300,0,0,239,0,0,0,0,0,0,0,50,0.5,0,0,11.3,77777,9,999999999,100,0.0880,0,88,0.180,999.0,99.0 +2001,12,10,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-3.0,100,99200,0,0,235,0,0,0,0,0,0,0,30,1.0,0,0,11.3,77777,9,999999999,100,0.0880,0,88,0.180,999.0,99.0 +2001,12,10,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.0,-4.0,100,99200,0,0,231,0,0,0,0,0,0,0,10,2.1,0,0,9.7,77777,9,999999999,100,0.0880,0,88,0.180,999.0,99.0 +2001,12,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-4.0,92,99200,0,0,234,0,0,0,0,0,0,0,350,1.5,0,0,6.4,77777,9,999999999,100,0.0880,0,88,0.180,999.0,99.0 +2001,12,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.0,-4.0,100,99100,0,0,231,0,0,0,0,0,0,0,350,1.5,0,0,4.8,77777,9,999999999,110,0.0880,0,88,0.180,999.0,99.0 +2001,12,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.0,-5.0,100,99100,0,0,231,0,0,0,0,0,0,0,10,1.0,2,1,4.8,77777,9,999999999,110,0.0880,0,88,0.180,999.0,99.0 +2001,12,10,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.0,-4.0,100,99100,4,270,235,0,0,0,0,0,0,0,20,1.5,3,1,4.8,77777,9,999999999,110,0.0880,0,88,0.180,999.0,99.0 +2001,12,10,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-3.0,100,99100,152,1411,240,64,65,57,6800,3700,6400,1190,30,1.5,2,1,4.8,77777,9,999999999,110,0.0880,0,88,0.180,999.0,99.0 +2001,12,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-1.0,92,99200,355,1411,252,215,534,80,21800,43900,10700,1390,30,1.0,3,1,6.4,77777,9,999999999,110,0.0880,0,88,0.180,999.0,99.0 +2001,12,10,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,1.0,81,99200,512,1411,269,323,610,101,33200,56200,12700,1890,180,2.1,2,1,11.3,77777,9,999999999,110,0.0880,0,88,0.180,999.0,99.0 +2001,12,10,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,0.0,70,99200,610,1411,272,400,673,108,41600,64700,13500,2150,170,1.5,3,1,11.3,77777,9,999999999,110,0.0880,0,88,0.180,999.0,99.0 +2001,12,10,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,0.0,65,99100,643,1411,276,428,703,106,44800,68400,13500,2180,260,1.5,2,1,11.3,77777,9,999999999,110,0.0880,0,88,0.180,999.0,99.0 +2001,12,10,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,0.0,61,99000,608,1411,280,395,667,106,41100,64100,13300,2120,340,4.1,3,1,11.3,77777,9,999999999,120,0.0880,0,88,0.180,999.0,99.0 +2001,12,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,0.0,61,99000,508,1411,289,332,663,92,34300,61300,12100,1750,310,2.6,5,4,11.3,77777,9,999999999,120,0.0880,0,88,0.180,999.0,99.0 +2001,12,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,0.0,61,99100,350,1411,291,186,369,94,19100,30300,11500,1760,270,1.5,9,5,11.3,7500,9,999999999,120,0.0880,0,88,0.180,999.0,99.0 +2001,12,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,0.0,65,99100,146,1411,287,32,15,31,3600,1000,3500,760,350,2.6,9,5,11.3,5400,9,999999999,120,0.0880,0,88,0.180,999.0,99.0 +2001,12,10,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,0.0,70,99200,3,223,283,0,0,0,0,0,0,0,350,1.0,9,5,11.3,5400,9,999999999,120,0.0880,0,88,0.180,999.0,99.0 +2001,12,10,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,-1.0,74,99100,0,0,298,0,0,0,0,0,0,0,350,2.1,10,10,11.3,4500,9,999999999,120,0.0880,0,88,0.180,999.0,99.0 +2001,12,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-2.0,73,99200,0,0,267,0,0,0,0,0,0,0,350,0.5,5,4,11.3,77777,9,999999999,120,0.0880,0,88,0.180,999.0,99.0 +2001,12,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-1.0,86,99200,0,0,266,0,0,0,0,0,0,0,350,0.5,9,5,11.3,5400,9,999999999,120,0.0880,0,88,0.180,999.0,99.0 +2001,12,10,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-2.0,85,99200,0,0,285,0,0,0,0,0,0,0,350,1.5,10,10,11.3,3600,9,999999999,120,0.0880,0,88,0.180,999.0,99.0 +2001,12,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,0.0,93,99200,0,0,267,0,0,0,0,0,0,0,360,1.0,9,5,11.3,3600,9,999999999,120,0.0880,0,88,0.180,999.0,99.0 +2001,12,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-1.0,86,99200,0,0,266,0,0,0,0,0,0,0,360,1.0,9,5,11.3,3600,9,999999999,120,0.0880,0,88,0.180,999.0,99.0 +2001,12,11,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-2.0,92,99200,0,0,257,0,0,0,0,0,0,0,10,2.1,5,5,11.3,77777,9,999999999,120,0.0880,0,88,0.180,999.0,99.0 +2001,12,11,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-2.0,100,99200,0,0,247,0,0,0,0,0,0,0,10,1.0,2,2,11.3,77777,9,999999999,120,0.0880,0,88,0.180,999.0,99.0 +2001,12,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-3.0,92,99300,0,0,239,0,0,0,0,0,0,0,20,1.0,0,0,11.3,77777,9,999999999,120,0.0880,0,88,0.180,999.0,99.0 +2001,12,11,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.0,-4.0,100,99300,0,0,231,0,0,0,0,0,0,0,20,1.5,0,0,8.0,77777,9,999999999,120,0.0880,0,88,0.180,999.0,99.0 +2001,12,11,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-3.0,100,99300,0,0,235,0,0,0,0,0,0,0,30,1.5,0,0,8.0,77777,9,999999999,120,0.0880,0,88,0.180,999.0,99.0 +2001,12,11,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.0,-4.0,100,99300,0,0,231,0,0,0,0,0,0,0,30,1.0,0,0,4.8,77777,9,999999999,120,0.0880,0,88,0.180,999.0,99.0 +2001,12,11,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.0,-4.0,100,99500,0,0,231,0,0,0,0,0,0,0,40,0.5,0,0,3.2,77777,9,999999999,129,0.0880,0,88,0.180,999.0,99.0 +2001,12,11,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.0,-4.0,100,99500,3,247,231,0,0,0,0,0,0,0,50,1.0,0,0,2.4,77777,9,999999999,129,0.0880,0,88,0.180,999.0,99.0 +2001,12,11,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-3.0,100,99600,149,1411,235,65,98,55,7000,5500,6400,1150,60,1.0,0,0,4.8,77777,9,999999999,129,0.0880,0,88,0.180,999.0,99.0 +2001,12,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,2.0,93,99600,352,1411,270,193,367,101,19700,30200,12100,1910,70,1.5,2,2,6.4,77777,9,999999999,129,0.0880,0,88,0.180,999.0,99.0 +2001,12,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,1.0,70,99700,509,1411,284,330,456,165,33500,42400,18100,3300,90,3.6,3,3,11.3,77777,9,999999999,129,0.0880,0,88,0.180,999.0,99.0 +2001,12,11,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,0.0,57,99700,608,1411,288,69,0,69,8400,0,8400,3180,80,3.6,2,2,11.3,77777,9,999999999,129,0.0880,0,88,0.180,999.0,99.0 +2001,12,11,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,-1.0,52,99600,641,1411,290,72,0,72,8800,0,8800,3360,70,3.6,3,3,11.3,77777,9,999999999,129,0.0880,0,88,0.180,999.0,99.0 +2001,12,11,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,-1.0,49,99600,607,1411,291,70,0,70,8500,0,8500,3220,80,3.6,2,2,11.3,77777,9,999999999,129,0.0880,0,88,0.180,999.0,99.0 +2001,12,11,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,0.0,53,99500,507,1411,300,55,0,55,6700,0,6700,2460,50,1.5,5,5,11.3,77777,9,999999999,129,0.0880,0,88,0.180,999.0,99.0 +2001,12,11,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,0.0,50,99600,350,1411,296,35,0,35,4200,0,4200,1480,60,2.6,2,2,11.3,77777,9,999999999,129,0.0880,0,88,0.180,999.0,99.0 +2001,12,11,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,1.0,66,99600,146,1411,288,11,0,11,1300,0,1300,440,100,2.1,3,3,11.3,77777,9,999999999,120,0.0880,0,88,0.180,999.0,99.0 +2001,12,11,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,2.0,75,99600,3,223,282,0,0,0,0,0,0,0,90,2.1,2,2,11.3,77777,9,999999999,120,0.0880,0,88,0.180,999.0,99.0 +2001,12,11,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,1.0,75,99600,0,0,280,0,0,0,0,0,0,0,80,2.6,3,3,11.3,77777,9,999999999,120,0.0880,0,88,0.180,999.0,99.0 +2001,12,11,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,1.0,87,99500,0,0,260,0,0,0,0,0,0,0,80,1.0,0,0,11.3,77777,9,999999999,120,0.0880,0,88,0.180,999.0,99.0 +2001,12,11,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,1.0,87,99600,0,0,260,0,0,0,0,0,0,0,80,1.0,0,0,11.3,77777,9,999999999,120,0.0880,0,88,0.180,999.0,99.0 +2001,12,11,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,0.0,93,99600,0,0,260,0,0,0,0,0,0,0,90,0.5,2,2,11.3,77777,9,999999999,110,0.0880,0,88,0.180,999.0,99.0 +2001,12,11,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,2.0,100,99500,0,0,269,0,0,0,0,0,0,0,90,1.5,3,3,8.0,77777,9,999999999,110,0.0880,0,88,0.180,999.0,99.0 +2001,12,11,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,1.0,93,99400,0,0,272,0,0,0,0,0,0,0,90,2.6,5,5,11.3,77777,9,999999999,110,0.0880,0,88,0.180,999.0,99.0 +2001,12,12,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,2.0,87,99400,0,0,281,0,0,0,0,0,0,0,90,2.1,5,5,11.3,77777,9,999999999,110,0.0870,0,88,0.180,999.0,99.0 +2001,12,12,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-1.0,86,99300,0,0,282,0,0,0,0,0,0,0,110,1.5,9,9,11.3,6600,9,999999999,120,0.0870,0,88,0.180,999.0,99.0 +2001,12,12,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,1.0,93,99300,0,0,296,0,0,0,0,0,0,0,140,1.0,10,10,11.3,3900,9,999999999,129,0.0870,0,88,0.180,999.0,99.0 +2001,12,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,0.0,93,99300,0,0,291,0,0,0,0,0,0,0,160,1.0,10,10,11.3,3900,9,999999999,139,0.0870,0,88,0.180,999.0,99.0 +2001,12,12,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,2.0,100,99200,0,0,289,0,0,0,0,0,0,0,190,1.0,9,9,11.3,3900,9,999999999,150,0.0870,0,88,0.180,999.0,99.0 +2001,12,12,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,2.0,93,99300,0,0,293,0,0,0,0,0,0,0,210,1.5,9,9,11.3,3900,9,999999999,160,0.0870,0,88,0.180,999.0,99.0 +2001,12,12,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,3.0,93,99300,0,0,307,0,0,0,0,0,0,0,200,1.0,10,10,11.3,3900,9,999999999,170,0.0870,0,88,0.180,999.0,99.0 +2001,12,12,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,3.0,93,99300,3,247,307,0,0,0,0,0,0,0,60,1.0,10,10,11.3,750,9,999999999,179,0.0870,0,88,0.180,999.0,99.0 +2001,12,12,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,4.0,87,99400,146,1411,317,13,0,13,1600,0,1600,510,140,2.1,10,10,11.3,750,9,999999999,189,0.0870,0,88,0.180,999.0,99.0 +2001,12,12,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.0,5.0,87,99300,349,1411,323,45,0,45,5300,0,5300,1850,140,2.6,10,10,11.3,600,9,999999999,200,0.0870,0,88,0.180,0.0,3.0 +2001,12,12,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,7.0,93,99300,507,1411,330,53,0,53,6400,0,6400,2380,190,1.5,10,10,11.3,660,9,999999999,220,0.0870,0,88,0.180,999.0,99.0 +2001,12,12,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,8.0,93,99200,606,1411,335,69,0,69,8400,0,8400,3180,180,3.1,10,10,11.3,630,9,999999999,229,0.0870,0,88,0.180,999.0,99.0 +2001,12,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,8.0,87,99000,640,1411,340,108,0,108,12700,0,12700,4760,140,3.1,10,10,11.3,600,9,999999999,240,0.0870,0,88,0.180,0.0,6.0 +2001,12,12,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,8.0,87,98900,606,1411,340,87,0,87,10400,0,10400,3890,150,3.1,10,10,11.3,540,9,999999999,229,0.0870,0,88,0.180,999.0,99.0 +2001,12,12,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,8.0,82,98900,507,1411,345,55,0,55,6700,0,6700,2460,160,3.1,10,10,11.3,600,9,999999999,229,0.0870,0,88,0.180,999.0,99.0 +2001,12,12,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.0,9.0,87,98900,350,1411,346,66,0,66,7600,0,7600,2520,180,1.5,10,10,11.3,600,9,999999999,229,0.0870,0,88,0.180,0.0,3.0 +2001,12,12,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,9.0,87,98800,146,1411,346,29,0,29,3300,0,3300,1010,130,1.0,10,10,11.3,3300,9,999999999,220,0.0870,0,88,0.180,999.0,99.0 +2001,12,12,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,9.0,93,98700,3,247,341,0,0,0,0,0,0,0,120,2.6,10,10,11.3,1440,9,999999999,220,0.0870,0,88,0.180,999.0,99.0 +2001,12,12,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,9.0,93,98700,0,0,341,0,0,0,0,0,0,0,130,2.6,10,10,11.3,1260,9,999999999,209,0.0870,0,88,0.180,0.0,6.0 +2001,12,12,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,9.0,93,98700,0,0,341,0,0,0,0,0,0,0,120,2.1,10,10,11.3,1140,9,999999999,209,0.0870,0,88,0.180,999.0,99.0 +2001,12,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,9.0,100,98600,0,0,337,0,0,0,0,0,0,0,140,2.1,10,10,11.3,900,9,999999999,209,0.0870,0,88,0.180,999.0,99.0 +2001,12,12,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.0,9.0,100,98500,0,0,337,0,0,0,0,0,0,0,140,2.6,10,10,11.3,900,9,999999999,200,0.0870,0,88,0.180,3.0,3.0 +2001,12,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,10.0,100,98500,0,0,343,0,0,0,0,0,0,0,150,1.5,10,10,11.3,1080,9,999999999,200,0.0870,0,88,0.180,999.0,99.0 +2001,12,12,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,10.0,100,98400,0,0,343,0,0,0,0,0,0,0,170,3.1,10,10,3.2,360,9,999999999,200,0.0870,0,88,0.180,999.0,99.0 +2001,12,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,10.0,100,98300,0,0,343,0,0,0,0,0,0,0,170,4.1,10,10,8.0,210,9,999999999,189,0.0870,0,88,0.180,5.0,6.0 +2001,12,13,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,11.0,100,98300,0,0,349,0,0,0,0,0,0,0,190,5.7,10,10,8.0,90,9,999999999,189,0.0870,0,88,0.180,999.0,99.0 +2001,12,13,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,11.0,100,98300,0,0,349,0,0,0,0,0,0,0,200,5.1,10,10,6.4,120,9,999999999,189,0.0870,0,88,0.180,999.0,99.0 +2001,12,13,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.0,12.0,100,98200,0,0,355,0,0,0,0,0,0,0,190,3.6,10,10,4.0,90,9,999999999,189,0.0870,0,88,0.180,0.0,3.0 +2001,12,13,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,12.0,100,98200,0,0,355,0,0,0,0,0,0,0,180,4.1,10,10,4.8,120,9,999999999,189,0.0870,0,88,0.180,999.0,99.0 +2001,12,13,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,12.0,100,98200,0,0,355,0,0,0,0,0,0,0,180,4.1,10,10,4.8,120,9,999999999,189,0.0870,0,88,0.180,999.0,99.0 +2001,12,13,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.0,13.0,100,98200,0,0,361,0,0,0,0,0,0,0,190,3.6,10,10,4.8,120,9,999999999,189,0.0870,0,88,0.180,1.0,6.0 +2001,12,13,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,13.0,100,98200,2,224,361,0,0,0,0,0,0,0,200,4.6,10,10,4.0,120,9,999999999,189,0.0870,0,88,0.180,999.0,99.0 +2001,12,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,14.0,100,98300,143,1412,367,14,0,14,1700,0,1700,550,210,4.1,10,10,2.4,120,9,999999999,189,0.0870,0,88,0.180,999.0,99.0 +2001,12,13,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.0,14.0,100,98300,347,1412,367,37,0,37,4400,0,4400,1550,210,4.6,10,10,11.3,150,9,999999999,189,0.0870,0,88,0.180,0.0,3.0 +2001,12,13,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,14.0,100,98400,504,1412,367,66,0,66,7900,0,7900,2880,240,5.1,10,10,11.3,240,9,999999999,189,0.0870,0,88,0.180,999.0,99.0 +2001,12,13,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,12.0,100,98400,604,1412,355,94,0,94,11100,0,11100,4140,260,5.7,10,10,11.3,390,9,999999999,189,0.0870,0,88,0.180,999.0,99.0 +2001,12,13,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.0,12.0,100,98400,638,1412,355,72,0,72,8800,0,8800,3360,280,4.1,10,10,6.4,240,9,999999999,189,0.0870,0,88,0.180,0.0,6.0 +2001,12,13,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,11.0,94,98400,605,1412,353,87,0,87,10400,0,10400,3890,240,5.7,10,10,6.4,240,9,999999999,189,0.0870,0,88,0.180,999.0,99.0 +2001,12,13,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,9.0,100,98400,507,1412,337,72,0,72,8500,0,8500,3100,250,3.6,10,10,8.0,330,9,999999999,189,0.0870,0,88,0.180,999.0,99.0 +2001,12,13,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,9.0,93,98400,350,1412,341,50,0,50,5900,0,5900,2020,260,4.1,10,10,8.0,420,9,999999999,189,0.0870,0,88,0.180,0.0,3.0 +2001,12,13,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,9.0,93,98500,147,1412,341,18,0,18,2100,0,2100,680,270,4.1,10,10,11.3,600,9,999999999,189,0.0870,0,88,0.180,999.0,99.0 +2001,12,13,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,8.0,87,98500,3,247,340,0,0,0,0,0,0,0,250,1.5,10,10,11.3,810,9,999999999,189,0.0870,0,88,0.180,999.0,99.0 +2001,12,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,8.0,87,98500,0,0,340,0,0,0,0,0,0,0,270,1.0,10,10,11.3,810,9,999999999,189,0.0870,0,88,0.180,0.0,6.0 +2001,12,13,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,8.0,87,98600,0,0,340,0,0,0,0,0,0,0,240,1.5,10,10,11.3,810,9,999999999,189,0.0870,0,88,0.180,999.0,99.0 +2001,12,13,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,7.0,87,98500,0,0,334,0,0,0,0,0,0,0,20,3.6,10,10,11.3,870,9,999999999,200,0.0870,0,88,0.180,999.0,99.0 +2001,12,13,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,8.0,100,98600,0,0,331,0,0,0,0,0,0,0,330,1.5,10,10,11.3,900,9,999999999,200,0.0870,0,88,0.180,999.0,99.0 +2001,12,13,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,8.0,100,98600,0,0,304,0,0,0,0,0,0,0,340,1.0,5,5,11.3,77777,9,999999999,200,0.0870,0,88,0.180,999.0,99.0 +2001,12,13,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,7.0,93,98600,0,0,330,0,0,0,0,0,0,0,360,1.5,10,10,11.3,570,9,999999999,200,0.0870,0,88,0.180,999.0,99.0 +2001,12,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,8.0,100,98500,0,0,331,0,0,0,0,0,0,0,10,1.5,10,10,9.7,390,9,999999999,200,0.0870,0,88,0.180,999.0,99.0 +2001,12,14,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,7.0,93,98400,0,0,330,0,0,0,0,0,0,0,20,2.6,10,10,11.3,360,9,999999999,189,0.0870,0,88,0.180,999.0,99.0 +2001,12,14,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,8.0,100,98300,0,0,331,0,0,0,0,0,0,0,40,2.6,10,10,11.3,390,9,999999999,189,0.0870,0,88,0.180,999.0,99.0 +2001,12,14,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.0,8.0,100,98200,0,0,331,0,0,0,0,0,0,0,50,3.6,10,10,8.0,390,9,999999999,189,0.0870,0,88,0.180,0.0,3.0 +2001,12,14,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,8.0,100,98000,0,0,331,0,0,0,0,0,0,0,60,4.1,10,10,6.4,210,9,999999999,189,0.0870,0,88,0.180,999.0,99.0 +2001,12,14,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,8.0,100,97800,0,0,331,0,0,0,0,0,0,0,70,4.6,10,10,6.4,240,9,999999999,179,0.0870,0,88,0.180,999.0,99.0 +2001,12,14,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.0,8.0,100,97700,0,0,331,0,0,0,0,0,0,0,70,4.6,10,10,4.8,240,9,999999999,179,0.0870,0,88,0.180,1.0,6.0 +2001,12,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,9.0,100,97500,2,200,337,0,0,0,0,0,0,0,60,4.1,10,10,2.4,240,9,999999999,179,0.0870,0,88,0.180,999.0,99.0 +2001,12,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,9.0,100,97400,141,1412,337,42,0,42,4600,0,4600,1270,60,4.1,10,10,4.0,240,9,999999999,170,0.0870,0,88,0.180,999.0,99.0 +2001,12,14,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.0,9.0,100,97300,344,1412,337,37,0,37,4400,0,4400,1550,80,2.1,10,10,6.4,240,9,999999999,170,0.0870,0,88,0.180,0.0,3.0 +2001,12,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,11.0,100,97200,502,1412,349,53,0,53,6400,0,6400,2370,160,3.1,10,10,6.4,240,9,999999999,170,0.0870,0,88,0.180,999.0,99.0 +2001,12,14,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,13.0,100,97100,602,1412,351,69,0,69,8400,0,8400,3170,180,5.7,9,9,11.3,360,9,999999999,170,0.0870,0,88,0.180,999.0,99.0 +2001,12,14,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.0,11.0,88,96900,637,1412,358,133,0,133,15400,0,15400,5600,210,13.9,10,10,1.6,240,9,999999999,160,0.0870,0,88,0.180,5.0,6.0 +2001,12,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,8.0,87,97300,604,1412,331,122,0,122,14200,0,14200,5110,240,10.3,9,9,11.3,600,9,999999999,160,0.0870,0,88,0.180,999.0,99.0 +2001,12,14,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,4.0,87,97800,507,1412,317,66,0,66,7900,0,7900,2880,260,9.8,10,10,11.3,360,9,999999999,160,0.0870,0,88,0.180,999.0,99.0 +2001,12,14,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,3.0,87,98100,350,1412,311,91,11,88,10200,500,10000,3110,260,6.7,10,10,11.3,450,9,999999999,160,0.0870,0,88,0.180,1.0,3.0 +2001,12,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,3.0,87,98300,148,1412,311,29,0,29,3300,0,3300,1010,260,3.6,10,10,11.3,600,9,999999999,150,0.0870,0,88,0.180,999.0,99.0 +2001,12,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,4.0,93,98500,3,247,313,0,0,0,0,0,0,0,260,6.2,10,10,11.3,360,9,999999999,150,0.0870,0,88,0.180,999.0,99.0 +2001,12,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.0,3.0,93,98600,0,0,307,0,0,0,0,0,0,0,270,4.1,10,10,11.3,360,9,999999999,150,0.0870,0,88,0.180,2.0,6.0 +2001,12,14,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,3.0,93,98700,0,0,307,0,0,0,0,0,0,0,260,4.1,10,10,11.3,77777,9,999999999,150,0.0870,0,88,0.180,999.0,99.0 +2001,12,14,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,3.0,93,98800,0,0,307,0,0,0,0,0,0,0,260,2.6,10,10,11.3,540,9,999999999,150,0.0870,0,88,0.180,999.0,99.0 +2001,12,14,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.0,3.0,93,98900,0,0,307,0,0,0,0,0,0,0,280,3.6,10,10,11.3,450,9,999999999,139,0.0870,0,88,0.180,0.0,3.0 +2001,12,14,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,3.0,93,99000,0,0,307,0,0,0,0,0,0,0,290,3.1,10,10,11.3,450,9,999999999,139,0.0870,0,88,0.180,999.0,99.0 +2001,12,14,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,3.0,93,99000,0,0,307,0,0,0,0,0,0,0,280,2.1,10,10,11.3,360,9,999999999,139,0.0870,0,88,0.180,999.0,99.0 +2001,12,15,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,2.0,87,99100,0,0,306,0,0,0,0,0,0,0,310,2.6,10,10,11.3,300,9,999999999,139,0.0870,0,88,0.180,999.0,99.0 +2001,12,15,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,2.0,87,99100,0,0,306,0,0,0,0,0,0,0,300,2.1,10,10,11.3,360,9,999999999,139,0.0870,0,88,0.180,999.0,99.0 +2001,12,15,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,2.0,87,99200,0,0,306,0,0,0,0,0,0,0,320,2.6,10,10,11.3,270,9,999999999,139,0.0870,0,88,0.180,999.0,99.0 +2001,12,15,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,2.0,87,99300,0,0,306,0,0,0,0,0,0,0,320,2.1,10,10,9.7,270,9,999999999,139,0.0870,0,88,0.180,999.0,99.0 +2001,12,15,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,2.0,87,99400,0,0,306,0,0,0,0,0,0,0,330,2.6,10,10,8.0,270,9,999999999,150,0.0870,0,88,0.180,999.0,99.0 +2001,12,15,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,2.0,87,99500,0,0,306,0,0,0,0,0,0,0,330,3.1,10,10,8.0,300,9,999999999,150,0.0870,0,88,0.180,999.0,99.0 +2001,12,15,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.0,2.0,93,99600,0,0,302,0,0,0,0,0,0,0,330,2.1,10,10,8.0,300,9,999999999,150,0.0870,0,88,0.180,7.0,24.0 +2001,12,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,2.0,93,99700,2,177,275,0,0,0,0,0,0,0,360,1.0,9,4,8.0,270,9,999999999,150,0.0870,0,88,0.180,999.0,99.0 +2001,12,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,3.0,93,99800,138,1412,307,43,0,43,4700,0,4700,1280,30,2.6,10,10,8.0,270,9,999999999,150,0.0870,0,88,0.180,999.0,99.0 +2001,12,15,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,3.0,93,99800,342,1412,307,60,0,60,6900,0,6900,2320,70,3.1,10,10,9.7,270,9,999999999,160,0.0870,0,88,0.180,999.0,99.0 +2001,12,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,2.0,87,100000,500,1412,306,93,0,93,10800,0,10800,3810,120,2.1,10,10,9.7,360,9,999999999,160,0.0870,0,88,0.180,999.0,99.0 +2001,12,15,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,2.0,87,100000,601,1412,306,81,0,81,9700,0,9700,3640,140,2.1,10,10,9.7,360,9,999999999,160,0.0870,0,88,0.180,999.0,99.0 +2001,12,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,2.0,87,100000,636,1412,306,84,0,84,10100,0,10100,3840,140,2.1,10,10,9.7,390,9,999999999,160,0.0870,0,88,0.180,999.0,99.0 +2001,12,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,3.0,87,99900,604,1412,311,93,0,93,11000,0,11000,4110,120,2.6,10,10,11.3,420,9,999999999,160,0.0870,0,88,0.180,999.0,99.0 +2001,12,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,3.0,87,99900,507,1412,311,155,23,147,17400,1700,16800,5320,80,4.6,10,10,11.3,420,9,999999999,170,0.0870,0,88,0.180,999.0,99.0 +2001,12,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,3.0,87,99900,351,1412,311,71,0,71,8100,0,8100,2670,70,3.6,10,10,11.3,420,9,999999999,170,0.0870,0,88,0.180,999.0,99.0 +2001,12,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,2.0,87,99900,149,1412,306,25,0,25,2900,0,2900,900,100,3.6,10,10,11.3,420,9,999999999,170,0.0870,0,88,0.180,999.0,99.0 +2001,12,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,3.0,87,99900,3,247,311,0,0,0,0,0,0,0,80,4.1,10,10,11.3,420,9,999999999,170,0.0870,0,88,0.180,999.0,99.0 +2001,12,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,2.0,81,99900,0,0,283,0,0,0,0,0,0,0,80,6.2,9,4,11.3,420,9,999999999,170,0.0870,0,88,0.180,999.0,99.0 +2001,12,15,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,2.0,81,99900,0,0,283,0,0,0,0,0,0,0,90,3.6,9,4,11.3,420,9,999999999,170,0.0870,0,88,0.180,999.0,99.0 +2001,12,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,2.0,87,99800,0,0,306,0,0,0,0,0,0,0,80,2.6,10,10,11.3,4200,9,999999999,170,0.0870,0,88,0.180,999.0,99.0 +2001,12,15,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,2.0,87,99900,0,0,306,0,0,0,0,0,0,0,110,2.1,10,10,11.3,4200,9,999999999,170,0.0870,0,88,0.180,999.0,99.0 +2001,12,15,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,2.0,87,99900,0,0,279,0,0,0,0,0,0,0,50,2.6,9,4,11.3,4500,9,999999999,170,0.0870,0,88,0.180,999.0,99.0 +2001,12,15,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,2.0,93,99800,0,0,270,0,0,0,0,0,0,0,60,3.6,5,2,11.3,77777,9,999999999,179,0.0870,0,88,0.180,999.0,99.0 +2001,12,16,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,2.0,93,99800,0,0,283,0,0,0,0,0,0,0,90,3.1,9,7,11.3,4200,9,999999999,179,0.0870,0,88,0.180,999.0,99.0 +2001,12,16,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,2.0,87,99800,0,0,306,0,0,0,0,0,0,0,70,3.6,10,10,11.3,4200,9,999999999,170,0.0870,0,88,0.180,999.0,99.0 +2001,12,16,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,2.0,87,99900,0,0,306,0,0,0,0,0,0,0,70,2.6,10,10,11.3,3600,9,999999999,170,0.0870,0,88,0.180,999.0,99.0 +2001,12,16,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,2.0,87,99800,0,0,306,0,0,0,0,0,0,0,70,4.1,10,10,11.3,3300,9,999999999,160,0.0870,0,88,0.180,999.0,99.0 +2001,12,16,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,1.0,81,99600,0,0,305,0,0,0,0,0,0,0,80,5.1,10,10,11.3,2400,9,999999999,160,0.0870,0,88,0.180,999.0,99.0 +2001,12,16,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,2.0,81,99500,0,0,310,0,0,0,0,0,0,0,70,4.6,10,10,11.3,3600,9,999999999,150,0.0870,0,88,0.180,999.0,99.0 +2001,12,16,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.0,1.0,81,99700,0,0,286,0,0,0,0,0,0,0,140,4.6,9,7,11.3,3600,9,999999999,150,0.0870,0,88,0.180,0.0,6.0 +2001,12,16,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,2.0,81,99600,1,177,310,0,0,0,0,0,0,0,60,3.6,10,10,11.3,3600,9,999999999,139,0.0870,0,88,0.180,999.0,99.0 +2001,12,16,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,2.0,87,99500,135,1412,306,29,0,29,3300,0,3300,980,100,3.6,10,10,11.3,3600,9,999999999,139,0.0870,0,88,0.180,999.0,99.0 +2001,12,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,2.0,81,99500,339,1412,310,98,6,96,10800,300,10700,3240,120,2.6,10,10,11.3,2700,9,999999999,129,0.0870,0,88,0.180,0.0,3.0 +2001,12,16,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,2.0,81,99500,498,1412,310,106,0,106,12200,0,12200,4200,130,2.1,10,10,11.3,3600,9,999999999,129,0.0870,0,88,0.180,999.0,99.0 +2001,12,16,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,2.0,75,99400,599,1412,315,75,0,75,9000,0,9000,3410,110,2.6,10,10,11.3,3600,9,999999999,120,0.0870,0,88,0.180,999.0,99.0 +2001,12,16,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.0,3.0,81,99300,635,1412,316,133,0,133,15400,0,15400,5600,100,2.6,10,10,11.3,2700,9,999999999,120,0.0870,0,88,0.180,0.0,6.0 +2001,12,16,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,3.0,81,99200,604,1412,316,111,0,111,13000,0,13000,4740,90,2.6,10,10,11.3,2700,9,999999999,129,0.0870,0,88,0.180,999.0,99.0 +2001,12,16,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,4.0,87,99200,507,1412,317,61,0,61,7300,0,7300,2690,80,2.6,10,10,9.7,1200,9,999999999,139,0.0870,0,88,0.180,999.0,99.0 +2001,12,16,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.0,5.0,93,99200,351,1412,318,46,0,46,5400,0,5400,1880,70,1.5,10,10,8.0,1200,9,999999999,139,0.0870,0,88,0.180,1.0,3.0 +2001,12,16,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,5.0,93,99100,150,1412,318,18,0,18,2100,0,2100,690,70,3.6,10,10,6.4,1200,9,999999999,150,0.0870,0,88,0.180,999.0,99.0 +2001,12,16,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,5.0,100,99100,4,271,314,0,0,0,0,0,0,0,120,2.6,10,10,6.4,1050,9,999999999,160,0.0870,0,88,0.180,999.0,99.0 +2001,12,16,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.0,6.0,100,99000,0,0,319,0,0,0,0,0,0,0,90,2.1,10,10,6.4,900,9,999999999,170,0.0870,0,88,0.180,5.0,6.0 +2001,12,16,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,6.0,100,98900,0,0,319,0,0,0,0,0,0,0,90,1.5,10,10,6.4,750,9,999999999,179,0.0870,0,88,0.180,999.0,99.0 +2001,12,16,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,6.0,100,98800,0,0,319,0,0,0,0,0,0,0,110,2.1,10,10,4.8,660,9,999999999,189,0.0870,0,88,0.180,999.0,99.0 +2001,12,16,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,6.0,100,98800,0,0,319,0,0,0,0,0,0,0,100,1.5,10,10,6.4,750,9,999999999,200,0.0870,0,88,0.180,999.0,99.0 +2001,12,16,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,6.0,100,98700,0,0,319,0,0,0,0,0,0,0,90,2.1,10,10,4.8,600,9,999999999,200,0.0870,0,88,0.180,999.0,99.0 +2001,12,16,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,7.0,100,98600,0,0,325,0,0,0,0,0,0,0,130,3.6,10,10,4.8,780,9,999999999,209,0.0870,0,88,0.180,999.0,99.0 +2001,12,17,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.0,8.0,100,98500,0,0,331,0,0,0,0,0,0,0,120,3.6,10,10,6.4,840,9,999999999,220,0.0860,0,88,0.180,4.0,6.0 +2001,12,17,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,8.0,100,98400,0,0,331,0,0,0,0,0,0,0,140,3.1,10,10,4.8,660,9,999999999,220,0.0860,0,88,0.180,999.0,99.0 +2001,12,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,8.0,100,98300,0,0,331,0,0,0,0,0,0,0,140,5.1,10,10,6.4,840,9,999999999,220,0.0860,0,88,0.180,999.0,99.0 +2001,12,17,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.0,8.0,100,98200,0,0,331,0,0,0,0,0,0,0,130,4.1,10,10,4.8,900,9,999999999,229,0.0860,0,88,0.180,5.0,3.0 +2001,12,17,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,8.0,100,98100,0,0,331,0,0,0,0,0,0,0,130,4.6,10,10,2.8,900,9,999999999,229,0.0860,0,88,0.180,999.0,99.0 +2001,12,17,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,8.0,100,98000,0,0,331,0,0,0,0,0,0,0,140,4.1,10,10,4.0,900,9,999999999,229,0.0860,0,88,0.180,999.0,99.0 +2001,12,17,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.0,8.0,100,98000,0,0,331,0,0,0,0,0,0,0,130,5.1,10,10,4.0,900,9,999999999,229,0.0860,0,88,0.180,19.0,6.0 +2001,12,17,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,8.0,100,97900,1,153,331,0,0,0,0,0,0,0,130,4.1,10,10,3.2,750,9,999999999,229,0.0860,0,88,0.180,999.0,99.0 +2001,12,17,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,8.0,100,97800,133,1413,331,45,0,45,4900,0,4900,1280,140,2.6,10,10,2.4,750,9,999999999,229,0.0860,0,88,0.180,999.0,99.0 +2001,12,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.0,8.0,100,97700,337,1413,331,38,0,38,4500,0,4500,1580,120,3.1,10,10,3.2,750,9,999999999,229,0.0860,0,88,0.180,13.0,3.0 +2001,12,17,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,8.0,100,97500,497,1413,331,53,0,53,6400,0,6400,2360,110,3.6,10,10,3.2,750,9,999999999,240,0.0860,0,88,0.180,999.0,99.0 +2001,12,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,10.0,100,97400,598,1413,343,69,0,69,8400,0,8400,3160,190,1.5,10,10,8.0,180,9,999999999,240,0.0860,0,88,0.180,999.0,99.0 +2001,12,17,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,10.0,100,97300,635,1413,343,72,0,72,8700,0,8700,3350,260,0.5,10,10,11.3,210,9,999999999,240,0.0860,0,88,0.180,14.0,6.0 +2001,12,17,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,10.0,100,97200,604,1413,343,70,0,70,8500,0,8500,3210,330,3.1,10,10,2.0,120,9,999999999,229,0.0860,0,88,0.180,999.0,99.0 +2001,12,17,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,9.0,100,97200,507,1413,337,55,0,55,6700,0,6700,2460,330,3.1,10,10,2.4,120,9,999999999,220,0.0860,0,88,0.180,999.0,99.0 +2001,12,17,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.0,8.0,100,97200,352,1413,331,56,0,56,6500,0,6500,2220,350,4.6,10,10,2.4,120,9,999999999,220,0.0860,0,88,0.180,8.0,3.0 +2001,12,17,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,8.0,100,97200,151,1413,331,36,30,33,4000,2000,3800,810,350,3.6,10,10,3.2,600,9,999999999,209,0.0860,0,88,0.180,999.0,99.0 +2001,12,17,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,7.0,100,97200,4,271,325,0,0,0,0,0,0,0,340,5.7,10,10,8.0,360,9,999999999,200,0.0860,0,88,0.180,999.0,99.0 +2001,12,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.0,7.0,100,97200,0,0,325,0,0,0,0,0,0,0,330,5.7,10,10,6.4,360,9,999999999,200,0.0860,0,88,0.180,11.0,6.0 +2001,12,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,7.0,100,97300,0,0,325,0,0,0,0,0,0,0,330,5.7,10,10,8.0,360,9,999999999,189,0.0860,0,88,0.180,999.0,99.0 +2001,12,17,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,7.0,100,97400,0,0,325,0,0,0,0,0,0,0,320,6.2,10,10,11.3,330,9,999999999,179,0.0860,0,88,0.180,999.0,99.0 +2001,12,17,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.0,7.0,100,97400,0,0,325,0,0,0,0,0,0,0,310,5.7,10,10,11.3,360,9,999999999,170,0.0860,0,88,0.180,4.0,3.0 +2001,12,17,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,7.0,100,97500,0,0,325,0,0,0,0,0,0,0,310,7.2,10,10,9.7,270,9,999999999,170,0.0860,0,88,0.180,999.0,99.0 +2001,12,17,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,6.0,100,97600,0,0,319,0,0,0,0,0,0,0,310,7.7,10,10,11.3,240,9,999999999,160,0.0860,0,88,0.180,999.0,99.0 +2001,12,18,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.0,6.0,100,97700,0,0,319,0,0,0,0,0,0,0,290,6.2,10,10,11.3,690,9,999999999,150,0.0860,0,88,0.180,5.0,6.0 +2001,12,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,3.0,87,97800,0,0,311,0,0,0,0,0,0,0,300,4.6,10,10,11.3,810,9,999999999,139,0.0860,0,88,0.180,999.0,99.0 +2001,12,18,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,3.0,87,97900,0,0,311,0,0,0,0,0,0,0,280,5.1,10,10,11.3,600,9,999999999,139,0.0860,0,88,0.180,999.0,99.0 +2001,12,18,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,2.0,81,98000,0,0,310,0,0,0,0,0,0,0,290,5.7,10,10,11.3,840,9,999999999,129,0.0860,0,88,0.180,999.0,99.0 +2001,12,18,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,2.0,81,98000,0,0,310,0,0,0,0,0,0,0,290,5.7,10,10,11.3,600,9,999999999,120,0.0860,0,88,0.180,999.0,99.0 +2001,12,18,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,1.0,81,98100,0,0,305,0,0,0,0,0,0,0,270,7.2,10,10,11.3,660,9,999999999,110,0.0860,0,88,0.180,999.0,99.0 +2001,12,18,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.0,0.0,75,98200,0,0,304,0,0,0,0,0,0,0,300,5.1,10,10,11.3,660,9,999999999,100,0.0860,0,88,0.180,31.0,24.0 +2001,12,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,0.0,75,98200,1,130,304,0,0,0,0,0,0,0,280,6.2,10,10,11.3,660,9,999999999,100,0.0860,0,88,0.180,999.0,99.0 +2001,12,18,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,0.0,75,98300,131,1413,304,30,0,30,3400,0,3400,1000,290,4.1,10,10,11.3,660,9,999999999,89,0.0860,0,88,0.180,999.0,99.0 +2001,12,18,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,0.0,75,98400,335,1413,304,76,0,76,8600,0,8600,2750,280,5.7,10,10,11.3,660,9,999999999,80,0.0860,0,88,0.180,999.0,99.0 +2001,12,18,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,0.0,81,98500,495,1413,299,86,0,86,10000,0,10000,3560,280,5.7,10,10,11.3,540,9,999999999,69,0.0860,0,88,0.180,999.0,99.0 +2001,12,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,0.0,81,98400,597,1413,299,126,0,126,14600,0,14600,5210,280,4.1,10,10,11.3,540,9,999999999,69,0.0860,0,88,0.180,999.0,99.0 +2001,12,18,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,0.0,75,98400,634,1413,279,296,192,209,32000,19300,23300,5040,270,3.6,9,5,11.3,540,9,999999999,60,0.0860,0,88,0.180,999.0,99.0 +2001,12,18,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,0.0,70,98300,604,1413,279,402,607,141,42300,59100,17000,2810,250,2.6,5,3,9.7,77777,9,999999999,60,0.0860,0,88,0.180,999.0,99.0 +2001,12,18,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,0.0,70,98300,508,1413,267,322,658,84,33500,61000,11400,1620,200,4.1,0,0,9.7,77777,9,999999999,60,0.0860,0,88,0.180,999.0,99.0 +2001,12,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,1.0,70,98300,353,1413,277,203,552,64,20800,45900,9300,1170,210,3.1,3,1,9.7,77777,9,999999999,60,0.0860,0,88,0.180,999.0,99.0 +2001,12,18,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,1.0,75,98300,152,1413,268,66,317,32,6700,18300,4700,560,210,3.6,0,0,9.7,77777,9,999999999,69,0.0860,0,88,0.180,999.0,99.0 +2001,12,18,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,0.0,81,98300,4,271,264,0,0,0,0,0,0,0,190,2.6,3,1,11.3,77777,9,999999999,69,0.0860,0,88,0.180,999.0,99.0 +2001,12,18,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,0.0,81,98300,0,0,264,0,0,0,0,0,0,0,190,2.1,2,1,11.3,77777,9,999999999,69,0.0860,0,88,0.180,999.0,99.0 +2001,12,18,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,1.0,87,98300,0,0,265,0,0,0,0,0,0,0,190,2.1,3,1,11.3,77777,9,999999999,69,0.0860,0,88,0.180,999.0,99.0 +2001,12,18,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,0.0,87,98200,0,0,271,0,0,0,0,0,0,0,200,1.5,9,5,11.3,6600,9,999999999,80,0.0860,0,88,0.180,999.0,99.0 +2001,12,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,0.0,93,98200,0,0,267,0,0,0,0,0,0,0,190,1.0,9,5,11.3,6600,9,999999999,80,0.0860,0,88,0.180,999.0,99.0 +2001,12,18,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,0.0,93,98200,0,0,260,0,0,0,0,0,0,0,170,0.5,5,2,11.3,77777,9,999999999,80,0.0860,0,88,0.180,999.0,99.0 +2001,12,18,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-1.0,92,98200,0,0,258,0,0,0,0,0,0,0,160,0.5,5,3,11.3,77777,9,999999999,80,0.0860,0,88,0.180,999.0,99.0 +2001,12,19,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-1.0,100,98100,0,0,254,0,0,0,0,0,0,0,140,1.0,3,3,11.3,77777,9,999999999,89,0.0860,0,88,0.180,999.0,99.0 +2001,12,19,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-1.0,92,98100,0,0,248,0,0,0,0,0,0,0,130,2.1,0,0,11.3,77777,9,999999999,89,0.0860,0,88,0.180,999.0,99.0 +2001,12,19,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-1.0,92,98100,0,0,248,0,0,0,0,0,0,0,120,2.1,0,0,11.3,77777,9,999999999,100,0.0860,0,88,0.180,999.0,99.0 +2001,12,19,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-1.0,92,98000,0,0,268,0,0,0,0,0,0,0,80,2.1,9,7,11.3,7500,9,999999999,100,0.0860,0,88,0.180,999.0,99.0 +2001,12,19,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-1.0,92,98000,0,0,272,0,0,0,0,0,0,0,90,1.5,9,8,11.3,7500,9,999999999,110,0.0860,0,88,0.180,999.0,99.0 +2001,12,19,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-1.0,92,98000,0,0,268,0,0,0,0,0,0,0,200,1.0,9,7,11.3,7500,9,999999999,110,0.0860,0,88,0.180,999.0,99.0 +2001,12,19,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,0.0,93,98000,0,0,277,0,0,0,0,0,0,0,160,3.1,9,8,11.3,7500,9,999999999,120,0.0860,0,88,0.180,999.0,99.0 +2001,12,19,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-1.0,92,97900,1,130,268,0,0,0,0,0,0,0,160,2.1,9,7,11.3,7500,9,999999999,120,0.0860,0,88,0.180,999.0,99.0 +2001,12,19,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,1.0,93,97900,129,1413,282,0,0,0,0,0,0,0,160,2.6,9,8,11.3,7500,9,999999999,129,0.0860,0,88,0.180,999.0,99.0 +2001,12,19,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,2.0,81,97800,333,1413,291,98,19,94,10900,900,10700,3160,160,3.6,9,7,11.3,4200,9,999999999,129,0.0860,0,88,0.180,999.0,99.0 +2001,12,19,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,2.0,70,97800,494,1413,291,239,216,163,25800,20500,18600,3730,180,4.6,5,4,11.3,77777,9,999999999,139,0.0860,0,88,0.180,999.0,99.0 +2001,12,19,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,2.0,61,97700,596,1413,299,402,613,142,42300,59500,17000,2820,190,5.1,5,4,11.3,77777,9,999999999,139,0.0860,0,88,0.180,999.0,99.0 +2001,12,19,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,3.0,62,97600,634,1413,305,374,403,193,39800,40900,21300,4260,190,5.7,5,4,11.3,77777,9,999999999,150,0.0860,0,88,0.180,999.0,99.0 +2001,12,19,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,3.0,66,97500,604,1413,309,87,0,87,10400,0,10400,3880,220,6.2,9,7,11.3,2400,9,999999999,139,0.0860,0,88,0.180,999.0,99.0 +2001,12,19,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,3.0,66,97600,509,1413,330,72,0,72,8500,0,8500,3100,230,6.7,10,10,11.3,1500,9,999999999,139,0.0860,0,88,0.180,999.0,99.0 +2001,12,19,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,3.0,76,97700,354,1413,321,35,0,35,4200,0,4200,1490,250,7.2,10,10,11.3,780,9,999999999,129,0.0860,0,88,0.180,999.0,99.0 +2001,12,19,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,3.0,81,97800,154,1413,316,22,0,22,2600,0,2600,820,250,9.3,10,10,11.3,600,9,999999999,120,0.0860,0,88,0.180,999.0,99.0 +2001,12,19,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,3.0,93,97900,4,294,307,0,0,0,0,0,0,0,270,8.7,10,10,9.7,420,9,999999999,120,0.0860,0,88,0.180,999.0,99.0 +2001,12,19,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.0,2.0,93,98000,0,0,302,0,0,0,0,0,0,0,270,6.7,10,10,11.3,390,9,999999999,110,0.0860,0,88,0.180,0.0,6.0 +2001,12,19,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-1.0,80,98200,0,0,294,0,0,0,0,0,0,0,290,9.8,10,10,11.3,570,9,999999999,100,0.0860,0,88,0.180,999.0,99.0 +2001,12,19,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-4.0,67,98300,0,0,287,0,0,0,0,0,0,0,290,7.7,10,10,11.3,990,9,999999999,100,0.0860,0,88,0.180,999.0,99.0 +2001,12,19,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.0,-5.0,61,98500,0,0,268,0,0,0,0,0,0,0,270,7.2,9,7,11.3,1500,9,999999999,89,0.0860,0,88,0.180,0.0,3.0 +2001,12,19,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-5.0,66,98500,0,0,257,0,0,0,0,0,0,0,240,5.7,5,4,11.3,77777,9,999999999,80,0.0860,0,88,0.180,999.0,99.0 +2001,12,19,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-5.0,66,98500,0,0,257,0,0,0,0,0,0,0,240,5.1,5,4,11.3,77777,9,999999999,80,0.0860,0,88,0.180,999.0,99.0 +2001,12,20,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.0,-6.0,66,98600,0,0,247,0,0,0,0,0,0,0,260,6.2,2,2,11.3,77777,9,999999999,69,0.0860,0,88,0.180,0.0,6.0 +2001,12,20,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-6.0,66,98700,0,0,250,0,0,0,0,0,0,0,250,4.1,3,3,11.3,77777,9,999999999,69,0.0860,0,88,0.180,999.0,99.0 +2001,12,20,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-6.0,71,98700,0,0,236,0,0,0,0,0,0,0,250,5.1,0,0,11.3,77777,9,999999999,69,0.0860,0,88,0.180,999.0,99.0 +2001,12,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-6.0,71,98800,0,0,236,0,0,0,0,0,0,0,230,4.6,0,0,11.3,77777,9,999999999,80,0.0860,0,88,0.180,999.0,99.0 +2001,12,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-5.0,78,98800,0,0,237,0,0,0,0,0,0,0,240,5.1,0,0,11.3,77777,9,999999999,80,0.0860,0,88,0.180,999.0,99.0 +2001,12,20,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-5.0,78,98900,0,0,237,0,0,0,0,0,0,0,240,5.1,0,0,11.3,77777,9,999999999,80,0.0860,0,88,0.180,999.0,99.0 +2001,12,20,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.0,-6.0,77,99000,0,0,233,0,0,0,0,0,0,0,230,4.1,0,0,11.3,77777,9,999999999,80,0.0860,0,88,0.180,0.0,24.0 +2001,12,20,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-5.0,84,99000,1,106,243,0,0,0,0,0,0,0,230,5.1,3,3,11.3,77777,9,999999999,80,0.0860,0,88,0.180,999.0,99.0 +2001,12,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-5.0,78,99100,126,1413,245,0,0,0,0,0,0,0,230,6.7,2,2,11.3,77777,9,999999999,80,0.0860,0,88,0.180,999.0,99.0 +2001,12,20,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-5.0,66,99100,332,1413,254,182,364,96,18500,29200,11600,1810,250,6.2,3,3,11.3,77777,9,999999999,80,0.0860,0,88,0.180,999.0,99.0 +2001,12,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-5.0,57,99200,492,1413,259,240,253,151,25200,24000,16800,3160,250,5.7,2,2,11.3,77777,9,999999999,80,0.0860,0,88,0.180,999.0,99.0 +2001,12,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-7.0,42,99100,595,1413,268,389,571,148,40800,55400,17400,2960,250,7.2,3,3,11.3,77777,9,999999999,89,0.0860,0,88,0.180,999.0,99.0 +2001,12,20,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-8.0,38,99100,634,1413,264,423,667,123,43700,64200,14900,2440,240,8.7,2,2,11.3,77777,9,999999999,89,0.0860,0,88,0.180,999.0,99.0 +2001,12,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-8.0,38,99000,604,1413,281,349,411,173,36100,39900,18900,3530,240,7.7,9,8,11.3,6000,9,999999999,89,0.0860,0,88,0.180,999.0,99.0 +2001,12,20,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-9.0,35,99000,509,1413,268,250,259,156,26300,24800,17300,3280,240,6.2,5,4,11.3,77777,9,999999999,89,0.0860,0,88,0.180,999.0,99.0 +2001,12,20,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-8.0,38,99000,356,1413,281,193,387,95,19800,32000,11700,1780,230,6.2,9,8,11.3,2400,9,999999999,89,0.0860,0,88,0.180,999.0,99.0 +2001,12,20,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-8.0,38,99000,155,1413,276,70,259,42,7200,14100,5700,770,240,5.1,9,7,11.3,2400,9,999999999,89,0.0860,0,88,0.180,999.0,99.0 +2001,12,20,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-8.0,44,99000,5,294,259,0,0,0,0,0,0,0,240,3.6,3,3,11.3,77777,9,999999999,89,0.0860,0,88,0.180,999.0,99.0 +2001,12,20,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-7.0,51,99000,0,0,254,0,0,0,0,0,0,0,240,3.6,2,2,11.3,77777,9,999999999,89,0.0860,0,88,0.180,999.0,99.0 +2001,12,20,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-7.0,51,99100,0,0,246,0,0,0,0,0,0,0,280,2.6,0,0,11.3,77777,9,999999999,89,0.0860,0,88,0.180,999.0,99.0 +2001,12,20,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-5.0,71,99100,0,0,240,0,0,0,0,0,0,0,250,3.6,0,0,11.3,77777,9,999999999,89,0.0860,0,88,0.180,999.0,99.0 +2001,12,20,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-5.0,78,99100,0,0,237,0,0,0,0,0,0,0,260,2.6,0,0,11.3,77777,9,999999999,89,0.0860,0,88,0.180,999.0,99.0 +2001,12,20,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-5.0,78,99100,0,0,237,0,0,0,0,0,0,0,310,2.1,0,0,11.3,77777,9,999999999,89,0.0860,0,88,0.180,999.0,99.0 +2001,12,20,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-4.0,85,99200,0,0,238,0,0,0,0,0,0,0,280,2.1,0,0,11.3,77777,9,999999999,89,0.0860,0,88,0.180,999.0,99.0 +2001,12,21,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-4.0,85,99200,0,0,238,0,0,0,0,0,0,0,270,1.5,0,0,11.3,77777,9,999999999,89,0.0860,0,88,0.180,999.0,99.0 +2001,12,21,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-5.0,84,99200,0,0,233,0,0,0,0,0,0,0,290,1.5,0,0,11.3,77777,9,999999999,89,0.0860,0,88,0.180,999.0,99.0 +2001,12,21,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.0,-6.0,84,99200,0,0,229,0,0,0,0,0,0,0,200,2.6,0,0,11.3,77777,9,999999999,89,0.0860,0,88,0.180,999.0,99.0 +2001,12,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.0,-5.0,92,99200,0,0,230,0,0,0,0,0,0,0,160,1.0,0,0,11.3,77777,9,999999999,89,0.0860,0,88,0.180,999.0,99.0 +2001,12,21,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.0,-6.0,100,99200,0,0,222,0,0,0,0,0,0,0,210,1.5,0,0,11.3,77777,9,999999999,89,0.0860,0,88,0.180,999.0,99.0 +2001,12,21,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.0,-6.0,100,99300,0,0,222,0,0,0,0,0,0,0,190,1.5,0,0,11.3,77777,9,999999999,89,0.0860,0,88,0.180,999.0,99.0 +2001,12,21,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.0,-6.0,92,99400,0,0,226,0,0,0,0,0,0,0,110,2.1,0,0,11.3,77777,9,999999999,89,0.0860,0,88,0.180,999.0,99.0 +2001,12,21,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.0,-5.0,100,99500,1,106,227,0,0,0,0,0,0,0,100,1.5,0,0,11.3,77777,9,999999999,89,0.0860,0,88,0.180,999.0,99.0 +2001,12,21,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.0,-5.0,92,99600,125,1414,230,0,0,0,0,0,0,0,160,1.5,0,0,11.3,77777,9,999999999,80,0.0860,0,88,0.180,999.0,99.0 +2001,12,21,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-2.0,92,99600,330,1414,243,190,436,88,19600,35000,11300,1640,220,2.1,0,0,11.3,77777,9,999999999,80,0.0860,0,88,0.180,999.0,99.0 +2001,12,21,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-3.0,78,99700,491,1414,246,320,668,87,33100,61300,11700,1650,240,1.5,0,0,11.3,77777,9,999999999,80,0.0860,0,88,0.180,999.0,99.0 +2001,12,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,-3.0,63,99700,595,1414,257,408,747,93,42800,71800,12500,1880,230,1.5,0,0,11.3,77777,9,999999999,80,0.0860,0,88,0.180,999.0,99.0 +2001,12,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-6.0,45,99600,633,1414,258,423,703,106,44100,68100,13500,2160,210,3.1,0,0,11.3,77777,9,999999999,80,0.0860,0,88,0.180,999.0,99.0 +2001,12,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-6.0,42,99600,605,1414,270,402,715,95,42200,68900,12500,1930,230,2.1,2,2,11.3,77777,9,999999999,80,0.0860,0,88,0.180,999.0,99.0 +2001,12,21,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-7.0,39,99600,510,1414,260,333,705,78,34900,65700,11100,1530,230,3.1,0,0,11.3,77777,9,999999999,80,0.0860,0,88,0.180,999.0,99.0 +2001,12,21,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,-6.0,39,99600,357,1414,265,208,575,62,21500,48100,9200,1140,270,2.6,0,0,11.3,77777,9,999999999,80,0.0860,0,88,0.180,999.0,99.0 +2001,12,21,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-5.0,49,99600,157,1414,270,71,314,36,7100,18200,5100,610,230,1.0,3,3,11.3,77777,9,999999999,80,0.0860,0,88,0.180,999.0,99.0 +2001,12,21,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-5.0,61,99600,5,318,256,0,0,0,0,0,0,0,280,1.0,2,2,11.3,77777,9,999999999,80,0.0860,0,88,0.180,999.0,99.0 +2001,12,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-5.0,66,99600,0,0,254,0,0,0,0,0,0,0,330,0.5,3,3,11.3,77777,9,999999999,80,0.0860,0,88,0.180,999.0,99.0 +2001,12,21,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-6.0,71,99600,0,0,244,0,0,0,0,0,0,0,20,1.0,2,2,11.3,77777,9,999999999,80,0.0860,0,88,0.180,999.0,99.0 +2001,12,21,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-6.0,71,99600,0,0,248,0,0,0,0,0,0,0,40,1.0,5,4,11.3,77777,9,999999999,89,0.0860,0,88,0.180,999.0,99.0 +2001,12,21,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-6.0,77,99700,0,0,245,0,0,0,0,0,0,0,70,1.0,5,4,11.3,77777,9,999999999,89,0.0860,0,88,0.180,999.0,99.0 +2001,12,21,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.0,-6.0,84,99600,0,0,241,0,0,0,0,0,0,0,80,1.0,5,4,11.3,77777,9,999999999,89,0.0860,0,88,0.180,999.0,99.0 +2001,12,21,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.0,-5.0,92,99500,0,0,242,0,0,0,0,0,0,0,90,1.0,5,4,11.3,77777,9,999999999,89,0.0860,0,88,0.180,999.0,99.0 +2001,12,22,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.0,-5.0,92,99500,0,0,244,0,0,0,0,0,0,0,90,1.0,5,5,11.3,77777,9,999999999,89,0.0860,0,88,0.180,999.0,99.0 +2001,12,22,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.0,-6.0,92,99500,0,0,253,0,0,0,0,0,0,0,100,1.0,9,9,11.3,6600,9,999999999,89,0.0860,0,88,0.180,999.0,99.0 +2001,12,22,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.0,-6.0,92,99500,0,0,253,0,0,0,0,0,0,0,110,1.5,9,9,11.3,6600,9,999999999,100,0.0860,0,88,0.180,999.0,99.0 +2001,12,22,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-4.0,92,99500,0,0,263,0,0,0,0,0,0,0,120,1.5,9,9,11.3,6600,9,999999999,100,0.0860,0,88,0.180,999.0,99.0 +2001,12,22,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-4.0,78,99500,0,0,256,0,0,0,0,0,0,0,120,1.0,5,5,11.3,77777,9,999999999,100,0.0860,0,88,0.180,999.0,99.0 +2001,12,22,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-5.0,78,99500,0,0,251,0,0,0,0,0,0,0,130,2.6,5,5,11.3,77777,9,999999999,110,0.0860,0,88,0.180,999.0,99.0 +2001,12,22,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-4.0,78,99500,0,0,256,0,0,0,0,0,0,0,120,4.6,5,5,11.3,77777,9,999999999,110,0.0860,0,88,0.180,999.0,99.0 +2001,12,22,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-5.0,71,99500,0,82,270,0,0,0,0,0,0,0,130,3.6,9,9,11.3,7500,9,999999999,110,0.0860,0,88,0.180,999.0,99.0 +2001,12,22,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-4.0,72,99500,123,1414,275,0,0,0,0,0,0,0,130,3.6,9,9,11.3,7500,9,999999999,120,0.0860,0,88,0.180,999.0,99.0 +2001,12,22,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,-3.0,63,99500,329,1414,288,198,514,78,19900,40900,10400,1330,130,6.2,9,9,11.3,7500,9,999999999,120,0.0860,0,88,0.180,999.0,99.0 +2001,12,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,-3.0,51,99500,490,1414,301,313,637,91,32300,58200,12000,1710,150,4.1,9,9,11.3,7500,9,999999999,129,0.0860,0,88,0.180,999.0,99.0 +2001,12,22,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,-3.0,44,99400,594,1414,318,365,553,131,38600,53700,16000,2580,140,4.6,10,10,11.3,7500,9,999999999,129,0.0860,0,88,0.180,999.0,99.0 +2001,12,22,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,-3.0,39,99200,634,1414,327,393,547,147,41500,53800,17300,2970,140,6.2,10,10,11.3,7500,9,999999999,129,0.0860,0,88,0.180,999.0,99.0 +2001,12,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,-3.0,41,99100,605,1414,323,373,560,132,39600,54600,16100,2610,130,5.1,10,10,11.3,7500,9,999999999,129,0.0860,0,88,0.180,999.0,99.0 +2001,12,22,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,9.1,-2.5,43,99000,512,1414,324,250,259,156,26400,24900,17300,3280,130,4.9,10,10,11.3,7500,9,999999999,139,0.0860,0,88,0.180,999.0,99.0 +2001,12,22,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,-2.0,45,98900,359,1414,324,173,308,94,17800,25600,11300,1760,130,4.6,10,10,11.3,7500,9,999999999,139,0.0860,0,88,0.180,999.0,99.0 +2001,12,22,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,-2.0,45,98700,159,1414,324,45,70,37,4900,4100,4500,770,120,5.7,10,10,11.3,7500,9,999999999,139,0.0860,0,88,0.180,999.0,99.0 +2001,12,22,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,-2.0,45,98700,5,318,324,0,0,0,0,0,0,0,130,4.6,10,10,11.3,3000,9,999999999,139,0.0860,0,88,0.180,999.0,99.0 +2001,12,22,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,-2.0,48,98700,0,0,319,0,0,0,0,0,0,0,110,4.1,10,10,11.3,3000,9,999999999,139,0.0860,0,88,0.180,999.0,99.0 +2001,12,22,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,-2.0,48,98600,0,0,319,0,0,0,0,0,0,0,130,5.1,10,10,11.3,2400,9,999999999,150,0.0860,0,88,0.180,999.0,99.0 +2001,12,22,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,-2.0,48,98500,0,0,319,0,0,0,0,0,0,0,130,5.1,10,10,11.3,2400,9,999999999,150,0.0860,0,88,0.180,999.0,99.0 +2001,12,22,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.0,1.0,66,98500,0,0,318,0,0,0,0,0,0,0,150,6.2,10,10,6.4,1200,9,999999999,150,0.0860,0,88,0.180,0.0,3.0 +2001,12,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,4.0,87,98400,0,0,317,0,0,0,0,0,0,0,170,4.1,10,10,11.3,2400,9,999999999,150,0.0860,0,88,0.180,999.0,99.0 +2001,12,22,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,5.0,93,98400,0,0,318,0,0,0,0,0,0,0,160,4.1,10,10,9.7,1080,9,999999999,150,0.0860,0,88,0.180,999.0,99.0 +2001,12,23,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.0,5.0,93,98400,0,0,318,0,0,0,0,0,0,0,180,5.1,10,10,8.0,1080,9,999999999,160,0.0850,0,88,0.180,10.0,6.0 +2001,12,23,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,5.0,93,98300,0,0,318,0,0,0,0,0,0,0,180,7.2,10,10,6.4,1500,9,999999999,150,0.0850,0,88,0.180,999.0,99.0 +2001,12,23,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,5.0,93,98300,0,0,318,0,0,0,0,0,0,0,170,6.2,10,10,8.0,1140,9,999999999,150,0.0850,0,88,0.180,999.0,99.0 +2001,12,23,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.0,5.0,93,98300,0,0,318,0,0,0,0,0,0,0,180,6.7,10,10,11.3,1140,9,999999999,139,0.0850,0,88,0.180,3.0,3.0 +2001,12,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,5.0,93,98200,0,0,318,0,0,0,0,0,0,0,190,6.7,10,10,9.7,600,9,999999999,139,0.0850,0,88,0.180,999.0,99.0 +2001,12,23,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,5.0,93,98200,0,0,318,0,0,0,0,0,0,0,180,7.7,10,10,11.3,750,9,999999999,129,0.0850,0,88,0.180,999.0,99.0 +2001,12,23,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.0,6.0,100,98100,0,0,319,0,0,0,0,0,0,0,180,7.2,10,10,11.3,480,9,999999999,129,0.0850,0,88,0.180,4.0,6.0 +2001,12,23,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,5.0,93,98100,0,82,318,0,0,0,0,0,0,0,180,7.7,10,10,8.0,360,9,999999999,120,0.0850,0,88,0.180,999.0,99.0 +2001,12,23,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,5.0,93,98100,121,1414,318,0,0,0,0,0,0,0,180,7.2,10,10,4.8,360,9,999999999,120,0.0850,0,88,0.180,999.0,99.0 +2001,12,23,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.0,6.0,100,98100,327,1414,319,38,0,38,4500,0,4500,1570,190,7.7,10,10,4.8,300,9,999999999,110,0.0850,0,88,0.180,0.0,3.0 +2001,12,23,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,2.0,93,98100,489,1414,302,53,0,53,6400,0,6400,2350,270,5.7,10,10,11.3,240,9,999999999,110,0.0850,0,88,0.180,999.0,99.0 +2001,12,23,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,2.0,93,98000,594,1414,302,69,0,69,8300,0,8300,3160,240,4.1,10,10,6.4,240,9,999999999,110,0.0850,0,88,0.180,999.0,99.0 +2001,12,23,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.0,1.0,100,97900,634,1414,292,73,0,73,8900,0,8900,3390,250,7.7,10,10,8.0,270,9,999999999,100,0.0850,0,88,0.180,0.0,6.0 +2001,12,23,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,0.0,93,97900,606,1414,291,70,0,70,8500,0,8500,3220,250,7.2,10,10,9.7,390,9,999999999,100,0.0850,0,88,0.180,999.0,99.0 +2001,12,23,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-1.0,86,98000,513,1414,266,145,18,138,16300,1300,15800,5140,240,6.2,5,5,11.3,77777,9,999999999,100,0.0850,0,88,0.180,999.0,99.0 +2001,12,23,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-3.0,72,98000,361,1414,264,178,291,104,18800,24600,12500,2070,250,5.7,5,5,11.3,77777,9,999999999,100,0.0850,0,88,0.180,999.0,99.0 +2001,12,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-4.0,67,98100,161,1414,273,41,40,37,4600,2400,4300,770,240,6.2,9,8,11.3,1050,9,999999999,100,0.0850,0,88,0.180,999.0,99.0 +2001,12,23,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-4.0,67,98100,6,342,269,0,0,0,0,0,0,0,230,5.1,9,7,11.3,1050,9,999999999,100,0.0850,0,88,0.180,999.0,99.0 +2001,12,23,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-4.0,72,98100,0,0,259,0,0,0,0,0,0,0,230,6.7,5,5,11.3,77777,9,999999999,100,0.0850,0,88,0.180,999.0,99.0 +2001,12,23,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-4.0,67,98200,0,0,269,0,0,0,0,0,0,0,240,5.7,9,7,11.3,1050,9,999999999,100,0.0850,0,88,0.180,999.0,99.0 +2001,12,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-5.0,66,98200,0,0,268,0,0,0,0,0,0,0,260,6.2,9,8,11.3,1050,9,999999999,100,0.0850,0,88,0.180,999.0,99.0 +2001,12,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-5.0,71,98200,0,0,260,0,0,0,0,0,0,0,240,5.1,9,7,11.3,1050,9,999999999,100,0.0850,0,88,0.180,999.0,99.0 +2001,12,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-6.0,66,98200,0,0,263,0,0,0,0,0,0,0,230,6.2,9,8,11.3,1200,9,999999999,100,0.0850,0,88,0.180,999.0,99.0 +2001,12,23,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-7.0,60,98100,0,0,258,0,0,0,0,0,0,0,240,6.7,9,7,11.3,1200,9,999999999,100,0.0850,0,88,0.180,999.0,99.0 +2001,12,24,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-6.0,71,98100,0,0,272,0,0,0,0,0,0,0,240,6.2,10,10,11.3,1050,9,999999999,100,0.0850,0,88,0.180,999.0,99.0 +2001,12,24,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-7.0,65,98100,0,0,271,0,0,0,0,0,0,0,230,7.7,10,10,11.3,930,9,999999999,100,0.0850,0,88,0.180,999.0,99.0 +2001,12,24,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-6.0,71,98100,0,0,272,0,0,0,0,0,0,0,230,8.7,10,10,11.3,870,9,999999999,89,0.0850,0,88,0.180,999.0,99.0 +2001,12,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-6.0,71,98000,0,0,272,0,0,0,0,0,0,0,230,7.7,10,10,11.3,840,9,999999999,89,0.0850,0,88,0.180,999.0,99.0 +2001,12,24,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-7.0,65,98000,0,0,271,0,0,0,0,0,0,0,240,7.7,10,10,11.3,810,9,999999999,89,0.0850,0,88,0.180,999.0,99.0 +2001,12,24,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.0,-8.0,71,98000,0,0,241,0,0,0,0,0,0,0,240,8.2,5,5,11.3,77777,9,999999999,80,0.0850,0,88,0.180,999.0,99.0 +2001,12,24,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.0,-8.0,77,98100,0,0,237,0,0,0,0,0,0,0,240,8.2,5,5,11.3,77777,9,999999999,80,0.0850,0,88,0.180,0.0,6.0 +2001,12,24,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.0,-9.0,71,98100,0,59,250,0,0,0,0,0,0,0,250,8.2,9,9,11.3,840,9,999999999,80,0.0850,0,88,0.180,999.0,99.0 +2001,12,24,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.0,-9.0,71,98200,120,1414,236,0,0,0,0,0,0,0,240,5.7,5,5,11.3,77777,9,999999999,69,0.0850,0,88,0.180,999.0,99.0 +2001,12,24,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.0,-10.0,65,98200,326,1414,250,107,39,98,11700,3300,10900,2410,250,8.2,9,9,11.3,840,9,999999999,69,0.0850,0,88,0.180,999.0,99.0 +2001,12,24,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.0,-10.0,59,98300,489,1414,253,127,0,127,14300,0,14300,4730,240,7.7,9,9,11.3,840,9,999999999,69,0.0850,0,88,0.180,999.0,99.0 +2001,12,24,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.0,-9.0,65,98200,594,1414,254,176,12,171,19800,900,19400,6440,250,7.7,9,9,11.3,840,9,999999999,60,0.0850,0,88,0.180,999.0,99.0 +2001,12,24,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.0,-9.0,60,98200,634,1414,258,212,36,195,23200,3500,21600,5590,270,6.7,9,9,11.3,900,9,999999999,60,0.0850,0,88,0.180,0.0,6.0 +2001,12,24,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.0,-9.0,65,98200,607,1414,254,262,137,203,28300,13600,22400,4840,260,8.2,9,9,11.3,900,9,999999999,60,0.0850,0,88,0.180,999.0,99.0 +2001,12,24,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-9.0,60,98300,514,1414,258,139,12,135,15700,800,15400,5070,260,7.2,9,9,11.3,900,9,999999999,60,0.0850,0,88,0.180,999.0,99.0 +2001,12,24,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.0,-9.0,65,98300,363,1414,254,163,211,109,17100,17800,12500,2190,260,6.7,9,9,11.3,900,9,999999999,60,0.0850,0,88,0.180,0.0,3.0 +2001,12,24,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.0,-9.0,71,98400,163,1414,236,72,191,50,7500,10200,6300,960,270,5.7,5,5,11.3,77777,9,999999999,60,0.0850,0,88,0.180,999.0,99.0 +2001,12,24,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.0,-9.0,77,98500,6,342,229,0,0,0,0,0,0,0,280,4.1,3,3,11.3,77777,9,999999999,69,0.0850,0,88,0.180,999.0,99.0 +2001,12,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-7.0,-9.0,84,98500,0,0,224,0,0,0,0,0,0,0,260,3.6,2,2,11.3,77777,9,999999999,69,0.0850,0,88,0.180,0.0,6.0 +2001,12,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-7.0,-9.0,84,98600,0,0,226,0,0,0,0,0,0,0,260,4.1,3,3,11.3,77777,9,999999999,69,0.0850,0,88,0.180,999.0,99.0 +2001,12,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.0,-9.0,77,98600,0,0,247,0,0,0,0,0,0,0,260,5.7,9,9,11.3,900,9,999999999,69,0.0850,0,88,0.180,999.0,99.0 +2001,12,24,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-7.0,-9.0,84,98600,0,0,250,0,0,0,0,0,0,0,260,5.7,10,10,8.0,900,9,999999999,69,0.0850,0,88,0.180,0.0,3.0 +2001,12,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-7.0,-10.0,77,98600,0,0,242,0,0,0,0,0,0,0,270,5.7,9,9,8.0,1140,9,999999999,69,0.0850,0,88,0.180,999.0,99.0 +2001,12,24,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-7.0,-10.0,77,98600,0,0,242,0,0,0,0,0,0,0,260,5.1,9,9,11.3,990,9,999999999,69,0.0850,0,88,0.180,999.0,99.0 +2001,12,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-8.0,-11.0,77,98600,0,0,244,0,0,0,0,0,0,0,250,5.1,10,10,11.3,1140,9,999999999,80,0.0850,0,88,0.180,0.0,6.0 +2001,12,25,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-9.0,-11.0,84,98600,0,0,221,0,0,0,0,0,0,0,260,5.1,5,5,11.3,77777,9,999999999,69,0.0850,0,88,0.180,999.0,99.0 +2001,12,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-9.0,-11.0,84,98600,0,0,241,0,0,0,0,0,0,0,270,5.1,10,10,9.7,960,9,999999999,69,0.0850,0,88,0.180,999.0,99.0 +2001,12,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-9.0,-11.0,84,98600,0,0,226,0,0,0,0,0,0,0,260,3.6,9,7,11.3,960,9,999999999,69,0.0850,0,88,0.180,0.0,3.0 +2001,12,25,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-9.0,-10.0,92,98600,0,0,230,0,0,0,0,0,0,0,270,3.1,9,8,11.3,960,9,999999999,69,0.0850,0,88,0.180,999.0,99.0 +2001,12,25,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-9.0,-10.0,92,98600,0,0,242,0,0,0,0,0,0,0,250,3.6,10,10,9.7,900,9,999999999,69,0.0850,0,88,0.180,999.0,99.0 +2001,12,25,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-9.0,-11.0,84,98700,0,0,229,0,0,0,0,0,0,0,250,6.2,9,8,11.3,960,9,999999999,60,0.0850,0,88,0.180,0.0,6.0 +2001,12,25,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-10.0,-12.0,84,98700,0,59,221,0,0,0,0,0,0,0,260,4.6,9,7,11.3,960,9,999999999,60,0.0850,0,88,0.180,999.0,99.0 +2001,12,25,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-9.0,-11.0,84,98700,118,1414,229,0,0,0,0,0,0,0,240,5.1,9,8,8.0,750,9,999999999,60,0.0850,0,88,0.180,999.0,99.0 +2001,12,25,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-9.0,-11.0,84,98700,325,1414,226,176,300,107,18300,24100,12700,2180,250,5.7,9,7,9.7,660,9,999999999,60,0.0850,0,88,0.180,0.0,3.0 +2001,12,25,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-9.0,-11.0,84,98700,488,1414,229,207,136,160,22300,12900,17900,3650,260,5.1,9,8,4.8,600,9,999999999,60,0.0850,0,88,0.180,999.0,99.0 +2001,12,25,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-7.0,-10.0,77,98700,594,1414,233,226,67,198,24800,6600,22000,5440,250,5.1,9,7,9.7,600,9,999999999,50,0.0850,0,88,0.180,999.0,99.0 +2001,12,25,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-7.0,-10.0,77,98600,635,1414,237,284,126,227,30600,12600,24900,5480,220,5.1,9,8,9.7,690,9,999999999,50,0.0850,0,88,0.180,0.0,6.0 +2001,12,25,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.0,-10.0,70,98600,608,1414,237,251,113,202,27500,11100,22700,5600,210,5.7,9,7,6.4,690,9,999999999,50,0.0850,0,88,0.180,999.0,99.0 +2001,12,25,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.0,-10.0,70,98600,516,1414,241,89,0,89,10400,0,10400,3720,220,4.6,9,8,4.8,690,9,999999999,50,0.0850,0,88,0.180,999.0,99.0 +2001,12,25,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.0,-9.0,77,98600,365,1414,238,112,51,99,12300,4500,11100,2540,210,6.2,9,7,11.3,1050,9,999999999,50,0.0850,0,88,0.180,0.0,3.0 +2001,12,25,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.0,-9.0,77,98600,165,1414,242,53,111,40,5600,6000,4900,730,230,3.6,9,8,11.3,1050,9,999999999,50,0.0850,0,88,0.180,999.0,99.0 +2001,12,25,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-7.0,-9.0,84,98600,7,365,234,0,0,0,0,0,0,0,200,1.5,9,7,11.3,7500,9,999999999,50,0.0850,0,88,0.180,999.0,99.0 +2001,12,25,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-8.0,-9.0,92,98600,0,0,246,0,0,0,0,0,0,0,200,1.5,10,10,11.3,7500,9,999999999,50,0.0850,0,88,0.180,0.0,6.0 +2001,12,25,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-8.0,-10.0,84,98600,0,0,245,0,0,0,0,0,0,0,190,1.5,10,10,11.3,7500,9,999999999,50,0.0850,0,88,0.180,999.0,99.0 +2001,12,25,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-9.0,-10.0,92,98500,0,0,242,0,0,0,0,0,0,0,150,1.0,10,10,11.3,7500,9,999999999,50,0.0850,0,88,0.180,999.0,99.0 +2001,12,25,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-9.0,-10.0,92,98500,0,0,242,0,0,0,0,0,0,0,110,2.1,10,10,11.3,7500,9,999999999,40,0.0850,0,88,0.180,999.0,99.0 +2001,12,25,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-10.0,-11.0,91,98400,0,0,218,0,0,0,0,0,0,0,120,2.1,5,5,11.3,77777,9,999999999,40,0.0850,0,88,0.180,999.0,99.0 +2001,12,25,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-9.0,-9.0,100,98400,0,0,217,0,0,0,0,0,0,0,160,1.5,2,2,11.3,77777,9,999999999,40,0.0850,0,88,0.180,999.0,99.0 +2001,12,26,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-9.0,-10.0,92,98400,0,0,216,0,0,0,0,0,0,0,190,3.1,2,2,11.3,77777,9,999999999,40,0.0850,0,88,0.180,999.0,99.0 +2001,12,26,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-9.0,-10.0,92,98300,0,0,218,0,0,0,0,0,0,0,150,3.1,3,3,11.3,77777,9,999999999,40,0.0850,0,88,0.180,999.0,99.0 +2001,12,26,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-10.0,-10.0,100,98300,0,0,213,0,0,0,0,0,0,0,180,1.5,2,2,11.3,77777,9,999999999,40,0.0850,0,88,0.180,999.0,99.0 +2001,12,26,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-10.0,-10.0,100,98300,0,0,218,0,0,0,0,0,0,0,200,3.1,5,5,11.3,77777,9,999999999,40,0.0850,0,88,0.180,999.0,99.0 +2001,12,26,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-10.0,-10.0,100,98200,0,0,213,0,0,0,0,0,0,0,200,3.1,2,2,11.3,77777,9,999999999,50,0.0850,0,88,0.180,999.0,99.0 +2001,12,26,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-10.0,-10.0,100,98200,0,0,231,0,0,0,0,0,0,0,170,3.1,9,9,11.3,900,9,999999999,50,0.0850,0,88,0.180,999.0,99.0 +2001,12,26,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-8.0,-9.0,92,98200,0,0,246,0,0,0,0,0,0,0,170,3.1,10,10,11.3,900,9,999999999,50,0.0850,0,88,0.180,0.0,24.0 +2001,12,26,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-7.0,-8.0,92,98200,0,59,251,0,0,0,0,0,0,0,200,4.1,10,10,8.0,900,9,999999999,50,0.0850,0,88,0.180,999.0,99.0 +2001,12,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-7.0,-8.0,92,98200,117,1414,244,0,0,0,0,0,0,0,210,3.1,9,9,9.7,1050,9,999999999,50,0.0850,0,88,0.180,999.0,99.0 +2001,12,26,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.0,-7.0,84,98200,324,1414,260,61,0,61,7000,0,7000,2310,210,5.7,10,10,4.8,750,9,999999999,50,0.0850,0,88,0.180,0.0,3.0 +2001,12,26,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.0,-7.0,84,98200,488,1414,252,254,229,174,27200,21600,19700,3970,210,5.1,9,9,11.3,1050,9,999999999,50,0.0850,0,88,0.180,999.0,99.0 +2001,12,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.0,-8.0,77,98100,594,1414,259,69,0,69,8300,0,8300,3160,230,6.2,10,10,9.7,750,9,999999999,50,0.0850,0,88,0.180,999.0,99.0 +2001,12,26,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.0,-8.0,77,98000,636,1414,259,97,0,97,11500,0,11500,4340,260,5.1,10,10,4.8,750,9,999999999,50,0.0850,0,88,0.180,0.0,6.0 +2001,12,26,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.0,-8.0,77,97900,610,1414,259,193,36,177,21100,3500,19600,5070,230,4.1,10,10,0.8,750,9,999999999,50,0.0850,0,88,0.180,999.0,99.0 +2001,12,26,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.0,-7.0,92,97800,518,1414,256,78,0,78,9200,0,9200,3340,270,2.1,10,10,4.8,450,9,999999999,50,0.0850,0,88,0.180,999.0,99.0 +2001,12,26,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.0,-6.0,92,97800,367,1414,260,87,0,87,9800,0,9800,3150,250,3.6,10,10,1.2,450,9,999999999,50,0.0850,0,88,0.180,0.0,3.0 +2001,12,26,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.0,-7.0,92,97800,168,1414,256,38,15,37,4300,1000,4100,910,240,4.6,10,10,1.6,750,9,999999999,50,0.0850,0,88,0.180,999.0,99.0 +2001,12,26,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.0,-7.0,92,97800,8,389,256,0,0,0,0,0,0,0,220,4.1,10,10,4.8,1200,9,999999999,60,0.0850,0,88,0.180,999.0,99.0 +2001,12,26,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.0,-7.0,92,97800,0,0,256,0,0,0,0,0,0,0,230,4.1,10,10,6.4,1200,9,999999999,60,0.0850,0,88,0.180,0.0,6.0 +2001,12,26,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.0,-7.0,92,97800,0,0,256,0,0,0,0,0,0,0,240,5.1,10,10,9.7,1200,9,999999999,60,0.0850,0,88,0.180,999.0,99.0 +2001,12,26,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-7.0,-9.0,84,97800,0,0,250,0,0,0,0,0,0,0,230,5.1,10,10,11.3,1200,9,999999999,60,0.0850,0,88,0.180,999.0,99.0 +2001,12,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-7.0,-10.0,77,97800,0,0,242,0,0,0,0,0,0,0,240,5.7,9,9,11.3,2700,9,999999999,60,0.0850,0,88,0.180,0.0,3.0 +2001,12,26,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-7.0,-10.0,77,97800,0,0,242,0,0,0,0,0,0,0,240,6.2,9,9,11.3,2400,9,999999999,60,0.0850,0,88,0.180,999.0,99.0 +2001,12,26,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-8.0,-10.0,84,97800,0,0,239,0,0,0,0,0,0,0,240,5.1,9,9,11.3,1050,9,999999999,60,0.0850,0,88,0.180,999.0,99.0 +2001,12,27,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-7.0,-9.0,84,97800,0,0,238,0,0,0,0,0,0,0,230,5.1,9,8,11.3,1800,9,999999999,60,0.0850,0,88,0.180,0.0,6.0 +2001,12,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-7.0,-9.0,84,97700,0,0,250,0,0,0,0,0,0,0,210,6.7,10,10,11.3,1110,9,999999999,60,0.0850,0,88,0.180,999.0,99.0 +2001,12,27,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-7.0,-9.0,84,97700,0,0,238,0,0,0,0,0,0,0,210,6.2,9,8,11.3,1200,9,999999999,60,0.0850,0,88,0.180,999.0,99.0 +2001,12,27,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-7.0,-8.0,92,97700,0,0,235,0,0,0,0,0,0,0,230,6.7,9,7,11.3,1110,9,999999999,60,0.0850,0,88,0.180,0.0,3.0 +2001,12,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-7.0,-8.0,92,97600,0,0,251,0,0,0,0,0,0,0,230,6.2,10,10,11.3,1110,9,999999999,69,0.0850,0,88,0.180,999.0,99.0 +2001,12,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.0,-8.0,84,97600,0,0,255,0,0,0,0,0,0,0,230,7.2,10,10,11.3,750,9,999999999,69,0.0850,0,88,0.180,999.0,99.0 +2001,12,27,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-7.0,-8.0,92,97600,0,0,251,0,0,0,0,0,0,0,220,5.7,10,10,11.3,1050,9,999999999,69,0.0850,0,88,0.180,0.0,6.0 +2001,12,27,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.0,-8.0,84,97700,0,35,255,0,0,0,0,0,0,0,220,6.2,10,10,8.0,900,9,999999999,69,0.0850,0,88,0.180,999.0,99.0 +2001,12,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.0,-7.0,92,97700,116,1415,256,0,0,0,0,0,0,0,210,6.7,10,10,4.8,1050,9,999999999,69,0.0850,0,88,0.180,999.0,99.0 +2001,12,27,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.0,-7.0,84,97700,324,1415,260,77,0,77,8600,0,8600,2730,210,6.2,10,10,4.8,900,9,999999999,69,0.0850,0,88,0.180,0.0,3.0 +2001,12,27,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.0,-7.0,84,97700,488,1415,247,127,0,127,14300,0,14300,4720,210,7.2,9,8,6.4,900,9,999999999,69,0.0850,0,88,0.180,999.0,99.0 +2001,12,27,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.0,-7.0,77,97600,594,1415,247,126,0,126,14500,0,14500,5200,210,8.2,9,7,11.3,1050,9,999999999,69,0.0850,0,88,0.180,999.0,99.0 +2001,12,27,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.0,-7.0,65,97500,637,1415,271,230,60,203,25200,5900,22600,5770,220,8.7,10,10,11.3,1500,9,999999999,80,0.0850,0,88,0.180,0.0,6.0 +2001,12,27,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-8.0,60,97500,611,1415,270,204,24,194,22900,2000,22000,7100,220,8.7,10,10,11.3,1500,9,999999999,80,0.0850,0,88,0.180,999.0,99.0 +2001,12,27,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-8.0,60,97500,520,1415,257,145,12,141,16400,900,16100,5250,230,6.2,9,8,11.3,1500,9,999999999,80,0.0850,0,88,0.180,999.0,99.0 +2001,12,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-8.0,55,97600,369,1415,257,118,57,103,12900,5000,11600,2640,230,7.2,9,7,11.3,1050,9,999999999,80,0.0850,0,88,0.180,999.0,99.0 +2001,12,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-8.0,60,97500,170,1415,244,66,162,46,6900,8900,5800,860,220,6.2,3,3,11.3,77777,9,999999999,80,0.0850,0,88,0.180,999.0,99.0 +2001,12,27,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-7.0,71,97600,8,389,239,0,0,0,0,0,0,0,210,5.1,2,2,11.3,77777,9,999999999,80,0.0850,0,88,0.180,999.0,99.0 +2001,12,27,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.0,-7.0,77,97600,0,0,238,0,0,0,0,0,0,0,200,4.1,3,3,11.3,77777,9,999999999,80,0.0850,0,88,0.180,999.0,99.0 +2001,12,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.0,-8.0,77,97600,0,0,231,0,0,0,0,0,0,0,200,3.1,2,2,11.3,77777,9,999999999,80,0.0850,0,88,0.180,999.0,99.0 +2001,12,27,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-6.0,77,97600,0,0,255,0,0,0,0,0,0,0,210,5.1,9,8,11.3,2400,9,999999999,80,0.0850,0,88,0.180,999.0,99.0 +2001,12,27,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-6.0,71,97600,0,0,255,0,0,0,0,0,0,0,210,5.7,9,7,11.3,1050,9,999999999,80,0.0850,0,88,0.180,999.0,99.0 +2001,12,27,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-6.0,71,97600,0,0,259,0,0,0,0,0,0,0,210,5.1,9,8,11.3,2100,9,999999999,80,0.0850,0,88,0.180,999.0,99.0 +2001,12,27,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-5.0,78,97500,0,0,273,0,0,0,0,0,0,0,210,6.2,10,10,11.3,2100,9,999999999,80,0.0850,0,88,0.180,999.0,99.0 +2001,12,28,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-6.0,71,97500,0,0,265,0,0,0,0,0,0,0,210,4.6,9,9,11.3,2100,9,999999999,80,0.0850,0,88,0.180,999.0,99.0 +2001,12,28,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-6.0,71,97400,0,0,265,0,0,0,0,0,0,0,220,6.2,9,9,11.3,1800,9,999999999,80,0.0850,0,88,0.180,999.0,99.0 +2001,12,28,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-5.0,78,97400,0,0,273,0,0,0,0,0,0,0,210,6.7,10,10,11.3,1800,9,999999999,80,0.0850,0,88,0.180,999.0,99.0 +2001,12,28,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.0,-5.0,78,97300,0,0,273,0,0,0,0,0,0,0,220,7.2,10,10,11.3,1200,9,999999999,80,0.0850,0,88,0.180,0.0,3.0 +2001,12,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-5.0,78,97300,0,0,273,0,0,0,0,0,0,0,220,5.1,10,10,11.3,1050,9,999999999,69,0.0850,0,88,0.180,999.0,99.0 +2001,12,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-5.0,78,97300,0,0,273,0,0,0,0,0,0,0,230,6.2,10,10,11.3,1050,9,999999999,69,0.0850,0,88,0.180,999.0,99.0 +2001,12,28,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.0,-5.0,84,97400,0,0,269,0,0,0,0,0,0,0,260,5.1,10,10,11.3,1350,9,999999999,69,0.0850,0,88,0.180,0.0,6.0 +2001,12,28,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-6.0,77,97400,0,35,268,0,0,0,0,0,0,0,240,4.1,10,10,11.3,1500,9,999999999,69,0.0850,0,88,0.180,999.0,99.0 +2001,12,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-5.0,84,97500,115,1415,269,0,0,0,0,0,0,0,220,5.1,10,10,11.3,1350,9,999999999,69,0.0850,0,88,0.180,999.0,99.0 +2001,12,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.0,-6.0,71,97500,323,1415,265,92,7,91,10300,300,10200,3040,230,7.2,9,9,11.3,1800,9,999999999,69,0.0850,0,88,0.180,0.0,3.0 +2001,12,28,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-7.0,65,97500,487,1415,264,154,12,149,17000,900,16700,5230,230,7.2,9,9,11.3,2100,9,999999999,69,0.0850,0,88,0.180,999.0,99.0 +2001,12,28,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-7.0,65,97400,595,1415,271,195,30,182,21400,2900,20100,5110,240,5.7,10,10,11.3,1350,9,999999999,69,0.0850,0,88,0.180,999.0,99.0 +2001,12,28,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.0,-6.0,66,97400,638,1415,276,109,0,109,12800,0,12800,4780,230,5.1,10,10,4.8,1350,9,999999999,69,0.0850,0,88,0.180,0.0,6.0 +2001,12,28,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-3.0,92,97300,613,1415,275,123,0,123,14300,0,14300,5180,210,4.1,10,10,2.0,900,9,999999999,60,0.0850,0,88,0.180,999.0,99.0 +2001,12,28,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-3.0,85,97300,522,1415,279,128,0,128,14500,0,14500,4930,210,3.6,10,10,6.4,750,9,999999999,60,0.0850,0,88,0.180,999.0,99.0 +2001,12,28,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.0,-3.0,85,97300,372,1415,279,72,0,72,8200,0,8200,2760,220,2.1,10,10,6.4,750,9,999999999,60,0.0850,0,88,0.180,0.0,3.0 +2001,12,28,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.0,-2.0,92,97400,173,1415,273,51,71,42,5500,4400,5000,880,230,2.1,9,9,8.0,750,9,999999999,60,0.0850,0,88,0.180,999.0,99.0 +2001,12,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-3.0,92,97500,9,413,268,0,0,0,0,0,0,0,270,2.1,9,9,8.0,1500,9,999999999,60,0.0850,0,88,0.180,999.0,99.0 +2001,12,28,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.0,-3.0,92,97500,0,0,268,0,0,0,0,0,0,0,280,3.6,9,9,9.7,1800,9,999999999,60,0.0850,0,88,0.180,0.0,6.0 +2001,12,28,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.0,-4.0,85,97600,0,0,267,0,0,0,0,0,0,0,280,4.1,9,9,11.3,1800,9,999999999,60,0.0850,0,88,0.180,999.0,99.0 +2001,12,28,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.0,-5.0,84,97600,0,0,262,0,0,0,0,0,0,0,280,6.7,9,9,11.3,1800,9,999999999,60,0.0850,0,88,0.180,999.0,99.0 +2001,12,28,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.0,-7.0,84,97600,0,0,252,0,0,0,0,0,0,0,290,4.1,9,9,11.3,1050,9,999999999,60,0.0850,0,88,0.180,0.0,3.0 +2001,12,28,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.0,-9.0,71,97700,0,0,250,0,0,0,0,0,0,0,300,4.1,9,9,11.3,1800,9,999999999,60,0.0850,0,88,0.180,999.0,99.0 +2001,12,28,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.0,-9.0,71,97700,0,0,258,0,0,0,0,0,0,0,280,3.1,10,10,11.3,1200,9,999999999,60,0.0850,0,88,0.180,999.0,99.0 +2001,12,29,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.0,-9.0,71,97800,0,0,258,0,0,0,0,0,0,0,260,3.6,10,10,11.3,1050,9,999999999,60,0.0850,0,88,0.180,0.0,6.0 +2001,12,29,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.0,-9.0,71,97800,0,0,258,0,0,0,0,0,0,0,260,3.1,10,10,11.3,1800,9,999999999,60,0.0850,0,88,0.180,999.0,99.0 +2001,12,29,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.0,-9.0,71,97800,0,0,258,0,0,0,0,0,0,0,250,4.1,10,10,11.3,1800,9,999999999,60,0.0850,0,88,0.180,999.0,99.0 +2001,12,29,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.0,-8.0,84,97900,0,0,255,0,0,0,0,0,0,0,260,4.1,10,10,11.3,2100,9,999999999,50,0.0850,0,88,0.180,0.0,3.0 +2001,12,29,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.0,-8.0,84,97900,0,0,232,0,0,0,0,0,0,0,260,3.6,5,4,11.3,77777,9,999999999,50,0.0850,0,88,0.180,999.0,99.0 +2001,12,29,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.0,-8.0,84,97900,0,0,255,0,0,0,0,0,0,0,260,3.6,10,10,11.3,1050,9,999999999,50,0.0850,0,88,0.180,999.0,99.0 +2001,12,29,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.0,-8.0,84,98000,0,0,255,0,0,0,0,0,0,0,250,4.6,10,10,11.3,1800,9,999999999,50,0.0850,0,88,0.180,0.0,6.0 +2001,12,29,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-7.0,-9.0,84,98100,0,35,234,0,0,0,0,0,0,0,260,7.7,9,7,11.3,1050,9,999999999,50,0.0850,0,88,0.180,999.0,99.0 +2001,12,29,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-7.0,-11.0,70,98200,114,1415,224,0,0,0,0,0,0,0,250,5.7,3,3,11.3,77777,9,999999999,50,0.0850,0,88,0.180,999.0,99.0 +2001,12,29,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-7.0,-12.0,64,98300,323,1415,232,169,314,97,17700,25200,11900,1930,250,7.2,9,7,11.3,4500,9,999999999,50,0.0850,0,88,0.180,0.0,3.0 +2001,12,29,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-8.0,-12.0,70,98400,488,1415,232,241,229,161,25900,21700,18400,3670,260,7.7,9,8,11.3,900,9,999999999,40,0.0850,0,88,0.180,999.0,99.0 +2001,12,29,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.0,-11.0,64,98400,596,1415,236,183,30,170,20100,2900,18800,4850,280,7.2,9,7,11.3,1500,9,999999999,40,0.0850,0,88,0.180,999.0,99.0 +2001,12,29,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-7.0,-12.0,64,98400,639,1415,235,279,150,210,30100,15100,23300,5070,280,6.2,9,8,11.3,1500,9,999999999,40,0.0850,0,88,0.180,0.0,6.0 +2001,12,29,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-7.0,-12.0,64,98400,615,1415,247,123,0,123,14300,0,14300,5180,250,8.7,10,10,8.0,1500,9,999999999,40,0.0850,0,88,0.180,999.0,99.0 +2001,12,29,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-7.0,-11.0,70,98500,524,1415,248,184,65,160,20200,6200,17900,4330,260,5.7,10,10,8.0,1350,9,999999999,50,0.0850,0,88,0.180,999.0,99.0 +2001,12,29,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-8.0,-10.0,84,98600,374,1415,245,123,51,110,13500,4500,12300,2790,270,5.7,10,10,3.2,720,9,999999999,50,0.0850,0,88,0.180,0.0,3.0 +2001,12,29,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-8.0,-11.0,77,98700,176,1415,244,47,31,43,5100,2200,4900,1040,270,7.7,10,10,9.7,870,9,999999999,50,0.0850,0,88,0.180,999.0,99.0 +2001,12,29,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-9.0,-13.0,70,98800,10,436,239,0,0,0,0,0,0,0,260,6.2,10,10,11.3,870,9,999999999,50,0.0850,0,88,0.180,999.0,99.0 +2001,12,29,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-9.0,-13.0,70,98800,0,0,239,0,0,0,0,0,0,0,260,6.7,10,10,11.3,900,9,999999999,50,0.0850,0,88,0.180,0.0,6.0 +2001,12,29,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-9.0,-13.0,70,98900,0,0,224,0,0,0,0,0,0,0,260,6.7,9,7,11.3,900,9,999999999,60,0.0850,0,88,0.180,999.0,99.0 +2001,12,29,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-9.0,-13.0,70,99000,0,0,227,0,0,0,0,0,0,0,250,5.7,9,8,11.3,900,9,999999999,60,0.0850,0,88,0.180,999.0,99.0 +2001,12,29,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-10.0,-13.0,76,99000,0,0,218,0,0,0,0,0,0,0,240,4.6,6,6,11.3,11450,9,999999999,60,0.0850,0,88,0.180,999.0,99.0 +2001,12,29,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-11.0,-13.0,84,98900,0,0,209,0,0,0,0,0,0,0,230,3.6,3,3,11.3,77777,9,999999999,60,0.0850,0,88,0.180,999.0,99.0 +2001,12,29,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-11.0,-13.0,84,99000,0,0,217,0,0,0,0,0,0,0,240,4.1,9,7,11.3,900,9,999999999,60,0.0850,0,88,0.180,999.0,99.0 +2001,12,30,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-11.0,-13.0,84,99000,0,0,211,0,0,0,0,0,0,0,230,4.6,9,4,11.3,900,9,999999999,69,0.0850,0,88,0.180,999.0,99.0 +2001,12,30,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-11.0,-14.0,76,99000,0,0,204,0,0,0,0,0,0,0,230,3.6,3,1,11.3,77777,9,999999999,69,0.0850,0,88,0.180,999.0,99.0 +2001,12,30,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-10.0,-13.0,76,99000,0,0,214,0,0,0,0,0,0,0,230,5.1,9,4,11.3,900,9,999999999,60,0.0850,0,88,0.180,999.0,99.0 +2001,12,30,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-11.0,-14.0,76,99000,0,0,209,0,0,0,0,0,0,0,250,4.6,5,3,11.3,77777,9,999999999,60,0.0850,0,88,0.180,999.0,99.0 +2001,12,30,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-12.0,-14.0,83,99000,0,0,201,0,0,0,0,0,0,0,250,5.1,2,1,11.3,77777,9,999999999,60,0.0850,0,88,0.180,999.0,99.0 +2001,12,30,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-12.0,-14.0,83,99000,0,0,201,0,0,0,0,0,0,0,230,3.1,3,1,11.3,77777,9,999999999,60,0.0850,0,88,0.180,999.0,99.0 +2001,12,30,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-13.0,-14.0,91,99000,0,0,198,0,0,0,0,0,0,0,220,3.1,2,1,11.3,77777,9,999999999,60,0.0850,0,88,0.180,999.0,99.0 +2001,12,30,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-13.0,-14.0,91,99100,0,35,194,0,0,0,0,0,0,0,230,2.6,0,0,11.3,77777,9,999999999,60,0.0850,0,88,0.180,999.0,99.0 +2001,12,30,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-11.0,-13.0,84,99200,114,1415,201,0,0,0,0,0,0,0,240,4.6,0,0,11.3,77777,9,999999999,60,0.0850,0,88,0.180,999.0,99.0 +2001,12,30,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-11.0,-13.0,84,99200,322,1415,205,154,235,100,16000,18800,11700,2010,240,7.2,3,1,11.3,77777,9,999999999,60,0.0850,0,88,0.180,999.0,99.0 +2001,12,30,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-9.0,-13.0,70,99200,488,1415,211,281,489,111,29500,45200,13800,2110,240,4.6,2,1,11.3,77777,9,999999999,60,0.0850,0,88,0.180,999.0,99.0 +2001,12,30,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-8.0,-12.0,70,99100,596,1415,215,334,419,156,34700,40600,17500,3140,230,5.7,3,1,11.3,77777,9,999999999,60,0.0850,0,88,0.180,999.0,99.0 +2001,12,30,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-7.0,-12.0,64,99100,640,1415,218,345,361,181,36900,36700,20200,3940,240,6.2,2,1,11.3,77777,9,999999999,50,0.0850,0,88,0.180,999.0,99.0 +2001,12,30,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-7.0,-12.0,64,99000,616,1415,218,339,382,172,36200,38600,19300,3690,220,6.2,3,1,11.3,77777,9,999999999,60,0.0850,0,88,0.180,999.0,99.0 +2001,12,30,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.0,-12.0,59,99000,527,1415,217,313,524,117,33000,49500,14500,2240,220,6.7,0,0,11.3,77777,9,999999999,60,0.0850,0,88,0.180,999.0,99.0 +2001,12,30,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.0,-12.0,59,99100,377,1415,217,201,458,78,21200,38900,10800,1420,220,5.1,0,0,11.3,77777,9,999999999,60,0.0850,0,88,0.180,999.0,99.0 +2001,12,30,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-7.0,-12.0,64,99100,179,1415,214,83,266,49,8500,15700,6500,900,230,6.2,0,0,11.3,77777,9,999999999,60,0.0850,0,88,0.180,999.0,99.0 +2001,12,30,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-8.0,-12.0,70,99100,11,436,211,0,0,0,0,0,0,0,230,6.2,0,0,11.3,77777,9,999999999,60,0.0850,0,88,0.180,999.0,99.0 +2001,12,30,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-8.0,-12.0,70,99100,0,0,211,0,0,0,0,0,0,0,240,5.1,0,0,11.3,77777,9,999999999,60,0.0850,0,88,0.180,999.0,99.0 +2001,12,30,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-9.0,-12.0,77,99100,0,0,212,0,0,0,0,0,0,0,240,5.7,3,1,11.3,77777,9,999999999,69,0.0850,0,88,0.180,999.0,99.0 +2001,12,30,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-8.0,-11.0,77,99100,0,0,223,0,0,0,0,0,0,0,240,5.1,9,4,11.3,1050,9,999999999,69,0.0850,0,88,0.180,999.0,99.0 +2001,12,30,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-8.0,-11.0,77,99100,0,0,223,0,0,0,0,0,0,0,230,5.1,9,4,11.3,1020,9,999999999,69,0.0850,0,88,0.180,0.0,3.0 +2001,12,30,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-8.0,-11.0,77,99100,0,0,223,0,0,0,0,0,0,0,230,5.7,9,4,11.3,1020,9,999999999,69,0.0850,0,88,0.180,999.0,99.0 +2001,12,30,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-8.0,-10.0,84,99100,0,0,239,0,0,0,0,0,0,0,230,6.2,10,9,11.3,1020,9,999999999,69,0.0850,0,88,0.180,999.0,99.0 +2001,12,31,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-8.0,-10.0,84,99100,0,0,245,0,0,0,0,0,0,0,240,5.1,10,10,11.3,1020,9,999999999,69,0.0850,0,88,0.180,0.0,6.0 +2001,12,31,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-7.0,-10.0,77,99100,0,0,249,0,0,0,0,0,0,0,240,4.6,10,10,11.3,1020,9,999999999,69,0.0850,0,88,0.180,999.0,99.0 +2001,12,31,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-8.0,-11.0,77,99100,0,0,233,0,0,0,0,0,0,0,250,7.2,9,8,11.3,990,9,999999999,69,0.0850,0,88,0.180,999.0,99.0 +2001,12,31,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-8.0,-11.0,77,99100,0,0,229,0,0,0,0,0,0,0,260,4.1,9,7,11.3,960,9,999999999,69,0.0850,0,88,0.180,0.0,3.0 +2001,12,31,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-9.0,-11.0,84,99000,0,0,229,0,0,0,0,0,0,0,260,3.6,9,8,11.3,900,9,999999999,69,0.0850,0,88,0.180,999.0,99.0 +2001,12,31,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-10.0,-12.0,84,99000,0,0,221,0,0,0,0,0,0,0,230,3.1,9,7,11.3,900,9,999999999,69,0.0850,0,88,0.180,999.0,99.0 +2001,12,31,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-10.0,-12.0,84,99100,0,0,225,0,0,0,0,0,0,0,250,4.1,9,8,11.3,870,9,999999999,60,0.0850,0,88,0.180,0.0,6.0 +2001,12,31,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-9.0,-12.0,77,99200,0,12,240,0,0,0,0,0,0,0,260,5.1,10,10,11.3,780,9,999999999,60,0.0850,0,88,0.180,999.0,99.0 +2001,12,31,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-9.0,-11.0,84,99200,113,1415,229,0,0,0,0,0,0,0,260,4.6,9,8,6.4,780,9,999999999,60,0.0850,0,88,0.180,999.0,99.0 +2001,12,31,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-8.0,-11.0,77,99200,322,1415,244,131,131,101,14100,10800,11600,2200,240,5.1,10,10,6.4,720,9,999999999,60,0.0850,0,88,0.180,0.0,3.0 +2001,12,31,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-8.0,-10.0,84,99200,488,1415,234,281,439,129,29100,40500,15100,2490,230,4.6,9,8,14.5,720,9,999999999,60,0.0850,0,88,0.180,999.0,99.0 +2001,12,31,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.0,-11.0,64,99300,597,1415,231,353,492,144,37000,47800,16800,2870,230,4.1,5,5,11.3,77777,9,999999999,50,0.0850,0,88,0.180,999.0,99.0 +2001,12,31,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.0,-11.0,64,99000,642,1415,228,351,379,179,37600,38600,20000,3890,240,5.1,3,3,11.3,77777,9,999999999,50,0.0850,0,88,0.180,0.0,6.0 +2001,12,31,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.0,-11.0,54,98900,619,1415,232,333,358,176,35500,36200,19700,3800,220,6.2,2,2,11.3,77777,9,999999999,50,0.0850,0,88,0.180,999.0,99.0 +2001,12,31,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.0,-11.0,54,99000,529,1415,235,319,530,119,33600,50100,14700,2290,210,4.6,3,3,11.3,77777,9,999999999,50,0.0850,0,88,0.180,999.0,99.0 +2001,12,31,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.0,-11.0,54,99000,380,1415,232,216,515,77,22000,43500,10300,1380,250,4.6,2,2,11.3,77777,9,999999999,40,0.0850,0,88,0.180,999.0,99.0 +2001,12,31,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.0,-11.0,59,99000,182,1415,231,88,293,50,9000,17400,6700,920,230,4.6,3,3,11.3,77777,9,999999999,40,0.0850,0,88,0.180,999.0,99.0 +2001,12,31,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-7.0,-12.0,64,99000,12,460,214,0,0,0,0,0,0,0,230,3.6,0,0,11.3,77777,9,999999999,40,0.0850,0,88,0.180,999.0,99.0 +2001,12,31,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-8.0,-12.0,70,99100,0,0,211,0,0,0,0,0,0,0,230,3.6,0,0,11.3,77777,9,999999999,40,0.0850,0,88,0.180,999.0,99.0 +2001,12,31,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-8.0,-12.0,70,99100,0,0,211,0,0,0,0,0,0,0,250,3.1,0,0,11.3,77777,9,999999999,40,0.0850,0,88,0.180,999.0,99.0 +2001,12,31,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-9.0,-12.0,77,99100,0,0,208,0,0,0,0,0,0,0,270,3.1,0,0,11.3,77777,9,999999999,40,0.0850,0,88,0.180,999.0,99.0 +2001,12,31,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-10.0,-12.0,84,99100,0,0,205,0,0,0,0,0,0,0,260,2.6,0,0,11.3,77777,9,999999999,30,0.0850,0,88,0.180,999.0,99.0 +2001,12,31,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-10.0,-13.0,76,99100,0,0,204,0,0,0,0,0,0,0,210,3.1,0,0,11.3,77777,9,999999999,40,0.0850,0,88,0.180,999.0,99.0 +2001,12,31,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-11.0,-13.0,84,99100,0,0,201,0,0,0,0,0,0,0,230,3.1,0,0,11.3,77777,9,999999999,40,0.0850,0,88,0.180,999.0,99.0 diff --git a/tests/api/models/small_office/workflow.osw b/tests/api/models/small_office/workflow.osw new file mode 100644 index 00000000..a5afa2ff --- /dev/null +++ b/tests/api/models/small_office/workflow.osw @@ -0,0 +1,19 @@ +{ + "seed_file" : "small_office.osm", + "weather_file": "USA_OH_Dayton-Wright.Patterson.AFB.745700_TMY3.epw", + "measure_paths": [ + "./measures/" + ], + "file_paths": [ + "./weather/" + ], + "run_directory": "./run/", + "steps" : [ + { + "measure_dir_name" : "alfalfa_vars", + "name" : "AlfalfaVariables", + "description" : "Add custom variables for Alfalfa", + "modeler_description" : "Add EMS global variables required by Alfalfa" + } + ] +}