diff --git a/Gemfile.lock b/Gemfile.lock index 9e0fe5371..2a9fb454f 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -225,11 +225,11 @@ GEM net-protocol timeout nio4r (2.5.8) - nokogiri (1.13.8-arm64-darwin) + nokogiri (1.13.9-arm64-darwin) racc (~> 1.4) - nokogiri (1.13.8-x86_64-darwin) + nokogiri (1.13.9-x86_64-darwin) racc (~> 1.4) - nokogiri (1.13.8-x86_64-linux) + nokogiri (1.13.9-x86_64-linux) racc (~> 1.4) notifications-ruby-client (5.3.0) jwt (>= 1.5, < 3) diff --git a/app/components/search_component.html.erb b/app/components/search_component.html.erb index c63039b8c..2c10f3ed8 100644 --- a/app/components/search_component.html.erb +++ b/app/components/search_component.html.erb @@ -10,6 +10,6 @@ autocomplete: "off", class: "app-search__input" %> - <%= f.govuk_submit "Search", classes: "app-search__button" %> + <%= f.govuk_submit "Search", classes: "app-search__button govuk-button--secondary" %> <% end %> diff --git a/app/components/search_component.rb b/app/components/search_component.rb index 035500b54..e9fe83a3a 100644 --- a/app/components/search_component.rb +++ b/app/components/search_component.rb @@ -15,6 +15,10 @@ class SearchComponent < ViewComponent::Base request.path elsif request.path.include?("organisations") && request.path.include?("schemes") request.path + elsif request.path.include?("organisations") && request.path.include?("housing-providers") + request.path + elsif request.path.include?("organisations") && request.path.include?("managing-agents") + request.path elsif request.path.include?("users") user_path(current_user) elsif request.path.include?("organisations") diff --git a/app/controllers/locations_controller.rb b/app/controllers/locations_controller.rb index 54e63d2cd..532ab915a 100644 --- a/app/controllers/locations_controller.rb +++ b/app/controllers/locations_controller.rb @@ -61,27 +61,32 @@ class LocationsController < ApplicationController error_message = I18n.t("validations.location_admin_district") @location.errors.add :location_admin_district, error_message render :edit_local_authority, status: :unprocessable_entity - elsif @location.update(location_params) - case page - when "edit" - if @location.location_admin_district.nil? - redirect_to(location_edit_local_authority_path(id: @scheme.id, location_id: @location.id, add_another_location: location_params[:add_another_location])) - elsif location_params[:add_another_location] == "Yes" - redirect_to(new_location_path(@location.scheme)) - else - redirect_to(scheme_check_answers_path(@scheme, anchor: "locations")) - end - when "edit-name" - redirect_to(scheme_check_answers_path(@scheme, anchor: "locations")) - when "edit-local-authority" - if params[:add_another_location] == "Yes" - redirect_to(new_location_path(@location.scheme)) - else + else + if page == "edit-local-authority" + params[:location][:location_code] = Location.local_authorities.key(params[:location][:location_admin_district]) + end + if @location.update(location_params) + case page + when "edit" + if @location.location_admin_district.nil? + redirect_to(location_edit_local_authority_path(id: @scheme.id, location_id: @location.id, add_another_location: location_params[:add_another_location])) + elsif location_params[:add_another_location] == "Yes" + redirect_to(new_location_path(@location.scheme)) + else + redirect_to(scheme_check_answers_path(@scheme, anchor: "locations")) + end + when "edit-name" redirect_to(scheme_check_answers_path(@scheme, anchor: "locations")) + when "edit-local-authority" + if params[:add_another_location] == "Yes" + redirect_to(new_location_path(@location.scheme)) + else + redirect_to(scheme_check_answers_path(@scheme, anchor: "locations")) + end end + else + render :edit, status: :unprocessable_entity end - else - render :edit, status: :unprocessable_entity end end @@ -123,7 +128,7 @@ private end def location_params - required_params = params.require(:location).permit(:postcode, :name, :units, :type_of_unit, :add_another_location, :startdate, :mobility_type, :location_admin_district).merge(scheme_id: @scheme.id) + required_params = params.require(:location).permit(:postcode, :name, :units, :type_of_unit, :add_another_location, :startdate, :mobility_type, :location_admin_district, :location_code).merge(scheme_id: @scheme.id) required_params[:postcode] = PostcodeService.clean(required_params[:postcode]) if required_params[:postcode] required_params end diff --git a/app/controllers/organisation_relationships_controller.rb b/app/controllers/organisation_relationships_controller.rb new file mode 100644 index 000000000..f50349d20 --- /dev/null +++ b/app/controllers/organisation_relationships_controller.rb @@ -0,0 +1,142 @@ +class OrganisationRelationshipsController < ApplicationController + include Pagy::Backend + include Modules::SearchFilter + + before_action :authenticate_user! + before_action :authenticate_scope! + + def housing_providers + housing_providers = organisation.housing_providers + unpaginated_filtered_housing_providers = filtered_collection(housing_providers, search_term) + organisations = Organisation.where.not(id: @organisation.id).pluck(:id, :name) + respond_to :html + @pagy, @housing_providers = pagy(unpaginated_filtered_housing_providers) + @organisations = organisations + @searched = search_term.presence + @total_count = housing_providers.size + end + + def managing_agents + managing_agents = organisation.managing_agents + unpaginated_filtered_managing_agents = filtered_collection(managing_agents, search_term) + organisations = Organisation.where.not(id: @organisation.id).pluck(:id, :name) + respond_to :html + @pagy, @managing_agents = pagy(unpaginated_filtered_managing_agents) + @organisations = organisations + @searched = search_term.presence + @total_count = managing_agents.size + end + + def add_housing_provider + @organisations = Organisation.where.not(id: @organisation.id).pluck(:id, :name) + respond_to :html + end + + def add_managing_agent + @organisations = Organisation.where.not(id: @organisation.id).pluck(:id, :name) + respond_to :html + end + + def create_housing_provider + child_organisation = @organisation + relationship_type = OrganisationRelationship::OWNING + if params[:organisation][:related_organisation_id].empty? + @organisation.errors.add :related_organisation_id, "You must choose a housing provider" + @organisations = Organisation.where.not(id: child_organisation.id).pluck(:id, :name) + render "organisation_relationships/add_housing_provider" + return + else + parent_organisation = related_organisation + if OrganisationRelationship.exists?(child_organisation:, parent_organisation:, relationship_type:) + @organisation.errors.add :related_organisation_id, "You have already added this housing provider" + @organisations = Organisation.where.not(id: child_organisation.id).pluck(:id, :name) + render "organisation_relationships/add_housing_provider" + return + end + end + create!(child_organisation:, parent_organisation:, relationship_type:) + flash[:notice] = "#{related_organisation.name} is now one of #{current_user.data_coordinator? ? 'your' : "this organisation's"} housing providers" + redirect_to housing_providers_organisation_path + end + + def create_managing_agent + parent_organisation = @organisation + relationship_type = OrganisationRelationship::MANAGING + if params[:organisation][:related_organisation_id].empty? + @organisation.errors.add :related_organisation_id, "You must choose a managing agent" + @organisations = Organisation.where.not(id: parent_organisation.id).pluck(:id, :name) + render "organisation_relationships/add_managing_agent" + return + else + child_organisation = related_organisation + if OrganisationRelationship.exists?(child_organisation:, parent_organisation:, relationship_type:) + @organisation.errors.add :related_organisation_id, "You have already added this managing agent" + @organisations = Organisation.where.not(id: parent_organisation.id).pluck(:id, :name) + render "organisation_relationships/add_managing_agent" + return + end + end + create!(child_organisation:, parent_organisation:, relationship_type:) + flash[:notice] = "#{related_organisation.name} is now one of #{current_user.data_coordinator? ? 'your' : "this organisation's"} managing agents" + redirect_to managing_agents_organisation_path + end + + def remove_housing_provider + @target_organisation_id = target_organisation.id + end + + def delete_housing_provider + relationship = OrganisationRelationship.find_by!( + child_organisation: @organisation, + parent_organisation: target_organisation, + relationship_type: OrganisationRelationship::OWNING, + ) + relationship.destroy! + flash[:notice] = "#{target_organisation.name} is no longer one of #{current_user.data_coordinator? ? 'your' : "this organisation's"} housing providers" + redirect_to housing_providers_organisation_path + end + + def remove_managing_agent + @target_organisation_id = target_organisation.id + end + + def delete_managing_agent + relationship = OrganisationRelationship.find_by!( + parent_organisation: @organisation, + child_organisation: target_organisation, + relationship_type: OrganisationRelationship::MANAGING, + ) + relationship.destroy! + flash[:notice] = "#{target_organisation.name} is no longer one of #{current_user.data_coordinator? ? 'your' : "this organisation's"} managing agents" + redirect_to managing_agents_organisation_path + end + +private + + def create!(child_organisation:, parent_organisation:, relationship_type:) + @resource = OrganisationRelationship.new(child_organisation:, parent_organisation:, relationship_type:) + @resource.save! + end + + def organisation + @organisation ||= Organisation.find(params[:id]) + end + + def related_organisation + @related_organisation ||= Organisation.find(params[:organisation][:related_organisation_id]) + end + + def target_organisation + @target_organisation ||= Organisation.find(params[:target_organisation_id]) + end + + def search_term + params["search"] + end + + def authenticate_scope! + if current_user.organisation != organisation && !current_user.support? + render_not_found + end + end +end diff --git a/app/frontend/styles/_accessible-autocomplete.scss b/app/frontend/styles/_accessible-autocomplete.scss index 28e1b7e25..a59b38f44 100644 --- a/app/frontend/styles/_accessible-autocomplete.scss +++ b/app/frontend/styles/_accessible-autocomplete.scss @@ -5,12 +5,22 @@ .autocomplete__input { font-family: inherit; + background-image: url("data:image/svg+xml,%3Csvg class='app-search__icon' width='20' height='20' viewBox='0 0 27 27' fill='none' xmlns='http://www.w3.org/2000/svg' aria-hidden='true' focusable='false'%3E%3Ccircle cx='12.0161' cy='11.0161' r='8.51613' stroke='currentColor' stroke-width='3'%3E%3C/circle%3E%3Cline x1='17.8668' y1='17.3587' x2='26.4475' y2='25.9393' stroke='currentColor' stroke-width='3'%3E%3C/line%3E%3C/svg%3E"); + background-repeat: no-repeat; + background-size: 1em 1em; + background-position: 7px center; + text-indent: govuk-spacing(6); } .autocomplete__option__append { font-weight: bold; } +.autocomplete__hint { + font-family: inherit; + text-indent: govuk-spacing(6); +} + .autocomplete__option__hint { display: block; color: $govuk-secondary-text-colour; diff --git a/app/helpers/interruption_screen_helper.rb b/app/helpers/interruption_screen_helper.rb index 6aee9d600..7731d9425 100644 --- a/app/helpers/interruption_screen_helper.rb +++ b/app/helpers/interruption_screen_helper.rb @@ -5,7 +5,8 @@ module InterruptionScreenHelper translation_params = {} informative_text["arguments"].each do |argument| value = if argument["label"] - lettings_log.form.get_question(argument["key"], lettings_log).answer_label(lettings_log).downcase + pre_casing_value = lettings_log.form.get_question(argument["key"], lettings_log).answer_label(lettings_log) + pre_casing_value.downcase else lettings_log.public_send(argument["key"]) end diff --git a/app/helpers/locations_helper.rb b/app/helpers/locations_helper.rb index 1d2412184..e0fe9d18c 100644 --- a/app/helpers/locations_helper.rb +++ b/app/helpers/locations_helper.rb @@ -12,6 +12,11 @@ module LocationsHelper selection_options(Location.type_of_units) end + def local_authorities_selection + null_option = [OpenStruct.new(id: "", name: "Select an option")] + null_option + Location.local_authorities.map { |code, name| OpenStruct.new(code:, name:) } + end + def selection_options(resource) return [] if resource.blank? diff --git a/app/helpers/navigation_items_helper.rb b/app/helpers/navigation_items_helper.rb index 3ac422c2d..07c125a8d 100644 --- a/app/helpers/navigation_items_helper.rb +++ b/app/helpers/navigation_items_helper.rb @@ -17,6 +17,8 @@ module NavigationItemsHelper NavigationItem.new("Schemes", "/schemes", subnav_supported_housing_schemes_path?(path)), NavigationItem.new("Users", users_organisation_path(current_user.organisation), subnav_users_path?(path)), NavigationItem.new("About your organisation", "/organisations/#{current_user.organisation.id}", subnav_details_path?(path)), + (NavigationItem.new("Housing providers", housing_providers_organisation_path(current_user.organisation), housing_providers_path?(path)) if FeatureToggle.managing_owning_enabled?), + (NavigationItem.new("Managing agents", managing_agents_organisation_path(current_user.organisation), managing_agents_path?(path)) if FeatureToggle.managing_owning_enabled?), ].compact else [ @@ -24,6 +26,8 @@ module NavigationItemsHelper FeatureToggle.sales_log_enabled? ? NavigationItem.new("Sales logs", sales_logs_path, sales_logs_current?(path)) : nil, NavigationItem.new("Users", users_organisation_path(current_user.organisation), subnav_users_path?(path)), NavigationItem.new("About your organisation", "/organisations/#{current_user.organisation.id}", subnav_details_path?(path)), + (NavigationItem.new("Housing providers", housing_providers_organisation_path(current_user.organisation), housing_providers_path?(path)) if FeatureToggle.managing_owning_enabled?), + (NavigationItem.new("Managing agents", managing_agents_organisation_path(current_user.organisation), managing_agents_path?(path)) if FeatureToggle.managing_owning_enabled?), ].compact end end @@ -31,18 +35,22 @@ module NavigationItemsHelper def secondary_items(path, current_organisation_id) if current_user.organisation.holds_own_stock? [ - NavigationItem.new("Lettings logs", "/organisations/#{current_organisation_id}/lettings-logs", subnav_logs_path?(path)), - FeatureToggle.sales_log_enabled? ? NavigationItem.new("Sales logs", "/organisations/#{current_organisation_id}/sales-logs", sales_logs_current?(path)) : nil, + NavigationItem.new("Lettings logs", "/organisations/#{current_organisation_id}/lettings-logs", subnav_lettings_logs_path?(path)), + FeatureToggle.sales_log_enabled? ? NavigationItem.new("Sales logs", "/organisations/#{current_organisation_id}/sales-logs", subnav_sales_logs_path?(path)) : nil, NavigationItem.new("Schemes", "/organisations/#{current_organisation_id}/schemes", subnav_supported_housing_schemes_path?(path)), NavigationItem.new("Users", "/organisations/#{current_organisation_id}/users", subnav_users_path?(path)), NavigationItem.new("About this organisation", "/organisations/#{current_organisation_id}", subnav_details_path?(path)), + (NavigationItem.new("Housing providers", housing_providers_organisation_path(current_organisation_id), housing_providers_path?(path)) if FeatureToggle.managing_owning_enabled?), + (NavigationItem.new("Managing agents", managing_agents_organisation_path(current_organisation_id), managing_agents_path?(path)) if FeatureToggle.managing_owning_enabled?), ].compact else [ - NavigationItem.new("Lettings logs", "/organisations/#{current_organisation_id}/lettings-logs", subnav_logs_path?(path)), + NavigationItem.new("Lettings logs", "/organisations/#{current_organisation_id}/lettings-logs", subnav_lettings_logs_path?(path)), FeatureToggle.sales_log_enabled? ? NavigationItem.new("Sales logs", "/organisations/#{current_organisation_id}/sales-logs", sales_logs_current?(path)) : nil, NavigationItem.new("Users", "/organisations/#{current_organisation_id}/users", subnav_users_path?(path)), NavigationItem.new("About this organisation", "/organisations/#{current_organisation_id}", subnav_details_path?(path)), + (NavigationItem.new("Housing providers", housing_providers_organisation_path(current_organisation_id), housing_providers_path?(path)) if FeatureToggle.managing_owning_enabled?), + (NavigationItem.new("Managing agents", managing_agents_organisation_path(current_organisation_id), managing_agents_path?(path)) if FeatureToggle.managing_owning_enabled?), ].compact end end @@ -84,11 +92,23 @@ private (path.include?("/organisations") && path.include?("/users")) || path.include?("/users/") end - def subnav_logs_path?(path) + def subnav_lettings_logs_path?(path) path.include?("/organisations") && path.include?("/lettings-logs") end + def subnav_sales_logs_path?(path) + path.include?("/organisations") && path.include?("/sales-logs") + end + def subnav_details_path?(path) path.include?("/organisations") && path.include?("/details") end + + def housing_providers_path?(path) + path.include?("/housing-providers") + end + + def managing_agents_path?(path) + path.include?("/managing-agents") + end end diff --git a/app/models/bulk_upload.rb b/app/models/bulk_upload.rb index 183dc274e..fa2a7a0e9 100644 --- a/app/models/bulk_upload.rb +++ b/app/models/bulk_upload.rb @@ -35,10 +35,7 @@ class BulkUpload created_by: current_user, ) map_row(row).each do |attr_key, attr_val| - update = lettings_log.update(attr_key => attr_val) - unless update - # TODO: determine what to do when a bulk upload contains field values that don't pass validations - end + _update = lettings_log.update(attr_key => attr_val) rescue ArgumentError # TODO: determine what we want to do when bulk upload contains totally invalid data for a field. end diff --git a/app/models/derived_variables/lettings_log_variables.rb b/app/models/derived_variables/lettings_log_variables.rb index f192033f0..c76d5c2d9 100644 --- a/app/models/derived_variables/lettings_log_variables.rb +++ b/app/models/derived_variables/lettings_log_variables.rb @@ -45,7 +45,7 @@ module DerivedVariables::LettingsLogVariables self.nocharge = household_charge&.zero? ? 1 : 0 if is_renewal? self.underoccupation_benefitcap = 2 if collection_start_year == 2021 - self.referral = 0 + self.referral = 1 self.waityear = 2 if is_general_needs? # fixed term diff --git a/app/models/form/lettings/questions/scheme_id.rb b/app/models/form/lettings/questions/scheme_id.rb index 064be8032..7d7966c00 100644 --- a/app/models/form/lettings/questions/scheme_id.rb +++ b/app/models/form/lettings/questions/scheme_id.rb @@ -33,10 +33,6 @@ class Form::Lettings::Questions::SchemeId < ::Form::Question !supported_housing_selected?(lettings_log) end - def answer_selected?(lettings_log, answer) - lettings_log[id] == answer.name || lettings_log[id] == answer.resource - end - private def supported_housing_selected?(lettings_log) diff --git a/app/models/form/question.rb b/app/models/form/question.rb index 227e6079e..7f3717d4a 100644 --- a/app/models/form/question.rb +++ b/app/models/form/question.rb @@ -313,7 +313,7 @@ private sheltered: [0, 1], armedforces: [1, 4, 5], leftreg: [0], - reservist: [0], + reservist: [1], preg_occ: [1], illness: [1], underoccupation_benefitcap: [4, 5, 6], @@ -337,7 +337,7 @@ private sheltered: [2], armedforces: [2], leftreg: [1], - reservist: [1], + reservist: [2], preg_occ: [2], illness: [2], underoccupation_benefitcap: [2], @@ -389,7 +389,7 @@ private sheltered: [3], armedforces: [3], leftreg: [3], - reservist: [2], + reservist: [3], preg_occ: [3], hb: [6], }.freeze diff --git a/app/models/form/sales/pages/property_local_authority.rb b/app/models/form/sales/pages/property_local_authority.rb new file mode 100644 index 000000000..1698ace47 --- /dev/null +++ b/app/models/form/sales/pages/property_local_authority.rb @@ -0,0 +1,16 @@ +class Form::Sales::Pages::PropertyLocalAuthority < ::Form::Page + def initialize(id, hsh, subsection) + super + @id = "property_local_authority" + @header = "" + @description = "" + @subsection = subsection + end + + def questions + @questions ||= [ + Form::Sales::Questions::PropertyLocalAuthorityKnown.new(nil, nil, self), + Form::Sales::Questions::PropertyLocalAuthority.new(nil, nil, self), + ] + end +end diff --git a/app/models/form/sales/questions/property_local_authority.rb b/app/models/form/sales/questions/property_local_authority.rb new file mode 100644 index 000000000..462956eeb --- /dev/null +++ b/app/models/form/sales/questions/property_local_authority.rb @@ -0,0 +1,331 @@ +class Form::Sales::Questions::PropertyLocalAuthority < ::Form::Question + def initialize(id, hsh, page) + super + @id = "la" + @check_answer_label = "Local authority" + @header = "What is the local authority of the property?" + @type = "select" + @answer_options = ANSWER_OPTIONS + @page = page + end + + ANSWER_OPTIONS = { + "" => "Select an option", + "E07000223" => "Adur", + "E07000026" => "Allerdale", + "E07000032" => "Amber Valley", + "E07000224" => "Arun", + "E07000170" => "Ashfield", + "E07000105" => "Ashford", + "E07000200" => "Babergh", + "E09000002" => "Barking and Dagenham", + "E09000003" => "Barnet", + "E08000016" => "Barnsley", + "E07000027" => "Barrow-in-Furness", + "E07000066" => "Basildon", + "E07000084" => "Basingstoke and Deane", + "E07000171" => "Bassetlaw", + "E06000022" => "Bath and North East Somerset", + "E06000055" => "Bedford", + "E09000004" => "Bexley", + "E08000025" => "Birmingham", + "E07000129" => "Blaby", + "E06000008" => "Blackburn with Darwen", + "E06000009" => "Blackpool", + "E07000033" => "Bolsover", + "E08000001" => "Bolton", + "E07000136" => "Boston", + "E06000058" => "Bournemouth, Christchurch and Poole", + "E06000036" => "Bracknell Forest", + "E08000032" => "Bradford", + "E07000067" => "Braintree", + "E07000143" => "Breckland", + "E09000005" => "Brent", + "E07000068" => "Brentwood", + "E06000043" => "Brighton and Hove", + "E06000023" => "Bristol, City of", + "E07000144" => "Broadland", + "E09000006" => "Bromley", + "E07000234" => "Bromsgrove", + "E07000095" => "Broxbourne", + "E07000172" => "Broxtowe", + "E06000060" => "Buckinghamshire", + "E07000117" => "Burnley", + "E08000002" => "Bury", + "E08000033" => "Calderdale", + "E07000008" => "Cambridge", + "E09000007" => "Camden", + "E07000192" => "Cannock Chase", + "E07000106" => "Canterbury", + "E07000028" => "Carlisle", + "E07000069" => "Castle Point", + "E06000056" => "Central Bedfordshire", + "E07000130" => "Charnwood", + "E07000070" => "Chelmsford", + "E07000078" => "Cheltenham", + "E07000177" => "Cherwell", + "E06000049" => "Cheshire East", + "E06000050" => "Cheshire West and Chester", + "E07000034" => "Chesterfield", + "E07000225" => "Chichester", + "E07000118" => "Chorley", + "E09000001" => "City of London", + "E07000071" => "Colchester", + "E07000029" => "Copeland", + "E07000150" => "Corby", + "E06000052" => "Cornwall", + "E07000079" => "Cotswold", + "E06000047" => "County Durham", + "E08000026" => "Coventry", + "E07000163" => "Craven", + "E07000226" => "Crawley", + "E09000008" => "Croydon", + "E07000096" => "Dacorum", + "E06000005" => "Darlington", + "E07000107" => "Dartford", + "E07000151" => "Daventry", + "E06000015" => "Derby", + "E07000035" => "Derbyshire Dales", + "E08000017" => "Doncaster", + "E06000059" => "Dorset", + "E07000108" => "Dover", + "E08000027" => "Dudley", + "E09000009" => "Ealing", + "E07000009" => "East Cambridgeshire", + "E07000040" => "East Devon", + "E07000085" => "East Hampshire", + "E07000242" => "East Hertfordshire", + "E07000137" => "East Lindsey", + "E07000152" => "East Northamptonshire", + "E06000011" => "East Riding of Yorkshire", + "E07000193" => "East Staffordshire", + "E07000244" => "East Suffolk", + "E07000061" => "Eastbourne", + "E07000086" => "Eastleigh", + "E07000030" => "Eden", + "E07000207" => "Elmbridge", + "E09000010" => "Enfield", + "E07000072" => "Epping Forest", + "E07000208" => "Epsom and Ewell", + "E07000036" => "Erewash", + "E07000041" => "Exeter", + "E07000087" => "Fareham", + "E07000010" => "Fenland", + "E07000112" => "Folkestone and Hythe", + "E07000080" => "Forest of Dean", + "E07000119" => "Fylde", + "E08000037" => "Gateshead", + "E07000173" => "Gedling", + "E07000081" => "Gloucester", + "E07000088" => "Gosport", + "E07000109" => "Gravesham", + "E07000145" => "Great Yarmouth", + "E09000011" => "Greenwich", + "E07000209" => "Guildford", + "W06000002" => "Gwynedd", + "E09000012" => "Hackney", + "E06000006" => "Halton", + "E07000164" => "Hambleton", + "E09000013" => "Hammersmith and Fulham", + "E07000131" => "Harborough", + "E09000014" => "Haringey", + "E07000073" => "Harlow", + "E07000165" => "Harrogate", + "E09000015" => "Harrow", + "E07000089" => "Hart", + "E06000001" => "Hartlepool", + "E07000062" => "Hastings", + "E07000090" => "Havant", + "E09000016" => "Havering", + "E06000019" => "Herefordshire, County of", + "E07000098" => "Hertsmere", + "E07000037" => "High Peak", + "S12000017" => "Highland", + "E09000017" => "Hillingdon", + "E07000132" => "Hinckley and Bosworth", + "E07000227" => "Horsham", + "E09000018" => "Hounslow", + "E07000011" => "Huntingdonshire", + "E07000120" => "Hyndburn", + "E07000202" => "Ipswich", + "E06000046" => "Isle of Wight", + "E06000053" => "Isles of Scilly", + "E09000019" => "Islington", + "E09000020" => "Kensington and Chelsea", + "E07000153" => "Kettering", + "E07000146" => "King’s Lynn and West Norfolk", + "E06000010" => "Kingston upon Hull, City of", + "E09000021" => "Kingston upon Thames", + "E08000034" => "Kirklees", + "E08000011" => "Knowsley", + "E09000022" => "Lambeth", + "E07000121" => "Lancaster", + "E08000035" => "Leeds", + "E06000016" => "Leicester", + "E07000063" => "Lewes", + "E09000023" => "Lewisham", + "E07000194" => "Lichfield", + "E07000138" => "Lincoln", + "E08000012" => "Liverpool", + "E06000032" => "Luton", + "E07000110" => "Maidstone", + "E07000074" => "Maldon", + "E07000235" => "Malvern Hills", + "E08000003" => "Manchester", + "E07000174" => "Mansfield", + "E06000035" => "Medway", + "E07000133" => "Melton", + "E07000187" => "Mendip", + "E09000024" => "Merton", + "E07000042" => "Mid Devon", + "E07000203" => "Mid Suffolk", + "E07000228" => "Mid Sussex", + "E06000002" => "Middlesbrough", + "E06000042" => "Milton Keynes", + "E07000210" => "Mole Valley", + "E07000091" => "New Forest", + "E07000175" => "Newark and Sherwood", + "E08000021" => "Newcastle upon Tyne", + "E07000195" => "Newcastle-under-Lyme", + "E09000025" => "Newham", + "E07000043" => "North Devon", + "E07000038" => "North East Derbyshire", + "E06000012" => "North East Lincolnshire", + "E07000099" => "North Hertfordshire", + "E07000139" => "North Kesteven", + "E06000013" => "North Lincolnshire", + "E07000147" => "North Norfolk", + "E06000024" => "North Somerset", + "E08000022" => "North Tyneside", + "E07000218" => "North Warwickshire", + "E07000134" => "North West Leicestershire", + "E07000154" => "Northampton", + "E06000057" => "Northumberland", + "E07000148" => "Norwich", + "E06000018" => "Nottingham", + "E07000219" => "Nuneaton and Bedworth", + "E07000135" => "Oadby and Wigston", + "E08000004" => "Oldham", + "E07000178" => "Oxford", + "E07000122" => "Pendle", + "E06000031" => "Peterborough", + "E06000026" => "Plymouth", + "E06000044" => "Portsmouth", + "E07000123" => "Preston", + "E06000038" => "Reading", + "E09000026" => "Redbridge", + "E06000003" => "Redcar and Cleveland", + "E07000236" => "Redditch", + "E07000211" => "Reigate and Banstead", + "E07000124" => "Ribble Valley", + "E09000027" => "Richmond upon Thames", + "E07000166" => "Richmondshire", + "E08000005" => "Rochdale", + "E07000075" => "Rochford", + "E07000125" => "Rossendale", + "E07000064" => "Rother", + "E08000018" => "Rotherham", + "E07000220" => "Rugby", + "E07000212" => "Runnymede", + "E07000176" => "Rushcliffe", + "E07000092" => "Rushmoor", + "E06000017" => "Rutland", + "E07000167" => "Ryedale", + "E08000006" => "Salford", + "E08000028" => "Sandwell", + "E07000168" => "Scarborough", + "E07000188" => "Sedgemoor", + "E08000014" => "Sefton", + "E07000169" => "Selby", + "E07000111" => "Sevenoaks", + "E08000019" => "Sheffield", + "E06000051" => "Shropshire", + "E06000039" => "Slough", + "E08000029" => "Solihull", + "E07000246" => "Somerset West and Taunton", + "E07000012" => "South Cambridgeshire", + "E07000039" => "South Derbyshire", + "E06000025" => "South Gloucestershire", + "E07000044" => "South Hams", + "E07000140" => "South Holland", + "E07000141" => "South Kesteven", + "E07000031" => "South Lakeland", + "E07000149" => "South Norfolk", + "E07000155" => "South Northamptonshire", + "E07000179" => "South Oxfordshire", + "E07000126" => "South Ribble", + "E07000189" => "South Somerset", + "E07000196" => "South Staffordshire", + "E08000023" => "South Tyneside", + "E06000045" => "Southampton", + "E06000033" => "Southend-on-Sea", + "E09000028" => "Southwark", + "E07000213" => "Spelthorne", + "E07000240" => "St Albans", + "E08000013" => "St. Helens", + "E07000197" => "Stafford", + "E07000198" => "Staffordshire Moorlands", + "E07000243" => "Stevenage", + "E08000007" => "Stockport", + "E06000004" => "Stockton-on-Tees", + "E06000021" => "Stoke-on-Trent", + "E07000221" => "Stratford-on-Avon", + "E07000082" => "Stroud", + "E08000024" => "Sunderland", + "E07000214" => "Surrey Heath", + "E09000029" => "Sutton", + "E07000113" => "Swale", + "E06000030" => "Swindon", + "E08000008" => "Tameside", + "E07000199" => "Tamworth", + "E07000215" => "Tandridge", + "E07000045" => "Teignbridge", + "E06000020" => "Telford and Wrekin", + "E07000076" => "Tendring", + "E07000093" => "Test Valley", + "E07000083" => "Tewkesbury", + "E07000114" => "Thanet", + "E07000102" => "Three Rivers", + "E06000034" => "Thurrock", + "E07000115" => "Tonbridge and Malling", + "E06000027" => "Torbay", + "E07000046" => "Torridge", + "E09000030" => "Tower Hamlets", + "E08000009" => "Trafford", + "E07000116" => "Tunbridge Wells", + "E07000077" => "Uttlesford", + "E07000180" => "Vale of White Horse", + "E08000036" => "Wakefield", + "E08000030" => "Walsall", + "E09000031" => "Waltham Forest", + "E09000032" => "Wandsworth", + "E06000007" => "Warrington", + "E07000222" => "Warwick", + "E07000103" => "Watford", + "E07000216" => "Waverley", + "E07000065" => "Wealden", + "E07000156" => "Wellingborough", + "E07000241" => "Welwyn Hatfield", + "E06000037" => "West Berkshire", + "E07000047" => "West Devon", + "E07000127" => "West Lancashire", + "E07000142" => "West Lindsey", + "E07000181" => "West Oxfordshire", + "E07000245" => "West Suffolk", + "E09000033" => "Westminster", + "E08000010" => "Wigan", + "E06000054" => "Wiltshire", + "E07000094" => "Winchester", + "E06000040" => "Windsor and Maidenhead", + "E08000015" => "Wirral", + "E07000217" => "Woking", + "E06000041" => "Wokingham", + "E08000031" => "Wolverhampton", + "E07000237" => "Worcester", + "E07000229" => "Worthing", + "E07000238" => "Wychavon", + "E07000128" => "Wyre", + "E07000239" => "Wyre Forest", + "E06000014" => "York", + }.freeze +end diff --git a/app/models/form/sales/questions/property_local_authority_known.rb b/app/models/form/sales/questions/property_local_authority_known.rb new file mode 100644 index 000000000..11ebeca6a --- /dev/null +++ b/app/models/form/sales/questions/property_local_authority_known.rb @@ -0,0 +1,24 @@ +class Form::Sales::Questions::PropertyLocalAuthorityKnown < ::Form::Question + def initialize(id, hsh, page) + super + @id = "la_known" + @check_answer_label = "Local authority known" + @header = "Do you know the local authority of the property?" + @type = "radio" + @answer_options = ANSWER_OPTIONS + @conditional_for = { "la" => [1] } + @hidden_in_check_answers = { + "depends_on" => [ + { + "la_known" => 1, + }, + ], + } + @page = page + end + + ANSWER_OPTIONS = { + "1" => { "value" => "Yes" }, + "0" => { "value" => "No" }, + }.freeze +end diff --git a/app/models/form/sales/subsections/property_information.rb b/app/models/form/sales/subsections/property_information.rb index 3d40db26d..8f47873c6 100644 --- a/app/models/form/sales/subsections/property_information.rb +++ b/app/models/form/sales/subsections/property_information.rb @@ -13,6 +13,7 @@ class Form::Sales::Subsections::PropertyInformation < ::Form::Subsection Form::Sales::Pages::PropertyBuildingType.new(nil, nil, self), Form::Sales::Pages::PropertyUnitType.new(nil, nil, self), Form::Sales::Pages::PropertyPostcode.new(nil, nil, self), + Form::Sales::Pages::PropertyLocalAuthority.new(nil, nil, self), ] end end diff --git a/app/models/la_rent_range.rb b/app/models/la_rent_range.rb index ad1d20b57..7a04f3356 100644 --- a/app/models/la_rent_range.rb +++ b/app/models/la_rent_range.rb @@ -1,2 +1,3 @@ class LaRentRange < ApplicationRecord + MAX_BEDS = 4 end diff --git a/app/models/lettings_log.rb b/app/models/lettings_log.rb index 9e38138eb..f09fd1ebd 100644 --- a/app/models/lettings_log.rb +++ b/app/models/lettings_log.rb @@ -435,13 +435,19 @@ class LettingsLog < Log Csv::LettingsLogCsvService.new(user).to_csv end + def beds_for_la_rent_range + return 0 if is_supported_housing? + + beds.nil? ? nil : [beds, LaRentRange::MAX_BEDS].min + end + def soft_min_for_period - soft_min = LaRentRange.find_by(start_year: collection_start_year, la:, beds:, lettype:).soft_min + soft_min = LaRentRange.find_by(start_year: collection_start_year, la:, beds: beds_for_la_rent_range, lettype:).soft_min "#{soft_value_for_period(soft_min)} #{SUFFIX_FROM_PERIOD[period].presence || 'every week'}" end def soft_max_for_period - soft_max = LaRentRange.find_by(start_year: collection_start_year, la:, beds:, lettype:).soft_max + soft_max = LaRentRange.find_by(start_year: collection_start_year, la:, beds: beds_for_la_rent_range, lettype:).soft_max "#{soft_value_for_period(soft_max)} #{SUFFIX_FROM_PERIOD[period].presence || 'every week'}" end diff --git a/app/models/location.rb b/app/models/location.rb index c89ff0236..40a115d43 100644 --- a/app/models/location.rb +++ b/app/models/location.rb @@ -17,6 +17,327 @@ class Location < ApplicationRecord scope :started, -> { where("startdate <= ?", Time.zone.today).or(where(startdate: nil)) } scope :active, -> { where(confirmed: true).and(started) } + LOCAL_AUTHORITIES = { + "E07000223": "Adur", + "E07000026": "Allerdale", + "E07000032": "Amber Valley", + "E07000224": "Arun", + "E07000170": "Ashfield", + "E07000105": "Ashford", + "E07000200": "Babergh", + "E09000002": "Barking and Dagenham", + "E09000003": "Barnet", + "E08000016": "Barnsley", + "E07000027": "Barrow-in-Furness", + "E07000066": "Basildon", + "E07000084": "Basingstoke and Deane", + "E07000171": "Bassetlaw", + "E06000022": "Bath and North East Somerset", + "E06000055": "Bedford", + "E09000004": "Bexley", + "E08000025": "Birmingham", + "E07000129": "Blaby", + "E06000008": "Blackburn with Darwen", + "E06000009": "Blackpool", + "E07000033": "Bolsover", + "E08000001": "Bolton", + "E07000136": "Boston", + "E06000058": "Bournemouth, Christchurch and Poole", + "E06000036": "Bracknell Forest", + "E08000032": "Bradford", + "E07000067": "Braintree", + "E07000143": "Breckland", + "E09000005": "Brent", + "E07000068": "Brentwood", + "E06000043": "Brighton and Hove", + "E06000023": "Bristol, City of", + "E07000144": "Broadland", + "E09000006": "Bromley", + "E07000234": "Bromsgrove", + "E07000095": "Broxbourne", + "E07000172": "Broxtowe", + "E06000060": "Buckinghamshire", + "E07000117": "Burnley", + "E08000002": "Bury", + "E08000033": "Calderdale", + "E07000008": "Cambridge", + "E09000007": "Camden", + "E07000192": "Cannock Chase", + "E07000106": "Canterbury", + "E07000028": "Carlisle", + "E07000069": "Castle Point", + "E06000056": "Central Bedfordshire", + "E07000130": "Charnwood", + "E07000070": "Chelmsford", + "E07000078": "Cheltenham", + "E07000177": "Cherwell", + "E06000049": "Cheshire East", + "E06000050": "Cheshire West and Chester", + "E07000034": "Chesterfield", + "E07000225": "Chichester", + "E07000118": "Chorley", + "E09000001": "City of London", + "E07000071": "Colchester", + "E07000029": "Copeland", + "E07000150": "Corby", + "E06000052": "Cornwall", + "E07000079": "Cotswold", + "E06000047": "County Durham", + "E08000026": "Coventry", + "E07000163": "Craven", + "E07000226": "Crawley", + "E09000008": "Croydon", + "E07000096": "Dacorum", + "E06000005": "Darlington", + "E07000107": "Dartford", + "E07000151": "Daventry", + "E06000015": "Derby", + "E07000035": "Derbyshire Dales", + "E08000017": "Doncaster", + "E06000059": "Dorset", + "E07000108": "Dover", + "E08000027": "Dudley", + "E09000009": "Ealing", + "E07000009": "East Cambridgeshire", + "E07000040": "East Devon", + "E07000085": "East Hampshire", + "E07000242": "East Hertfordshire", + "E07000137": "East Lindsey", + "E07000152": "East Northamptonshire", + "E06000011": "East Riding of Yorkshire", + "E07000193": "East Staffordshire", + "E07000244": "East Suffolk", + "E07000061": "Eastbourne", + "E07000086": "Eastleigh", + "E07000030": "Eden", + "E07000207": "Elmbridge", + "E09000010": "Enfield", + "E07000072": "Epping Forest", + "E07000208": "Epsom and Ewell", + "E07000036": "Erewash", + "E07000041": "Exeter", + "E07000087": "Fareham", + "E07000010": "Fenland", + "E07000112": "Folkestone and Hythe", + "E07000080": "Forest of Dean", + "E07000119": "Fylde", + "E08000037": "Gateshead", + "E07000173": "Gedling", + "E07000081": "Gloucester", + "E07000088": "Gosport", + "E07000109": "Gravesham", + "E07000145": "Great Yarmouth", + "E09000011": "Greenwich", + "E07000209": "Guildford", + "W06000002": "Gwynedd", + "E09000012": "Hackney", + "E06000006": "Halton", + "E07000164": "Hambleton", + "E09000013": "Hammersmith and Fulham", + "E07000131": "Harborough", + "E09000014": "Haringey", + "E07000073": "Harlow", + "E07000165": "Harrogate", + "E09000015": "Harrow", + "E07000089": "Hart", + "E06000001": "Hartlepool", + "E07000062": "Hastings", + "E07000090": "Havant", + "E09000016": "Havering", + "E06000019": "Herefordshire, County of", + "E07000098": "Hertsmere", + "E07000037": "High Peak", + "S12000017": "Highland", + "E09000017": "Hillingdon", + "E07000132": "Hinckley and Bosworth", + "E07000227": "Horsham", + "E09000018": "Hounslow", + "E07000011": "Huntingdonshire", + "E07000120": "Hyndburn", + "E07000202": "Ipswich", + "E06000046": "Isle of Wight", + "E06000053": "Isles of Scilly", + "E09000019": "Islington", + "E09000020": "Kensington and Chelsea", + "E07000153": "Kettering", + "E07000146": "King’s Lynn and West Norfolk", + "E06000010": "Kingston upon Hull, City of", + "E09000021": "Kingston upon Thames", + "E08000034": "Kirklees", + "E08000011": "Knowsley", + "E09000022": "Lambeth", + "E07000121": "Lancaster", + "E08000035": "Leeds", + "E06000016": "Leicester", + "E07000063": "Lewes", + "E09000023": "Lewisham", + "E07000194": "Lichfield", + "E07000138": "Lincoln", + "E08000012": "Liverpool", + "E06000032": "Luton", + "E07000110": "Maidstone", + "E07000074": "Maldon", + "E07000235": "Malvern Hills", + "E08000003": "Manchester", + "E07000174": "Mansfield", + "E06000035": "Medway", + "E07000133": "Melton", + "E07000187": "Mendip", + "E09000024": "Merton", + "E07000042": "Mid Devon", + "E07000203": "Mid Suffolk", + "E07000228": "Mid Sussex", + "E06000002": "Middlesbrough", + "E06000042": "Milton Keynes", + "E07000210": "Mole Valley", + "E07000091": "New Forest", + "E07000175": "Newark and Sherwood", + "E08000021": "Newcastle upon Tyne", + "E07000195": "Newcastle-under-Lyme", + "E09000025": "Newham", + "E07000043": "North Devon", + "E07000038": "North East Derbyshire", + "E06000012": "North East Lincolnshire", + "E07000099": "North Hertfordshire", + "E07000139": "North Kesteven", + "E06000013": "North Lincolnshire", + "E07000147": "North Norfolk", + "E06000024": "North Somerset", + "E08000022": "North Tyneside", + "E07000218": "North Warwickshire", + "E07000134": "North West Leicestershire", + "E07000154": "Northampton", + "E06000057": "Northumberland", + "E07000148": "Norwich", + "E06000018": "Nottingham", + "E07000219": "Nuneaton and Bedworth", + "E07000135": "Oadby and Wigston", + "E08000004": "Oldham", + "E07000178": "Oxford", + "E07000122": "Pendle", + "E06000031": "Peterborough", + "E06000026": "Plymouth", + "E06000044": "Portsmouth", + "E07000123": "Preston", + "E06000038": "Reading", + "E09000026": "Redbridge", + "E06000003": "Redcar and Cleveland", + "E07000236": "Redditch", + "E07000211": "Reigate and Banstead", + "E07000124": "Ribble Valley", + "E09000027": "Richmond upon Thames", + "E07000166": "Richmondshire", + "E08000005": "Rochdale", + "E07000075": "Rochford", + "E07000125": "Rossendale", + "E07000064": "Rother", + "E08000018": "Rotherham", + "E07000220": "Rugby", + "E07000212": "Runnymede", + "E07000176": "Rushcliffe", + "E07000092": "Rushmoor", + "E06000017": "Rutland", + "E07000167": "Ryedale", + "E08000006": "Salford", + "E08000028": "Sandwell", + "E07000168": "Scarborough", + "E07000188": "Sedgemoor", + "E08000014": "Sefton", + "E07000169": "Selby", + "E07000111": "Sevenoaks", + "E08000019": "Sheffield", + "E06000051": "Shropshire", + "E06000039": "Slough", + "E08000029": "Solihull", + "E07000246": "Somerset West and Taunton", + "E07000012": "South Cambridgeshire", + "E07000039": "South Derbyshire", + "E06000025": "South Gloucestershire", + "E07000044": "South Hams", + "E07000140": "South Holland", + "E07000141": "South Kesteven", + "E07000031": "South Lakeland", + "E07000149": "South Norfolk", + "E07000155": "South Northamptonshire", + "E07000179": "South Oxfordshire", + "E07000126": "South Ribble", + "E07000189": "South Somerset", + "E07000196": "South Staffordshire", + "E08000023": "South Tyneside", + "E06000045": "Southampton", + "E06000033": "Southend-on-Sea", + "E09000028": "Southwark", + "E07000213": "Spelthorne", + "E07000240": "St Albans", + "E08000013": "St. Helens", + "E07000197": "Stafford", + "E07000198": "Staffordshire Moorlands", + "E07000243": "Stevenage", + "E08000007": "Stockport", + "E06000004": "Stockton-on-Tees", + "E06000021": "Stoke-on-Trent", + "E07000221": "Stratford-on-Avon", + "E07000082": "Stroud", + "E08000024": "Sunderland", + "E07000214": "Surrey Heath", + "E09000029": "Sutton", + "E07000113": "Swale", + "E06000030": "Swindon", + "E08000008": "Tameside", + "E07000199": "Tamworth", + "E07000215": "Tandridge", + "E07000045": "Teignbridge", + "E06000020": "Telford and Wrekin", + "E07000076": "Tendring", + "E07000093": "Test Valley", + "E07000083": "Tewkesbury", + "E07000114": "Thanet", + "E07000102": "Three Rivers", + "E06000034": "Thurrock", + "E07000115": "Tonbridge and Malling", + "E06000027": "Torbay", + "E07000046": "Torridge", + "E09000030": "Tower Hamlets", + "E08000009": "Trafford", + "E07000116": "Tunbridge Wells", + "E07000077": "Uttlesford", + "E07000180": "Vale of White Horse", + "E08000036": "Wakefield", + "E08000030": "Walsall", + "E09000031": "Waltham Forest", + "E09000032": "Wandsworth", + "E06000007": "Warrington", + "E07000222": "Warwick", + "E07000103": "Watford", + "E07000216": "Waverley", + "E07000065": "Wealden", + "E07000156": "Wellingborough", + "E07000241": "Welwyn Hatfield", + "E06000037": "West Berkshire", + "E07000047": "West Devon", + "E07000127": "West Lancashire", + "E07000142": "West Lindsey", + "E07000181": "West Oxfordshire", + "E07000245": "West Suffolk", + "E09000033": "Westminster", + "E08000010": "Wigan", + "E06000054": "Wiltshire", + "E07000094": "Winchester", + "E06000040": "Windsor and Maidenhead", + "E08000015": "Wirral", + "E07000217": "Woking", + "E06000041": "Wokingham", + "E08000031": "Wolverhampton", + "E07000237": "Worcester", + "E07000229": "Worthing", + "E07000238": "Wychavon", + "E07000128": "Wyre", + "E07000239": "Wyre Forest", + "E06000014": "York", + }.freeze + + enum local_authorities: LOCAL_AUTHORITIES + MOBILITY_TYPE = { "Wheelchair-user standard": "W", "Fitted with equipment and adaptations": "A", diff --git a/app/models/organisation.rb b/app/models/organisation.rb index 9eb039ab1..e420ca9d8 100644 --- a/app/models/organisation.rb +++ b/app/models/organisation.rb @@ -13,9 +13,13 @@ class Organisation < ApplicationRecord has_many :child_organisation_relationships, foreign_key: :parent_organisation_id, class_name: "OrganisationRelationship" has_many :child_organisations, through: :child_organisation_relationships + has_many :housing_provider_relationships, -> { where(relationship_type: OrganisationRelationship::OWNING) }, foreign_key: :child_organisation_id, class_name: "OrganisationRelationship" + has_many :housing_providers, through: :housing_provider_relationships, source: :parent_organisation + has_many :managing_agent_relationships, -> { where(relationship_type: OrganisationRelationship::MANAGING) }, foreign_key: :parent_organisation_id, class_name: "OrganisationRelationship" + has_many :managing_agents, through: :managing_agent_relationships, source: :child_organisation + scope :search_by_name, ->(name) { where("name ILIKE ?", "%#{name}%") } scope :search_by, ->(param) { search_by_name(param) } - has_paper_trail auto_strip_attributes :name @@ -82,9 +86,9 @@ class Organisation < ApplicationRecord { name: "Registration number", value: housing_registration_no || "", editable: false }, { name: "Rent_periods", value: rent_period_labels, editable: false, format: :bullet }, { name: "Owns housing stock", value: holds_own_stock ? "Yes" : "No", editable: false }, - { name: "Other stock owners", value: other_stock_owners, editable: false }, - { name: "Managing agents", value: managing_agents, editable: false }, + ({ name: "Other stock owners", value: other_stock_owners, editable: false } unless FeatureToggle.managing_owning_enabled?), + ({ name: "Managing agents", value: managing_agents_label, editable: false } unless FeatureToggle.managing_owning_enabled?), { name: "Data protection agreement", value: data_protection_agreement_string, editable: false }, - ] + ].compact end end diff --git a/app/models/organisation_relationship.rb b/app/models/organisation_relationship.rb index 034fc5d0e..acda8d2c4 100644 --- a/app/models/organisation_relationship.rb +++ b/app/models/organisation_relationship.rb @@ -1,4 +1,13 @@ class OrganisationRelationship < ApplicationRecord belongs_to :child_organisation, class_name: "Organisation" belongs_to :parent_organisation, class_name: "Organisation" + + OWNING = "owning".freeze + MANAGING = "managing".freeze + RELATIONSHIP_TYPE = { + OWNING => 0, + MANAGING => 1, + }.freeze + + enum relationship_type: RELATIONSHIP_TYPE end diff --git a/app/models/validations/financial_validations.rb b/app/models/validations/financial_validations.rb index 3d6542953..4dec7bb78 100644 --- a/app/models/validations/financial_validations.rb +++ b/app/models/validations/financial_validations.rb @@ -181,15 +181,31 @@ private return if record.startdate.blank? collection_year = record.collection_start_year - rent_range = LaRentRange.find_by(start_year: collection_year, la: record.la, beds: record.beds, lettype: record.lettype) + + rent_range = LaRentRange.find_by(start_year: collection_year, la: record.la, beds: record.beds_for_la_rent_range, lettype: record.lettype) if rent_range.present? && !weekly_value_in_range(record, "brent", rent_range.hard_min, rent_range.hard_max) && record.brent.present? && record.period.present? - record.errors.add :brent, I18n.t("validations.financial.brent.not_in_range") - record.errors.add :beds, I18n.t("validations.financial.brent.beds.not_in_range") - record.errors.add :la, I18n.t("validations.financial.brent.la.not_in_range") - record.errors.add :rent_type, I18n.t("validations.financial.brent.rent_type.not_in_range") - record.errors.add :needstype, I18n.t("validations.financial.brent.needstype.not_in_range") - record.errors.add :period, I18n.t("validations.financial.brent.period.not_in_range") + if record.weekly_value(record["brent"]) < rent_range.hard_min + record.errors.add :brent, I18n.t("validations.financial.brent.below_hard_min") + record.errors.add :beds, I18n.t("validations.financial.brent.beds.below_hard_min") + record.errors.add :la, I18n.t("validations.financial.brent.la.below_hard_min") + record.errors.add :postcode_known, I18n.t("validations.financial.brent.postcode_known.below_hard_min") + record.errors.add :scheme_id, I18n.t("validations.financial.brent.scheme_id.below_hard_min") + record.errors.add :location_id, I18n.t("validations.financial.brent.location_id.below_hard_min") + record.errors.add :rent_type, I18n.t("validations.financial.brent.rent_type.below_hard_min") + record.errors.add :needstype, I18n.t("validations.financial.brent.needstype.below_hard_min") + record.errors.add :period, I18n.t("validations.financial.brent.period.below_hard_min") + elsif record.beds.blank? || record.beds < LaRentRange::MAX_BEDS + record.errors.add :brent, I18n.t("validations.financial.brent.above_hard_max") + record.errors.add :beds, I18n.t("validations.financial.brent.beds.above_hard_max") + record.errors.add :la, I18n.t("validations.financial.brent.la.above_hard_max") + record.errors.add :postcode_known, I18n.t("validations.financial.brent.postcode_known.above_hard_max") + record.errors.add :scheme_id, I18n.t("validations.financial.brent.scheme_id.above_hard_max") + record.errors.add :location_id, I18n.t("validations.financial.brent.location_id.above_hard_max") + record.errors.add :rent_type, I18n.t("validations.financial.brent.rent_type.above_hard_max") + record.errors.add :needstype, I18n.t("validations.financial.brent.needstype.above_hard_max") + record.errors.add :period, I18n.t("validations.financial.brent.period.above_hard_max") + end end end end diff --git a/app/models/validations/property_validations.rb b/app/models/validations/property_validations.rb index dc14fc8fd..d5ab8e9e0 100644 --- a/app/models/validations/property_validations.rb +++ b/app/models/validations/property_validations.rb @@ -55,8 +55,8 @@ module Validations::PropertyValidations end def validate_shared_housing_rooms(record) - if record.beds.present? && record.beds.negative? - record.errors.add :beds, I18n.t("validations.property.beds.negative") + if record.beds.present? && record.beds <= 0 + record.errors.add :beds, I18n.t("validations.property.beds.non_positive") end unless record.unittype_gn.nil? diff --git a/app/models/validations/soft_validations.rb b/app/models/validations/soft_validations.rb index dd3e94b2e..944fff022 100644 --- a/app/models/validations/soft_validations.rb +++ b/app/models/validations/soft_validations.rb @@ -28,15 +28,19 @@ module Validations::SoftValidations def rent_in_soft_min_range? return unless brent && weekly_value(brent) && startdate - rent_range = LaRentRange.find_by(start_year: collection_start_year, la:, beds:, lettype: get_lettype) + rent_range = LaRentRange.find_by(start_year: collection_start_year, la:, beds: beds_for_la_rent_range, lettype: get_lettype) rent_range.present? && weekly_value(brent).between?(rent_range.hard_min, rent_range.soft_min) end def rent_in_soft_max_range? return unless brent && weekly_value(brent) && startdate - rent_range = LaRentRange.find_by(start_year: collection_start_year, la:, beds:, lettype: get_lettype) - rent_range.present? && weekly_value(brent).between?(rent_range.soft_max, rent_range.hard_max) + rent_range = LaRentRange.find_by(start_year: collection_start_year, la:, beds: beds_for_la_rent_range, lettype: get_lettype) + if beds.present? && rent_range.present? && beds > LaRentRange::MAX_BEDS + weekly_value(brent) > rent_range.soft_max + elsif rent_range.present? + weekly_value(brent).between?(rent_range.soft_max, rent_range.hard_max) + end end (1..8).each do |person_num| diff --git a/app/services/exports/lettings_log_export_service.rb b/app/services/exports/lettings_log_export_service.rb index a7fff1d53..1819670b8 100644 --- a/app/services/exports/lettings_log_export_service.rb +++ b/app/services/exports/lettings_log_export_service.rb @@ -176,9 +176,12 @@ module Exports attribute_hash["manhcnum"] = lettings_log.managing_organisation.housing_registration_no end - # Mapping which would require a change in our data model - attribute_hash["createddate"] = attribute_hash["created_at"] - attribute_hash["uploaddate"] = attribute_hash["updated_at"] + # Covert date times to ISO 8601 + attribute_hash["createddate"] = lettings_log.created_at&.iso8601 + attribute_hash["uploaddate"] = lettings_log.updated_at&.iso8601 + attribute_hash["mrcdate"] = lettings_log.mrcdate&.iso8601 + attribute_hash["startdate"] = lettings_log.startdate&.iso8601 + attribute_hash["voiddate"] = lettings_log.voiddate&.iso8601 attribute_hash["cbl"] = 2 if attribute_hash["cbl"]&.zero? attribute_hash["cap"] = 2 if attribute_hash["cap"]&.zero? diff --git a/app/views/form/review.html.erb b/app/views/form/review.html.erb index 59e0bde40..127e52762 100644 --- a/app/views/form/review.html.erb +++ b/app/views/form/review.html.erb @@ -1,7 +1,7 @@ <% content_for :title, "Review lettings log" %> <% content_for :breadcrumbs, govuk_breadcrumbs(breadcrumbs: { "Logs" => "/logs", - "Log #{@log.id}" => "/logs/#{@log.id}", + "Log #{@log.id}" => "/lettings-logs/#{@log.id}", "Review lettings log" => "", }) %> diff --git a/app/views/locations/edit_local_authority.html.erb b/app/views/locations/edit_local_authority.html.erb index 41cf74f1b..43c351d28 100644 --- a/app/views/locations/edit_local_authority.html.erb +++ b/app/views/locations/edit_local_authority.html.erb @@ -12,12 +12,8 @@ <%= render partial: "organisations/headings", locals: { main: "What is the local authority of #{@location.postcode}?", sub: @scheme.service_name } %> - <% la_list = FormHandler.instance.current_lettings_form.get_question("la", nil).answer_options.values %> - - <% las = la_list.map { |la| OpenStruct.new(name: la) } %> - <%= f.govuk_collection_select :location_admin_district, - las, + local_authorities_selection, :name, :name, label: { hidden: true }, diff --git a/app/views/logs/index.html.erb b/app/views/logs/index.html.erb index f84a487df..431ca0f45 100644 --- a/app/views/logs/index.html.erb +++ b/app/views/logs/index.html.erb @@ -1,9 +1,13 @@ -<% item_label = format_label(@pagy.count, "log") %> +<% item_label = format_label(@pagy.count, "logs") %> <% title = format_title(@searched, "Logs", current_user, item_label, @pagy.count, nil) %> <% content_for :title, title %> -<%= render partial: "organisations/headings", locals: current_user.support? ? { main: "Logs", sub: nil } : { main: "Logs", sub: current_user.organisation.name } %> +<% if current_page?(controller: 'lettings_logs', action: 'index') %> + <%= render partial: "organisations/headings", locals: current_user.support? ? { main: "Lettings logs", sub: nil } : { main: "Lettings logs", sub: current_user.organisation.name } %> +<% elsif current_page?(controller: 'sales_logs', action: 'index') %> + <%= render partial: "organisations/headings", locals: current_user.support? ? { main: "Sales logs", sub: nil } : { main: "Sales logs", sub: current_user.organisation.name } %> +<% end %>
diff --git a/app/views/organisation_relationships/_housing_provider_list.erb b/app/views/organisation_relationships/_housing_provider_list.erb new file mode 100644 index 000000000..0aa2244f6 --- /dev/null +++ b/app/views/organisation_relationships/_housing_provider_list.erb @@ -0,0 +1,22 @@ +
+ <%= govuk_table do |table| %> + <%= table.caption(classes: %w[govuk-!-font-size-19 govuk-!-font-weight-regular]) do |caption| %> + <%= render(SearchResultCaptionComponent.new(searched:, count: pagy.count, item_label:, total_count:, item: "housing providers", path: request.path)) %> + <% end %> + <% @housing_providers.each do |housing_provider| %> + <%= table.body do |body| %> + <%= body.row do |row| %> + <% row.cell(text: housing_provider.name) %> + <% if current_user.data_coordinator? || current_user.support? %> + <% row.cell(html_attributes: { + scope: "row", + class: "govuk-!-text-align-right", + }) do %> + <%= govuk_link_to("Remove", housing_providers_remove_organisation_path(target_organisation_id: housing_provider.id)) %> + <% end %> + <% end %> + <% end %> + <% end %> + <% end %> + <% end %> +
diff --git a/app/views/organisation_relationships/_managing_agent_list.erb b/app/views/organisation_relationships/_managing_agent_list.erb new file mode 100644 index 000000000..65195033c --- /dev/null +++ b/app/views/organisation_relationships/_managing_agent_list.erb @@ -0,0 +1,22 @@ +
+ <%= govuk_table do |table| %> + <%= table.caption(classes: %w[govuk-!-font-size-19 govuk-!-font-weight-regular]) do |caption| %> + <%= render(SearchResultCaptionComponent.new(searched:, count: pagy.count, item_label:, total_count:, item: "agents", path: request.path)) %> + <% end %> + <% @managing_agents.each do |managing_agent| %> + <%= table.body do |body| %> + <%= body.row do |row| %> + <% row.cell(text: managing_agent.name) %> + <% if current_user.data_coordinator? || current_user.support? %> + <% row.cell(html_attributes: { + scope: "row", + class: "govuk-!-text-align-right", + }) do %> + <%= govuk_link_to("Remove", managing_agents_remove_organisation_path(target_organisation_id: managing_agent.id)) %> + <% end %> + <% end %> + <% end %> + <% end %> + <% end %> + <% end %> +
diff --git a/app/views/organisation_relationships/_related_organisation_select_question.html.erb b/app/views/organisation_relationships/_related_organisation_select_question.html.erb new file mode 100644 index 000000000..cc27c2b8b --- /dev/null +++ b/app/views/organisation_relationships/_related_organisation_select_question.html.erb @@ -0,0 +1,3 @@ +<% answers = question.answer_options.map { |key, value| OpenStruct.new(id: key, name: value) } %> +<%= f.govuk_collection_select :related_organisation_id, answers, :id, :name, label: { hidden: true }, "data-controller": "accessible-autocomplete" do %> +<% end %> diff --git a/app/views/organisation_relationships/add_housing_provider.html.erb b/app/views/organisation_relationships/add_housing_provider.html.erb new file mode 100644 index 000000000..3cce90db1 --- /dev/null +++ b/app/views/organisation_relationships/add_housing_provider.html.erb @@ -0,0 +1,34 @@ +<%= form_with model: @organisation, url: housing_providers_organisation_path, method: "post", local: true do |f| %> + <% if current_user.support? %> + <%= render partial: "organisations/headings", locals: { main: @organisation.name, sub: nil } %> + <%= render SubNavigationComponent.new(items: secondary_items(request.path, @organisation.id)) %> +

Add Housing Provider

+ <%= govuk_back_link(href: :back) %> + <%= render partial: "organisations/headings", locals: { main: "What is the name of this organisation's housing provider?", sub: nil } %> +

Start typing to search for a housing provider

+ <% else %> + <% content_for :before_content do %> + <%= govuk_back_link(href: :back) %> + <% end %> + <%= render partial: "organisations/headings", locals: { main: "What is the name of your housing provider?", sub: nil } %> +

Start typing to search for your housing provider

+ <% end %> + <% answer_options = { "" => "Select an option" } %> + <% @organisations.each do |organisation| %> + <% answer_options[organisation[0]] = organisation[1] %> + <% end %> + <%= render partial: "organisation_relationships/related_organisation_select_question", locals: { + question: Form::Question.new("", { "answer_options" => answer_options }, nil), + f:, + } %> + <%= f.govuk_submit "Add" %> + <%= govuk_details(summary_text: "Can't find the housing provider you're looking for?") do %> + + <% end %> +<% end %> diff --git a/app/views/organisation_relationships/add_managing_agent.html.erb b/app/views/organisation_relationships/add_managing_agent.html.erb new file mode 100644 index 000000000..bf5c380d5 --- /dev/null +++ b/app/views/organisation_relationships/add_managing_agent.html.erb @@ -0,0 +1,34 @@ +<%= form_with model: @organisation, url: managing_agents_organisation_path, method: "post", local: true do |f| %> + <% if current_user.support? %> + <%= render partial: "organisations/headings", locals: { main: @organisation.name, sub: nil } %> + <%= render SubNavigationComponent.new(items: secondary_items(request.path, @organisation.id)) %> +

Add Managing Agent

+ <%= govuk_back_link(href: :back) %> + <%= render partial: "organisations/headings", locals: { main: "What is the name of this organisation's managing agent?", sub: nil } %> +

Start typing to search for a managing agent

+ <% else %> + <% content_for :before_content do %> + <%= govuk_back_link(href: :back) %> + <% end %> + <%= render partial: "organisations/headings", locals: { main: "What is the name of your managing agent?", sub: nil } %> +

Start typing to search for your managing agent

+ <% end %> + <% answer_options = { "" => "Select an option" } %> + <% @organisations.each do |organisation| %> + <% answer_options[organisation[0]] = organisation[1] %> + <% end %> + <%= render partial: "organisation_relationships/related_organisation_select_question", locals: { + question: Form::Question.new("", { "answer_options" => answer_options }, nil), + f:, + } %> + <%= f.govuk_submit "Add" %> + <%= govuk_details(summary_text: "Can't find the managing agent you're looking for?") do %> + + <% end %> +<% end %> diff --git a/app/views/organisation_relationships/housing_providers.html.erb b/app/views/organisation_relationships/housing_providers.html.erb new file mode 100644 index 000000000..3598cb280 --- /dev/null +++ b/app/views/organisation_relationships/housing_providers.html.erb @@ -0,0 +1,24 @@ +<% item_label = format_label(@pagy.count, "housing providers") %> +<% if current_user.support? %> + <%= render partial: "organisations/headings", locals: { main: @organisation.name, sub: nil } %> + <%= render SubNavigationComponent.new(items: secondary_items(request.path, @organisation.id)) %> +

Housing Providers

+

This organisation can submit logs for its housing providers.

+ <% if @total_count == 0 %> +

This organisation does not currently have any housing providers.

+ <% end %> +<% else %> + <%= render partial: "organisations/headings", locals: { main: "Your housing providers", sub: current_user.organisation.name } %> +

Your organisation can submit logs for its housing providers.

+ <% if @total_count == 0 %> +

You do not currently have any housing providers.

+ <% end %> +<% end %> +<% if current_user.support? || current_user.data_coordinator? %> + <%= govuk_button_link_to "Add a housing provider", housing_providers_add_organisation_path, html: { method: :get } %> +<% end %> +<% if @total_count != 0 %> + <%= render SearchComponent.new(current_user:, search_label: "Search for a housing provider", value: @searched) %> + <%= render partial: "organisation_relationships/housing_provider_list", locals: { index: @housing_providers, title: "Housing providers", pagy: @pagy, searched: @searched, item_label:, total_count: @total_count } %> + <%= render partial: "pagy/nav", locals: { pagy: @pagy, item_name: "housing providers" } %> +<% end %> diff --git a/app/views/organisation_relationships/managing_agents.html.erb b/app/views/organisation_relationships/managing_agents.html.erb new file mode 100644 index 000000000..2f17f0a7e --- /dev/null +++ b/app/views/organisation_relationships/managing_agents.html.erb @@ -0,0 +1,27 @@ +<% item_label = format_label(@pagy.count, "managing agents") %> + +<% if current_user.support? %> + <%= render partial: "organisations/headings", locals: { main: @organisation.name, sub: nil } %> + <%= render SubNavigationComponent.new( + items: secondary_items(request.path, @organisation.id), + ) %> +

Managing Agents

+

A managing agent can submit logs for this organisation.

+ <% if @total_count == 0 %> +

This organisation does not currently have any managing agents.

+ <% end %> +<% else %> + <%= render partial: "organisations/headings", locals: { main: "This organisation managing agents", sub: current_user.organisation.name } %> +

A managing agent can submit logs for this organisation.

+ <% if @total_count == 0 %> +

This organisation does not currently have any managing agents.

+ <% end %> +<% end %> +<% if current_user.support? || current_user.data_coordinator? %> + <%= govuk_button_link_to "Add a managing agent", managing_agents_add_organisation_path, html: { method: :get } %> +<% end %> +<% if @total_count != 0 %> + <%= render SearchComponent.new(current_user:, search_label: "Search for a managing agent", value: @searched) %> + <%= render partial: "organisation_relationships/managing_agent_list", locals: { index: @managing_agents, title: "Managing agents", pagy: @pagy, searched: @searched, item_label:, total_count: @total_count } %> + <%= render partial: "pagy/nav", locals: { pagy: @pagy, item_name: "Managing agents" } %> +<% end %> diff --git a/app/views/organisation_relationships/remove_housing_provider.html.erb b/app/views/organisation_relationships/remove_housing_provider.html.erb new file mode 100644 index 000000000..301392753 --- /dev/null +++ b/app/views/organisation_relationships/remove_housing_provider.html.erb @@ -0,0 +1,21 @@ +<%= form_with url: housing_providers_organisation_path(target_organisation_id: @target_organisation.id), method: "delete", local: true do |f| %> + <% if current_user.support? %> + <%= render partial: "organisations/headings", locals: { main: @organisation.name, sub: nil } %> + <%= render SubNavigationComponent.new(items: secondary_items(request.path, @organisation.id)) %> +

Remove Housing Provider

+ <% end %> + <% if current_user.support? %> + <%= govuk_back_link(href: :back) %> + <%= render partial: "organisations/headings", locals: { main: "You are removing ‘#{@target_organisation.name}’ from this organisation's housing providers", sub: nil } %> + <% else %> + <% content_for :before_content do %> + <%= govuk_back_link(href: :back) %> + <% end %> + <%= render partial: "organisations/headings", locals: { main: "You are removing ‘#{@target_organisation.name}’ from your organisation's housing providers", sub: nil } %> + <% end %> + <%= govuk_warning_text text: "You will no longer be able to submit logs for #{@target_organisation.name}" %> +
+ <%= f.govuk_submit "Confirm" %> + <%= govuk_button_link_to "Cancel", housing_providers_organisation_path(current_user.organisation), html: { method: :get }, secondary: true %> +
+<% end %> diff --git a/app/views/organisation_relationships/remove_managing_agent.html.erb b/app/views/organisation_relationships/remove_managing_agent.html.erb new file mode 100644 index 000000000..2862acf64 --- /dev/null +++ b/app/views/organisation_relationships/remove_managing_agent.html.erb @@ -0,0 +1,21 @@ +<%= form_with url: managing_agents_organisation_path(target_organisation_id: @target_organisation.id), method: "delete", local: true do |f| %> + <% if current_user.support? %> + <%= render partial: "organisations/headings", locals: { main: @organisation.name, sub: nil } %> + <%= render SubNavigationComponent.new(items: secondary_items(request.path, @organisation.id)) %> +

Remove Managing Agent

+ <% end %> + <% if current_user.support? %> + <%= govuk_back_link(href: :back) %> + <%= render partial: "organisations/headings", locals: { main: "You are removing ‘#{@target_organisation.name}’ from this organisation's managing agents", sub: nil } %> + <% else %> + <% content_for :before_content do %> + <%= govuk_back_link(href: :back) %> + <% end %> + <%= render partial: "organisations/headings", locals: { main: "You are removing ‘#{@target_organisation.name}’ from your organisation's managing agents", sub: nil } %> + <% end %> + <%= govuk_warning_text text: "#{@target_organisation.name} will no longer be able to submit logs for you" %> +
+ <%= f.govuk_submit "Confirm" %> + <%= govuk_button_link_to "Cancel", managing_agents_organisation_path(current_user.organisation), html: { method: :get }, secondary: true %> +
+<% end %> diff --git a/app/views/organisations/index.html.erb b/app/views/organisations/index.html.erb index b81922c5e..75a4d799c 100644 --- a/app/views/organisations/index.html.erb +++ b/app/views/organisations/index.html.erb @@ -1,4 +1,4 @@ -<% item_label = format_label(@pagy.count, "organisation") %> +<% item_label = format_label(@pagy.count, "organisations") %> <% title = format_title(@searched, "Organisations", current_user, item_label, @pagy.count, nil) %> <% content_for :title, title %> diff --git a/app/views/organisations/logs.html.erb b/app/views/organisations/logs.html.erb index f954a0839..94fe8e9bc 100644 --- a/app/views/organisations/logs.html.erb +++ b/app/views/organisations/logs.html.erb @@ -1,4 +1,4 @@ -<% item_label = format_label(@pagy.count, "log") %> +<% item_label = format_label(@pagy.count, "logs") %> <% title = format_title(@searched, "Logs", current_user, item_label, @pagy.count, @organisation.name) %> <% content_for :title, title %> diff --git a/config/forms/2021_2022.json b/config/forms/2021_2022.json index 801ab5717..a180bcc67 100644 --- a/config/forms/2021_2022.json +++ b/config/forms/2021_2022.json @@ -5759,16 +5759,16 @@ "type": "radio", "check_answer_label": "Person seriously injured or ill as result of serving in UK armed forces", "answer_options": { - "0": { + "1": { "value": "Yes" }, - "1": { + "2": { "value": "No" }, "divider": { "value": true }, - "2": { + "3": { "value": "Person prefers not to say" } } @@ -8430,11 +8430,6 @@ "informative_text": { "translation": "soft_validations.rent.min.hint_text", "arguments": [ - { - "key": "la", - "label": true, - "i18n_template": "la" - }, { "key": "soft_min_for_period", "label": false, @@ -8487,11 +8482,6 @@ "informative_text": { "translation": "soft_validations.rent.max.hint_text", "arguments": [ - { - "key": "la", - "label": true, - "i18n_template": "la" - }, { "key": "soft_max_for_period", "label": false, diff --git a/config/forms/2022_2023.json b/config/forms/2022_2023.json index 490d28e12..76595bdc5 100644 --- a/config/forms/2022_2023.json +++ b/config/forms/2022_2023.json @@ -5761,16 +5761,16 @@ "type": "radio", "check_answer_label": "Person seriously injured or ill as result of serving in UK armed forces", "answer_options": { - "0": { + "1": { "value": "Yes" }, - "1": { + "2": { "value": "No" }, "divider": { "value": true }, - "2": { + "3": { "value": "Person prefers not to say" } } @@ -8386,11 +8386,6 @@ "informative_text": { "translation": "soft_validations.rent.min.hint_text", "arguments": [ - { - "key": "la", - "label": true, - "i18n_template": "la" - }, { "key": "soft_min_for_period", "label": false, @@ -8443,11 +8438,6 @@ "informative_text": { "translation": "soft_validations.rent.max.hint_text", "arguments": [ - { - "key": "la", - "label": true, - "i18n_template": "la" - }, { "key": "soft_max_for_period", "label": false, diff --git a/config/initializers/feature_toggle.rb b/config/initializers/feature_toggle.rb index 0e01531ca..ca4315e9e 100644 --- a/config/initializers/feature_toggle.rb +++ b/config/initializers/feature_toggle.rb @@ -8,4 +8,10 @@ class FeatureToggle false end + + def self.managing_owning_enabled? + return true unless Rails.env.production? + + false + end end diff --git a/config/locales/en.yml b/config/locales/en.yml index 8b9a12286..003f573dc 100644 --- a/config/locales/en.yml +++ b/config/locales/en.yml @@ -146,7 +146,7 @@ en: one_seven_bedroom_shared: "A shared house must have 1 to 7 bedrooms" one_three_bedroom_single_tenant_shared: "A shared house with fewer than two tenants must have 1 to 3 bedrooms" beds: - negative: "Number of bedrooms has to be greater than 0" + non_positive: "Number of bedrooms has to be greater than 0" over_max: "Number of bedrooms cannot be more than 12" financial: @@ -188,17 +188,32 @@ en: general_needs: "Enter a value for the support charge between £0 and £60 per week if the landlord is a local authority and it is a general needs letting" supported_housing: "Enter a value for the support charge between £0 and £120 per week if the landlord is a local authority and it is a supported housing letting" brent: - not_in_range: "Basic rent is outside of the expected range based on the lettings type, local authority and number of bedrooms" + below_hard_min: "Rent is below the absolute minimum expected for a property of this type. Please check the rent, rent period, local authority and (if general needs) number of bedrooms" + above_hard_max: "Rent is higher than the absolute maximum expected for a property of this type. Please check the rent, rent period, local authority and (if general needs) number of bedrooms" + scheme_id: + below_hard_min: "Rent is below the absolute minimum expected for a property of this type. Please check the rent, rent period and local authority" + above_hard_max: "Rent is higher than the absolute maximum expected for a property of this type. Please check the rent, rent period and local authority" + location_id: + below_hard_min: "Rent is below the absolute minimum expected for a property of this type. Please check the rent, rent period and local authority" + above_hard_max: "Rent is higher than the absolute maximum expected for a property of this type. Please check the rent, rent period and local authority" + postcode_known: + below_hard_min: "Rent is below the absolute minimum expected for a property of this type. Please check the rent, rent period, local authority and number of bedrooms" + above_hard_max: "Rent is higher than the absolute maximum expected for a property of this type. Please check the rent, rent period, local authority and number of bedrooms" la: - not_in_range: "Basic rent is outside of the expected range based on this local authority" + below_hard_min: "Rent is below the absolute minimum expected for a property of this type based on this local authority" + above_hard_max: "Rent is higher than the absolute maximum expected for a property of this type based on this local authority" beds: - not_in_range: "Basic rent is outside of the expected range based on this number of bedrooms" + below_hard_min: "Rent is below the absolute minimum expected for a property of this type based on this number of bedrooms" + above_hard_max: "Rent is higher than the absolute maximum expected for a property of this type based on this number of bedrooms" needstype: - not_in_range: "Basic rent is outside of the expected range based on this lettings type" + below_hard_min: "Rent is below the absolute minimum expected for a property of this type based on this lettings type" + above_hard_max: "Rent is higher than the absolute maximum expected for a property of this type based on this lettings type" rent_type: - not_in_range: "Basic rent is outside of the expected range based on this lettings type" + below_hard_min: "Rent is below the absolute minimum expected for a property of this type based on this lettings type" + above_hard_max: "Rent is higher than the absolute maximum expected for a property of this type based on this lettings type" period: - not_in_range: "Basic rent is outside of the expected range based on this period" + below_hard_min: "Rent is below the absolute minimum expected for a property of this type based on this period" + above_hard_max: "Rent is higher than the absolute maximum expected for a property of this type based on this period" charges: complete_1_of_3: "Answer either the ‘household rent and charges’ question or ‘is this accommodation a care home‘, or select ‘no’ for ‘does the household pay rent or charges for the accommodation?’" tcharge: @@ -307,10 +322,10 @@ en: rent: min: title_text: "You told us the rent is %{brent}" - hint_text: "The minimum rent for this type of property in %{la} is £%{soft_min_for_period}." + hint_text: "The minimum rent expected for this type of property in this local authority is £%{soft_min_for_period}." max: title_text: "You told us the rent is %{brent}" - hint_text: "The maximum rent for this type of property in %{la} is £%{soft_max_for_period}." + hint_text: "The maximum rent expected for this type of property in this local authority is £%{soft_max_for_period}." retirement: min: title: "You told us this person is under %{age} and retired" diff --git a/config/rent_range_data/2022.csv b/config/rent_range_data/2022.csv new file mode 100644 index 000000000..dbd8d2f29 --- /dev/null +++ b/config/rent_range_data/2022.csv @@ -0,0 +1,7726 @@ +ranges_rent_id,lettype,la,beds,soft_min,soft_max,hard_min,hard_max +1,1,E07000223,1,57.79,124.33,26.1,177.93 +327,1,E07000223,2,71.78,147.91,26.1,188.66 +653,1,E07000223,3,82.02,162.93,26.1,205.81 +979,1,E07000223,4,90.42,180.08,26.1,224.01 +1305,3,E07000223,1,52.2,116.83,26.1,160.78 +1631,3,E07000223,2,63.38,130.77,26.1,146.84 +1957,3,E07000223,3,68.97,151.13,26.1,187.58 +2283,3,E07000223,4,73.64,186.51,26.1,196.15 +2609,2,E07000223,0,61.49,265.21,18.44,340.65 +2935,4,E07000223,0,48.18,193.32,18.44,202.73 +3261,6,E07000223,0,61.49,486.82,18.44,530.44 +3587,8,E07000223,0,48.18,486.82,18.44,530.44 +3983,5,E07000223,1,57.79,131.84,26.1,144.7 +4050,7,E07000223,1,52.2,131.84,26.1,144.7 +4598,5,E07000223,2,71.78,183.29,26.1,200.45 +4745,7,E07000223,2,63.38,183.29,26.1,200.45 +5250,5,E07000223,3,82.02,228.29,26.1,248.67 +5350,7,E07000223,3,68.97,228.29,26.1,248.67 +5935,5,E07000223,4,90.42,430.9,26.1,470.55 +6039,7,E07000223,4,73.64,430.9,26.1,470.55 +6521,9,E07000223,1,57.79,164.8,26.1,180.87 +6847,9,E07000223,2,71.78,229.13,26.1,250.54 +7173,9,E07000223,3,82.02,285.39,26.1,310.84 +7499,9,E07000223,4,90.42,538.61,26.1,588.19 +7825,10,E07000223,0,61.49,608.53,18.44,663.05 +2,1,E07000026,1,52.2,94.33,26.1,117.9 +328,1,E07000026,2,59.66,108.27,26.1,136.13 +654,1,E07000026,3,66.17,121.11,26.1,146.84 +980,1,E07000026,4,72.71,135.06,26.1,160.78 +1306,3,E07000026,1,43.8,86.81,26.1,101.83 +1632,3,E07000026,2,54.06,95.42,26.1,114.68 +1958,3,E07000026,3,58.72,106.12,26.1,125.4 +2284,3,E07000026,4,55.93,120.05,26.1,135.06 +2610,2,E07000026,0,55.36,236.93,18.44,338.29 +2936,4,E07000026,0,32.8,464.43,18.44,592.92 +3262,6,E07000026,0,55.36,207.45,18.44,226.32 +3588,8,E07000026,0,32.8,207.45,18.44,226.32 +4351,5,E07000026,1,52.2,87.89,26.1,95.42 +4463,7,E07000026,1,43.8,87.89,26.1,95.42 +4921,5,E07000026,2,59.66,110.39,26.1,120.05 +5059,7,E07000026,2,54.06,110.39,26.1,120.05 +5564,5,E07000026,3,66.17,136.13,26.1,148.99 +5739,7,E07000026,3,58.72,136.13,26.1,148.99 +6312,5,E07000026,4,72.71,188.66,26.1,205.81 +6363,7,E07000026,4,55.93,188.66,26.1,205.81 +6522,9,E07000026,1,52.2,109.88,26.1,119.25 +6848,9,E07000026,2,59.66,138.01,26.1,150.06 +7174,9,E07000026,3,66.17,170.16,26.1,186.23 +7500,9,E07000026,4,72.71,235.82,26.1,257.26 +7826,10,E07000026,0,55.36,259.31,18.44,282.91 +3,1,E07000032,1,52.2,100.76,26.1,123.26 +329,1,E07000032,2,62.45,115.76,26.1,130.77 +655,1,E07000032,3,68.97,127.56,26.1,139.34 +981,1,E07000032,4,76.43,159.7,26.1,168.29 +1307,3,E07000032,1,46.6,91.12,26.1,108.27 +1633,3,E07000032,2,53.13,97.54,26.1,109.33 +1959,3,E07000032,3,58.72,105.05,26.1,120.05 +2285,3,E07000032,4,64.31,123.26,26.1,123.26 +2611,2,E07000032,0,51.26,238.1,18.44,357.17 +2937,4,E07000032,0,49.2,113.15,18.44,122.59 +3263,6,E07000032,0,51.26,207.45,18.44,226.32 +3589,8,E07000032,0,49.2,207.45,18.44,226.32 +4311,5,E07000032,1,52.2,97.54,26.1,106.12 +4411,7,E07000032,1,46.6,97.54,26.1,106.12 +5007,5,E07000032,2,62.45,114.68,26.1,124.33 +5147,7,E07000032,2,53.13,114.68,26.1,124.33 +5650,5,E07000032,3,68.97,136.13,26.1,148.99 +5808,7,E07000032,3,58.72,136.13,26.1,148.99 +6225,5,E07000032,4,76.43,188.66,26.1,205.81 +6469,7,E07000032,4,64.31,188.66,26.1,205.81 +6523,9,E07000032,1,52.2,121.95,26.1,132.65 +6849,9,E07000032,2,62.45,143.37,26.1,155.41 +7175,9,E07000032,3,68.97,170.16,26.1,186.23 +7501,9,E07000032,4,76.43,235.82,26.1,257.26 +7827,10,E07000032,0,51.26,259.31,18.44,282.91 +4,1,E07000224,1,57.79,124.33,26.1,177.93 +330,1,E07000224,2,71.78,147.91,26.1,188.66 +656,1,E07000224,3,82.02,162.93,26.1,205.81 +982,1,E07000224,4,90.42,180.08,26.1,224.01 +1308,3,E07000224,1,52.2,116.83,26.1,160.78 +1634,3,E07000224,2,63.38,130.77,26.1,146.84 +1960,3,E07000224,3,68.97,151.13,26.1,187.58 +2286,3,E07000224,4,73.64,186.51,26.1,196.15 +2612,2,E07000224,0,61.49,265.21,18.44,340.65 +2938,4,E07000224,0,48.18,193.32,18.44,202.73 +3264,6,E07000224,0,61.49,374.83,18.44,409.03 +3590,8,E07000224,0,48.18,374.83,18.44,409.03 +3984,5,E07000224,1,57.79,126.48,26.1,138.27 +4051,7,E07000224,1,52.2,126.48,26.1,138.27 +4599,5,E07000224,2,71.78,172.58,26.1,187.58 +4746,7,E07000224,2,63.38,172.58,26.1,187.58 +5251,5,E07000224,3,82.02,211.17,26.1,230.44 +5351,7,E07000224,3,68.97,211.17,26.1,230.44 +5936,5,E07000224,4,90.42,340.85,26.1,371.94 +6040,7,E07000224,4,73.64,340.85,26.1,371.94 +6524,9,E07000224,1,57.79,158.09,26.1,172.84 +6850,9,E07000224,2,71.78,215.73,26.1,234.49 +7176,9,E07000224,3,82.02,263.95,26.1,288.07 +7502,9,E07000224,4,90.42,426.06,26.1,464.91 +7828,10,E07000224,0,61.49,468.55,18.44,511.3 +5,1,E07000170,1,52.2,100.76,26.1,123.26 +331,1,E07000170,2,62.45,115.76,26.1,130.77 +657,1,E07000170,3,68.97,127.56,26.1,139.34 +983,1,E07000170,4,76.43,159.7,26.1,168.29 +1309,3,E07000170,1,46.6,91.12,26.1,108.27 +1635,3,E07000170,2,53.13,97.54,26.1,109.33 +1961,3,E07000170,3,58.72,105.05,26.1,120.05 +2287,3,E07000170,4,64.31,123.26,26.1,123.26 +2613,2,E07000170,0,51.26,238.1,18.44,357.17 +2939,4,E07000170,0,49.2,113.15,18.44,122.59 +3265,6,E07000170,0,51.26,198.03,18.44,214.52 +3591,8,E07000170,0,49.2,198.03,18.44,214.52 +4312,5,E07000170,1,52.2,87.89,26.1,95.42 +4412,7,E07000170,1,46.6,87.89,26.1,95.42 +5008,5,E07000170,2,62.45,110.39,26.1,120.05 +5148,7,E07000170,2,53.13,110.39,26.1,120.05 +5651,5,E07000170,3,68.97,126.48,26.1,138.27 +5809,7,E07000170,3,58.72,126.48,26.1,138.27 +6226,5,E07000170,4,76.43,180.08,26.1,195.08 +6470,7,E07000170,4,64.31,180.08,26.1,195.08 +6525,9,E07000170,1,52.2,109.88,26.1,119.25 +6851,9,E07000170,2,62.45,138.01,26.1,150.06 +7177,9,E07000170,3,68.97,158.09,26.1,172.84 +7503,9,E07000170,4,76.43,225.1,26.1,243.85 +7829,10,E07000170,0,51.26,247.53,18.44,268.16 +6,1,E07000105,1,57.79,124.33,26.1,177.93 +332,1,E07000105,2,71.78,147.91,26.1,188.66 +658,1,E07000105,3,82.02,162.93,26.1,205.81 +984,1,E07000105,4,90.42,180.08,26.1,224.01 +1310,3,E07000105,1,52.2,116.83,26.1,160.78 +1636,3,E07000105,2,63.38,130.77,26.1,146.84 +1962,3,E07000105,3,68.97,151.13,26.1,187.58 +2288,3,E07000105,4,73.64,186.51,26.1,196.15 +2614,2,E07000105,0,61.49,265.21,18.44,340.65 +2940,4,E07000105,0,48.18,193.32,18.44,202.73 +3266,6,E07000105,0,61.49,306.46,18.44,334.77 +3592,8,E07000105,0,48.18,306.46,18.44,334.77 +3985,5,E07000105,1,57.79,126.48,26.1,138.27 +4052,7,E07000105,1,52.2,126.48,26.1,138.27 +4600,5,E07000105,2,71.78,155.41,26.1,169.36 +4747,7,E07000105,2,63.38,155.41,26.1,169.36 +5252,5,E07000105,3,82.02,188.66,26.1,205.81 +5352,7,E07000105,3,68.97,188.66,26.1,205.81 +5937,5,E07000105,4,90.42,278.69,26.1,304.41 +6041,7,E07000105,4,73.64,278.69,26.1,304.41 +6526,9,E07000105,1,57.79,158.09,26.1,172.84 +6852,9,E07000105,2,71.78,194.27,26.1,211.69 +7178,9,E07000105,3,82.02,235.82,26.1,257.26 +7504,9,E07000105,4,90.42,348.37,26.1,380.53 +7830,10,E07000105,0,61.49,383.1,18.44,418.45 +8,1,E07000200,1,54.99,120.05,26.1,150.06 +334,1,E07000200,2,65.24,143.62,26.1,169.36 +660,1,E07000200,3,71.78,157.56,26.1,182.22 +986,1,E07000200,4,82.02,172.58,26.1,180.08 +1312,3,E07000200,1,50.34,100.76,26.1,132.91 +1638,3,E07000200,2,58.72,118.97,26.1,133.98 +1964,3,E07000200,3,64.31,131.84,26.1,144.7 +2290,3,E07000200,4,71.78,150.06,26.1,160.78 +2616,2,E07000200,0,35.87,223.96,18.44,418.45 +2942,4,E07000200,0,55.36,134.38,18.44,314.73 +3268,6,E07000200,0,35.87,351.26,18.44,383.09 +3594,8,E07000200,0,55.36,351.26,18.44,383.09 +4117,5,E07000200,1,54.99,115.76,26.1,125.4 +4234,7,E07000200,1,50.34,115.76,26.1,125.4 +4698,5,E07000200,2,65.24,143.62,26.1,156.49 +4960,7,E07000200,2,58.72,143.62,26.1,156.49 +5417,5,E07000200,3,71.78,172.58,26.1,187.58 +5603,7,E07000200,3,64.31,172.58,26.1,187.58 +6127,5,E07000200,4,82.02,319.42,26.1,348.36 +6265,7,E07000200,4,71.78,319.42,26.1,348.36 +6528,9,E07000200,1,54.99,144.7,26.1,156.77 +6854,9,E07000200,2,65.24,179.53,26.1,195.6 +7180,9,E07000200,3,71.78,215.73,26.1,234.49 +7506,9,E07000200,4,82.02,399.29,26.1,435.45 +7832,10,E07000200,0,35.87,439.1,18.44,478.86 +9,1,E09000002,1,66.17,146.84,26.1,199.38 +335,1,E09000002,2,78.29,158.63,26.1,194.01 +661,1,E09000002,3,84.82,168.29,26.1,228.29 +987,1,E09000002,4,102.51,188.66,26.1,254.03 +1313,3,E09000002,1,58.72,120.05,26.1,147.91 +1639,3,E09000002,2,64.31,140.42,26.1,176.86 +1965,3,E09000002,3,71.78,160.78,26.1,202.58 +2291,3,E09000002,4,83.89,262.61,26.1,263.68 +2617,2,E09000002,0,69.7,313.55,18.44,497.44 +2943,4,E09000002,0,59.45,367.77,18.44,398.42 +3269,6,E09000002,0,69.7,338.29,18.44,368.95 +3595,8,E09000002,0,59.45,338.29,18.44,368.95 +3950,5,E09000002,1,66.17,161.86,26.1,176.86 +4164,7,E09000002,1,58.72,161.86,26.1,176.86 +4565,5,E09000002,2,78.29,205.81,26.1,222.95 +4665,7,E09000002,2,64.31,205.81,26.1,222.95 +5217,5,E09000002,3,84.82,250.82,26.1,273.34 +5317,7,E09000002,3,71.78,250.82,26.1,273.34 +5869,7,E09000002,4,83.89,307.63,26.1,335.49 +5902,5,E09000002,4,102.51,307.63,26.1,335.49 +6529,9,E09000002,1,66.17,202.34,26.1,221.08 +6855,9,E09000002,2,78.29,257.26,26.1,278.69 +7181,9,E09000002,3,84.82,313.51,26.1,341.67 +7507,9,E09000002,4,102.51,384.53,26.1,419.36 +7833,10,E09000002,0,69.7,422.87,18.44,461.19 +10,1,E09000003,1,66.17,146.84,26.1,199.38 +336,1,E09000003,2,78.29,158.63,26.1,194.01 +662,1,E09000003,3,84.82,168.29,26.1,228.29 +988,1,E09000003,4,102.51,188.66,26.1,254.03 +1314,3,E09000003,1,58.72,120.05,26.1,147.91 +1640,3,E09000003,2,64.31,140.42,26.1,176.86 +1966,3,E09000003,3,71.78,160.78,26.1,202.58 +2292,3,E09000003,4,83.89,262.61,26.1,263.68 +2618,2,E09000003,0,69.7,313.55,18.44,497.44 +2944,4,E09000003,0,59.45,367.77,18.44,398.42 +3270,6,E09000003,0,69.7,838.12,18.44,915.9 +3596,8,E09000003,0,59.45,838.12,18.44,915.9 +3951,5,E09000003,1,66.17,237.96,26.1,259.39 +4165,7,E09000003,1,58.72,237.96,26.1,259.39 +4566,5,E09000003,2,78.29,305.47,26.1,333.34 +4666,7,E09000003,2,64.31,305.47,26.1,333.34 +5218,5,E09000003,3,84.82,419.11,26.1,456.62 +5318,7,E09000003,3,71.78,419.11,26.1,456.62 +5870,7,E09000003,4,83.89,763.17,26.1,832.85 +5903,5,E09000003,4,102.51,763.17,26.1,832.85 +6530,9,E09000003,1,66.17,297.46,26.1,324.23 +6856,9,E09000003,2,78.29,381.85,26.1,416.7 +7182,9,E09000003,3,84.82,523.89,26.1,570.76 +7508,9,E09000003,4,102.51,953.97,26.1,1041.07 +7834,10,E09000003,0,69.7,1047.62,18.44,1144.86 +11,1,E08000016,1,51.27,92.19,26.1,114.68 +337,1,E08000016,2,58.72,109.33,26.1,141.49 +663,1,E08000016,3,63.38,121.11,26.1,162.93 +989,1,E08000016,4,73.64,145.77,26.1,180.08 +1315,3,E08000016,1,46.6,82.54,26.1,93.26 +1641,3,E08000016,2,53.13,113.61,26.1,145.77 +1967,3,E08000016,3,56.86,105.05,26.1,114.68 +2293,3,E08000016,4,64.31,122.19,26.1,176.86 +2619,2,E08000016,0,52.28,232.2,18.44,319.44 +2945,4,E08000016,0,51.26,159.13,18.44,188.6 +3271,6,E08000016,0,52.28,189.79,18.44,206.28 +3597,8,E08000016,0,51.26,189.79,18.44,206.28 +4390,5,E08000016,1,51.27,85.75,26.1,93.26 +4544,7,E08000016,1,46.6,85.75,26.1,93.26 +4812,7,E08000016,2,53.13,98.62,26.1,108.27 +4870,5,E08000016,2,58.72,98.62,26.1,108.27 +5501,5,E08000016,3,63.38,115.76,26.1,125.4 +5848,7,E08000016,3,56.86,115.76,26.1,125.4 +6106,5,E08000016,4,73.64,172.58,26.1,187.58 +6204,7,E08000016,4,64.31,172.58,26.1,187.58 +6531,9,E08000016,1,51.27,107.2,26.1,116.56 +6857,9,E08000016,2,53.13,123.26,26.1,135.33 +7183,9,E08000016,3,63.38,144.7,26.1,156.77 +7509,9,E08000016,4,73.64,215.73,26.1,234.49 +7835,10,E08000016,0,52.28,237.24,18.44,257.84 +12,1,E07000027,1,52.2,94.33,26.1,117.9 +338,1,E07000027,2,59.66,108.27,26.1,136.13 +664,1,E07000027,3,66.17,121.11,26.1,146.84 +990,1,E07000027,4,72.71,135.06,26.1,160.78 +1316,3,E07000027,1,43.8,86.81,26.1,101.83 +1642,3,E07000027,2,54.06,95.42,26.1,114.68 +1968,3,E07000027,3,58.72,106.12,26.1,125.4 +2294,3,E07000027,4,55.93,120.05,26.1,135.06 +2620,2,E07000027,0,55.36,236.93,18.44,338.29 +2946,4,E07000027,0,32.8,464.43,18.44,592.92 +3272,6,E07000027,0,55.36,189.79,18.44,206.28 +3598,8,E07000027,0,32.8,189.79,18.44,206.28 +4352,5,E07000027,1,52.2,87.89,26.1,95.42 +4464,7,E07000027,1,43.8,87.89,26.1,95.42 +4922,5,E07000027,2,59.66,103.98,26.1,113.61 +5060,7,E07000027,2,54.06,103.98,26.1,113.61 +5565,5,E07000027,3,66.17,136.13,26.1,148.99 +5740,7,E07000027,3,58.72,136.13,26.1,148.99 +6313,5,E07000027,4,72.71,172.58,26.1,187.58 +6364,7,E07000027,4,55.93,172.58,26.1,187.58 +6532,9,E07000027,1,52.2,109.88,26.1,119.25 +6858,9,E07000027,2,59.66,129.97,26.1,142.02 +7184,9,E07000027,3,66.17,170.16,26.1,186.23 +7510,9,E07000027,4,72.71,215.73,26.1,234.49 +7836,10,E07000027,0,55.36,237.24,18.44,257.84 +13,1,E07000066,1,54.99,120.05,26.1,150.06 +339,1,E07000066,2,65.24,143.62,26.1,169.36 +665,1,E07000066,3,71.78,157.56,26.1,182.22 +991,1,E07000066,4,82.02,172.58,26.1,180.08 +1317,3,E07000066,1,50.34,100.76,26.1,132.91 +1643,3,E07000066,2,58.72,118.97,26.1,133.98 +1969,3,E07000066,3,64.31,131.84,26.1,144.7 +2295,3,E07000066,4,71.78,150.06,26.1,160.78 +2621,2,E07000066,0,35.87,223.96,18.44,418.45 +2947,4,E07000066,0,55.36,134.38,18.44,314.73 +3273,6,E07000066,0,35.87,399.59,18.44,436.14 +3599,8,E07000066,0,55.36,399.59,18.44,436.14 +4118,5,E07000066,1,54.99,143.62,26.1,156.49 +4235,7,E07000066,1,50.34,143.62,26.1,156.49 +4699,5,E07000066,2,65.24,182.22,26.1,199.38 +4961,7,E07000066,2,58.72,182.22,26.1,199.38 +5418,5,E07000066,3,71.78,221.88,26.1,242.25 +5604,7,E07000066,3,64.31,221.88,26.1,242.25 +6128,5,E07000066,4,82.02,363.36,26.1,396.59 +6266,7,E07000066,4,71.78,363.36,26.1,396.59 +6533,9,E07000066,1,54.99,179.53,26.1,195.6 +6859,9,E07000066,2,65.24,227.8,26.1,249.22 +7185,9,E07000066,3,71.78,277.34,26.1,302.81 +7511,9,E07000066,4,82.02,454.21,26.1,495.75 +7837,10,E07000066,0,35.87,499.52,18.44,545.18 +14,1,E07000084,1,57.79,124.33,26.1,177.93 +340,1,E07000084,2,71.78,147.91,26.1,188.66 +666,1,E07000084,3,82.02,162.93,26.1,205.81 +992,1,E07000084,4,90.42,180.08,26.1,224.01 +1318,3,E07000084,1,52.2,116.83,26.1,160.78 +1644,3,E07000084,2,63.38,130.77,26.1,146.84 +1970,3,E07000084,3,68.97,151.13,26.1,187.58 +2296,3,E07000084,4,73.64,186.51,26.1,196.15 +2622,2,E07000084,0,61.49,265.21,18.44,340.65 +2948,4,E07000084,0,48.18,193.32,18.44,202.73 +3274,6,E07000084,0,61.49,374.83,18.44,409.03 +3600,8,E07000084,0,48.18,374.83,18.44,409.03 +3987,5,E07000084,1,57.79,148.99,26.1,161.86 +4054,7,E07000084,1,52.2,148.99,26.1,161.86 +4602,5,E07000084,2,71.78,183.29,26.1,200.45 +4749,7,E07000084,2,63.38,183.29,26.1,200.45 +5254,5,E07000084,3,82.02,211.17,26.1,230.44 +5354,7,E07000084,3,68.97,211.17,26.1,230.44 +5939,5,E07000084,4,90.42,340.85,26.1,371.94 +6043,7,E07000084,4,73.64,340.85,26.1,371.94 +6534,9,E07000084,1,57.79,186.23,26.1,202.34 +6860,9,E07000084,2,71.78,229.13,26.1,250.54 +7186,9,E07000084,3,82.02,263.95,26.1,288.07 +7512,9,E07000084,4,90.42,426.06,26.1,464.91 +7838,10,E07000084,0,61.49,468.55,18.44,511.3 +15,1,E07000171,1,52.2,100.76,26.1,123.26 +341,1,E07000171,2,62.45,115.76,26.1,130.77 +667,1,E07000171,3,68.97,127.56,26.1,139.34 +993,1,E07000171,4,76.43,159.7,26.1,168.29 +1319,3,E07000171,1,46.6,91.12,26.1,108.27 +1645,3,E07000171,2,53.13,97.54,26.1,109.33 +1971,3,E07000171,3,58.72,105.05,26.1,120.05 +2297,3,E07000171,4,64.31,123.26,26.1,123.26 +2623,2,E07000171,0,51.26,238.1,18.44,357.17 +2949,4,E07000171,0,49.2,113.15,18.44,122.59 +3275,6,E07000171,0,51.26,200.38,18.44,219.25 +3601,8,E07000171,0,49.2,200.38,18.44,219.25 +4313,5,E07000171,1,52.2,85.75,26.1,93.26 +4413,7,E07000171,1,46.6,85.75,26.1,93.26 +5009,5,E07000171,2,62.45,106.12,26.1,115.76 +5149,7,E07000171,2,53.13,106.12,26.1,115.76 +5652,5,E07000171,3,68.97,126.48,26.1,138.27 +5810,7,E07000171,3,58.72,126.48,26.1,138.27 +6227,5,E07000171,4,76.43,182.22,26.1,199.38 +6471,7,E07000171,4,64.31,182.22,26.1,199.38 +6535,9,E07000171,1,52.2,107.2,26.1,116.56 +6861,9,E07000171,2,62.45,132.65,26.1,144.7 +7187,9,E07000171,3,68.97,158.09,26.1,172.84 +7513,9,E07000171,4,76.43,227.8,26.1,249.22 +7839,10,E07000171,0,51.26,250.47,18.44,274.05 +16,1,E06000022,1,49.41,108.27,26.1,141.49 +342,1,E06000022,2,55.93,122.19,26.1,145.77 +668,1,E06000022,3,62.45,142.56,26.1,162.93 +994,1,E06000022,4,71.78,159.7,26.1,196.15 +1320,3,E06000022,1,47.54,90.03,26.1,212.24 +1646,3,E06000022,2,54.99,101.83,26.1,112.54 +1972,3,E06000022,3,62.45,110.39,26.1,127.56 +2298,3,E06000022,4,74.57,131.84,26.1,131.84 +2624,2,E06000022,0,54.33,228.68,18.44,354.8 +2950,4,E06000022,0,54.33,114.33,18.44,140.27 +3276,6,E06000022,0,54.33,431.42,18.44,470.32 +3602,8,E06000022,0,54.33,431.42,18.44,470.32 +3913,7,E06000022,1,47.54,155.41,26.1,169.36 +4197,5,E06000022,1,49.41,155.41,26.1,169.36 +4833,5,E06000022,2,55.93,194.01,26.1,212.24 +5110,7,E06000022,2,54.99,194.01,26.1,212.24 +5464,5,E06000022,3,62.45,234.74,26.1,255.1 +5690,7,E06000022,3,62.45,234.74,26.1,255.1 +6002,5,E06000022,4,71.78,392.31,26.1,427.69 +6402,7,E06000022,4,74.57,392.31,26.1,427.69 +6536,9,E06000022,1,49.41,194.27,26.1,211.69 +6862,9,E06000022,2,55.93,242.51,26.1,265.29 +7188,9,E06000022,3,62.45,293.43,26.1,318.88 +7514,9,E06000022,4,71.78,490.4,26.1,534.61 +7840,10,E06000022,0,54.33,539.28,18.44,587.9 +17,1,E06000055,1,54.99,120.05,26.1,150.06 +343,1,E06000055,2,65.24,143.62,26.1,169.36 +669,1,E06000055,3,71.78,157.56,26.1,182.22 +995,1,E06000055,4,82.02,172.58,26.1,180.08 +1321,3,E06000055,1,50.34,100.76,26.1,132.91 +1647,3,E06000055,2,58.72,118.97,26.1,133.98 +1973,3,E06000055,3,64.31,131.84,26.1,144.7 +2299,3,E06000055,4,71.78,150.06,26.1,160.78 +2625,2,E06000055,0,35.87,223.96,18.44,418.45 +2951,4,E06000055,0,55.36,134.38,18.44,314.73 +3277,6,E06000055,0,35.87,312.38,18.44,340.65 +3603,8,E06000055,0,55.36,312.38,18.44,340.65 +4119,5,E06000055,1,54.99,114.68,26.1,124.33 +4236,7,E06000055,1,50.34,114.68,26.1,124.33 +4700,5,E06000055,2,65.24,143.62,26.1,156.49 +4962,7,E06000055,2,58.72,143.62,26.1,156.49 +5419,5,E06000055,3,71.78,172.58,26.1,187.58 +5605,7,E06000055,3,64.31,172.58,26.1,187.58 +6129,5,E06000055,4,82.02,284.04,26.1,309.78 +6267,7,E06000055,4,71.78,284.04,26.1,309.78 +6537,9,E06000055,1,54.99,143.37,26.1,155.41 +6863,9,E06000055,2,65.24,179.53,26.1,195.6 +7189,9,E06000055,3,71.78,215.73,26.1,234.49 +7515,9,E06000055,4,82.02,355.06,26.1,387.21 +7841,10,E06000055,0,35.87,390.47,18.44,425.82 +18,1,E09000004,1,66.17,146.84,26.1,199.38 +344,1,E09000004,2,78.29,158.63,26.1,194.01 +670,1,E09000004,3,84.82,168.29,26.1,228.29 +996,1,E09000004,4,102.51,188.66,26.1,254.03 +1322,3,E09000004,1,58.72,120.05,26.1,147.91 +1648,3,E09000004,2,64.31,140.42,26.1,176.86 +1974,3,E09000004,3,71.78,160.78,26.1,202.58 +2300,3,E09000004,4,83.89,262.61,26.1,263.68 +2626,2,E09000004,0,69.7,313.55,18.44,497.44 +2952,4,E09000004,0,59.45,367.77,18.44,398.42 +3278,6,E09000004,0,69.7,374.83,18.44,409.03 +3604,8,E09000004,0,59.45,374.83,18.44,409.03 +3952,5,E09000004,1,66.17,158.63,26.1,174.72 +4166,7,E09000004,1,58.72,158.63,26.1,174.72 +4567,5,E09000004,2,78.29,194.01,26.1,212.24 +4667,7,E09000004,2,64.31,194.01,26.1,212.24 +5219,5,E09000004,3,84.82,250.82,26.1,273.34 +5319,7,E09000004,3,71.78,250.82,26.1,273.34 +5871,7,E09000004,4,83.89,340.85,26.1,371.94 +5904,5,E09000004,4,102.51,340.85,26.1,371.94 +6538,9,E09000004,1,66.17,198.3,26.1,218.38 +6864,9,E09000004,2,78.29,242.51,26.1,265.29 +7190,9,E09000004,3,84.82,313.51,26.1,341.67 +7516,9,E09000004,4,102.51,426.06,26.1,464.91 +7842,10,E09000004,0,69.7,468.55,18.44,511.3 +19,1,E08000025,1,53.13,99.69,26.1,125.4 +345,1,E08000025,2,58.72,117.9,26.1,138.27 +671,1,E08000025,3,69.9,133.98,26.1,161.86 +997,1,E08000025,4,81.09,162.93,26.1,180.08 +1323,3,E08000025,1,46.6,88.96,26.1,98.62 +1649,3,E08000025,2,50.34,95.42,26.1,103.98 +1975,3,E08000025,3,60.59,105.05,26.1,121.11 +2301,3,E08000025,4,68.97,128.63,26.1,128.63 +2627,2,E08000025,0,38.95,242.82,18.44,378.37 +2953,4,E08000025,0,46.12,106.09,18.44,106.09 +3279,6,E08000025,0,38.95,248.71,18.44,272.3 +3605,8,E08000025,0,46.12,248.71,18.44,272.3 +4281,5,E08000025,1,53.13,115.76,26.1,125.4 +4502,7,E08000025,1,46.6,115.76,26.1,125.4 +4891,5,E08000025,2,58.72,141.49,26.1,153.28 +5187,7,E08000025,2,50.34,141.49,26.1,153.28 +5522,5,E08000025,3,69.9,148.99,26.1,161.86 +5778,7,E08000025,3,60.59,148.99,26.1,161.86 +6174,5,E08000025,4,81.09,228.29,26.1,247.6 +6439,7,E08000025,4,68.97,228.29,26.1,247.6 +6539,9,E08000025,1,53.13,144.7,26.1,156.77 +6865,9,E08000025,2,58.72,176.86,26.1,191.6 +7191,9,E08000025,3,69.9,186.23,26.1,202.34 +7517,9,E08000025,4,81.09,285.39,26.1,309.5 +7843,10,E08000025,0,38.95,310.9,18.44,340.38 +20,1,E07000129,1,52.2,100.76,26.1,123.26 +346,1,E07000129,2,62.45,115.76,26.1,130.77 +672,1,E07000129,3,68.97,127.56,26.1,139.34 +998,1,E07000129,4,76.43,159.7,26.1,168.29 +1324,3,E07000129,1,46.6,91.12,26.1,108.27 +1650,3,E07000129,2,53.13,97.54,26.1,109.33 +1976,3,E07000129,3,58.72,105.05,26.1,120.05 +2302,3,E07000129,4,64.31,123.26,26.1,123.26 +2628,2,E07000129,0,51.26,238.1,18.44,357.17 +2954,4,E07000129,0,49.2,113.15,18.44,122.59 +3280,6,E07000129,0,51.26,225.15,18.44,245.18 +3606,8,E07000129,0,49.2,225.15,18.44,245.18 +4314,5,E07000129,1,52.2,110.39,26.1,120.05 +4414,7,E07000129,1,46.6,110.39,26.1,120.05 +5010,5,E07000129,2,62.45,126.48,26.1,138.27 +5150,7,E07000129,2,53.13,126.48,26.1,138.27 +5653,5,E07000129,3,68.97,151.13,26.1,164.01 +5811,7,E07000129,3,58.72,151.13,26.1,164.01 +6228,5,E07000129,4,76.43,204.74,26.1,222.95 +6472,7,E07000129,4,64.31,204.74,26.1,222.95 +6540,9,E07000129,1,52.2,138.01,26.1,150.06 +6866,9,E07000129,2,62.45,158.09,26.1,172.84 +7192,9,E07000129,3,68.97,188.91,26.1,205 +7518,9,E07000129,4,76.43,255.92,26.1,278.69 +7844,10,E07000129,0,51.26,281.43,18.44,306.45 +21,1,E06000008,1,52.2,94.33,26.1,117.9 +347,1,E06000008,2,59.66,108.27,26.1,136.13 +673,1,E06000008,3,66.17,121.11,26.1,146.84 +999,1,E06000008,4,72.71,135.06,26.1,160.78 +1325,3,E06000008,1,43.8,86.81,26.1,101.83 +1651,3,E06000008,2,54.06,95.42,26.1,114.68 +1977,3,E06000008,3,58.72,106.12,26.1,125.4 +2303,3,E06000008,4,55.93,120.05,26.1,135.06 +2629,2,E06000008,0,55.36,236.93,18.44,338.29 +2955,4,E06000008,0,32.8,464.43,18.44,592.92 +3281,6,E06000008,0,55.36,189.79,18.44,206.28 +3607,8,E06000008,0,32.8,189.79,18.44,206.28 +4353,5,E06000008,1,52.2,103.98,26.1,113.61 +4465,7,E06000008,1,43.8,103.98,26.1,113.61 +4923,5,E06000008,2,59.66,110.39,26.1,120.05 +5061,7,E06000008,2,54.06,110.39,26.1,120.05 +5566,5,E06000008,3,66.17,131.84,26.1,144.7 +5741,7,E06000008,3,58.72,131.84,26.1,144.7 +6314,5,E06000008,4,72.71,172.58,26.1,187.58 +6365,7,E06000008,4,55.93,172.58,26.1,187.58 +6541,9,E06000008,1,52.2,129.97,26.1,142.02 +6867,9,E06000008,2,59.66,138.01,26.1,150.06 +7193,9,E06000008,3,66.17,164.8,26.1,180.87 +7519,9,E06000008,4,72.71,215.73,26.1,234.49 +7845,10,E06000008,0,55.36,237.24,18.44,257.84 +22,1,E06000009,1,52.2,94.33,26.1,117.9 +348,1,E06000009,2,59.66,108.27,26.1,136.13 +674,1,E06000009,3,66.17,121.11,26.1,146.84 +1000,1,E06000009,4,72.71,135.06,26.1,160.78 +1326,3,E06000009,1,43.8,86.81,26.1,101.83 +1652,3,E06000009,2,54.06,95.42,26.1,114.68 +1978,3,E06000009,3,58.72,106.12,26.1,125.4 +2304,3,E06000009,4,55.93,120.05,26.1,135.06 +2630,2,E06000009,0,55.36,236.93,18.44,338.29 +2956,4,E06000009,0,32.8,464.43,18.44,592.92 +3282,6,E06000009,0,55.36,201.56,18.44,220.42 +3608,8,E06000009,0,32.8,201.56,18.44,220.42 +4354,5,E06000009,1,52.2,99.69,26.1,110.39 +4466,7,E06000009,1,43.8,99.69,26.1,110.39 +4924,5,E06000009,2,59.66,126.48,26.1,138.27 +5062,7,E06000009,2,54.06,126.48,26.1,138.27 +5567,5,E06000009,3,66.17,144.7,26.1,157.56 +5742,7,E06000009,3,58.72,144.7,26.1,157.56 +6315,5,E06000009,4,72.71,183.29,26.1,200.45 +6366,7,E06000009,4,55.93,183.29,26.1,200.45 +6542,9,E06000009,1,52.2,124.6,26.1,138.01 +6868,9,E06000009,2,59.66,158.09,26.1,172.84 +7194,9,E06000009,3,66.17,180.87,26.1,196.95 +7520,9,E06000009,4,72.71,229.13,26.1,250.54 +7846,10,E06000009,0,55.36,251.95,18.44,275.54 +23,1,E07000033,1,52.2,100.76,26.1,123.26 +349,1,E07000033,2,62.45,115.76,26.1,130.77 +675,1,E07000033,3,68.97,127.56,26.1,139.34 +1001,1,E07000033,4,76.43,159.7,26.1,168.29 +1327,3,E07000033,1,46.6,91.12,26.1,108.27 +1653,3,E07000033,2,53.13,97.54,26.1,109.33 +1979,3,E07000033,3,58.72,105.05,26.1,120.05 +2305,3,E07000033,4,64.31,123.26,26.1,123.26 +2631,2,E07000033,0,51.26,238.1,18.44,357.17 +2957,4,E07000033,0,49.2,113.15,18.44,122.59 +3283,6,E07000033,0,51.26,189.79,18.44,206.28 +3609,8,E07000033,0,49.2,189.79,18.44,206.28 +4315,5,E07000033,1,52.2,91.12,26.1,98.62 +4415,7,E07000033,1,46.6,91.12,26.1,98.62 +5011,5,E07000033,2,62.45,103.98,26.1,113.61 +5151,7,E07000033,2,53.13,103.98,26.1,113.61 +5654,5,E07000033,3,68.97,121.11,26.1,131.84 +5812,7,E07000033,3,58.72,121.11,26.1,131.84 +6229,5,E07000033,4,76.43,172.58,26.1,187.58 +6473,7,E07000033,4,64.31,172.58,26.1,187.58 +6543,9,E07000033,1,52.2,113.9,26.1,123.26 +6869,9,E07000033,2,62.45,129.97,26.1,142.02 +7195,9,E07000033,3,68.97,151.41,26.1,164.8 +7521,9,E07000033,4,76.43,215.73,26.1,234.49 +7847,10,E07000033,0,51.26,237.24,18.44,257.84 +24,1,E08000001,1,52.2,94.33,26.1,117.9 +350,1,E08000001,2,59.66,108.27,26.1,136.13 +676,1,E08000001,3,66.17,121.11,26.1,146.84 +1002,1,E08000001,4,72.71,135.06,26.1,160.78 +1328,3,E08000001,1,43.8,86.81,26.1,101.83 +1654,3,E08000001,2,54.06,95.42,26.1,114.68 +1980,3,E08000001,3,58.72,106.12,26.1,125.4 +2306,3,E08000001,4,55.93,120.05,26.1,135.06 +2632,2,E08000001,0,55.36,236.93,18.44,338.29 +2958,4,E08000001,0,32.8,464.43,18.44,592.92 +3284,6,E08000001,0,55.36,213.35,18.44,233.38 +3610,8,E08000001,0,32.8,213.35,18.44,233.38 +4355,5,E08000001,1,52.2,93.26,26.1,100.76 +4467,7,E08000001,1,43.8,93.26,26.1,100.76 +4925,5,E08000001,2,59.66,111.47,26.1,121.11 +5063,7,E08000001,2,54.06,111.47,26.1,121.11 +5568,5,E08000001,3,66.17,136.13,26.1,148.99 +5743,7,E08000001,3,58.72,136.13,26.1,148.99 +6316,5,E08000001,4,72.71,194.01,26.1,212.24 +6367,7,E08000001,4,55.93,194.01,26.1,212.24 +6544,9,E08000001,1,52.2,116.56,26.1,125.95 +6870,9,E08000001,2,59.66,139.34,26.1,151.41 +7196,9,E08000001,3,66.17,170.16,26.1,186.23 +7522,9,E08000001,4,72.71,242.51,26.1,265.29 +7848,10,E08000001,0,55.36,266.69,18.44,291.74 +25,1,E07000136,1,52.2,100.76,26.1,123.26 +351,1,E07000136,2,62.45,115.76,26.1,130.77 +677,1,E07000136,3,68.97,127.56,26.1,139.34 +1003,1,E07000136,4,76.43,159.7,26.1,168.29 +1329,3,E07000136,1,46.6,91.12,26.1,108.27 +1655,3,E07000136,2,53.13,97.54,26.1,109.33 +1981,3,E07000136,3,58.72,105.05,26.1,120.05 +2307,3,E07000136,4,64.31,123.26,26.1,123.26 +2633,2,E07000136,0,51.26,238.1,18.44,357.17 +2959,4,E07000136,0,49.2,113.15,18.44,122.59 +3285,6,E07000136,0,51.26,196.86,18.44,213.35 +3611,8,E07000136,0,49.2,196.86,18.44,213.35 +4316,5,E07000136,1,52.2,98.62,26.1,108.27 +4416,7,E07000136,1,46.6,98.62,26.1,108.27 +5012,5,E07000136,2,62.45,121.11,26.1,131.84 +5152,7,E07000136,2,53.13,121.11,26.1,131.84 +5655,5,E07000136,3,68.97,136.13,26.1,148.99 +5813,7,E07000136,3,58.72,136.13,26.1,148.99 +6230,5,E07000136,4,76.43,179,26.1,194.01 +6474,7,E07000136,4,64.31,179,26.1,194.01 +6545,9,E07000136,1,52.2,123.26,26.1,135.33 +6871,9,E07000136,2,62.45,151.41,26.1,164.8 +7197,9,E07000136,3,68.97,170.16,26.1,186.23 +7523,9,E07000136,4,76.43,223.75,26.1,242.51 +7849,10,E07000136,0,51.26,246.05,18.44,266.69 +59,1,E06000058,1,49.41,108.27,26.1,141.49 +385,1,E06000058,2,55.93,122.19,26.1,145.77 +711,1,E06000058,3,62.45,142.56,26.1,162.93 +1037,1,E06000058,4,71.78,159.7,26.1,196.15 +1363,3,E06000058,1,47.54,90.03,26.1,212.24 +1689,3,E06000058,2,54.99,101.83,26.1,112.54 +2015,3,E06000058,3,62.45,110.39,26.1,127.56 +2341,3,E06000058,4,74.57,131.84,26.1,131.84 +2667,2,E06000058,0,54.33,228.68,18.44,354.8 +2993,4,E06000058,0,54.33,114.33,18.44,140.27 +3319,6,E06000058,0,54.33,399.59,18.44,436.14 +3645,8,E06000058,0,54.33,399.59,18.44,436.14 +3917,7,E06000058,1,47.54,138.27,26.1,150.06 +4201,5,E06000058,1,49.41,138.27,26.1,150.06 +4837,5,E06000058,2,55.93,172.58,26.1,187.58 +5114,7,E06000058,2,54.99,172.58,26.1,187.58 +5468,5,E06000058,3,62.45,228.29,26.1,247.6 +5694,7,E06000058,3,62.45,228.29,26.1,247.6 +6006,5,E06000058,4,71.78,363.36,26.1,396.59 +6406,7,E06000058,4,74.57,363.36,26.1,396.59 +6579,9,E06000058,1,49.41,172.84,26.1,187.57 +6905,9,E06000058,2,55.93,215.73,26.1,234.49 +7231,9,E06000058,3,62.45,285.39,26.1,309.5 +7557,9,E06000058,4,71.78,454.21,26.1,495.75 +7883,10,E06000058,0,54.33,499.52,18.44,545.18 +27,1,E06000036,1,57.79,124.33,26.1,177.93 +353,1,E06000036,2,71.78,147.91,26.1,188.66 +679,1,E06000036,3,82.02,162.93,26.1,205.81 +1005,1,E06000036,4,90.42,180.08,26.1,224.01 +1331,3,E06000036,1,52.2,116.83,26.1,160.78 +1657,3,E06000036,2,63.38,130.77,26.1,146.84 +1983,3,E06000036,3,68.97,151.13,26.1,187.58 +2309,3,E06000036,4,73.64,186.51,26.1,196.15 +2635,2,E06000036,0,61.49,265.21,18.44,340.65 +2961,4,E06000036,0,48.18,193.32,18.44,202.73 +3287,6,E06000036,0,61.49,549.31,18.44,598.8 +3613,8,E06000036,0,48.18,549.31,18.44,598.8 +3988,5,E06000036,1,57.79,158.63,26.1,174.72 +4055,7,E06000036,1,52.2,158.63,26.1,174.72 +4603,5,E06000036,2,71.78,200.45,26.1,217.59 +4750,7,E06000036,2,63.38,200.45,26.1,217.59 +5255,5,E06000036,3,82.02,272.26,26.1,296.91 +5355,7,E06000036,3,68.97,272.26,26.1,296.91 +5940,5,E06000036,4,90.42,499.48,26.1,544.51 +6044,7,E06000036,4,73.64,499.48,26.1,544.51 +6547,9,E06000036,1,57.79,198.3,26.1,218.38 +6873,9,E06000036,2,71.78,250.54,26.1,271.98 +7199,9,E06000036,3,82.02,340.33,26.1,371.13 +7525,9,E06000036,4,90.42,624.36,26.1,680.64 +7851,10,E06000036,0,61.49,686.61,18.44,748.51 +28,1,E08000032,1,51.27,92.19,26.1,114.68 +354,1,E08000032,2,58.72,109.33,26.1,141.49 +680,1,E08000032,3,63.38,121.11,26.1,162.93 +1006,1,E08000032,4,73.64,145.77,26.1,180.08 +1332,3,E08000032,1,46.6,82.54,26.1,93.26 +1658,3,E08000032,2,53.13,113.61,26.1,145.77 +1984,3,E08000032,3,56.86,105.05,26.1,114.68 +2310,3,E08000032,4,64.31,122.19,26.1,176.86 +2636,2,E08000032,0,52.28,232.2,18.44,319.44 +2962,4,E08000032,0,51.26,159.13,18.44,188.6 +3288,6,E08000032,0,52.28,207.45,18.44,226.32 +3614,8,E08000032,0,51.26,207.45,18.44,226.32 +4391,5,E08000032,1,51.27,98.62,26.1,108.27 +4545,7,E08000032,1,46.6,98.62,26.1,108.27 +4813,7,E08000032,2,53.13,115.76,26.1,125.4 +4871,5,E08000032,2,58.72,115.76,26.1,125.4 +5502,5,E08000032,3,63.38,136.13,26.1,148.99 +5849,7,E08000032,3,56.86,136.13,26.1,148.99 +6107,5,E08000032,4,73.64,188.66,26.1,205.81 +6205,7,E08000032,4,64.31,188.66,26.1,205.81 +6548,9,E08000032,1,51.27,123.26,26.1,135.33 +6874,9,E08000032,2,53.13,144.7,26.1,156.77 +7200,9,E08000032,3,63.38,170.16,26.1,186.23 +7526,9,E08000032,4,73.64,235.82,26.1,257.26 +7852,10,E08000032,0,52.28,259.31,18.44,282.91 +29,1,E07000067,1,54.99,120.05,26.1,150.06 +355,1,E07000067,2,65.24,143.62,26.1,169.36 +681,1,E07000067,3,71.78,157.56,26.1,182.22 +1007,1,E07000067,4,82.02,172.58,26.1,180.08 +1333,3,E07000067,1,50.34,100.76,26.1,132.91 +1659,3,E07000067,2,58.72,118.97,26.1,133.98 +1985,3,E07000067,3,64.31,131.84,26.1,144.7 +2311,3,E07000067,4,71.78,150.06,26.1,160.78 +2637,2,E07000067,0,35.87,223.96,18.44,418.45 +2963,4,E07000067,0,55.36,134.38,18.44,314.73 +3289,6,E07000067,0,35.87,312.38,18.44,340.65 +3615,8,E07000067,0,55.36,312.38,18.44,340.65 +4120,5,E07000067,1,54.99,121.11,26.1,131.84 +4237,7,E07000067,1,50.34,121.11,26.1,131.84 +4701,5,E07000067,2,65.24,148.99,26.1,161.86 +4963,7,E07000067,2,58.72,148.99,26.1,161.86 +5420,5,E07000067,3,71.78,183.29,26.1,200.45 +5606,7,E07000067,3,64.31,183.29,26.1,200.45 +6130,5,E07000067,4,82.02,284.04,26.1,309.78 +6268,7,E07000067,4,71.78,284.04,26.1,309.78 +6549,9,E07000067,1,54.99,151.41,26.1,164.8 +6875,9,E07000067,2,65.24,186.23,26.1,202.34 +7201,9,E07000067,3,71.78,229.13,26.1,250.54 +7527,9,E07000067,4,82.02,355.06,26.1,387.21 +7853,10,E07000067,0,35.87,390.47,18.44,425.82 +30,1,E07000143,1,54.99,120.05,26.1,150.06 +356,1,E07000143,2,65.24,143.62,26.1,169.36 +682,1,E07000143,3,71.78,157.56,26.1,182.22 +1008,1,E07000143,4,82.02,172.58,26.1,180.08 +1334,3,E07000143,1,50.34,100.76,26.1,132.91 +1660,3,E07000143,2,58.72,118.97,26.1,133.98 +1986,3,E07000143,3,64.31,131.84,26.1,144.7 +2312,3,E07000143,4,71.78,150.06,26.1,160.78 +2638,2,E07000143,0,35.87,223.96,18.44,418.45 +2964,4,E07000143,0,55.36,134.38,18.44,314.73 +3290,6,E07000143,0,35.87,264.04,18.44,287.62 +3616,8,E07000143,0,55.36,264.04,18.44,287.62 +4121,5,E07000143,1,54.99,101.83,26.1,111.47 +4238,7,E07000143,1,50.34,101.83,26.1,111.47 +4702,5,E07000143,2,65.24,126.48,26.1,138.27 +4964,7,E07000143,2,58.72,126.48,26.1,138.27 +5421,5,E07000143,3,71.78,148.99,26.1,161.86 +5607,7,E07000143,3,64.31,148.99,26.1,161.86 +6131,5,E07000143,4,82.02,240.09,26.1,261.54 +6269,7,E07000143,4,71.78,240.09,26.1,261.54 +6550,9,E07000143,1,54.99,127.29,26.1,139.34 +6876,9,E07000143,2,65.24,158.09,26.1,172.84 +7202,9,E07000143,3,71.78,186.23,26.1,202.34 +7528,9,E07000143,4,82.02,300.12,26.1,326.92 +7854,10,E07000143,0,35.87,330.05,18.44,359.53 +31,1,E09000005,1,66.17,146.84,26.1,194.01 +357,1,E09000005,2,78.29,158.63,26.1,199.38 +683,1,E09000005,3,84.82,168.29,26.1,228.29 +1009,1,E09000005,4,102.51,188.66,26.1,254.03 +1335,3,E09000005,1,58.72,120.05,26.1,147.91 +1661,3,E09000005,2,64.31,140.42,26.1,176.86 +1987,3,E09000005,3,71.78,160.78,26.1,202.58 +2313,3,E09000005,4,83.89,262.61,26.1,263.68 +2639,2,E09000005,0,69.7,313.55,18.44,497.44 +2965,4,E09000005,0,59.45,367.77,18.44,398.42 +3291,6,E09000005,0,69.7,627.09,18.44,683.68 +3617,8,E09000005,0,59.45,627.09,18.44,683.68 +3953,5,E09000005,1,66.17,276.55,26.1,301.2 +4167,7,E09000005,1,58.72,276.55,26.1,301.2 +4568,5,E09000005,2,78.29,359.08,26.1,392.31 +4668,7,E09000005,2,64.31,359.08,26.1,392.31 +5220,5,E09000005,3,84.82,468.41,26.1,509.15 +5320,7,E09000005,3,71.78,468.41,26.1,509.15 +5872,7,E09000005,4,83.89,570.24,26.1,621.7 +5905,5,E09000005,4,102.51,570.24,26.1,621.7 +6551,9,E09000005,1,66.17,345.69,26.1,376.51 +6877,9,E09000005,2,78.29,448.85,26.1,490.4 +7203,9,E09000005,3,84.82,585.52,26.1,636.44 +7529,9,E09000005,4,102.51,712.79,26.1,777.12 +7855,10,E09000005,0,69.7,783.87,18.44,854.59 +32,1,E07000068,1,54.99,120.05,26.1,150.06 +358,1,E07000068,2,65.24,143.62,26.1,169.36 +684,1,E07000068,3,71.78,157.56,26.1,182.22 +1010,1,E07000068,4,82.02,172.58,26.1,180.08 +1336,3,E07000068,1,50.34,100.76,26.1,132.91 +1662,3,E07000068,2,58.72,118.97,26.1,133.98 +1988,3,E07000068,3,64.31,131.84,26.1,144.7 +2314,3,E07000068,4,71.78,150.06,26.1,160.78 +2640,2,E07000068,0,35.87,223.96,18.44,418.45 +2966,4,E07000068,0,55.36,134.38,18.44,314.73 +3292,6,E07000068,0,35.87,598.8,18.44,653.04 +3618,8,E07000068,0,55.36,598.8,18.44,653.04 +4122,5,E07000068,1,54.99,182.22,26.1,199.38 +4239,7,E07000068,1,50.34,182.22,26.1,199.38 +4703,5,E07000068,2,65.24,226.16,26.1,247.6 +4965,7,E07000068,2,58.72,226.16,26.1,247.6 +5422,5,E07000068,3,71.78,319.42,26.1,348.36 +5608,7,E07000068,3,64.31,319.42,26.1,348.36 +6132,5,E07000068,4,82.02,544.51,26.1,593.82 +6270,7,E07000068,4,71.78,544.51,26.1,593.82 +6552,9,E07000068,1,54.99,227.8,26.1,249.22 +6878,9,E07000068,2,65.24,282.71,26.1,309.5 +7204,9,E07000068,3,71.78,399.29,26.1,435.45 +7530,9,E07000068,4,82.02,680.64,26.1,742.29 +7856,10,E07000068,0,35.87,748.51,18.44,816.29 +33,1,E06000043,1,57.79,124.33,26.1,177.93 +359,1,E06000043,2,71.78,147.91,26.1,188.66 +685,1,E06000043,3,82.02,162.93,26.1,205.81 +1011,1,E06000043,4,90.42,180.08,26.1,224.01 +1337,3,E06000043,1,52.2,116.83,26.1,160.78 +1663,3,E06000043,2,63.38,130.77,26.1,146.84 +1989,3,E06000043,3,68.97,151.13,26.1,187.58 +2315,3,E06000043,4,73.64,186.51,26.1,196.15 +2641,2,E06000043,0,61.49,265.21,18.44,340.65 +2967,4,E06000043,0,48.18,193.32,18.44,202.73 +3293,6,E06000043,0,61.49,499.79,18.44,544.59 +3619,8,E06000043,0,48.18,499.79,18.44,544.59 +3989,5,E06000043,1,57.79,177.93,26.1,192.94 +4056,7,E06000043,1,52.2,177.93,26.1,192.94 +4604,5,E06000043,2,71.78,250.82,26.1,273.34 +4751,7,E06000043,2,63.38,250.82,26.1,273.34 +5256,5,E06000043,3,82.02,307.63,26.1,335.49 +5356,7,E06000043,3,68.97,307.63,26.1,335.49 +5941,5,E06000043,4,90.42,454.47,26.1,495.21 +6045,7,E06000043,4,73.64,454.47,26.1,495.21 +6553,9,E06000043,1,57.79,222.43,26.1,241.18 +6879,9,E06000043,2,71.78,313.51,26.1,341.67 +7205,9,E06000043,3,82.02,384.53,26.1,419.36 +7531,9,E06000043,4,90.42,568.09,26.1,619.01 +7857,10,E06000043,0,61.49,624.74,18.44,680.75 +34,1,E06000023,1,49.41,108.27,26.1,141.49 +360,1,E06000023,2,55.93,122.19,26.1,145.77 +686,1,E06000023,3,62.45,142.56,26.1,162.93 +1012,1,E06000023,4,71.78,159.7,26.1,196.15 +1338,3,E06000023,1,47.54,90.03,26.1,212.24 +1664,3,E06000023,2,54.99,101.83,26.1,112.54 +1990,3,E06000023,3,62.45,110.39,26.1,127.56 +2316,3,E06000023,4,74.57,131.84,26.1,131.84 +2642,2,E06000023,0,54.33,228.68,18.44,354.8 +2968,4,E06000023,0,54.33,114.33,18.44,140.27 +3294,6,E06000023,0,54.33,462.06,18.44,503.31 +3620,8,E06000023,0,54.33,462.06,18.44,503.31 +3915,7,E06000023,1,47.54,148.99,26.1,161.86 +4199,5,E06000023,1,49.41,148.99,26.1,161.86 +4835,5,E06000023,2,55.93,183.29,26.1,200.45 +5112,7,E06000023,2,54.99,183.29,26.1,200.45 +5466,5,E06000023,3,62.45,228.29,26.1,247.6 +5692,7,E06000023,3,62.45,228.29,26.1,247.6 +6004,5,E06000023,4,71.78,420.18,26.1,457.7 +6404,7,E06000023,4,74.57,420.18,26.1,457.7 +6554,9,E06000023,1,49.41,186.23,26.1,202.34 +6880,9,E06000023,2,55.93,229.13,26.1,250.54 +7206,9,E06000023,3,62.45,285.39,26.1,309.5 +7532,9,E06000023,4,71.78,525.22,26.1,572.11 +7858,10,E06000023,0,54.33,577.59,18.44,629.15 +35,1,E07000144,1,54.99,120.05,26.1,150.06 +361,1,E07000144,2,65.24,143.62,26.1,169.36 +687,1,E07000144,3,71.78,157.56,26.1,182.22 +1013,1,E07000144,4,82.02,172.58,26.1,180.08 +1339,3,E07000144,1,50.34,100.76,26.1,132.91 +1665,3,E07000144,2,58.72,118.97,26.1,133.98 +1991,3,E07000144,3,64.31,131.84,26.1,144.7 +2317,3,E07000144,4,71.78,150.06,26.1,160.78 +2643,2,E07000144,0,35.87,223.96,18.44,418.45 +2969,4,E07000144,0,55.36,134.38,18.44,314.73 +3295,6,E07000144,0,35.87,238.1,18.44,260.5 +3621,8,E07000144,0,55.36,238.1,18.44,260.5 +4123,5,E07000144,1,54.99,109.33,26.1,118.97 +4240,7,E07000144,1,50.34,109.33,26.1,118.97 +4704,5,E07000144,2,65.24,131.84,26.1,144.7 +4966,7,E07000144,2,58.72,131.84,26.1,144.7 +5423,5,E07000144,3,71.78,159.7,26.1,174.72 +5609,7,E07000144,3,64.31,159.7,26.1,174.72 +6133,5,E07000144,4,82.02,216.52,26.1,236.89 +6271,7,E07000144,4,71.78,216.52,26.1,236.89 +6555,9,E07000144,1,54.99,136.67,26.1,148.72 +6881,9,E07000144,2,65.24,164.8,26.1,180.87 +7207,9,E07000144,3,71.78,199.62,26.1,218.38 +7533,9,E07000144,4,82.02,270.66,26.1,296.11 +7859,10,E07000144,0,35.87,297.64,18.44,325.63 +36,1,E09000006,1,66.17,146.84,26.1,199.38 +362,1,E09000006,2,78.29,158.63,26.1,194.01 +688,1,E09000006,3,84.82,168.29,26.1,228.29 +1014,1,E09000006,4,102.51,188.66,26.1,254.03 +1340,3,E09000006,1,58.72,120.05,26.1,147.91 +1666,3,E09000006,2,64.31,140.42,26.1,176.86 +1992,3,E09000006,3,71.78,160.78,26.1,202.58 +2318,3,E09000006,4,83.89,262.61,26.1,263.68 +2644,2,E09000006,0,69.7,313.55,18.44,497.44 +2970,4,E09000006,0,59.45,367.77,18.44,398.42 +3296,6,E09000006,0,69.7,499.79,18.44,544.59 +3622,8,E09000006,0,59.45,499.79,18.44,544.59 +3954,5,E09000006,1,66.17,183.29,26.1,200.45 +4168,7,E09000006,1,58.72,183.29,26.1,200.45 +4569,5,E09000006,2,78.29,240.09,26.1,261.54 +4669,7,E09000006,2,64.31,240.09,26.1,261.54 +5221,5,E09000006,3,84.82,295.83,26.1,322.64 +5321,7,E09000006,3,71.78,295.83,26.1,322.64 +5873,7,E09000006,4,83.89,454.47,26.1,495.21 +5906,5,E09000006,4,102.51,454.47,26.1,495.21 +6556,9,E09000006,1,66.17,229.13,26.1,250.54 +6882,9,E09000006,2,78.29,300.12,26.1,326.92 +7208,9,E09000006,3,84.82,369.81,26.1,403.3 +7534,9,E09000006,4,102.51,568.09,26.1,619.01 +7860,10,E09000006,0,69.7,624.74,18.44,680.75 +37,1,E07000234,1,53.13,99.69,26.1,125.4 +363,1,E07000234,2,58.72,117.9,26.1,138.27 +689,1,E07000234,3,69.9,133.98,26.1,161.86 +1015,1,E07000234,4,81.09,162.93,26.1,180.08 +1341,3,E07000234,1,46.6,88.96,26.1,98.62 +1667,3,E07000234,2,50.34,95.42,26.1,103.98 +1993,3,E07000234,3,60.59,105.05,26.1,121.11 +2319,3,E07000234,4,68.97,128.63,26.1,128.63 +2645,2,E07000234,0,38.95,242.82,18.44,378.37 +2971,4,E07000234,0,46.12,106.09,18.44,106.09 +3297,6,E07000234,0,38.95,312.38,18.44,340.65 +3623,8,E07000234,0,46.12,312.38,18.44,340.65 +4282,5,E07000234,1,53.13,117.9,26.1,128.63 +4503,7,E07000234,1,46.6,117.9,26.1,128.63 +4892,5,E07000234,2,58.72,136.13,26.1,148.99 +5188,7,E07000234,2,50.34,136.13,26.1,148.99 +5523,5,E07000234,3,69.9,177.93,26.1,192.94 +5779,7,E07000234,3,60.59,177.93,26.1,192.94 +6175,5,E07000234,4,81.09,284.04,26.1,309.78 +6440,7,E07000234,4,68.97,284.04,26.1,309.78 +6557,9,E07000234,1,53.13,147.38,26.1,160.78 +6883,9,E07000234,2,58.72,170.16,26.1,186.23 +7209,9,E07000234,3,69.9,222.43,26.1,241.18 +7535,9,E07000234,4,81.09,355.06,26.1,387.21 +7861,10,E07000234,0,38.95,390.47,18.44,425.82 +38,1,E07000095,1,54.99,120.05,26.1,150.06 +364,1,E07000095,2,65.24,143.62,26.1,169.36 +690,1,E07000095,3,71.78,157.56,26.1,182.22 +1016,1,E07000095,4,82.02,172.58,26.1,180.08 +1342,3,E07000095,1,50.34,100.76,26.1,132.91 +1668,3,E07000095,2,58.72,118.97,26.1,133.98 +1994,3,E07000095,3,64.31,131.84,26.1,144.7 +2320,3,E07000095,4,71.78,150.06,26.1,160.78 +2646,2,E07000095,0,35.87,223.96,18.44,418.45 +2972,4,E07000095,0,55.36,134.38,18.44,314.73 +3298,6,E07000095,0,35.87,459.7,18.44,500.96 +3624,8,E07000095,0,55.36,459.7,18.44,500.96 +4124,5,E07000095,1,54.99,155.41,26.1,169.36 +4241,7,E07000095,1,50.34,155.41,26.1,169.36 +4705,5,E07000095,2,65.24,194.01,26.1,212.24 +4967,7,E07000095,2,58.72,194.01,26.1,212.24 +5424,5,E07000095,3,71.78,262.61,26.1,285.11 +5610,7,E07000095,3,64.31,262.61,26.1,285.11 +6134,5,E07000095,4,82.02,419.11,26.1,455.55 +6272,7,E07000095,4,71.78,419.11,26.1,455.55 +6558,9,E07000095,1,54.99,194.27,26.1,211.69 +6884,9,E07000095,2,65.24,242.51,26.1,265.29 +7210,9,E07000095,3,71.78,328.26,26.1,356.4 +7536,9,E07000095,4,82.02,523.89,26.1,569.43 +7862,10,E07000095,0,35.87,574.64,18.44,626.21 +39,1,E07000172,1,52.2,100.76,26.1,123.26 +365,1,E07000172,2,62.45,115.76,26.1,130.77 +691,1,E07000172,3,68.97,127.56,26.1,139.34 +1017,1,E07000172,4,76.43,159.7,26.1,168.29 +1343,3,E07000172,1,46.6,91.12,26.1,108.27 +1669,3,E07000172,2,53.13,97.54,26.1,109.33 +1995,3,E07000172,3,58.72,105.05,26.1,120.05 +2321,3,E07000172,4,64.31,123.26,26.1,123.26 +2647,2,E07000172,0,51.26,238.1,18.44,357.17 +2973,4,E07000172,0,49.2,113.15,18.44,122.59 +3299,6,E07000172,0,51.26,218.08,18.44,236.93 +3625,8,E07000172,0,49.2,218.08,18.44,236.93 +4317,5,E07000172,1,52.2,103.98,26.1,113.61 +4417,7,E07000172,1,46.6,103.98,26.1,113.61 +5013,5,E07000172,2,62.45,126.48,26.1,138.27 +5153,7,E07000172,2,53.13,126.48,26.1,138.27 +5656,5,E07000172,3,68.97,138.27,26.1,150.06 +5814,7,E07000172,3,58.72,138.27,26.1,150.06 +6231,5,E07000172,4,76.43,198.3,26.1,215.44 +6475,7,E07000172,4,64.31,198.3,26.1,215.44 +6559,9,E07000172,1,52.2,129.97,26.1,142.02 +6885,9,E07000172,2,62.45,158.09,26.1,172.84 +7211,9,E07000172,3,68.97,172.84,26.1,187.57 +7537,9,E07000172,4,76.43,247.88,26.1,269.31 +7863,10,E07000172,0,51.26,272.59,18.44,296.18 +323,1,E06000060,1,58.96,110.31,26.63,157.87 +649,1,E06000060,2,73.23,131.23,26.63,167.38 +975,1,E06000060,3,83.69,144.56,26.63,182.6 +1301,1,E06000060,4,92.25,159.77,26.63,198.75 +1627,3,E06000060,1,53.26,103.65,26.63,142.64 +1953,3,E06000060,2,64.67,116.02,26.63,130.28 +2279,3,E06000060,3,70.37,134.09,26.63,166.42 +2605,3,E06000060,4,75.13,165.47,26.63,174.03 +2931,2,E06000060,0,60.4,226.52,18.12,290.96 +3257,4,E06000060,0,47.32,165.12,18.12,173.16 +3583,6,E06000060,0,60.4,744.03,18.12,812.49 +3909,8,E06000060,0,47.32,744.03,18.12,812.49 +4049,5,E06000060,1,58.96,172.13,26.63,188.3 +4116,7,E06000060,1,53.26,172.13,26.63,188.3 +4664,5,E06000060,2,73.23,232.99,26.63,252.96 +4811,7,E06000060,2,64.67,232.99,26.63,252.96 +5316,5,E06000060,3,83.69,332.85,26.63,363.28 +5416,7,E06000060,3,70.37,332.85,26.63,363.28 +6001,5,E06000060,4,92.25,702.78,26.63,767.45 +6105,7,E06000060,4,75.13,702.78,26.63,767.45 +6843,9,E06000060,1,58.96,215.16,26.63,235.37 +7169,9,E06000060,2,73.23,291.24,26.63,316.21 +7495,9,E06000060,3,83.69,416.06,26.63,454.1 +7821,9,E06000060,4,92.25,878.48,26.63,959.31 +8147,10,E06000060,0,60.4,930.03,18.12,1015.61 +40,1,E07000117,1,52.2,94.33,26.1,117.9 +366,1,E07000117,2,59.66,108.27,26.1,136.13 +692,1,E07000117,3,66.17,121.11,26.1,146.84 +1018,1,E07000117,4,72.71,135.06,26.1,160.78 +1344,3,E07000117,1,43.8,86.81,26.1,101.83 +1670,3,E07000117,2,54.06,95.42,26.1,114.68 +1996,3,E07000117,3,58.72,106.12,26.1,125.4 +2322,3,E07000117,4,55.93,120.05,26.1,135.06 +2648,2,E07000117,0,55.36,236.93,18.44,338.29 +2974,4,E07000117,0,32.8,464.43,18.44,592.92 +3300,6,E07000117,0,55.36,205.1,18.44,225.15 +3626,8,E07000117,0,32.8,205.1,18.44,225.15 +4356,5,E07000117,1,52.2,82.54,26.1,88.96 +4468,7,E07000117,1,43.8,82.54,26.1,88.96 +4926,5,E07000117,2,59.66,98.62,26.1,108.27 +5064,7,E07000117,2,54.06,98.62,26.1,108.27 +5569,5,E07000117,3,66.17,130.77,26.1,142.56 +5744,7,E07000117,3,58.72,130.77,26.1,142.56 +6317,5,E07000117,4,72.71,187.58,26.1,204.74 +6368,7,E07000117,4,55.93,187.58,26.1,204.74 +6560,9,E07000117,1,52.2,103.19,26.1,111.21 +6886,9,E07000117,2,59.66,123.26,26.1,135.33 +7212,9,E07000117,3,66.17,163.46,26.1,178.2 +7538,9,E07000117,4,72.71,234.49,26.1,255.92 +7864,10,E07000117,0,55.36,256.39,18.44,281.43 +41,1,E08000002,1,52.2,94.33,26.1,117.9 +367,1,E08000002,2,59.66,108.27,26.1,136.13 +693,1,E08000002,3,66.17,121.11,26.1,146.84 +1019,1,E08000002,4,72.71,135.06,26.1,160.78 +1345,3,E08000002,1,43.8,86.81,26.1,101.83 +1671,3,E08000002,2,54.06,95.42,26.1,114.68 +1997,3,E08000002,3,58.72,106.12,26.1,125.4 +2323,3,E08000002,4,55.93,120.05,26.1,135.06 +2649,2,E08000002,0,55.36,236.93,18.44,338.29 +2975,4,E08000002,0,32.8,464.43,18.44,592.92 +3301,6,E08000002,0,55.36,226.32,18.44,246.36 +3627,8,E08000002,0,32.8,226.32,18.44,246.36 +4357,5,E08000002,1,52.2,98.62,26.1,108.27 +4469,7,E08000002,1,43.8,98.62,26.1,108.27 +4927,5,E08000002,2,59.66,126.48,26.1,138.27 +5065,7,E08000002,2,54.06,126.48,26.1,138.27 +5570,5,E08000002,3,66.17,148.99,26.1,161.86 +5745,7,E08000002,3,58.72,148.99,26.1,161.86 +6318,5,E08000002,4,72.71,205.81,26.1,224.01 +6369,7,E08000002,4,55.93,205.81,26.1,224.01 +6561,9,E08000002,1,52.2,123.26,26.1,135.33 +6887,9,E08000002,2,59.66,158.09,26.1,172.84 +7213,9,E08000002,3,66.17,186.23,26.1,202.34 +7539,9,E08000002,4,72.71,257.26,26.1,280.03 +7865,10,E08000002,0,55.36,282.91,18.44,307.95 +42,1,E08000033,1,51.27,92.19,26.1,114.68 +368,1,E08000033,2,58.72,109.33,26.1,141.49 +694,1,E08000033,3,63.38,121.11,26.1,162.93 +1020,1,E08000033,4,73.64,145.77,26.1,180.08 +1346,3,E08000033,1,46.6,82.54,26.1,93.26 +1672,3,E08000033,2,53.13,113.61,26.1,145.77 +1998,3,E08000033,3,56.86,105.05,26.1,114.68 +2324,3,E08000033,4,64.31,122.19,26.1,176.86 +2650,2,E08000033,0,52.28,232.2,18.44,319.44 +2976,4,E08000033,0,51.26,159.13,18.44,188.6 +3302,6,E08000033,0,52.28,225.15,18.44,245.18 +3628,8,E08000033,0,51.26,225.15,18.44,245.18 +4392,5,E08000033,1,51.27,98.62,26.1,108.27 +4546,7,E08000033,1,46.6,98.62,26.1,108.27 +4814,7,E08000033,2,53.13,114.68,26.1,124.33 +4872,5,E08000033,2,58.72,114.68,26.1,124.33 +5503,5,E08000033,3,63.38,138.27,26.1,150.06 +5850,7,E08000033,3,56.86,138.27,26.1,150.06 +6108,5,E08000033,4,73.64,204.74,26.1,222.95 +6206,7,E08000033,4,64.31,204.74,26.1,222.95 +6562,9,E08000033,1,51.27,123.26,26.1,135.33 +6888,9,E08000033,2,53.13,143.37,26.1,155.41 +7214,9,E08000033,3,63.38,172.84,26.1,187.57 +7540,9,E08000033,4,73.64,255.92,26.1,278.69 +7866,10,E08000033,0,52.28,281.43,18.44,306.45 +43,1,E07000008,1,54.99,120.05,26.1,150.06 +369,1,E07000008,2,65.24,143.62,26.1,169.36 +695,1,E07000008,3,71.78,157.56,26.1,182.22 +1021,1,E07000008,4,82.02,172.58,26.1,180.08 +1347,3,E07000008,1,50.34,100.76,26.1,132.91 +1673,3,E07000008,2,58.72,118.97,26.1,133.98 +1999,3,E07000008,3,64.31,131.84,26.1,144.7 +2325,3,E07000008,4,71.78,150.06,26.1,160.78 +2651,2,E07000008,0,35.87,223.96,18.44,418.45 +2977,4,E07000008,0,55.36,134.38,18.44,314.73 +3303,6,E07000008,0,35.87,412.57,18.44,450.29 +3629,8,E07000008,0,55.36,412.57,18.44,450.29 +4125,5,E07000008,1,54.99,189.72,26.1,206.88 +4242,7,E07000008,1,50.34,189.72,26.1,206.88 +4706,5,E07000008,2,65.24,226.16,26.1,247.6 +4968,7,E07000008,2,58.72,226.16,26.1,247.6 +5425,5,E07000008,3,71.78,262.61,26.1,285.11 +5611,7,E07000008,3,64.31,262.61,26.1,285.11 +6135,5,E07000008,4,82.02,375.16,26.1,409.45 +6273,7,E07000008,4,71.78,375.16,26.1,409.45 +6563,9,E07000008,1,54.99,237.14,26.1,258.59 +6889,9,E07000008,2,65.24,282.71,26.1,309.5 +7215,9,E07000008,3,71.78,328.26,26.1,356.4 +7541,9,E07000008,4,82.02,468.95,26.1,511.83 +7867,10,E07000008,0,35.87,515.71,18.44,562.87 +44,1,E09000007,1,66.17,146.84,26.1,199.38 +370,1,E09000007,2,78.29,158.63,26.1,194.01 +696,1,E09000007,3,84.82,168.29,26.1,228.29 +1022,1,E09000007,4,102.51,188.66,26.1,254.03 +1348,3,E09000007,1,58.72,120.05,26.1,147.91 +1674,3,E09000007,2,64.31,140.42,26.1,176.86 +2000,3,E09000007,3,71.78,160.78,26.1,202.58 +2326,3,E09000007,4,83.89,262.61,26.1,263.68 +2652,2,E09000007,0,69.7,313.55,18.44,497.44 +2978,4,E09000007,0,59.45,367.77,18.44,398.42 +3304,6,E09000007,0,69.7,1347.32,18.44,1469.9 +3630,8,E09000007,0,59.45,1347.32,18.44,1469.9 +3955,5,E09000007,1,66.17,368.73,26.1,401.95 +4169,7,E09000007,1,58.72,368.73,26.1,401.95 +4570,5,E09000007,2,78.29,501.63,26.1,546.65 +4670,7,E09000007,2,64.31,501.63,26.1,546.65 +5222,5,E09000007,3,84.82,735.31,26.1,802.83 +5322,7,E09000007,3,71.78,735.31,26.1,802.83 +5874,7,E09000007,4,83.89,1226.22,26.1,1336.62 +5907,5,E09000007,4,102.51,1226.22,26.1,1336.62 +6564,9,E09000007,1,66.17,460.91,26.1,502.45 +6890,9,E09000007,2,78.29,627.05,26.1,683.32 +7216,9,E09000007,3,84.82,919.14,26.1,1003.53 +7542,9,E09000007,4,102.51,1532.77,26.1,1670.78 +7868,10,E09000007,0,69.7,1684.16,18.44,1837.38 +45,1,E07000192,1,53.13,99.69,26.1,125.4 +371,1,E07000192,2,58.72,117.9,26.1,138.27 +697,1,E07000192,3,69.9,133.98,26.1,161.86 +1023,1,E07000192,4,81.09,162.93,26.1,180.08 +1349,3,E07000192,1,46.6,88.96,26.1,98.62 +1675,3,E07000192,2,50.34,95.42,26.1,103.98 +2001,3,E07000192,3,60.59,105.05,26.1,121.11 +2327,3,E07000192,4,68.97,128.63,26.1,128.63 +2653,2,E07000192,0,38.95,242.82,18.44,378.37 +2979,4,E07000192,0,46.12,106.09,18.44,106.09 +3305,6,E07000192,0,38.95,218.08,18.44,236.93 +3631,8,E07000192,0,46.12,218.08,18.44,236.93 +4283,5,E07000192,1,53.13,92.19,26.1,100.76 +4504,7,E07000192,1,46.6,92.19,26.1,100.76 +4893,5,E07000192,2,58.72,115.76,26.1,125.4 +5189,7,E07000192,2,50.34,115.76,26.1,125.4 +5524,5,E07000192,3,69.9,136.13,26.1,148.99 +5780,7,E07000192,3,60.59,136.13,26.1,148.99 +6176,5,E07000192,4,81.09,198.3,26.1,215.44 +6441,7,E07000192,4,68.97,198.3,26.1,215.44 +6565,9,E07000192,1,53.13,115.24,26.1,125.95 +6891,9,E07000192,2,58.72,144.7,26.1,156.77 +7217,9,E07000192,3,69.9,170.16,26.1,186.23 +7543,9,E07000192,4,81.09,247.88,26.1,269.31 +7869,10,E07000192,0,38.95,272.59,18.44,296.18 +46,1,E07000106,1,57.79,124.33,26.1,177.93 +372,1,E07000106,2,71.78,147.91,26.1,188.66 +698,1,E07000106,3,82.02,162.93,26.1,205.81 +1024,1,E07000106,4,90.42,180.08,26.1,224.01 +1350,3,E07000106,1,52.2,116.83,26.1,160.78 +1676,3,E07000106,2,63.38,130.77,26.1,146.84 +2002,3,E07000106,3,68.97,151.13,26.1,187.58 +2328,3,E07000106,4,73.64,186.51,26.1,196.15 +2654,2,E07000106,0,61.49,265.21,18.44,340.65 +2980,4,E07000106,0,48.18,193.32,18.44,202.73 +3306,6,E07000106,0,61.49,393.7,18.44,429.07 +3632,8,E07000106,0,48.18,393.7,18.44,429.07 +3990,5,E07000106,1,57.79,158.63,26.1,174.72 +4057,7,E07000106,1,52.2,158.63,26.1,174.72 +4605,5,E07000106,2,71.78,182.22,26.1,199.38 +4752,7,E07000106,2,63.38,182.22,26.1,199.38 +5257,5,E07000106,3,82.02,230.44,26.1,249.75 +5357,7,E07000106,3,68.97,230.44,26.1,249.75 +5942,5,E07000106,4,90.42,358,26.1,390.16 +6046,7,E07000106,4,73.64,358,26.1,390.16 +6566,9,E07000106,1,57.79,198.3,26.1,218.38 +6892,9,E07000106,2,71.78,227.8,26.1,249.22 +7218,9,E07000106,3,82.02,288.07,26.1,312.18 +7544,9,E07000106,4,90.42,447.51,26.1,487.71 +7870,10,E07000106,0,61.49,492.14,18.44,536.34 +47,1,E07000028,1,52.2,94.33,26.1,117.9 +373,1,E07000028,2,59.66,108.27,26.1,136.13 +699,1,E07000028,3,66.17,121.11,26.1,146.84 +1025,1,E07000028,4,72.71,135.06,26.1,160.78 +1351,3,E07000028,1,43.8,86.81,26.1,101.83 +1677,3,E07000028,2,54.06,95.42,26.1,114.68 +2003,3,E07000028,3,58.72,106.12,26.1,125.4 +2329,3,E07000028,4,55.93,120.05,26.1,135.06 +2655,2,E07000028,0,55.36,236.93,18.44,338.29 +2981,4,E07000028,0,32.8,464.43,18.44,592.92 +3307,6,E07000028,0,55.36,189.79,18.44,206.28 +3633,8,E07000028,0,32.8,189.79,18.44,206.28 +4358,5,E07000028,1,52.2,93.26,26.1,100.76 +4470,7,E07000028,1,43.8,93.26,26.1,100.76 +4928,5,E07000028,2,59.66,110.39,26.1,120.05 +5066,7,E07000028,2,54.06,110.39,26.1,120.05 +5571,5,E07000028,3,66.17,131.84,26.1,144.7 +5746,7,E07000028,3,58.72,131.84,26.1,144.7 +6319,5,E07000028,4,72.71,172.58,26.1,187.58 +6370,7,E07000028,4,55.93,172.58,26.1,187.58 +6567,9,E07000028,1,52.2,116.56,26.1,125.95 +6893,9,E07000028,2,59.66,138.01,26.1,150.06 +7219,9,E07000028,3,66.17,164.8,26.1,180.87 +7545,9,E07000028,4,72.71,215.73,26.1,234.49 +7871,10,E07000028,0,55.36,237.24,18.44,257.84 +48,1,E07000069,1,54.99,120.05,26.1,150.06 +374,1,E07000069,2,65.24,143.62,26.1,169.36 +700,1,E07000069,3,71.78,157.56,26.1,182.22 +1026,1,E07000069,4,82.02,172.58,26.1,180.08 +1352,3,E07000069,1,50.34,100.76,26.1,132.91 +1678,3,E07000069,2,58.72,118.97,26.1,133.98 +2004,3,E07000069,3,64.31,131.84,26.1,144.7 +2330,3,E07000069,4,71.78,150.06,26.1,160.78 +2656,2,E07000069,0,35.87,223.96,18.44,418.45 +2982,4,E07000069,0,55.36,134.38,18.44,314.73 +3308,6,E07000069,0,35.87,312.38,18.44,340.65 +3634,8,E07000069,0,55.36,312.38,18.44,340.65 +4126,5,E07000069,1,54.99,143.62,26.1,156.49 +4243,7,E07000069,1,50.34,143.62,26.1,156.49 +4707,5,E07000069,2,65.24,177.93,26.1,192.94 +4969,7,E07000069,2,58.72,177.93,26.1,192.94 +5426,5,E07000069,3,71.78,205.81,26.1,224.01 +5612,7,E07000069,3,64.31,205.81,26.1,224.01 +6136,5,E07000069,4,82.02,284.04,26.1,309.78 +6274,7,E07000069,4,71.78,284.04,26.1,309.78 +6568,9,E07000069,1,54.99,179.53,26.1,195.6 +6894,9,E07000069,2,65.24,222.43,26.1,241.18 +7220,9,E07000069,3,71.78,257.26,26.1,280.03 +7546,9,E07000069,4,82.02,355.06,26.1,387.21 +7872,10,E07000069,0,35.87,390.47,18.44,425.82 +49,1,E06000056,1,54.99,120.05,26.1,150.06 +375,1,E06000056,2,65.24,143.62,26.1,169.36 +701,1,E06000056,3,71.78,157.56,26.1,182.22 +1027,1,E06000056,4,82.02,172.58,26.1,180.08 +1353,3,E06000056,1,50.34,100.76,26.1,132.91 +1679,3,E06000056,2,58.72,118.97,26.1,133.98 +2005,3,E06000056,3,64.31,131.84,26.1,144.7 +2331,3,E06000056,4,71.78,150.06,26.1,160.78 +2657,2,E06000056,0,35.87,223.96,18.44,418.45 +2983,4,E06000056,0,55.36,134.38,18.44,314.73 +3309,6,E06000056,0,35.87,300.58,18.44,327.69 +3635,8,E06000056,0,55.36,300.58,18.44,327.69 +4127,5,E06000056,1,54.99,121.11,26.1,131.84 +4244,7,E06000056,1,50.34,121.11,26.1,131.84 +4708,5,E06000056,2,65.24,148.99,26.1,161.86 +4970,7,E06000056,2,58.72,148.99,26.1,161.86 +5427,5,E06000056,3,71.78,194.01,26.1,212.24 +5613,7,E06000056,3,64.31,194.01,26.1,212.24 +6137,5,E06000056,4,82.02,273.34,26.1,297.99 +6275,7,E06000056,4,71.78,273.34,26.1,297.99 +6569,9,E06000056,1,54.99,151.41,26.1,164.8 +6895,9,E06000056,2,65.24,186.23,26.1,202.34 +7221,9,E06000056,3,71.78,242.51,26.1,265.29 +7547,9,E06000056,4,82.02,341.67,26.1,372.48 +7873,10,E06000056,0,35.87,375.73,18.44,409.61 +50,1,E07000130,1,52.2,100.76,26.1,123.26 +376,1,E07000130,2,62.45,115.76,26.1,130.77 +702,1,E07000130,3,68.97,127.56,26.1,139.34 +1028,1,E07000130,4,76.43,159.7,26.1,168.29 +1354,3,E07000130,1,46.6,91.12,26.1,108.27 +1680,3,E07000130,2,53.13,97.54,26.1,109.33 +2006,3,E07000130,3,58.72,105.05,26.1,120.05 +2332,3,E07000130,4,64.31,123.26,26.1,123.26 +2658,2,E07000130,0,51.26,238.1,18.44,357.17 +2984,4,E07000130,0,49.2,113.15,18.44,122.59 +3310,6,E07000130,0,51.26,248.71,18.44,272.3 +3636,8,E07000130,0,49.2,248.71,18.44,272.3 +4318,5,E07000130,1,52.2,103.98,26.1,113.61 +4418,7,E07000130,1,46.6,103.98,26.1,113.61 +5014,5,E07000130,2,62.45,126.48,26.1,138.27 +5154,7,E07000130,2,53.13,126.48,26.1,138.27 +5657,5,E07000130,3,68.97,148.99,26.1,161.86 +5815,7,E07000130,3,58.72,148.99,26.1,161.86 +6232,5,E07000130,4,76.43,228.29,26.1,247.6 +6476,7,E07000130,4,64.31,228.29,26.1,247.6 +6570,9,E07000130,1,52.2,129.97,26.1,142.02 +6896,9,E07000130,2,62.45,158.09,26.1,172.84 +7222,9,E07000130,3,68.97,186.23,26.1,202.34 +7548,9,E07000130,4,76.43,285.39,26.1,309.5 +7874,10,E07000130,0,51.26,310.9,18.44,340.38 +51,1,E07000070,1,54.99,120.05,26.1,150.06 +377,1,E07000070,2,65.24,143.62,26.1,169.36 +703,1,E07000070,3,71.78,157.56,26.1,182.22 +1029,1,E07000070,4,82.02,172.58,26.1,180.08 +1355,3,E07000070,1,50.34,100.76,26.1,132.91 +1681,3,E07000070,2,58.72,118.97,26.1,133.98 +2007,3,E07000070,3,64.31,131.84,26.1,144.7 +2333,3,E07000070,4,71.78,150.06,26.1,160.78 +2659,2,E07000070,0,35.87,223.96,18.44,418.45 +2985,4,E07000070,0,55.36,134.38,18.44,314.73 +3311,6,E07000070,0,35.87,412.57,18.44,450.29 +3637,8,E07000070,0,55.36,412.57,18.44,450.29 +4128,5,E07000070,1,54.99,143.62,26.1,156.49 +4245,7,E07000070,1,50.34,143.62,26.1,156.49 +4709,5,E07000070,2,65.24,182.22,26.1,199.38 +4971,7,E07000070,2,58.72,182.22,26.1,199.38 +5428,5,E07000070,3,71.78,216.52,26.1,236.89 +5614,7,E07000070,3,64.31,216.52,26.1,236.89 +6138,5,E07000070,4,82.02,375.16,26.1,409.45 +6276,7,E07000070,4,71.78,375.16,26.1,409.45 +6571,9,E07000070,1,54.99,179.53,26.1,195.6 +6897,9,E07000070,2,65.24,227.8,26.1,249.22 +7223,9,E07000070,3,71.78,270.66,26.1,296.11 +7549,9,E07000070,4,82.02,468.95,26.1,511.83 +7875,10,E07000070,0,35.87,515.71,18.44,562.87 +52,1,E07000078,1,49.41,108.27,26.1,141.49 +378,1,E07000078,2,55.93,122.19,26.1,145.77 +704,1,E07000078,3,62.45,142.56,26.1,162.93 +1030,1,E07000078,4,71.78,159.7,26.1,196.15 +1356,3,E07000078,1,47.54,90.03,26.1,212.24 +1682,3,E07000078,2,54.99,101.83,26.1,112.54 +2008,3,E07000078,3,62.45,110.39,26.1,127.56 +2334,3,E07000078,4,74.57,131.84,26.1,131.84 +2660,2,E07000078,0,54.33,228.68,18.44,354.8 +2986,4,E07000078,0,54.33,114.33,18.44,140.27 +3312,6,E07000078,0,54.33,523.37,18.44,570.54 +3638,8,E07000078,0,54.33,523.37,18.44,570.54 +3916,7,E07000078,1,47.54,129.7,26.1,142.56 +4200,5,E07000078,1,49.41,129.7,26.1,142.56 +4836,5,E07000078,2,55.93,172.58,26.1,187.58 +5113,7,E07000078,2,54.99,172.58,26.1,187.58 +5467,5,E07000078,3,62.45,216.52,26.1,236.89 +5693,7,E07000078,3,62.45,216.52,26.1,236.89 +6005,5,E07000078,4,71.78,475.91,26.1,518.79 +6405,7,E07000078,4,74.57,475.91,26.1,518.79 +6572,9,E07000078,1,49.41,162.13,26.1,178.2 +6898,9,E07000078,2,55.93,215.73,26.1,234.49 +7224,9,E07000078,3,62.45,270.66,26.1,296.11 +7550,9,E07000078,4,71.78,594.88,26.1,648.48 +7876,10,E07000078,0,54.33,654.22,18.44,713.15 +53,1,E07000177,1,57.79,124.33,26.1,177.93 +379,1,E07000177,2,71.78,147.91,26.1,188.66 +705,1,E07000177,3,82.02,162.93,26.1,205.81 +1031,1,E07000177,4,90.42,180.08,26.1,224.01 +1357,3,E07000177,1,52.2,116.83,26.1,160.78 +1683,3,E07000177,2,63.38,130.77,26.1,146.84 +2009,3,E07000177,3,68.97,151.13,26.1,187.58 +2335,3,E07000177,4,73.64,186.51,26.1,196.15 +2661,2,E07000177,0,61.49,265.21,18.44,340.65 +2987,4,E07000177,0,48.18,193.32,18.44,202.73 +3313,6,E07000177,0,61.49,374.83,18.44,409.03 +3639,8,E07000177,0,48.18,374.83,18.44,409.03 +3991,5,E07000177,1,57.79,136.13,26.1,148.99 +4058,7,E07000177,1,52.2,136.13,26.1,148.99 +4606,5,E07000177,2,71.78,172.58,26.1,187.58 +4753,7,E07000177,2,63.38,172.58,26.1,187.58 +5258,5,E07000177,3,82.02,211.17,26.1,230.44 +5358,7,E07000177,3,68.97,211.17,26.1,230.44 +5943,5,E07000177,4,90.42,340.85,26.1,371.94 +6047,7,E07000177,4,73.64,340.85,26.1,371.94 +6573,9,E07000177,1,57.79,170.16,26.1,186.23 +6899,9,E07000177,2,71.78,215.73,26.1,234.49 +7225,9,E07000177,3,82.02,263.95,26.1,288.07 +7551,9,E07000177,4,90.42,426.06,26.1,464.91 +7877,10,E07000177,0,61.49,468.55,18.44,511.3 +83,1,E06000049,1,52.2,94.33,26.1,117.9 +409,1,E06000049,2,59.66,108.27,26.1,136.13 +735,1,E06000049,3,66.17,121.11,26.1,146.84 +1061,1,E06000049,4,72.71,135.06,26.1,160.78 +1387,3,E06000049,1,43.8,86.81,26.1,101.83 +1713,3,E06000049,2,54.06,95.42,26.1,114.68 +2039,3,E06000049,3,58.72,106.12,26.1,125.4 +2365,3,E06000049,4,55.93,120.05,26.1,135.06 +2691,2,E06000049,0,55.36,236.93,18.44,338.29 +3017,4,E06000049,0,32.8,464.43,18.44,592.92 +3343,6,E06000049,0,55.36,373.65,18.44,407.85 +3669,8,E06000049,0,32.8,373.65,18.44,407.85 +4363,5,E06000049,1,52.2,114.68,26.1,124.33 +4475,7,E06000049,1,43.8,114.68,26.1,124.33 +4933,5,E06000049,2,59.66,148.99,26.1,161.86 +5071,7,E06000049,2,54.06,148.99,26.1,161.86 +5576,5,E06000049,3,66.17,194.01,26.1,212.24 +5751,7,E06000049,3,58.72,194.01,26.1,212.24 +6324,5,E06000049,4,72.71,339.77,26.1,370.87 +6375,7,E06000049,4,55.93,339.77,26.1,370.87 +6603,9,E06000049,1,52.2,143.37,26.1,155.41 +6929,9,E06000049,2,59.66,186.23,26.1,202.34 +7255,9,E06000049,3,66.17,242.51,26.1,265.29 +7581,9,E06000049,4,72.71,424.73,26.1,463.59 +7907,10,E06000049,0,55.36,467.08,18.44,509.82 +54,1,E06000050,1,52.2,94.33,26.1,117.9 +380,1,E06000050,2,59.66,108.27,26.1,136.13 +706,1,E06000050,3,66.17,121.11,26.1,146.84 +1032,1,E06000050,4,72.71,135.06,26.1,160.78 +1358,3,E06000050,1,43.8,86.81,26.1,101.83 +1684,3,E06000050,2,54.06,95.42,26.1,114.68 +2010,3,E06000050,3,58.72,106.12,26.1,125.4 +2336,3,E06000050,4,55.93,120.05,26.1,135.06 +2662,2,E06000050,0,55.36,236.93,18.44,338.29 +2988,4,E06000050,0,32.8,464.43,18.44,592.92 +3314,6,E06000050,0,55.36,288.79,18.44,313.55 +3640,8,E06000050,0,32.8,288.79,18.44,313.55 +4359,5,E06000050,1,52.2,121.11,26.1,131.84 +4471,7,E06000050,1,43.8,121.11,26.1,131.84 +4929,5,E06000050,2,59.66,143.62,26.1,156.49 +5067,7,E06000050,2,54.06,143.62,26.1,156.49 +5572,5,E06000050,3,66.17,166.14,26.1,181.15 +5747,7,E06000050,3,58.72,166.14,26.1,181.15 +6320,5,E06000050,4,72.71,262.61,26.1,285.11 +6371,7,E06000050,4,55.93,262.61,26.1,285.11 +6574,9,E06000050,1,52.2,151.41,26.1,164.8 +6900,9,E06000050,2,59.66,179.53,26.1,195.6 +7226,9,E06000050,3,66.17,207.68,26.1,226.44 +7552,9,E06000050,4,72.71,328.26,26.1,356.4 +7878,10,E06000050,0,55.36,360.99,18.44,391.95 +55,1,E07000034,1,52.2,100.76,26.1,123.26 +381,1,E07000034,2,62.45,115.76,26.1,130.77 +707,1,E07000034,3,68.97,127.56,26.1,139.34 +1033,1,E07000034,4,76.43,159.7,26.1,168.29 +1359,3,E07000034,1,46.6,91.12,26.1,108.27 +1685,3,E07000034,2,53.13,97.54,26.1,109.33 +2011,3,E07000034,3,58.72,105.05,26.1,120.05 +2337,3,E07000034,4,64.31,123.26,26.1,123.26 +2663,2,E07000034,0,51.26,238.1,18.44,357.17 +2989,4,E07000034,0,49.2,113.15,18.44,122.59 +3315,6,E07000034,0,51.26,207.45,18.44,226.32 +3641,8,E07000034,0,49.2,207.45,18.44,226.32 +4319,5,E07000034,1,52.2,98.62,26.1,108.27 +4419,7,E07000034,1,46.6,98.62,26.1,108.27 +5015,5,E07000034,2,62.45,114.68,26.1,124.33 +5155,7,E07000034,2,53.13,114.68,26.1,124.33 +5658,5,E07000034,3,68.97,136.13,26.1,148.99 +5816,7,E07000034,3,58.72,136.13,26.1,148.99 +6233,5,E07000034,4,76.43,188.66,26.1,205.81 +6477,7,E07000034,4,64.31,188.66,26.1,205.81 +6575,9,E07000034,1,52.2,123.26,26.1,135.33 +6901,9,E07000034,2,62.45,143.37,26.1,155.41 +7227,9,E07000034,3,68.97,170.16,26.1,186.23 +7553,9,E07000034,4,76.43,235.82,26.1,257.26 +7879,10,E07000034,0,51.26,259.31,18.44,282.91 +56,1,E07000225,1,57.79,124.33,26.1,177.93 +382,1,E07000225,2,71.78,147.91,26.1,188.66 +708,1,E07000225,3,82.02,162.93,26.1,205.81 +1034,1,E07000225,4,90.42,180.08,26.1,224.01 +1360,3,E07000225,1,52.2,116.83,26.1,160.78 +1686,3,E07000225,2,63.38,130.77,26.1,146.84 +2012,3,E07000225,3,68.97,151.13,26.1,187.58 +2338,3,E07000225,4,73.64,186.51,26.1,196.15 +2664,2,E07000225,0,61.49,265.21,18.44,340.65 +2990,4,E07000225,0,48.18,193.32,18.44,202.73 +3316,6,E07000225,0,61.49,473.86,18.44,517.47 +3642,8,E07000225,0,48.18,473.86,18.44,517.47 +3992,5,E07000225,1,57.79,148.99,26.1,161.86 +4059,7,E07000225,1,52.2,148.99,26.1,161.86 +4607,5,E07000225,2,71.78,194.01,26.1,212.24 +4754,7,E07000225,2,63.38,194.01,26.1,212.24 +5259,5,E07000225,3,82.02,250.82,26.1,273.34 +5359,7,E07000225,3,68.97,250.82,26.1,273.34 +5944,5,E07000225,4,90.42,430.9,26.1,470.55 +6048,7,E07000225,4,73.64,430.9,26.1,470.55 +6576,9,E07000225,1,57.79,186.23,26.1,202.34 +6902,9,E07000225,2,71.78,242.51,26.1,265.29 +7228,9,E07000225,3,82.02,313.51,26.1,341.67 +7554,9,E07000225,4,90.42,538.61,26.1,588.19 +7880,10,E07000225,0,61.49,592.32,18.44,646.84 +58,1,E07000118,1,52.2,94.33,26.1,117.9 +384,1,E07000118,2,59.66,108.27,26.1,136.13 +710,1,E07000118,3,66.17,121.11,26.1,146.84 +1036,1,E07000118,4,72.71,135.06,26.1,160.78 +1362,3,E07000118,1,43.8,86.81,26.1,101.83 +1688,3,E07000118,2,54.06,95.42,26.1,114.68 +2014,3,E07000118,3,58.72,106.12,26.1,125.4 +2340,3,E07000118,4,55.93,120.05,26.1,135.06 +2666,2,E07000118,0,55.36,236.93,18.44,338.29 +2992,4,E07000118,0,32.8,464.43,18.44,592.92 +3318,6,E07000118,0,55.36,225.15,18.44,245.18 +3644,8,E07000118,0,32.8,225.15,18.44,245.18 +4360,5,E07000118,1,52.2,97.54,26.1,106.12 +4472,7,E07000118,1,43.8,97.54,26.1,106.12 +4930,5,E07000118,2,59.66,126.48,26.1,138.27 +5068,7,E07000118,2,54.06,126.48,26.1,138.27 +5573,5,E07000118,3,66.17,148.99,26.1,161.86 +5748,7,E07000118,3,58.72,148.99,26.1,161.86 +6321,5,E07000118,4,72.71,204.74,26.1,222.95 +6372,7,E07000118,4,55.93,204.74,26.1,222.95 +6578,9,E07000118,1,52.2,121.95,26.1,132.65 +6904,9,E07000118,2,59.66,158.09,26.1,172.84 +7230,9,E07000118,3,66.17,186.23,26.1,202.34 +7556,9,E07000118,4,72.71,255.92,26.1,278.69 +7882,10,E07000118,0,55.36,281.43,18.44,306.45 +60,1,E09000001,1,66.17,146.84,26.1,199.38 +386,1,E09000001,2,78.29,158.63,26.1,194.01 +712,1,E09000001,3,84.82,168.29,26.1,228.29 +1038,1,E09000001,4,102.51,188.66,26.1,254.03 +1364,3,E09000001,1,58.72,120.05,26.1,147.91 +1690,3,E09000001,2,64.31,140.42,26.1,176.86 +2016,3,E09000001,3,71.78,160.78,26.1,202.58 +2342,3,E09000001,4,83.89,262.61,26.1,263.68 +2668,2,E09000001,0,69.7,313.55,18.44,497.44 +2994,4,E09000001,0,59.45,367.77,18.44,398.42 +3320,6,E09000001,0,69.7,3175.58,18.44,3464.37 +3646,8,E09000001,0,59.45,3175.58,18.44,3464.37 +3956,5,E09000001,1,66.17,389.09,26.1,424.47 +4170,7,E09000001,1,58.72,389.09,26.1,424.47 +4571,5,E09000001,2,78.29,496.29,26.1,541.3 +4671,7,E09000001,2,64.31,496.29,26.1,541.3 +5223,5,E09000001,3,84.82,932.53,26.1,1017.2 +5323,7,E09000001,3,71.78,932.53,26.1,1017.2 +5875,7,E09000001,4,83.89,2276.66,26.1,2483.53 +5908,5,E09000001,4,102.51,2276.66,26.1,2483.53 +6580,9,E09000001,1,66.17,486.38,26.1,530.59 +6906,9,E09000001,2,78.29,620.35,26.1,676.64 +7232,9,E09000001,3,84.82,1165.67,26.1,1271.52 +7558,9,E09000001,4,102.51,2845.82,26.1,3104.42 +7884,10,E09000001,0,69.7,3969.47,18.44,4330.46 +62,1,E07000071,1,54.99,120.05,26.1,150.06 +388,1,E07000071,2,65.24,143.62,26.1,169.36 +714,1,E07000071,3,71.78,157.56,26.1,182.22 +1040,1,E07000071,4,82.02,172.58,26.1,180.08 +1366,3,E07000071,1,50.34,100.76,26.1,132.91 +1692,3,E07000071,2,58.72,118.97,26.1,133.98 +2018,3,E07000071,3,64.31,131.84,26.1,144.7 +2344,3,E07000071,4,71.78,150.06,26.1,160.78 +2670,2,E07000071,0,35.87,223.96,18.44,418.45 +2996,4,E07000071,0,55.36,134.38,18.44,314.73 +3322,6,E07000071,0,35.87,312.38,18.44,340.65 +3648,8,E07000071,0,55.36,312.38,18.44,340.65 +4129,5,E07000071,1,54.99,124.33,26.1,135.06 +4246,7,E07000071,1,50.34,124.33,26.1,135.06 +4710,5,E07000071,2,65.24,148.99,26.1,161.86 +4972,7,E07000071,2,58.72,148.99,26.1,161.86 +5429,5,E07000071,3,71.78,192.94,26.1,211.17 +5615,7,E07000071,3,64.31,192.94,26.1,211.17 +6139,5,E07000071,4,82.02,284.04,26.1,309.78 +6277,7,E07000071,4,71.78,284.04,26.1,309.78 +6582,9,E07000071,1,54.99,155.41,26.1,168.82 +6908,9,E07000071,2,65.24,186.23,26.1,202.34 +7234,9,E07000071,3,71.78,241.18,26.1,263.95 +7560,9,E07000071,4,82.02,355.06,26.1,387.21 +7886,10,E07000071,0,35.87,390.47,18.44,425.82 +63,1,E07000029,1,52.2,94.33,26.1,117.9 +389,1,E07000029,2,59.66,108.27,26.1,136.13 +715,1,E07000029,3,66.17,121.11,26.1,146.84 +1041,1,E07000029,4,72.71,135.06,26.1,160.78 +1367,3,E07000029,1,43.8,86.81,26.1,101.83 +1693,3,E07000029,2,54.06,95.42,26.1,114.68 +2019,3,E07000029,3,58.72,106.12,26.1,125.4 +2345,3,E07000029,4,55.93,120.05,26.1,135.06 +2671,2,E07000029,0,55.36,236.93,18.44,338.29 +2997,4,E07000029,0,32.8,464.43,18.44,592.92 +3323,6,E07000029,0,55.36,225.15,18.44,245.18 +3649,8,E07000029,0,32.8,225.15,18.44,245.18 +4362,5,E07000029,1,52.2,95.42,26.1,102.91 +4474,7,E07000029,1,43.8,95.42,26.1,102.91 +4932,5,E07000029,2,59.66,115.76,26.1,125.4 +5070,7,E07000029,2,54.06,115.76,26.1,125.4 +5575,5,E07000029,3,66.17,131.84,26.1,144.7 +5750,7,E07000029,3,58.72,131.84,26.1,144.7 +6323,5,E07000029,4,72.71,204.74,26.1,222.95 +6374,7,E07000029,4,55.93,204.74,26.1,222.95 +6583,9,E07000029,1,52.2,119.25,26.1,128.63 +6909,9,E07000029,2,59.66,144.7,26.1,156.77 +7235,9,E07000029,3,66.17,164.8,26.1,180.87 +7561,9,E07000029,4,72.71,255.92,26.1,278.69 +7887,10,E07000029,0,55.36,281.43,18.44,306.45 +4320,5,E06000061,1,52.2,98.62,26.1,108.27 +65,1,E06000052,1,49.41,108.27,26.1,141.49 +391,1,E06000052,2,55.93,122.19,26.1,145.77 +717,1,E06000052,3,62.45,142.56,26.1,162.93 +1043,1,E06000052,4,71.78,159.7,26.1,196.15 +1369,3,E06000052,1,47.54,90.03,26.1,212.24 +1695,3,E06000052,2,54.99,101.83,26.1,112.54 +2021,3,E06000052,3,62.45,110.39,26.1,127.56 +2347,3,E06000052,4,74.57,131.84,26.1,131.84 +2673,2,E06000052,0,54.33,228.68,18.44,354.8 +2999,4,E06000052,0,54.33,114.33,18.44,140.27 +3325,6,E06000052,0,54.33,244,18.44,266.39 +3651,8,E06000052,0,54.33,244,18.44,266.39 +3918,7,E06000052,1,47.54,115.76,26.1,125.4 +4202,5,E06000052,1,49.41,115.76,26.1,125.4 +4838,5,E06000052,2,55.93,143.62,26.1,156.49 +5115,7,E06000052,2,54.99,143.62,26.1,156.49 +5469,5,E06000052,3,62.45,168.29,26.1,182.22 +5695,7,E06000052,3,62.45,168.29,26.1,182.22 +6007,5,E06000052,4,71.78,221.88,26.1,242.25 +6407,7,E06000052,4,74.57,221.88,26.1,242.25 +6585,9,E06000052,1,49.41,144.7,26.1,156.77 +6911,9,E06000052,2,55.93,179.53,26.1,195.6 +7237,9,E06000052,3,62.45,210.37,26.1,227.8 +7563,9,E06000052,4,71.78,277.34,26.1,302.81 +7889,10,E06000052,0,54.33,305,18.44,332.99 +66,1,E07000079,1,49.41,108.27,26.1,141.49 +392,1,E07000079,2,55.93,122.19,26.1,145.77 +718,1,E07000079,3,62.45,142.56,26.1,162.93 +1044,1,E07000079,4,71.78,159.7,26.1,196.15 +1370,3,E07000079,1,47.54,90.03,26.1,212.24 +1696,3,E07000079,2,54.99,101.83,26.1,112.54 +2022,3,E07000079,3,62.45,110.39,26.1,127.56 +2348,3,E07000079,4,74.57,131.84,26.1,131.84 +2674,2,E07000079,0,54.33,228.68,18.44,354.8 +3000,4,E07000079,0,54.33,114.33,18.44,140.27 +3326,6,E07000079,0,54.33,497.44,18.44,541.06 +3652,8,E07000079,0,54.33,497.44,18.44,541.06 +3919,7,E07000079,1,47.54,126.48,26.1,138.27 +4203,5,E07000079,1,49.41,126.48,26.1,138.27 +4839,5,E07000079,2,55.93,166.14,26.1,181.15 +5116,7,E07000079,2,54.99,166.14,26.1,181.15 +5470,5,E07000079,3,62.45,205.81,26.1,224.01 +5696,7,E07000079,3,62.45,205.81,26.1,224.01 +6008,5,E07000079,4,71.78,452.33,26.1,492 +6408,7,E07000079,4,74.57,452.33,26.1,492 +6586,9,E07000079,1,49.41,158.09,26.1,172.84 +6912,9,E07000079,2,55.93,207.68,26.1,226.44 +7238,9,E07000079,3,62.45,257.26,26.1,280.03 +7564,9,E07000079,4,71.78,565.41,26.1,615.01 +7890,10,E07000079,0,54.33,621.79,18.44,676.32 +80,1,E06000047,1,51.27,88.96,26.1,98.62 +406,1,E06000047,2,57.79,102.91,26.1,121.11 +732,1,E06000047,3,61.52,114.68,26.1,160.78 +1058,1,E06000047,4,70.84,128.63,26.1,140.42 +1384,3,E06000047,1,42.87,100.76,26.1,106.12 +1710,3,E06000047,2,50.34,91.12,26.1,112.54 +2036,3,E06000047,3,54.06,106.12,26.1,125.4 +2362,3,E06000047,4,56.86,116.83,26.1,121.11 +2688,2,E06000047,0,55.36,234.56,18.44,337.12 +3014,4,E06000047,0,47.15,251.08,18.44,285.25 +3340,6,E06000047,0,55.36,200.38,18.44,219.25 +3666,8,E06000047,0,47.15,200.38,18.44,219.25 +4452,7,E06000047,1,42.87,126.48,26.1,138.27 +4533,5,E06000047,1,51.27,126.48,26.1,138.27 +5048,5,E06000047,2,57.79,103.98,26.1,113.61 +5099,7,E06000047,2,50.34,103.98,26.1,113.61 +5553,5,E06000047,3,61.52,124.33,26.1,135.06 +5728,7,E06000047,3,54.06,124.33,26.1,135.06 +6352,5,E06000047,4,70.84,182.22,26.1,199.38 +6510,7,E06000047,4,56.86,182.22,26.1,199.38 +6600,9,E06000047,1,42.87,158.09,26.1,172.84 +6926,9,E06000047,2,57.79,129.97,26.1,142.02 +7252,9,E06000047,3,61.52,155.41,26.1,168.82 +7578,9,E06000047,4,70.84,227.8,26.1,249.22 +7904,10,E06000047,0,55.36,250.47,18.44,274.05 +67,1,E08000026,1,53.13,99.69,26.1,125.4 +393,1,E08000026,2,58.72,117.9,26.1,138.27 +719,1,E08000026,3,69.9,133.98,26.1,161.86 +1045,1,E08000026,4,81.09,162.93,26.1,180.08 +1371,3,E08000026,1,46.6,88.96,26.1,98.62 +1697,3,E08000026,2,50.34,95.42,26.1,103.98 +2023,3,E08000026,3,60.59,105.05,26.1,121.11 +2349,3,E08000026,4,68.97,128.63,26.1,128.63 +2675,2,E08000026,0,38.95,242.82,18.44,378.37 +3001,4,E08000026,0,46.12,106.09,18.44,106.09 +3327,6,E08000026,0,38.95,261.68,18.44,285.25 +3653,8,E08000026,0,46.12,261.68,18.44,285.25 +4284,5,E08000026,1,53.13,114.68,26.1,124.33 +4505,7,E08000026,1,46.6,114.68,26.1,124.33 +4894,5,E08000026,2,58.72,131.84,26.1,144.7 +5190,7,E08000026,2,50.34,131.84,26.1,144.7 +5525,5,E08000026,3,69.9,148.99,26.1,161.86 +5781,7,E08000026,3,60.59,148.99,26.1,161.86 +6177,5,E08000026,4,81.09,237.96,26.1,259.39 +6442,7,E08000026,4,68.97,237.96,26.1,259.39 +6587,9,E08000026,1,53.13,143.37,26.1,155.41 +6913,9,E08000026,2,58.72,164.8,26.1,180.87 +7239,9,E08000026,3,69.9,186.23,26.1,202.34 +7565,9,E08000026,4,81.09,297.46,26.1,324.23 +7891,10,E08000026,0,38.95,327.11,18.44,356.59 +68,1,E07000163,1,51.27,92.19,26.1,114.68 +394,1,E07000163,2,58.72,109.33,26.1,141.49 +720,1,E07000163,3,63.38,121.11,26.1,162.93 +1046,1,E07000163,4,73.64,145.77,26.1,180.08 +1372,3,E07000163,1,46.6,82.54,26.1,93.26 +1698,3,E07000163,2,53.13,113.61,26.1,145.77 +2024,3,E07000163,3,56.86,105.05,26.1,114.68 +2350,3,E07000163,4,64.31,122.19,26.1,176.86 +2676,2,E07000163,0,52.28,232.2,18.44,319.44 +3002,4,E07000163,0,51.26,159.13,18.44,188.6 +3328,6,E07000163,0,52.28,213.35,18.44,233.38 +3654,8,E07000163,0,51.26,213.35,18.44,233.38 +4393,5,E07000163,1,51.27,100.76,26.1,110.39 +4547,7,E07000163,1,46.6,100.76,26.1,110.39 +4815,7,E07000163,2,53.13,130.77,26.1,143.62 +4873,5,E07000163,2,58.72,130.77,26.1,143.62 +5504,5,E07000163,3,63.38,148.99,26.1,161.86 +5851,7,E07000163,3,56.86,148.99,26.1,161.86 +6109,5,E07000163,4,73.64,194.01,26.1,212.24 +6207,7,E07000163,4,64.31,194.01,26.1,212.24 +6588,9,E07000163,1,51.27,125.95,26.1,138.01 +6914,9,E07000163,2,53.13,163.46,26.1,179.53 +7240,9,E07000163,3,63.38,186.23,26.1,202.34 +7566,9,E07000163,4,73.64,242.51,26.1,265.29 +7892,10,E07000163,0,52.28,266.69,18.44,291.74 +69,1,E07000226,1,57.79,124.33,26.1,177.93 +395,1,E07000226,2,71.78,147.91,26.1,188.66 +721,1,E07000226,3,82.02,162.93,26.1,205.81 +1047,1,E07000226,4,90.42,180.08,26.1,224.01 +1373,3,E07000226,1,52.2,116.83,26.1,160.78 +1699,3,E07000226,2,63.38,130.77,26.1,146.84 +2025,3,E07000226,3,68.97,151.13,26.1,187.58 +2351,3,E07000226,4,73.64,186.51,26.1,196.15 +2677,2,E07000226,0,61.49,265.21,18.44,340.65 +3003,4,E07000226,0,48.18,193.32,18.44,202.73 +3329,6,E07000226,0,61.49,350.07,18.44,380.74 +3655,8,E07000226,0,48.18,350.07,18.44,380.74 +3994,5,E07000226,1,57.79,155.41,26.1,169.36 +4061,7,E07000226,1,52.2,155.41,26.1,169.36 +4609,5,E07000226,2,71.78,194.01,26.1,212.24 +4756,7,E07000226,2,63.38,194.01,26.1,212.24 +5261,5,E07000226,3,82.02,229.37,26.1,248.67 +5361,7,E07000226,3,68.97,229.37,26.1,248.67 +5946,5,E07000226,4,90.42,318.35,26.1,346.22 +6050,7,E07000226,4,73.64,318.35,26.1,346.22 +6589,9,E07000226,1,57.79,194.27,26.1,211.69 +6915,9,E07000226,2,71.78,242.51,26.1,265.29 +7241,9,E07000226,3,82.02,286.72,26.1,310.84 +7567,9,E07000226,4,90.42,397.93,26.1,432.75 +7893,10,E07000226,0,61.49,437.59,18.44,475.94 +70,1,E09000008,1,66.17,146.84,26.1,199.38 +396,1,E09000008,2,78.29,158.63,26.1,194.01 +722,1,E09000008,3,84.82,168.29,26.1,228.29 +1048,1,E09000008,4,102.51,188.66,26.1,254.03 +1374,3,E09000008,1,58.72,120.05,26.1,147.91 +1700,3,E09000008,2,64.31,140.42,26.1,176.86 +2026,3,E09000008,3,71.78,160.78,26.1,202.58 +2352,3,E09000008,4,83.89,262.61,26.1,263.68 +2678,2,E09000008,0,69.7,313.55,18.44,497.44 +3004,4,E09000008,0,59.45,367.77,18.44,398.42 +3330,6,E09000008,0,69.7,432.61,18.44,471.5 +3656,8,E09000008,0,59.45,432.61,18.44,471.5 +3957,5,E09000008,1,66.17,177.93,26.1,192.94 +4171,7,E09000008,1,58.72,177.93,26.1,192.94 +4572,5,E09000008,2,78.29,216.52,26.1,236.89 +4672,7,E09000008,2,64.31,216.52,26.1,236.89 +5224,5,E09000008,3,84.82,273.34,26.1,297.99 +5324,7,E09000008,3,71.78,273.34,26.1,297.99 +5876,7,E09000008,4,83.89,394.47,26.1,428.76 +5909,5,E09000008,4,102.51,394.47,26.1,428.76 +6590,9,E09000008,1,66.17,222.43,26.1,241.18 +6916,9,E09000008,2,78.29,270.66,26.1,296.11 +7242,9,E09000008,3,84.82,341.67,26.1,372.48 +7568,9,E09000008,4,102.51,493.07,26.1,535.95 +7894,10,E09000008,0,69.7,540.75,18.44,589.38 +71,1,E07000096,1,54.99,120.05,26.1,150.06 +397,1,E07000096,2,65.24,143.62,26.1,169.36 +723,1,E07000096,3,71.78,157.56,26.1,182.22 +1049,1,E07000096,4,82.02,172.58,26.1,180.08 +1375,3,E07000096,1,50.34,100.76,26.1,132.91 +1701,3,E07000096,2,58.72,118.97,26.1,133.98 +2027,3,E07000096,3,64.31,131.84,26.1,144.7 +2353,3,E07000096,4,71.78,150.06,26.1,160.78 +2679,2,E07000096,0,35.87,223.96,18.44,418.45 +3005,4,E07000096,0,55.36,134.38,18.44,314.73 +3331,6,E07000096,0,35.87,498.61,18.44,543.41 +3657,8,E07000096,0,55.36,498.61,18.44,543.41 +4130,5,E07000096,1,54.99,148.99,26.1,161.86 +4247,7,E07000096,1,50.34,148.99,26.1,161.86 +4711,5,E07000096,2,65.24,194.01,26.1,212.24 +4973,7,E07000096,2,58.72,194.01,26.1,212.24 +5430,5,E07000096,3,71.78,273.34,26.1,297.99 +5616,7,E07000096,3,64.31,273.34,26.1,297.99 +6140,5,E07000096,4,82.02,453.4,26.1,494.14 +6278,7,E07000096,4,71.78,453.4,26.1,494.14 +6591,9,E07000096,1,54.99,186.23,26.1,202.34 +6917,9,E07000096,2,65.24,242.51,26.1,265.29 +7243,9,E07000096,3,71.78,341.67,26.1,372.48 +7569,9,E07000096,4,82.02,566.75,26.1,617.67 +7895,10,E07000096,0,35.87,623.27,18.44,679.26 +72,1,E06000005,1,51.27,88.96,26.1,98.62 +398,1,E06000005,2,57.79,102.91,26.1,121.11 +724,1,E06000005,3,61.52,114.68,26.1,160.78 +1050,1,E06000005,4,70.84,128.63,26.1,140.42 +1376,3,E06000005,1,42.87,100.76,26.1,106.12 +1702,3,E06000005,2,50.34,91.12,26.1,112.54 +2028,3,E06000005,3,54.06,106.12,26.1,125.4 +2354,3,E06000005,4,56.86,116.83,26.1,121.11 +2680,2,E06000005,0,55.36,234.56,18.44,337.12 +3006,4,E06000005,0,47.15,251.08,18.44,285.25 +3332,6,E06000005,0,55.36,207.45,18.44,226.32 +3658,8,E06000005,0,47.15,207.45,18.44,226.32 +4451,7,E06000005,1,42.87,91.12,26.1,98.62 +4532,5,E06000005,1,51.27,91.12,26.1,98.62 +5047,5,E06000005,2,57.79,110.39,26.1,120.05 +5098,7,E06000005,2,50.34,110.39,26.1,120.05 +5552,5,E06000005,3,61.52,131.84,26.1,144.7 +5727,7,E06000005,3,54.06,131.84,26.1,144.7 +6351,5,E06000005,4,70.84,188.66,26.1,205.81 +6509,7,E06000005,4,56.86,188.66,26.1,205.81 +6592,9,E06000005,1,42.87,113.9,26.1,123.26 +6918,9,E06000005,2,57.79,138.01,26.1,150.06 +7244,9,E06000005,3,61.52,164.8,26.1,180.87 +7570,9,E06000005,4,70.84,235.82,26.1,257.26 +7896,10,E06000005,0,55.36,259.31,18.44,282.91 +73,1,E07000107,1,57.79,124.33,26.1,177.93 +399,1,E07000107,2,71.78,147.91,26.1,188.66 +725,1,E07000107,3,82.02,162.93,26.1,205.81 +1051,1,E07000107,4,90.42,180.08,26.1,224.01 +1377,3,E07000107,1,52.2,116.83,26.1,160.78 +1703,3,E07000107,2,63.38,130.77,26.1,146.84 +2029,3,E07000107,3,68.97,151.13,26.1,187.58 +2355,3,E07000107,4,73.64,186.51,26.1,196.15 +2681,2,E07000107,0,61.49,265.21,18.44,340.65 +3007,4,E07000107,0,48.18,193.32,18.44,202.73 +3333,6,E07000107,0,61.49,363.05,18.44,396.05 +3659,8,E07000107,0,48.18,363.05,18.44,396.05 +3995,5,E07000107,1,57.79,138.27,26.1,150.06 +4062,7,E07000107,1,52.2,138.27,26.1,150.06 +4610,5,E07000107,2,71.78,182.22,26.1,199.38 +4757,7,E07000107,2,63.38,182.22,26.1,199.38 +5262,5,E07000107,3,82.02,211.17,26.1,230.44 +5362,7,E07000107,3,68.97,211.17,26.1,230.44 +5947,5,E07000107,4,90.42,330.14,26.1,360.15 +6051,7,E07000107,4,73.64,330.14,26.1,360.15 +6593,9,E07000107,1,57.79,172.84,26.1,187.57 +6919,9,E07000107,2,71.78,227.8,26.1,249.22 +7245,9,E07000107,3,82.02,263.95,26.1,288.07 +7571,9,E07000107,4,90.42,412.67,26.1,450.18 +7897,10,E07000107,0,61.49,453.82,18.44,495.08 +75,1,E06000015,1,52.2,100.76,26.1,123.26 +401,1,E06000015,2,62.45,115.76,26.1,130.77 +727,1,E06000015,3,68.97,127.56,26.1,139.34 +1053,1,E06000015,4,76.43,159.7,26.1,168.29 +1379,3,E06000015,1,46.6,91.12,26.1,108.27 +1705,3,E06000015,2,53.13,97.54,26.1,109.33 +2031,3,E06000015,3,58.72,105.05,26.1,120.05 +2357,3,E06000015,4,64.31,123.26,26.1,123.26 +2683,2,E06000015,0,51.26,238.1,18.44,357.17 +3009,4,E06000015,0,49.2,113.15,18.44,122.59 +3335,6,E06000015,0,51.26,248.71,18.44,272.3 +3661,8,E06000015,0,49.2,248.71,18.44,272.3 +4322,5,E06000015,1,52.2,98.62,26.1,108.27 +4422,7,E06000015,1,46.6,98.62,26.1,108.27 +5018,5,E06000015,2,62.45,121.11,26.1,131.84 +5158,7,E06000015,2,53.13,121.11,26.1,131.84 +5661,5,E06000015,3,68.97,143.62,26.1,156.49 +5819,7,E06000015,3,58.72,143.62,26.1,156.49 +6236,5,E06000015,4,76.43,228.29,26.1,247.6 +6480,7,E06000015,4,64.31,228.29,26.1,247.6 +6595,9,E06000015,1,52.2,123.26,26.1,135.33 +6921,9,E06000015,2,62.45,151.41,26.1,164.8 +7247,9,E06000015,3,68.97,179.53,26.1,195.6 +7573,9,E06000015,4,76.43,285.39,26.1,309.5 +7899,10,E06000015,0,51.26,310.9,18.44,340.38 +76,1,E07000035,1,52.2,100.76,26.1,123.26 +402,1,E07000035,2,62.45,115.76,26.1,130.77 +728,1,E07000035,3,68.97,127.56,26.1,139.34 +1054,1,E07000035,4,76.43,159.7,26.1,168.29 +1380,3,E07000035,1,46.6,91.12,26.1,108.27 +1706,3,E07000035,2,53.13,97.54,26.1,109.33 +2032,3,E07000035,3,58.72,105.05,26.1,120.05 +2358,3,E07000035,4,64.31,123.26,26.1,123.26 +2684,2,E07000035,0,51.26,238.1,18.44,357.17 +3010,4,E07000035,0,49.2,113.15,18.44,122.59 +3336,6,E07000035,0,51.26,272.3,18.44,297.05 +3662,8,E07000035,0,49.2,272.3,18.44,297.05 +4323,5,E07000035,1,52.2,110.39,26.1,120.05 +4423,7,E07000035,1,46.6,110.39,26.1,120.05 +5019,5,E07000035,2,62.45,136.13,26.1,148.99 +5159,7,E07000035,2,53.13,136.13,26.1,148.99 +5662,5,E07000035,3,68.97,159.7,26.1,174.72 +5820,7,E07000035,3,58.72,159.7,26.1,174.72 +6237,5,E07000035,4,76.43,247.6,26.1,270.11 +6481,7,E07000035,4,64.31,247.6,26.1,270.11 +6596,9,E07000035,1,52.2,138.01,26.1,150.06 +6922,9,E07000035,2,62.45,170.16,26.1,186.23 +7248,9,E07000035,3,68.97,199.62,26.1,218.38 +7574,9,E07000035,4,76.43,309.5,26.1,337.64 +7900,10,E07000035,0,51.26,340.38,18.44,371.3 +77,1,E08000017,1,51.27,92.19,26.1,114.68 +403,1,E08000017,2,58.72,109.33,26.1,141.49 +729,1,E08000017,3,63.38,121.11,26.1,162.93 +1055,1,E08000017,4,73.64,145.77,26.1,180.08 +1381,3,E08000017,1,46.6,82.54,26.1,93.26 +1707,3,E08000017,2,53.13,113.61,26.1,145.77 +2033,3,E08000017,3,56.86,105.05,26.1,114.68 +2359,3,E08000017,4,64.31,122.19,26.1,176.86 +2685,2,E08000017,0,52.28,232.2,18.44,319.44 +3011,4,E08000017,0,51.26,159.13,18.44,188.6 +3337,6,E08000017,0,52.28,189.79,18.44,206.28 +3663,8,E08000017,0,51.26,189.79,18.44,206.28 +4394,5,E08000017,1,51.27,92.19,26.1,99.69 +4548,7,E08000017,1,46.6,92.19,26.1,99.69 +4816,7,E08000017,2,53.13,110.39,26.1,120.05 +4874,5,E08000017,2,58.72,110.39,26.1,120.05 +5505,5,E08000017,3,63.38,126.48,26.1,138.27 +5852,7,E08000017,3,56.86,126.48,26.1,138.27 +6110,5,E08000017,4,73.64,172.58,26.1,187.58 +6208,7,E08000017,4,64.31,172.58,26.1,187.58 +6597,9,E08000017,1,51.27,115.24,26.1,124.6 +6923,9,E08000017,2,53.13,138.01,26.1,150.06 +7249,9,E08000017,3,63.38,158.09,26.1,172.84 +7575,9,E08000017,4,73.64,215.73,26.1,234.49 +7901,10,E08000017,0,52.28,237.24,18.44,257.84 +85,1,E06000059,1,49.41,108.27,26.1,141.49 +411,1,E06000059,2,55.93,122.19,26.1,145.77 +737,1,E06000059,3,62.45,142.56,26.1,162.93 +1063,1,E06000059,4,71.78,159.7,26.1,196.15 +1389,3,E06000059,1,47.54,90.03,26.1,212.24 +1715,3,E06000059,2,54.99,101.83,26.1,112.54 +2041,3,E06000059,3,62.45,110.39,26.1,127.56 +2367,3,E06000059,4,74.57,131.84,26.1,131.84 +2693,2,E06000059,0,54.33,228.68,18.44,354.8 +3019,4,E06000059,0,54.33,114.33,18.44,140.27 +3345,6,E06000059,0,54.33,398.42,18.44,434.96 +3671,8,E06000059,0,54.33,398.42,18.44,434.96 +3921,7,E06000059,1,47.54,136.13,26.1,148.99 +4205,5,E06000059,1,49.41,136.13,26.1,148.99 +4841,5,E06000059,2,55.93,172.58,26.1,187.58 +5118,7,E06000059,2,54.99,172.58,26.1,187.58 +5472,5,E06000059,3,62.45,211.17,26.1,230.44 +5698,7,E06000059,3,62.45,211.17,26.1,230.44 +6010,5,E06000059,4,71.78,362.28,26.1,395.52 +6410,7,E06000059,4,74.57,362.28,26.1,395.52 +6605,9,E06000059,1,49.41,170.16,26.1,186.23 +6931,9,E06000059,2,55.93,215.73,26.1,234.49 +7257,9,E06000059,3,62.45,263.95,26.1,288.07 +7583,9,E06000059,4,71.78,452.87,26.1,494.42 +7909,10,E06000059,0,54.33,498.02,18.44,543.71 +78,1,E07000108,1,57.79,124.33,26.1,177.93 +404,1,E07000108,2,71.78,147.91,26.1,188.66 +730,1,E07000108,3,82.02,162.93,26.1,205.81 +1056,1,E07000108,4,90.42,180.08,26.1,224.01 +1382,3,E07000108,1,52.2,116.83,26.1,160.78 +1708,3,E07000108,2,63.38,130.77,26.1,146.84 +2034,3,E07000108,3,68.97,151.13,26.1,187.58 +2360,3,E07000108,4,73.64,186.51,26.1,196.15 +2686,2,E07000108,0,61.49,265.21,18.44,340.65 +3012,4,E07000108,0,48.18,193.32,18.44,202.73 +3338,6,E07000108,0,61.49,264.04,18.44,287.62 +3664,8,E07000108,0,48.18,264.04,18.44,287.62 +3996,5,E07000108,1,57.79,106.12,26.1,115.76 +4063,7,E07000108,1,52.2,106.12,26.1,115.76 +4611,5,E07000108,2,71.78,143.62,26.1,156.49 +4758,7,E07000108,2,63.38,143.62,26.1,156.49 +5263,5,E07000108,3,82.02,172.58,26.1,187.58 +5363,7,E07000108,3,68.97,172.58,26.1,187.58 +5948,5,E07000108,4,90.42,240.09,26.1,261.54 +6052,7,E07000108,4,73.64,240.09,26.1,261.54 +6598,9,E07000108,1,57.79,132.65,26.1,144.7 +6924,9,E07000108,2,71.78,179.53,26.1,195.6 +7250,9,E07000108,3,82.02,215.73,26.1,234.49 +7576,9,E07000108,4,90.42,300.12,26.1,326.92 +7902,10,E07000108,0,61.49,330.05,18.44,359.53 +79,1,E08000027,1,53.13,99.69,26.1,125.4 +405,1,E08000027,2,58.72,117.9,26.1,138.27 +731,1,E08000027,3,69.9,133.98,26.1,161.86 +1057,1,E08000027,4,81.09,162.93,26.1,180.08 +1383,3,E08000027,1,46.6,88.96,26.1,98.62 +1709,3,E08000027,2,50.34,95.42,26.1,103.98 +2035,3,E08000027,3,60.59,105.05,26.1,121.11 +2361,3,E08000027,4,68.97,128.63,26.1,128.63 +2687,2,E08000027,0,38.95,242.82,18.44,378.37 +3013,4,E08000027,0,46.12,106.09,18.44,106.09 +3339,6,E08000027,0,38.95,213.35,18.44,233.38 +3665,8,E08000027,0,46.12,213.35,18.44,233.38 +4285,5,E08000027,1,53.13,98.62,26.1,108.27 +4506,7,E08000027,1,46.6,98.62,26.1,108.27 +4895,5,E08000027,2,58.72,121.11,26.1,131.84 +5191,7,E08000027,2,50.34,121.11,26.1,131.84 +5526,5,E08000027,3,69.9,143.62,26.1,156.49 +5782,7,E08000027,3,60.59,143.62,26.1,156.49 +6178,5,E08000027,4,81.09,194.01,26.1,212.24 +6443,7,E08000027,4,68.97,194.01,26.1,212.24 +6599,9,E08000027,1,53.13,123.26,26.1,135.33 +6925,9,E08000027,2,58.72,151.41,26.1,164.8 +7251,9,E08000027,3,69.9,179.53,26.1,195.6 +7577,9,E08000027,4,81.09,242.51,26.1,265.29 +7903,10,E08000027,0,38.95,266.69,18.44,291.74 +81,1,E09000009,1,66.17,146.84,26.1,199.38 +407,1,E09000009,2,78.29,158.63,26.1,194.01 +733,1,E09000009,3,84.82,168.29,26.1,228.29 +1059,1,E09000009,4,102.51,188.66,26.1,254.03 +1385,3,E09000009,1,58.72,120.05,26.1,147.91 +1711,3,E09000009,2,64.31,140.42,26.1,176.86 +2037,3,E09000009,3,71.78,160.78,26.1,202.58 +2363,3,E09000009,4,83.89,262.61,26.1,263.68 +2689,2,E09000009,0,69.7,313.55,18.44,497.44 +3015,4,E09000009,0,59.45,367.77,18.44,398.42 +3341,6,E09000009,0,69.7,674.26,18.44,735.54 +3667,8,E09000009,0,59.45,674.26,18.44,735.54 +3958,5,E09000009,1,66.17,240.09,26.1,262.61 +4172,7,E09000009,1,58.72,240.09,26.1,262.61 +4573,5,E09000009,2,78.29,319.42,26.1,348.36 +4673,7,E09000009,2,64.31,319.42,26.1,348.36 +5225,5,E09000009,3,84.82,363.36,26.1,396.59 +5325,7,E09000009,3,71.78,363.36,26.1,396.59 +5877,7,E09000009,4,83.89,614.19,26.1,668.85 +5910,5,E09000009,4,102.51,614.19,26.1,668.85 +6601,9,E09000009,1,66.17,300.12,26.1,328.26 +6927,9,E09000009,2,78.29,399.29,26.1,435.45 +7253,9,E09000009,3,84.82,454.21,26.1,495.75 +7579,9,E09000009,4,102.51,767.74,26.1,836.07 +7905,10,E09000009,0,69.7,842.81,18.44,919.43 +82,1,E07000009,1,54.99,120.05,26.1,150.06 +408,1,E07000009,2,65.24,143.62,26.1,169.36 +734,1,E07000009,3,71.78,157.56,26.1,182.22 +1060,1,E07000009,4,82.02,172.58,26.1,180.08 +1386,3,E07000009,1,50.34,100.76,26.1,132.91 +1712,3,E07000009,2,58.72,118.97,26.1,133.98 +2038,3,E07000009,3,64.31,131.84,26.1,144.7 +2364,3,E07000009,4,71.78,150.06,26.1,160.78 +2690,2,E07000009,0,35.87,223.96,18.44,418.45 +3016,4,E07000009,0,55.36,134.38,18.44,314.73 +3342,6,E07000009,0,35.87,338.29,18.44,368.95 +3668,8,E07000009,0,55.36,338.29,18.44,368.95 +4131,5,E07000009,1,54.99,115.76,26.1,125.4 +4248,7,E07000009,1,50.34,115.76,26.1,125.4 +4712,5,E07000009,2,65.24,143.62,26.1,156.49 +4974,7,E07000009,2,58.72,143.62,26.1,156.49 +5431,5,E07000009,3,71.78,183.29,26.1,200.45 +5617,7,E07000009,3,64.31,183.29,26.1,200.45 +6141,5,E07000009,4,82.02,307.63,26.1,335.49 +6279,7,E07000009,4,71.78,307.63,26.1,335.49 +6602,9,E07000009,1,54.99,144.7,26.1,156.77 +6928,9,E07000009,2,65.24,179.53,26.1,195.6 +7254,9,E07000009,3,71.78,229.13,26.1,250.54 +7580,9,E07000009,4,82.02,384.53,26.1,419.36 +7906,10,E07000009,0,35.87,422.87,18.44,461.19 +84,1,E07000040,1,49.41,108.27,26.1,141.49 +410,1,E07000040,2,55.93,122.19,26.1,145.77 +736,1,E07000040,3,62.45,142.56,26.1,162.93 +1062,1,E07000040,4,71.78,159.7,26.1,196.15 +1388,3,E07000040,1,47.54,90.03,26.1,212.24 +1714,3,E07000040,2,54.99,101.83,26.1,112.54 +2040,3,E07000040,3,62.45,110.39,26.1,127.56 +2366,3,E07000040,4,74.57,131.84,26.1,131.84 +2692,2,E07000040,0,54.33,228.68,18.44,354.8 +3018,4,E07000040,0,54.33,114.33,18.44,140.27 +3344,6,E07000040,0,54.33,312.38,18.44,340.65 +3670,8,E07000040,0,54.33,312.38,18.44,340.65 +3920,7,E07000040,1,47.54,115.76,26.1,125.4 +4204,5,E07000040,1,49.41,115.76,26.1,125.4 +4840,5,E07000040,2,55.93,148.99,26.1,161.86 +5117,7,E07000040,2,54.99,148.99,26.1,161.86 +5471,5,E07000040,3,62.45,183.29,26.1,200.45 +5697,7,E07000040,3,62.45,183.29,26.1,200.45 +6009,5,E07000040,4,71.78,284.04,26.1,309.78 +6409,7,E07000040,4,74.57,284.04,26.1,309.78 +6604,9,E07000040,1,49.41,144.7,26.1,156.77 +6930,9,E07000040,2,55.93,186.23,26.1,202.34 +7256,9,E07000040,3,62.45,229.13,26.1,250.54 +7582,9,E07000040,4,71.78,355.06,26.1,387.21 +7908,10,E07000040,0,54.33,390.47,18.44,425.82 +86,1,E07000085,1,57.79,124.33,26.1,177.93 +412,1,E07000085,2,71.78,147.91,26.1,188.66 +738,1,E07000085,3,82.02,162.93,26.1,205.81 +1064,1,E07000085,4,90.42,180.08,26.1,224.01 +1390,3,E07000085,1,52.2,116.83,26.1,160.78 +1716,3,E07000085,2,63.38,130.77,26.1,146.84 +2042,3,E07000085,3,68.97,151.13,26.1,187.58 +2368,3,E07000085,4,73.64,186.51,26.1,196.15 +2694,2,E07000085,0,61.49,265.21,18.44,340.65 +3020,4,E07000085,0,48.18,193.32,18.44,202.73 +3346,6,E07000085,0,61.49,449.11,18.44,489.16 +3672,8,E07000085,0,48.18,449.11,18.44,489.16 +3997,5,E07000085,1,57.79,138.27,26.1,150.06 +4064,7,E07000085,1,52.2,138.27,26.1,150.06 +4612,5,E07000085,2,71.78,182.22,26.1,199.38 +4759,7,E07000085,2,63.38,182.22,26.1,199.38 +5264,5,E07000085,3,82.02,228.29,26.1,247.6 +5364,7,E07000085,3,68.97,228.29,26.1,247.6 +5949,5,E07000085,4,90.42,408.38,26.1,444.82 +6053,7,E07000085,4,73.64,408.38,26.1,444.82 +6606,9,E07000085,1,57.79,172.84,26.1,187.57 +6932,9,E07000085,2,71.78,227.8,26.1,249.22 +7258,9,E07000085,3,82.02,285.39,26.1,309.5 +7584,9,E07000085,4,90.42,510.49,26.1,556.05 +7910,10,E07000085,0,61.49,561.4,18.44,611.47 +87,1,E07000242,1,54.99,120.05,26.1,150.06 +413,1,E07000242,2,65.24,143.62,26.1,169.36 +739,1,E07000242,3,71.78,157.56,26.1,182.22 +1065,1,E07000242,4,82.02,172.58,26.1,180.08 +1391,3,E07000242,1,50.34,100.76,26.1,132.91 +1717,3,E07000242,2,58.72,118.97,26.1,133.98 +2043,3,E07000242,3,64.31,131.84,26.1,144.7 +2369,3,E07000242,4,71.78,150.06,26.1,160.78 +2695,2,E07000242,0,35.87,223.96,18.44,418.45 +3021,4,E07000242,0,55.36,134.38,18.44,314.73 +3347,6,E07000242,0,35.87,437.32,18.44,476.22 +3673,8,E07000242,0,55.36,437.32,18.44,476.22 +4132,5,E07000242,1,54.99,155.41,26.1,169.36 +4249,7,E07000242,1,50.34,155.41,26.1,169.36 +4713,5,E07000242,2,65.24,194.01,26.1,212.24 +4975,7,E07000242,2,58.72,194.01,26.1,212.24 +5432,5,E07000242,3,71.78,272.26,26.1,296.91 +5618,7,E07000242,3,64.31,272.26,26.1,296.91 +6142,5,E07000242,4,82.02,397.66,26.1,433.04 +6280,7,E07000242,4,71.78,397.66,26.1,433.04 +6607,9,E07000242,1,54.99,194.27,26.1,211.69 +6933,9,E07000242,2,65.24,242.51,26.1,265.29 +7259,9,E07000242,3,71.78,340.33,26.1,371.13 +7585,9,E07000242,4,82.02,497.09,26.1,541.3 +7911,10,E07000242,0,35.87,546.66,18.44,595.28 +88,1,E07000137,1,52.2,100.76,26.1,123.26 +414,1,E07000137,2,62.45,115.76,26.1,130.77 +740,1,E07000137,3,68.97,127.56,26.1,139.34 +1066,1,E07000137,4,76.43,159.7,26.1,168.29 +1392,3,E07000137,1,46.6,91.12,26.1,108.27 +1718,3,E07000137,2,53.13,97.54,26.1,109.33 +2044,3,E07000137,3,58.72,105.05,26.1,120.05 +2370,3,E07000137,4,64.31,123.26,26.1,123.26 +2696,2,E07000137,0,51.26,238.1,18.44,357.17 +3022,4,E07000137,0,49.2,113.15,18.44,122.59 +3348,6,E07000137,0,51.26,176.82,18.44,193.32 +3674,8,E07000137,0,49.2,176.82,18.44,193.32 +4324,5,E07000137,1,52.2,87.89,26.1,95.42 +4424,7,E07000137,1,46.6,87.89,26.1,95.42 +5020,5,E07000137,2,62.45,110.39,26.1,120.05 +5160,7,E07000137,2,53.13,110.39,26.1,120.05 +5663,5,E07000137,3,68.97,126.48,26.1,139.34 +5821,7,E07000137,3,58.72,126.48,26.1,139.34 +6238,5,E07000137,4,76.43,160.78,26.1,175.78 +6482,7,E07000137,4,64.31,160.78,26.1,175.78 +6608,9,E07000137,1,52.2,109.88,26.1,119.25 +6934,9,E07000137,2,62.45,138.01,26.1,150.06 +7260,9,E07000137,3,68.97,158.09,26.1,174.17 +7586,9,E07000137,4,76.43,200.97,26.1,219.74 +7912,10,E07000137,0,51.26,221.02,18.44,241.66 +89,1,E06000061,1,52.2,100.76,26.1,123.26 +415,1,E06000061,2,62.45,115.76,26.1,130.77 +741,1,E06000061,3,68.97,127.56,26.1,139.34 +1067,1,E06000061,4,76.43,159.7,26.1,168.29 +1393,3,E06000061,1,46.6,91.12,26.1,108.27 +1719,3,E06000061,2,53.13,97.54,26.1,109.33 +2045,3,E06000061,3,58.72,105.05,26.1,120.05 +2371,3,E06000061,4,64.31,123.26,26.1,123.26 +2697,2,E06000061,0,51.26,238.1,18.44,357.17 +3023,4,E06000061,0,49.2,113.15,18.44,122.59 +3349,6,E06000061,0,51.26,275.83,18.44,300.58 +3675,8,E06000061,0,49.2,275.83,18.44,300.58 +4425,7,E06000061,1,46.6,98.62,26.1,108.27 +5021,5,E06000061,2,62.45,126.48,26.1,138.27 +5161,7,E06000061,2,53.13,126.48,26.1,138.27 +5664,5,E06000061,3,68.97,148.99,26.1,161.86 +5822,7,E06000061,3,58.72,148.99,26.1,161.86 +6239,5,E06000061,4,76.43,250.82,26.1,273.34 +6483,7,E06000061,4,64.31,250.82,26.1,273.34 +6609,9,E06000061,1,52.2,123.26,26.1,135.33 +6935,9,E06000061,2,62.45,158.09,26.1,172.84 +7261,9,E06000061,3,68.97,186.23,26.1,202.34 +7587,9,E06000061,4,76.43,313.51,26.1,341.67 +7913,10,E06000061,0,51.26,344.81,18.44,375.73 +90,1,E06000011,1,51.27,92.19,26.1,114.68 +416,1,E06000011,2,58.72,109.33,26.1,141.49 +742,1,E06000011,3,63.38,121.11,26.1,162.93 +1068,1,E06000011,4,73.64,145.77,26.1,180.08 +1394,3,E06000011,1,46.6,82.54,26.1,93.26 +1720,3,E06000011,2,53.13,113.61,26.1,145.77 +2046,3,E06000011,3,56.86,105.05,26.1,114.68 +2372,3,E06000011,4,64.31,122.19,26.1,176.86 +2698,2,E06000011,0,52.28,232.2,18.44,319.44 +3024,4,E06000011,0,51.26,159.13,18.44,188.6 +3350,6,E06000011,0,52.28,207.45,18.44,226.32 +3676,8,E06000011,0,51.26,207.45,18.44,226.32 +4395,5,E06000011,1,51.27,90.03,26.1,97.54 +4549,7,E06000011,1,46.6,90.03,26.1,97.54 +4817,7,E06000011,2,53.13,113.61,26.1,123.26 +4875,5,E06000011,2,58.72,113.61,26.1,123.26 +5506,5,E06000011,3,63.38,136.13,26.1,148.99 +5853,7,E06000011,3,56.86,136.13,26.1,148.99 +6111,5,E06000011,4,73.64,188.66,26.1,205.81 +6209,7,E06000011,4,64.31,188.66,26.1,205.81 +6610,9,E06000011,1,51.27,112.54,26.1,121.95 +6936,9,E06000011,2,53.13,142.02,26.1,154.09 +7262,9,E06000011,3,63.38,170.16,26.1,186.23 +7588,9,E06000011,4,73.64,235.82,26.1,257.26 +7914,10,E06000011,0,52.28,259.31,18.44,282.91 +91,1,E07000193,1,53.13,99.69,26.1,125.4 +417,1,E07000193,2,58.72,117.9,26.1,138.27 +743,1,E07000193,3,69.9,133.98,26.1,161.86 +1069,1,E07000193,4,81.09,162.93,26.1,180.08 +1395,3,E07000193,1,46.6,88.96,26.1,98.62 +1721,3,E07000193,2,50.34,95.42,26.1,103.98 +2047,3,E07000193,3,60.59,105.05,26.1,121.11 +2373,3,E07000193,4,68.97,128.63,26.1,128.63 +2699,2,E07000193,0,38.95,242.82,18.44,378.37 +3025,4,E07000193,0,46.12,106.09,18.44,106.09 +3351,6,E07000193,0,38.95,226.32,18.44,246.36 +3677,8,E07000193,0,46.12,226.32,18.44,246.36 +4286,5,E07000193,1,53.13,92.19,26.1,100.76 +4507,7,E07000193,1,46.6,92.19,26.1,100.76 +4896,5,E07000193,2,58.72,115.76,26.1,125.4 +5192,7,E07000193,2,50.34,115.76,26.1,125.4 +5527,5,E07000193,3,69.9,148.99,26.1,161.86 +5783,7,E07000193,3,60.59,148.99,26.1,161.86 +6179,5,E07000193,4,81.09,205.81,26.1,224.01 +6444,7,E07000193,4,68.97,205.81,26.1,224.01 +6611,9,E07000193,1,53.13,115.24,26.1,125.95 +6937,9,E07000193,2,58.72,144.7,26.1,156.77 +7263,9,E07000193,3,69.9,186.23,26.1,202.34 +7589,9,E07000193,4,81.09,257.26,26.1,280.03 +7915,10,E07000193,0,38.95,282.91,18.44,307.95 +264,1,E07000244,1,54.99,120.05,26.1,150.06 +590,1,E07000244,2,65.24,143.62,26.1,169.36 +916,1,E07000244,3,71.78,157.56,26.1,182.22 +1242,1,E07000244,4,82.02,172.58,26.1,180.08 +1568,3,E07000244,1,50.34,100.76,26.1,132.91 +1894,3,E07000244,2,58.72,118.97,26.1,133.98 +2220,3,E07000244,3,64.31,131.84,26.1,144.7 +2546,3,E07000244,4,71.78,150.06,26.1,160.78 +2872,2,E07000244,0,35.87,223.96,18.44,418.45 +3198,4,E07000244,0,55.36,134.38,18.44,314.73 +3524,6,E07000244,0,35.87,252.25,18.44,273.47 +3850,8,E07000244,0,55.36,252.25,18.44,273.47 +4156,5,E07000244,1,54.99,106.12,26.1,115.76 +4273,7,E07000244,1,50.34,106.12,26.1,115.76 +4737,5,E07000244,2,65.24,126.48,26.1,138.27 +4999,7,E07000244,2,58.72,126.48,26.1,138.27 +5456,5,E07000244,3,71.78,155.41,26.1,169.36 +5642,7,E07000244,3,64.31,155.41,26.1,169.36 +6166,5,E07000244,4,82.02,229.37,26.1,248.67 +6304,7,E07000244,4,71.78,229.37,26.1,248.67 +6784,9,E07000244,1,54.99,132.65,26.1,144.7 +7110,9,E07000244,2,65.24,158.09,26.1,172.84 +7436,9,E07000244,3,71.78,194.27,26.1,211.69 +7762,9,E07000244,4,82.02,286.72,26.1,310.84 +8088,10,E07000244,0,35.87,315.32,18.44,341.84 +92,1,E07000061,1,57.79,124.33,26.1,177.93 +418,1,E07000061,2,71.78,147.91,26.1,188.66 +744,1,E07000061,3,82.02,162.93,26.1,205.81 +1070,1,E07000061,4,90.42,180.08,26.1,224.01 +1396,3,E07000061,1,52.2,116.83,26.1,160.78 +1722,3,E07000061,2,63.38,130.77,26.1,146.84 +2048,3,E07000061,3,68.97,151.13,26.1,187.58 +2374,3,E07000061,4,73.64,186.51,26.1,196.15 +2700,2,E07000061,0,61.49,265.21,18.44,340.65 +3026,4,E07000061,0,48.18,193.32,18.44,202.73 +3352,6,E07000061,0,61.49,524.54,18.44,571.71 +3678,8,E07000061,0,48.18,524.54,18.44,571.71 +3998,5,E07000061,1,57.79,131.84,26.1,144.7 +4065,7,E07000061,1,52.2,131.84,26.1,144.7 +4613,5,E07000061,2,71.78,172.58,26.1,187.58 +4760,7,E07000061,2,63.38,172.58,26.1,187.58 +5265,5,E07000061,3,82.02,211.17,26.1,230.44 +5365,7,E07000061,3,68.97,211.17,26.1,230.44 +5950,5,E07000061,4,90.42,476.98,26.1,519.86 +6054,7,E07000061,4,73.64,476.98,26.1,519.86 +6612,9,E07000061,1,57.79,164.8,26.1,180.87 +6938,9,E07000061,2,71.78,215.73,26.1,234.49 +7264,9,E07000061,3,82.02,263.95,26.1,288.07 +7590,9,E07000061,4,90.42,596.23,26.1,649.84 +7916,10,E07000061,0,61.49,655.68,18.44,714.62 +93,1,E07000086,1,57.79,124.33,26.1,177.93 +419,1,E07000086,2,71.78,147.91,26.1,188.66 +745,1,E07000086,3,82.02,162.93,26.1,205.81 +1071,1,E07000086,4,90.42,180.08,26.1,224.01 +1397,3,E07000086,1,52.2,116.83,26.1,160.78 +1723,3,E07000086,2,63.38,130.77,26.1,146.84 +2049,3,E07000086,3,68.97,151.13,26.1,187.58 +2375,3,E07000086,4,73.64,186.51,26.1,196.15 +2701,2,E07000086,0,61.49,265.21,18.44,340.65 +3027,4,E07000086,0,48.18,193.32,18.44,202.73 +3353,6,E07000086,0,61.49,339.47,18.44,371.29 +3679,8,E07000086,0,48.18,339.47,18.44,371.29 +3999,5,E07000086,1,57.79,136.13,26.1,148.99 +4066,7,E07000086,1,52.2,136.13,26.1,148.99 +4614,5,E07000086,2,71.78,166.14,26.1,181.15 +4761,7,E07000086,2,63.38,166.14,26.1,181.15 +5266,5,E07000086,3,82.02,204.74,26.1,222.95 +5366,7,E07000086,3,68.97,204.74,26.1,222.95 +5951,5,E07000086,4,90.42,309.78,26.1,337.63 +6055,7,E07000086,4,73.64,309.78,26.1,337.63 +6613,9,E07000086,1,57.79,170.16,26.1,186.23 +6939,9,E07000086,2,71.78,207.68,26.1,226.44 +7265,9,E07000086,3,82.02,255.92,26.1,278.69 +7591,9,E07000086,4,90.42,387.21,26.1,422.05 +7917,10,E07000086,0,61.49,424.32,18.44,464.12 +94,1,E07000030,1,52.2,94.33,26.1,117.9 +420,1,E07000030,2,59.66,108.27,26.1,136.13 +746,1,E07000030,3,66.17,121.11,26.1,146.84 +1072,1,E07000030,4,72.71,135.06,26.1,160.78 +1398,3,E07000030,1,43.8,86.81,26.1,101.83 +1724,3,E07000030,2,54.06,95.42,26.1,114.68 +2050,3,E07000030,3,58.72,106.12,26.1,125.4 +2376,3,E07000030,4,55.93,120.05,26.1,135.06 +2702,2,E07000030,0,55.36,236.93,18.44,338.29 +3028,4,E07000030,0,32.8,464.43,18.44,592.92 +3354,6,E07000030,0,55.36,226.32,18.44,246.36 +3680,8,E07000030,0,32.8,226.32,18.44,246.36 +4364,5,E07000030,1,52.2,101.83,26.1,111.47 +4476,7,E07000030,1,43.8,101.83,26.1,111.47 +4934,5,E07000030,2,59.66,121.11,26.1,131.84 +5072,7,E07000030,2,54.06,121.11,26.1,131.84 +5577,5,E07000030,3,66.17,147.91,26.1,159.7 +5752,7,E07000030,3,58.72,147.91,26.1,159.7 +6325,5,E07000030,4,72.71,205.81,26.1,224.01 +6376,7,E07000030,4,55.93,205.81,26.1,224.01 +6614,9,E07000030,1,52.2,127.29,26.1,139.34 +6940,9,E07000030,2,59.66,151.41,26.1,164.8 +7266,9,E07000030,3,66.17,184.89,26.1,199.62 +7592,9,E07000030,4,72.71,257.26,26.1,280.03 +7918,10,E07000030,0,55.36,282.91,18.44,307.95 +95,1,E07000207,1,57.79,124.33,26.1,177.93 +421,1,E07000207,2,71.78,147.91,26.1,188.66 +747,1,E07000207,3,82.02,162.93,26.1,205.81 +1073,1,E07000207,4,90.42,180.08,26.1,224.01 +1399,3,E07000207,1,52.2,116.83,26.1,160.78 +1725,3,E07000207,2,63.38,130.77,26.1,146.84 +2051,3,E07000207,3,68.97,151.13,26.1,187.58 +2377,3,E07000207,4,73.64,186.51,26.1,196.15 +2703,2,E07000207,0,61.49,265.21,18.44,340.65 +3029,4,E07000207,0,48.18,193.32,18.44,202.73 +3355,6,E07000207,0,61.49,834.56,18.44,910 +3681,8,E07000207,0,48.18,834.56,18.44,910 +4000,5,E07000207,1,57.79,188.66,26.1,205.81 +4067,7,E07000207,1,52.2,188.66,26.1,205.81 +4615,5,E07000207,2,71.78,273.34,26.1,297.99 +4762,7,E07000207,2,63.38,273.34,26.1,297.99 +5267,5,E07000207,3,82.02,330.14,26.1,360.15 +5367,7,E07000207,3,68.97,330.14,26.1,360.15 +5952,5,E07000207,4,90.42,758.89,26.1,827.48 +6056,7,E07000207,4,73.64,758.89,26.1,827.48 +6615,9,E07000207,1,57.79,235.82,26.1,257.26 +6941,9,E07000207,2,71.78,341.67,26.1,372.48 +7267,9,E07000207,3,82.02,412.67,26.1,450.18 +7593,9,E07000207,4,90.42,948.61,26.1,1034.37 +7919,10,E07000207,0,61.49,1043.21,18.44,1137.52 +96,1,E09000010,1,66.17,146.84,26.1,199.38 +422,1,E09000010,2,78.29,158.63,26.1,194.01 +748,1,E09000010,3,84.82,168.29,26.1,228.29 +1074,1,E09000010,4,102.51,188.66,26.1,254.03 +1400,3,E09000010,1,58.72,120.05,26.1,147.91 +1726,3,E09000010,2,64.31,140.42,26.1,176.86 +2052,3,E09000010,3,71.78,160.78,26.1,202.58 +2378,3,E09000010,4,83.89,262.61,26.1,263.68 +2704,2,E09000010,0,69.7,313.55,18.44,497.44 +3030,4,E09000010,0,59.45,367.77,18.44,398.42 +3356,6,E09000010,0,69.7,473.86,18.44,517.47 +3682,8,E09000010,0,59.45,473.86,18.44,517.47 +3959,5,E09000010,1,66.17,188.66,26.1,205.81 +4173,7,E09000010,1,58.72,188.66,26.1,205.81 +4574,5,E09000010,2,78.29,262.61,26.1,285.11 +4674,7,E09000010,2,64.31,262.61,26.1,285.11 +5226,5,E09000010,3,84.82,307.63,26.1,335.49 +5326,7,E09000010,3,71.78,307.63,26.1,335.49 +5878,7,E09000010,4,83.89,430.9,26.1,470.55 +5911,5,E09000010,4,102.51,430.9,26.1,470.55 +6616,9,E09000010,1,66.17,235.82,26.1,257.26 +6942,9,E09000010,2,78.29,328.26,26.1,356.4 +7268,9,E09000010,3,84.82,384.53,26.1,419.36 +7594,9,E09000010,4,102.51,538.61,26.1,588.19 +7920,10,E09000010,0,69.7,592.32,18.44,646.84 +97,1,E07000072,1,54.99,120.05,26.1,150.06 +423,1,E07000072,2,65.24,143.62,26.1,169.36 +749,1,E07000072,3,71.78,157.56,26.1,182.22 +1075,1,E07000072,4,82.02,172.58,26.1,180.08 +1401,3,E07000072,1,50.34,100.76,26.1,132.91 +1727,3,E07000072,2,58.72,118.97,26.1,133.98 +2053,3,E07000072,3,64.31,131.84,26.1,144.7 +2379,3,E07000072,4,71.78,150.06,26.1,160.78 +2705,2,E07000072,0,35.87,223.96,18.44,418.45 +3031,4,E07000072,0,55.36,134.38,18.44,314.73 +3357,6,E07000072,0,35.87,549.31,18.44,598.8 +3683,8,E07000072,0,55.36,549.31,18.44,598.8 +4133,5,E07000072,1,54.99,172.58,26.1,187.58 +4250,7,E07000072,1,50.34,172.58,26.1,187.58 +4714,5,E07000072,2,65.24,229.37,26.1,248.67 +4976,7,E07000072,2,58.72,229.37,26.1,248.67 +5433,5,E07000072,3,71.78,295.83,26.1,322.64 +5619,7,E07000072,3,64.31,295.83,26.1,322.64 +6143,5,E07000072,4,82.02,499.48,26.1,544.51 +6281,7,E07000072,4,71.78,499.48,26.1,544.51 +6617,9,E07000072,1,54.99,215.73,26.1,234.49 +6943,9,E07000072,2,65.24,286.72,26.1,310.84 +7269,9,E07000072,3,71.78,369.81,26.1,403.3 +7595,9,E07000072,4,82.02,624.36,26.1,680.64 +7921,10,E07000072,0,35.87,686.61,18.44,748.51 +98,1,E07000208,1,57.79,124.33,26.1,177.93 +424,1,E07000208,2,71.78,147.91,26.1,188.66 +750,1,E07000208,3,82.02,162.93,26.1,205.81 +1076,1,E07000208,4,90.42,180.08,26.1,224.01 +1402,3,E07000208,1,52.2,116.83,26.1,160.78 +1728,3,E07000208,2,63.38,130.77,26.1,146.84 +2054,3,E07000208,3,68.97,151.13,26.1,187.58 +2380,3,E07000208,4,73.64,186.51,26.1,196.15 +2706,2,E07000208,0,61.49,265.21,18.44,340.65 +3032,4,E07000208,0,48.18,193.32,18.44,202.73 +3358,6,E07000208,0,61.49,581.15,18.44,633 +3684,8,E07000208,0,48.18,581.15,18.44,633 +4001,5,E07000208,1,57.79,188.66,26.1,205.81 +4068,7,E07000208,1,52.2,188.66,26.1,205.81 +4616,5,E07000208,2,71.78,250.82,26.1,273.34 +4763,7,E07000208,2,63.38,250.82,26.1,273.34 +5268,5,E07000208,3,82.02,340.85,26.1,371.94 +5368,7,E07000208,3,68.97,340.85,26.1,371.94 +5953,5,E07000208,4,90.42,528.44,26.1,575.6 +6057,7,E07000208,4,73.64,528.44,26.1,575.6 +6618,9,E07000208,1,57.79,235.82,26.1,257.26 +6944,9,E07000208,2,71.78,313.51,26.1,341.67 +7270,9,E07000208,3,82.02,426.06,26.1,464.91 +7596,9,E07000208,4,90.42,660.55,26.1,719.49 +7922,10,E07000208,0,61.49,726.41,18.44,791.22 +99,1,E07000036,1,52.2,100.76,26.1,123.26 +425,1,E07000036,2,62.45,115.76,26.1,130.77 +751,1,E07000036,3,68.97,127.56,26.1,139.34 +1077,1,E07000036,4,76.43,159.7,26.1,168.29 +1403,3,E07000036,1,46.6,91.12,26.1,108.27 +1729,3,E07000036,2,53.13,97.54,26.1,109.33 +2055,3,E07000036,3,58.72,105.05,26.1,120.05 +2381,3,E07000036,4,64.31,123.26,26.1,123.26 +2707,2,E07000036,0,51.26,238.1,18.44,357.17 +3033,4,E07000036,0,49.2,113.15,18.44,122.59 +3359,6,E07000036,0,51.26,226.32,18.44,246.36 +3685,8,E07000036,0,49.2,226.32,18.44,246.36 +4326,5,E07000036,1,52.2,92.19,26.1,99.69 +4426,7,E07000036,1,46.6,92.19,26.1,99.69 +5022,5,E07000036,2,62.45,114.68,26.1,124.33 +5162,7,E07000036,2,53.13,114.68,26.1,124.33 +5665,5,E07000036,3,68.97,131.84,26.1,144.7 +5823,7,E07000036,3,58.72,131.84,26.1,144.7 +6240,5,E07000036,4,76.43,205.81,26.1,224.01 +6484,7,E07000036,4,64.31,205.81,26.1,224.01 +6619,9,E07000036,1,52.2,115.24,26.1,124.6 +6945,9,E07000036,2,62.45,143.37,26.1,155.41 +7271,9,E07000036,3,68.97,164.8,26.1,180.87 +7597,9,E07000036,4,76.43,257.26,26.1,280.03 +7923,10,E07000036,0,51.26,282.91,18.44,307.95 +100,1,E07000041,1,49.41,108.27,26.1,141.49 +426,1,E07000041,2,55.93,122.19,26.1,145.77 +752,1,E07000041,3,62.45,142.56,26.1,162.93 +1078,1,E07000041,4,71.78,159.7,26.1,196.15 +1404,3,E07000041,1,47.54,90.03,26.1,212.24 +1730,3,E07000041,2,54.99,101.83,26.1,112.54 +2056,3,E07000041,3,62.45,110.39,26.1,127.56 +2382,3,E07000041,4,74.57,131.84,26.1,131.84 +2708,2,E07000041,0,54.33,228.68,18.44,354.8 +3034,4,E07000041,0,54.33,114.33,18.44,140.27 +3360,6,E07000041,0,54.33,535.15,18.44,584.67 +3686,8,E07000041,0,54.33,535.15,18.44,584.67 +3922,7,E07000041,1,47.54,136.13,26.1,148.99 +4206,5,E07000041,1,49.41,136.13,26.1,148.99 +4842,5,E07000041,2,55.93,166.14,26.1,181.15 +5119,7,E07000041,2,54.99,166.14,26.1,181.15 +5473,5,E07000041,3,62.45,205.81,26.1,222.95 +5699,7,E07000041,3,62.45,205.81,26.1,222.95 +6011,5,E07000041,4,71.78,486.62,26.1,531.67 +6411,7,E07000041,4,74.57,486.62,26.1,531.67 +6620,9,E07000041,1,49.41,170.16,26.1,186.23 +6946,9,E07000041,2,55.93,207.68,26.1,226.44 +7272,9,E07000041,3,62.45,257.26,26.1,278.69 +7598,9,E07000041,4,71.78,608.29,26.1,664.55 +7924,10,E07000041,0,54.33,668.96,18.44,730.84 +101,1,E07000087,1,57.79,124.33,26.1,177.93 +427,1,E07000087,2,71.78,147.91,26.1,188.66 +753,1,E07000087,3,82.02,162.93,26.1,205.81 +1079,1,E07000087,4,90.42,180.08,26.1,224.01 +1405,3,E07000087,1,52.2,116.83,26.1,160.78 +1731,3,E07000087,2,63.38,130.77,26.1,146.84 +2057,3,E07000087,3,68.97,151.13,26.1,187.58 +2383,3,E07000087,4,73.64,186.51,26.1,196.15 +2709,2,E07000087,0,61.49,265.21,18.44,340.65 +3035,4,E07000087,0,48.18,193.32,18.44,202.73 +3361,6,E07000087,0,61.49,350.07,18.44,380.74 +3687,8,E07000087,0,48.18,350.07,18.44,380.74 +4002,5,E07000087,1,57.79,136.13,26.1,148.99 +4069,7,E07000087,1,52.2,136.13,26.1,148.99 +4617,5,E07000087,2,71.78,166.14,26.1,181.15 +4764,7,E07000087,2,63.38,166.14,26.1,181.15 +5269,5,E07000087,3,82.02,204.74,26.1,222.95 +5369,7,E07000087,3,68.97,204.74,26.1,222.95 +5954,5,E07000087,4,90.42,318.35,26.1,346.22 +6058,7,E07000087,4,73.64,318.35,26.1,346.22 +6621,9,E07000087,1,57.79,170.16,26.1,186.23 +6947,9,E07000087,2,71.78,207.68,26.1,226.44 +7273,9,E07000087,3,82.02,255.92,26.1,278.69 +7599,9,E07000087,4,90.42,397.93,26.1,432.75 +7925,10,E07000087,0,61.49,437.59,18.44,475.94 +102,1,E07000010,1,54.99,120.05,26.1,150.06 +428,1,E07000010,2,65.24,143.62,26.1,169.36 +754,1,E07000010,3,71.78,157.56,26.1,182.22 +1080,1,E07000010,4,82.02,172.58,26.1,180.08 +1406,3,E07000010,1,50.34,100.76,26.1,132.91 +1732,3,E07000010,2,58.72,118.97,26.1,133.98 +2058,3,E07000010,3,64.31,131.84,26.1,144.7 +2384,3,E07000010,4,71.78,150.06,26.1,160.78 +2710,2,E07000010,0,35.87,223.96,18.44,418.45 +3036,4,E07000010,0,55.36,134.38,18.44,314.73 +3362,6,E07000010,0,35.87,213.35,18.44,233.38 +3688,8,E07000010,0,55.36,213.35,18.44,233.38 +4134,5,E07000010,1,54.99,96.49,26.1,105.05 +4251,7,E07000010,1,50.34,96.49,26.1,105.05 +4715,5,E07000010,2,65.24,126.48,26.1,138.27 +4977,7,E07000010,2,58.72,126.48,26.1,138.27 +5434,5,E07000010,3,71.78,148.99,26.1,161.86 +5620,7,E07000010,3,64.31,148.99,26.1,161.86 +6144,5,E07000010,4,82.02,194.01,26.1,212.24 +6282,7,E07000010,4,71.78,194.01,26.1,212.24 +6622,9,E07000010,1,54.99,120.59,26.1,131.29 +6948,9,E07000010,2,65.24,158.09,26.1,172.84 +7274,9,E07000010,3,71.78,186.23,26.1,202.34 +7600,9,E07000010,4,82.02,242.51,26.1,265.29 +7926,10,E07000010,0,35.87,266.69,18.44,291.74 +104,1,E07000080,1,49.41,108.27,26.1,141.49 +430,1,E07000080,2,55.93,122.19,26.1,145.77 +756,1,E07000080,3,62.45,142.56,26.1,162.93 +1082,1,E07000080,4,71.78,159.7,26.1,196.15 +1408,3,E07000080,1,47.54,90.03,26.1,212.24 +1734,3,E07000080,2,54.99,101.83,26.1,112.54 +2060,3,E07000080,3,62.45,110.39,26.1,127.56 +2386,3,E07000080,4,74.57,131.84,26.1,131.84 +2712,2,E07000080,0,54.33,228.68,18.44,354.8 +3038,4,E07000080,0,54.33,114.33,18.44,140.27 +3364,6,E07000080,0,54.33,226.32,18.44,246.36 +3690,8,E07000080,0,54.33,226.32,18.44,246.36 +3923,7,E07000080,1,47.54,98.62,26.1,108.27 +4207,5,E07000080,1,49.41,98.62,26.1,108.27 +4843,5,E07000080,2,55.93,127.56,26.1,139.34 +5120,7,E07000080,2,54.99,127.56,26.1,139.34 +5474,5,E07000080,3,62.45,148.99,26.1,161.86 +5700,7,E07000080,3,62.45,148.99,26.1,161.86 +6012,5,E07000080,4,71.78,205.81,26.1,224.01 +6412,7,E07000080,4,74.57,205.81,26.1,224.01 +6624,9,E07000080,1,49.41,123.26,26.1,135.33 +6950,9,E07000080,2,55.93,159.44,26.1,174.17 +7276,9,E07000080,3,62.45,186.23,26.1,202.34 +7602,9,E07000080,4,71.78,257.26,26.1,280.03 +7928,10,E07000080,0,54.33,282.91,18.44,307.95 +105,1,E07000119,1,52.2,94.33,26.1,117.9 +431,1,E07000119,2,59.66,108.27,26.1,136.13 +757,1,E07000119,3,66.17,121.11,26.1,146.84 +1083,1,E07000119,4,72.71,135.06,26.1,160.78 +1409,3,E07000119,1,43.8,86.81,26.1,101.83 +1735,3,E07000119,2,54.06,95.42,26.1,114.68 +2061,3,E07000119,3,58.72,106.12,26.1,125.4 +2387,3,E07000119,4,55.93,120.05,26.1,135.06 +2713,2,E07000119,0,55.36,236.93,18.44,338.29 +3039,4,E07000119,0,32.8,464.43,18.44,592.92 +3365,6,E07000119,0,55.36,275.83,18.44,300.58 +3691,8,E07000119,0,32.8,275.83,18.44,300.58 +4365,5,E07000119,1,52.2,103.98,26.1,113.61 +4477,7,E07000119,1,43.8,103.98,26.1,113.61 +4935,5,E07000119,2,59.66,138.27,26.1,150.06 +5073,7,E07000119,2,54.06,138.27,26.1,150.06 +5578,5,E07000119,3,66.17,172.58,26.1,187.58 +5753,7,E07000119,3,58.72,172.58,26.1,187.58 +6326,5,E07000119,4,72.71,250.82,26.1,273.34 +6377,7,E07000119,4,55.93,250.82,26.1,273.34 +6625,9,E07000119,1,52.2,129.97,26.1,142.02 +6951,9,E07000119,2,59.66,172.84,26.1,187.57 +7277,9,E07000119,3,66.17,215.73,26.1,234.49 +7603,9,E07000119,4,72.71,313.51,26.1,341.67 +7929,10,E07000119,0,55.36,344.81,18.44,375.73 +106,1,E08000037,1,51.27,88.96,26.1,98.62 +432,1,E08000037,2,57.79,102.91,26.1,121.11 +758,1,E08000037,3,61.52,114.68,26.1,160.78 +1084,1,E08000037,4,70.84,128.63,26.1,140.42 +1410,3,E08000037,1,42.87,100.76,26.1,106.12 +1736,3,E08000037,2,50.34,91.12,26.1,112.54 +2062,3,E08000037,3,54.06,106.12,26.1,125.4 +2388,3,E08000037,4,56.86,116.83,26.1,121.11 +2714,2,E08000037,0,55.36,234.56,18.44,337.12 +3040,4,E08000037,0,47.15,251.08,18.44,285.25 +3366,6,E08000037,0,55.36,213.35,18.44,233.38 +3692,8,E08000037,0,47.15,213.35,18.44,233.38 +4453,7,E08000037,1,42.87,114.68,26.1,124.33 +4534,5,E08000037,1,51.27,114.68,26.1,124.33 +5049,5,E08000037,2,57.79,121.11,26.1,131.84 +5100,7,E08000037,2,50.34,121.11,26.1,131.84 +5554,5,E08000037,3,61.52,143.62,26.1,156.49 +5729,7,E08000037,3,54.06,143.62,26.1,156.49 +6353,5,E08000037,4,70.84,194.01,26.1,212.24 +6511,7,E08000037,4,56.86,194.01,26.1,212.24 +6626,9,E08000037,1,42.87,143.37,26.1,155.41 +6952,9,E08000037,2,57.79,151.41,26.1,164.8 +7278,9,E08000037,3,61.52,179.53,26.1,195.6 +7604,9,E08000037,4,70.84,242.51,26.1,265.29 +7930,10,E08000037,0,55.36,266.69,18.44,291.74 +107,1,E07000173,1,52.2,100.76,26.1,123.26 +433,1,E07000173,2,62.45,115.76,26.1,130.77 +759,1,E07000173,3,68.97,127.56,26.1,139.34 +1085,1,E07000173,4,76.43,159.7,26.1,168.29 +1411,3,E07000173,1,46.6,91.12,26.1,108.27 +1737,3,E07000173,2,53.13,97.54,26.1,109.33 +2063,3,E07000173,3,58.72,105.05,26.1,120.05 +2389,3,E07000173,4,64.31,123.26,26.1,123.26 +2715,2,E07000173,0,51.26,238.1,18.44,357.17 +3041,4,E07000173,0,49.2,113.15,18.44,122.59 +3367,6,E07000173,0,51.26,225.15,18.44,245.18 +3693,8,E07000173,0,49.2,225.15,18.44,245.18 +4327,5,E07000173,1,52.2,103.98,26.1,113.61 +4427,7,E07000173,1,46.6,103.98,26.1,113.61 +5023,5,E07000173,2,62.45,121.11,26.1,131.84 +5163,7,E07000173,2,53.13,121.11,26.1,131.84 +5666,5,E07000173,3,68.97,147.91,26.1,159.7 +5824,7,E07000173,3,58.72,147.91,26.1,159.7 +6241,5,E07000173,4,76.43,204.74,26.1,222.95 +6485,7,E07000173,4,64.31,204.74,26.1,222.95 +6627,9,E07000173,1,52.2,129.97,26.1,142.02 +6953,9,E07000173,2,62.45,151.41,26.1,164.8 +7279,9,E07000173,3,68.97,184.89,26.1,199.62 +7605,9,E07000173,4,76.43,255.92,26.1,278.69 +7931,10,E07000173,0,51.26,281.43,18.44,306.45 +108,1,E07000081,1,49.41,108.27,26.1,141.49 +434,1,E07000081,2,55.93,122.19,26.1,145.77 +760,1,E07000081,3,62.45,142.56,26.1,162.93 +1086,1,E07000081,4,71.78,159.7,26.1,196.15 +1412,3,E07000081,1,47.54,90.03,26.1,212.24 +1738,3,E07000081,2,54.99,101.83,26.1,112.54 +2064,3,E07000081,3,62.45,110.39,26.1,127.56 +2390,3,E07000081,4,74.57,131.84,26.1,131.84 +2716,2,E07000081,0,54.33,228.68,18.44,354.8 +3042,4,E07000081,0,54.33,114.33,18.44,140.27 +3368,6,E07000081,0,54.33,275.83,18.44,300.58 +3694,8,E07000081,0,54.33,275.83,18.44,300.58 +3924,7,E07000081,1,47.54,110.39,26.1,120.05 +4208,5,E07000081,1,49.41,110.39,26.1,120.05 +4844,5,E07000081,2,55.93,131.84,26.1,144.7 +5121,7,E07000081,2,54.99,131.84,26.1,144.7 +5475,5,E07000081,3,62.45,166.14,26.1,181.15 +5701,7,E07000081,3,62.45,166.14,26.1,181.15 +6013,5,E07000081,4,71.78,250.82,26.1,273.34 +6413,7,E07000081,4,74.57,250.82,26.1,273.34 +6628,9,E07000081,1,49.41,138.01,26.1,150.06 +6954,9,E07000081,2,55.93,164.8,26.1,180.87 +7280,9,E07000081,3,62.45,207.68,26.1,226.44 +7606,9,E07000081,4,71.78,313.51,26.1,341.67 +7932,10,E07000081,0,54.33,344.81,18.44,375.73 +109,1,E07000088,1,57.79,124.33,26.1,177.93 +435,1,E07000088,2,71.78,147.91,26.1,188.66 +761,1,E07000088,3,82.02,162.93,26.1,205.81 +1087,1,E07000088,4,90.42,180.08,26.1,224.01 +1413,3,E07000088,1,52.2,116.83,26.1,160.78 +1739,3,E07000088,2,63.38,130.77,26.1,146.84 +2065,3,E07000088,3,68.97,151.13,26.1,187.58 +2391,3,E07000088,4,73.64,186.51,26.1,196.15 +2717,2,E07000088,0,61.49,265.21,18.44,340.65 +3043,4,E07000088,0,48.18,193.32,18.44,202.73 +3369,6,E07000088,0,61.49,312.38,18.44,340.65 +3695,8,E07000088,0,48.18,312.38,18.44,340.65 +4003,5,E07000088,1,57.79,126.48,26.1,138.27 +4070,7,E07000088,1,52.2,126.48,26.1,138.27 +4618,5,E07000088,2,71.78,148.99,26.1,161.86 +4765,7,E07000088,2,63.38,148.99,26.1,161.86 +5270,5,E07000088,3,82.02,177.93,26.1,192.94 +5370,7,E07000088,3,68.97,177.93,26.1,192.94 +5955,5,E07000088,4,90.42,284.04,26.1,309.78 +6059,7,E07000088,4,73.64,284.04,26.1,309.78 +6629,9,E07000088,1,57.79,158.09,26.1,172.84 +6955,9,E07000088,2,71.78,186.23,26.1,202.34 +7281,9,E07000088,3,82.02,222.43,26.1,241.18 +7607,9,E07000088,4,90.42,355.06,26.1,387.21 +7933,10,E07000088,0,61.49,390.47,18.44,425.82 +110,1,E07000109,1,57.79,124.33,26.1,177.93 +436,1,E07000109,2,71.78,147.91,26.1,188.66 +762,1,E07000109,3,82.02,162.93,26.1,205.81 +1088,1,E07000109,4,90.42,180.08,26.1,224.01 +1414,3,E07000109,1,52.2,116.83,26.1,160.78 +1740,3,E07000109,2,63.38,130.77,26.1,146.84 +2066,3,E07000109,3,68.97,151.13,26.1,187.58 +2392,3,E07000109,4,73.64,186.51,26.1,196.15 +2718,2,E07000109,0,61.49,265.21,18.44,340.65 +3044,4,E07000109,0,48.18,193.32,18.44,202.73 +3370,6,E07000109,0,61.49,300.58,18.44,327.69 +3696,8,E07000109,0,48.18,300.58,18.44,327.69 +4004,5,E07000109,1,57.79,126.48,26.1,138.27 +4071,7,E07000109,1,52.2,126.48,26.1,138.27 +4619,5,E07000109,2,71.78,160.78,26.1,175.78 +4766,7,E07000109,2,63.38,160.78,26.1,175.78 +5271,5,E07000109,3,82.02,188.66,26.1,205.81 +5371,7,E07000109,3,68.97,188.66,26.1,205.81 +5956,5,E07000109,4,90.42,273.34,26.1,297.99 +6060,7,E07000109,4,73.64,273.34,26.1,297.99 +6630,9,E07000109,1,57.79,158.09,26.1,172.84 +6956,9,E07000109,2,71.78,200.97,26.1,219.74 +7282,9,E07000109,3,82.02,235.82,26.1,257.26 +7608,9,E07000109,4,90.42,341.67,26.1,372.48 +7934,10,E07000109,0,61.49,375.73,18.44,409.61 +111,1,E07000145,1,54.99,120.05,26.1,150.06 +437,1,E07000145,2,65.24,143.62,26.1,169.36 +763,1,E07000145,3,71.78,157.56,26.1,182.22 +1089,1,E07000145,4,82.02,172.58,26.1,180.08 +1415,3,E07000145,1,50.34,100.76,26.1,132.91 +1741,3,E07000145,2,58.72,118.97,26.1,133.98 +2067,3,E07000145,3,64.31,131.84,26.1,144.7 +2393,3,E07000145,4,71.78,150.06,26.1,160.78 +2719,2,E07000145,0,35.87,223.96,18.44,418.45 +3045,4,E07000145,0,55.36,134.38,18.44,314.73 +3371,6,E07000145,0,35.87,190.96,18.44,207.45 +3697,8,E07000145,0,55.36,190.96,18.44,207.45 +4136,5,E07000145,1,54.99,99.69,26.1,109.33 +4253,7,E07000145,1,50.34,99.69,26.1,109.33 +4717,5,E07000145,2,65.24,121.11,26.1,131.84 +4979,7,E07000145,2,58.72,121.11,26.1,131.84 +5436,5,E07000145,3,71.78,131.84,26.1,143.62 +5622,7,E07000145,3,64.31,131.84,26.1,143.62 +6146,5,E07000145,4,82.02,173.65,26.1,188.66 +6284,7,E07000145,4,71.78,173.65,26.1,188.66 +6631,9,E07000145,1,54.99,124.6,26.1,136.67 +6957,9,E07000145,2,65.24,151.41,26.1,164.8 +7283,9,E07000145,3,71.78,164.8,26.1,179.53 +7609,9,E07000145,4,82.02,217.08,26.1,235.82 +7935,10,E07000145,0,35.87,238.71,18.44,259.31 +112,1,E09000011,1,66.17,146.84,26.1,199.38 +438,1,E09000011,2,78.29,158.63,26.1,194.01 +764,1,E09000011,3,84.82,168.29,26.1,228.29 +1090,1,E09000011,4,102.51,188.66,26.1,254.03 +1416,3,E09000011,1,58.72,120.05,26.1,147.91 +1742,3,E09000011,2,64.31,140.42,26.1,176.86 +2068,3,E09000011,3,71.78,160.78,26.1,202.58 +2394,3,E09000011,4,83.89,262.61,26.1,263.68 +2720,2,E09000011,0,69.7,313.55,18.44,497.44 +3046,4,E09000011,0,59.45,367.77,18.44,398.42 +3372,6,E09000011,0,69.7,425.53,18.44,463.25 +3698,8,E09000011,0,59.45,425.53,18.44,463.25 +3960,5,E09000011,1,66.17,200.45,26.1,217.59 +4174,7,E09000011,1,58.72,200.45,26.1,217.59 +4575,5,E09000011,2,78.29,284.04,26.1,309.78 +4675,7,E09000011,2,64.31,284.04,26.1,309.78 +5227,5,E09000011,3,84.82,295.83,26.1,322.64 +5327,7,E09000011,3,71.78,295.83,26.1,322.64 +5879,7,E09000011,4,83.89,386.95,26.1,421.25 +5912,5,E09000011,4,102.51,386.95,26.1,421.25 +6632,9,E09000011,1,66.17,250.54,26.1,271.98 +6958,9,E09000011,2,78.29,355.06,26.1,387.21 +7284,9,E09000011,3,84.82,369.81,26.1,403.3 +7610,9,E09000011,4,102.51,483.69,26.1,526.56 +7936,10,E09000011,0,69.7,531.91,18.44,579.06 +113,1,E07000209,1,57.79,124.33,26.1,177.93 +439,1,E07000209,2,71.78,147.91,26.1,188.66 +765,1,E07000209,3,82.02,162.93,26.1,205.81 +1091,1,E07000209,4,90.42,180.08,26.1,224.01 +1417,3,E07000209,1,52.2,116.83,26.1,160.78 +1743,3,E07000209,2,63.38,130.77,26.1,146.84 +2069,3,E07000209,3,68.97,151.13,26.1,187.58 +2395,3,E07000209,4,73.64,186.51,26.1,196.15 +2721,2,E07000209,0,61.49,265.21,18.44,340.65 +3047,4,E07000209,0,48.18,193.32,18.44,202.73 +3373,6,E07000209,0,61.49,623.56,18.44,678.97 +3699,8,E07000209,0,48.18,623.56,18.44,678.97 +4005,5,E07000209,1,57.79,194.01,26.1,212.24 +4072,7,E07000209,1,52.2,194.01,26.1,212.24 +4620,5,E07000209,2,71.78,272.26,26.1,296.91 +4767,7,E07000209,2,63.38,272.26,26.1,296.91 +5272,5,E07000209,3,82.02,330.14,26.1,360.15 +5372,7,E07000209,3,68.97,330.14,26.1,360.15 +5957,5,E07000209,4,90.42,567.02,26.1,617.4 +6061,7,E07000209,4,73.64,567.02,26.1,617.4 +6633,9,E07000209,1,57.79,242.51,26.1,265.29 +6959,9,E07000209,2,71.78,340.33,26.1,371.13 +7285,9,E07000209,3,82.02,412.67,26.1,450.18 +7611,9,E07000209,4,90.42,708.78,26.1,771.75 +7937,10,E07000209,0,61.49,779.44,18.44,848.71 +114,1,E09000012,1,66.17,146.84,26.1,199.38 +440,1,E09000012,2,78.29,158.63,26.1,194.01 +766,1,E09000012,3,84.82,168.29,26.1,228.29 +1092,1,E09000012,4,102.51,188.66,26.1,254.03 +1418,3,E09000012,1,58.72,120.05,26.1,147.91 +1744,3,E09000012,2,64.31,140.42,26.1,176.86 +2070,3,E09000012,3,71.78,160.78,26.1,202.58 +2396,3,E09000012,4,83.89,262.61,26.1,263.68 +2722,2,E09000012,0,69.7,313.55,18.44,497.44 +3048,4,E09000012,0,59.45,367.77,18.44,398.42 +3374,6,E09000012,0,69.7,648.32,18.44,706.08 +3700,8,E09000012,0,59.45,648.32,18.44,706.08 +3961,5,E09000012,1,66.17,310.85,26.1,338.7 +4175,7,E09000012,1,58.72,310.85,26.1,338.7 +4576,5,E09000012,2,78.29,374.07,26.1,408.38 +4676,7,E09000012,2,64.31,374.07,26.1,408.38 +5228,5,E09000012,3,84.82,442.67,26.1,482.35 +5328,7,E09000012,3,71.78,442.67,26.1,482.35 +5880,7,E09000012,4,83.89,589.54,26.1,642.06 +5913,5,E09000012,4,102.51,589.54,26.1,642.06 +6634,9,E09000012,1,66.17,388.57,26.1,423.4 +6960,9,E09000012,2,78.29,467.6,26.1,510.49 +7286,9,E09000012,3,84.82,553.35,26.1,602.94 +7612,9,E09000012,4,102.51,736.91,26.1,802.56 +7938,10,E09000012,0,69.7,810.39,18.44,882.59 +115,1,E06000006,1,52.2,94.33,26.1,117.9 +441,1,E06000006,2,59.66,108.27,26.1,136.13 +767,1,E06000006,3,66.17,121.11,26.1,146.84 +1093,1,E06000006,4,72.71,135.06,26.1,160.78 +1419,3,E06000006,1,43.8,86.81,26.1,101.83 +1745,3,E06000006,2,54.06,95.42,26.1,114.68 +2071,3,E06000006,3,58.72,106.12,26.1,125.4 +2397,3,E06000006,4,55.93,120.05,26.1,135.06 +2723,2,E06000006,0,55.36,236.93,18.44,338.29 +3049,4,E06000006,0,32.8,464.43,18.44,592.92 +3375,6,E06000006,0,55.36,226.32,18.44,246.36 +3701,8,E06000006,0,32.8,226.32,18.44,246.36 +4366,5,E06000006,1,52.2,103.98,26.1,113.61 +4478,7,E06000006,1,43.8,103.98,26.1,113.61 +4936,5,E06000006,2,59.66,115.76,26.1,125.4 +5074,7,E06000006,2,54.06,115.76,26.1,125.4 +5579,5,E06000006,3,66.17,136.13,26.1,148.99 +5754,7,E06000006,3,58.72,136.13,26.1,148.99 +6327,5,E06000006,4,72.71,205.81,26.1,224.01 +6378,7,E06000006,4,55.93,205.81,26.1,224.01 +6635,9,E06000006,1,52.2,129.97,26.1,142.02 +6961,9,E06000006,2,59.66,144.7,26.1,156.77 +7287,9,E06000006,3,66.17,170.16,26.1,186.23 +7613,9,E06000006,4,72.71,257.26,26.1,280.03 +7939,10,E06000006,0,55.36,282.91,18.44,307.95 +116,1,E07000164,1,51.27,92.19,26.1,114.68 +442,1,E07000164,2,58.72,109.33,26.1,141.49 +768,1,E07000164,3,63.38,121.11,26.1,162.93 +1094,1,E07000164,4,73.64,145.77,26.1,180.08 +1420,3,E07000164,1,46.6,82.54,26.1,93.26 +1746,3,E07000164,2,53.13,113.61,26.1,145.77 +2072,3,E07000164,3,56.86,105.05,26.1,114.68 +2398,3,E07000164,4,64.31,122.19,26.1,176.86 +2724,2,E07000164,0,52.28,232.2,18.44,319.44 +3050,4,E07000164,0,51.26,159.13,18.44,188.6 +3376,6,E07000164,0,52.28,248.71,18.44,272.3 +3702,8,E07000164,0,51.26,248.71,18.44,272.3 +4396,5,E07000164,1,51.27,103.98,26.1,113.61 +4550,7,E07000164,1,46.6,103.98,26.1,113.61 +4818,7,E07000164,2,53.13,126.48,26.1,138.27 +4876,5,E07000164,2,58.72,126.48,26.1,138.27 +5507,5,E07000164,3,63.38,148.99,26.1,161.86 +5854,7,E07000164,3,56.86,148.99,26.1,161.86 +6112,5,E07000164,4,73.64,228.29,26.1,247.6 +6210,7,E07000164,4,64.31,228.29,26.1,247.6 +6636,9,E07000164,1,51.27,129.97,26.1,142.02 +6962,9,E07000164,2,53.13,158.09,26.1,172.84 +7288,9,E07000164,3,63.38,186.23,26.1,202.34 +7614,9,E07000164,4,73.64,285.39,26.1,309.5 +7940,10,E07000164,0,52.28,310.9,18.44,340.38 +117,1,E09000013,1,66.17,146.84,26.1,199.38 +443,1,E09000013,2,78.29,158.63,26.1,194.01 +769,1,E09000013,3,84.82,168.29,26.1,228.29 +1095,1,E09000013,4,102.51,188.66,26.1,254.03 +1421,3,E09000013,1,58.72,120.05,26.1,147.91 +1747,3,E09000013,2,64.31,140.42,26.1,176.86 +2073,3,E09000013,3,71.78,160.78,26.1,202.58 +2399,3,E09000013,4,83.89,262.61,26.1,263.68 +2725,2,E09000013,0,69.7,313.55,18.44,497.44 +3051,4,E09000013,0,59.45,367.77,18.44,398.42 +3377,6,E09000013,0,69.7,1078.55,18.44,1176.39 +3703,8,E09000013,0,59.45,1078.55,18.44,1176.39 +3962,5,E09000013,1,66.17,320.49,26.1,349.42 +4176,7,E09000013,1,58.72,320.49,26.1,349.42 +4577,5,E09000013,2,78.29,427.69,26.1,466.26 +4677,7,E09000013,2,64.31,427.69,26.1,466.26 +5229,5,E09000013,3,84.82,614.19,26.1,668.85 +5329,7,E09000013,3,71.78,614.19,26.1,668.85 +5881,7,E09000013,4,83.89,981.83,26.1,1069.73 +5914,5,E09000013,4,102.51,981.83,26.1,1069.73 +6637,9,E09000013,1,66.17,400.6,26.1,436.8 +6963,9,E09000013,2,78.29,534.61,26.1,582.81 +7289,9,E09000013,3,84.82,767.74,26.1,836.07 +7615,9,E09000013,4,102.51,1227.29,26.1,1337.18 +7941,10,E09000013,0,69.7,1348.21,18.44,1470.5 +118,1,E07000131,1,52.2,100.76,26.1,123.26 +444,1,E07000131,2,62.45,115.76,26.1,130.77 +770,1,E07000131,3,68.97,127.56,26.1,139.34 +1096,1,E07000131,4,76.43,159.7,26.1,168.29 +1422,3,E07000131,1,46.6,91.12,26.1,108.27 +1748,3,E07000131,2,53.13,97.54,26.1,109.33 +2074,3,E07000131,3,58.72,105.05,26.1,120.05 +2400,3,E07000131,4,64.31,123.26,26.1,123.26 +2726,2,E07000131,0,51.26,238.1,18.44,357.17 +3052,4,E07000131,0,49.2,113.15,18.44,122.59 +3378,6,E07000131,0,51.26,275.83,18.44,300.58 +3704,8,E07000131,0,49.2,275.83,18.44,300.58 +4328,5,E07000131,1,52.2,108.27,26.1,117.9 +4428,7,E07000131,1,46.6,108.27,26.1,117.9 +5024,5,E07000131,2,62.45,126.48,26.1,138.27 +5164,7,E07000131,2,53.13,126.48,26.1,138.27 +5667,5,E07000131,3,68.97,159.7,26.1,174.72 +5825,7,E07000131,3,58.72,159.7,26.1,174.72 +6242,5,E07000131,4,76.43,250.82,26.1,273.34 +6486,7,E07000131,4,64.31,250.82,26.1,273.34 +6638,9,E07000131,1,52.2,135.33,26.1,147.38 +6964,9,E07000131,2,62.45,158.09,26.1,172.84 +7290,9,E07000131,3,68.97,199.62,26.1,218.38 +7616,9,E07000131,4,76.43,313.51,26.1,341.67 +7942,10,E07000131,0,51.26,344.81,18.44,375.73 +119,1,E09000014,1,66.17,146.84,26.1,199.38 +445,1,E09000014,2,78.29,158.63,26.1,194.01 +771,1,E09000014,3,84.82,168.29,26.1,228.29 +1097,1,E09000014,4,102.51,188.66,26.1,254.03 +1423,3,E09000014,1,58.72,120.05,26.1,147.91 +1749,3,E09000014,2,64.31,140.42,26.1,176.86 +2075,3,E09000014,3,71.78,160.78,26.1,202.58 +2401,3,E09000014,4,83.89,262.61,26.1,263.68 +2727,2,E09000014,0,69.7,313.55,18.44,497.44 +3053,4,E09000014,0,59.45,367.77,18.44,398.42 +3379,6,E09000014,0,69.7,701.37,18.44,766.19 +3705,8,E09000014,0,59.45,701.37,18.44,766.19 +3963,5,E09000014,1,66.17,262.61,26.1,285.11 +4177,7,E09000014,1,58.72,262.61,26.1,285.11 +4578,5,E09000014,2,78.29,335.49,26.1,365.5 +4678,7,E09000014,2,64.31,335.49,26.1,365.5 +5230,5,E09000014,3,84.82,419.11,26.1,456.62 +5330,7,E09000014,3,71.78,419.11,26.1,456.62 +5882,7,E09000014,4,83.89,638.84,26.1,696.71 +5915,5,E09000014,4,102.51,638.84,26.1,696.71 +6639,9,E09000014,1,66.17,328.26,26.1,356.4 +6965,9,E09000014,2,78.29,419.36,26.1,456.88 +7291,9,E09000014,3,84.82,523.89,26.1,570.76 +7617,9,E09000014,4,102.51,798.54,26.1,870.9 +7943,10,E09000014,0,69.7,876.7,18.44,957.73 +120,1,E07000073,1,54.99,120.05,26.1,150.06 +446,1,E07000073,2,65.24,143.62,26.1,169.36 +772,1,E07000073,3,71.78,157.56,26.1,182.22 +1098,1,E07000073,4,82.02,172.58,26.1,180.08 +1424,3,E07000073,1,50.34,100.76,26.1,132.91 +1750,3,E07000073,2,58.72,118.97,26.1,133.98 +2076,3,E07000073,3,64.31,131.84,26.1,144.7 +2402,3,E07000073,4,71.78,150.06,26.1,160.78 +2728,2,E07000073,0,35.87,223.96,18.44,418.45 +3054,4,E07000073,0,55.36,134.38,18.44,314.73 +3380,6,E07000073,0,35.87,351.26,18.44,383.09 +3706,8,E07000073,0,55.36,351.26,18.44,383.09 +4137,5,E07000073,1,54.99,133.98,26.1,146.84 +4254,7,E07000073,1,50.34,133.98,26.1,146.84 +4718,5,E07000073,2,65.24,181.15,26.1,198.3 +4980,7,E07000073,2,58.72,181.15,26.1,198.3 +5437,5,E07000073,3,71.78,216.52,26.1,236.89 +5623,7,E07000073,3,64.31,216.52,26.1,236.89 +6147,5,E07000073,4,82.02,319.42,26.1,348.36 +6285,7,E07000073,4,71.78,319.42,26.1,348.36 +6640,9,E07000073,1,54.99,167.48,26.1,183.56 +6966,9,E07000073,2,65.24,226.44,26.1,247.88 +7292,9,E07000073,3,71.78,270.66,26.1,296.11 +7618,9,E07000073,4,82.02,399.29,26.1,435.45 +7944,10,E07000073,0,35.87,439.1,18.44,478.86 +121,1,E07000165,1,51.27,92.19,26.1,114.68 +447,1,E07000165,2,58.72,109.33,26.1,141.49 +773,1,E07000165,3,63.38,121.11,26.1,162.93 +1099,1,E07000165,4,73.64,145.77,26.1,180.08 +1425,3,E07000165,1,46.6,82.54,26.1,93.26 +1751,3,E07000165,2,53.13,113.61,26.1,145.77 +2077,3,E07000165,3,56.86,105.05,26.1,114.68 +2403,3,E07000165,4,64.31,122.19,26.1,176.86 +2729,2,E07000165,0,52.28,232.2,18.44,319.44 +3055,4,E07000165,0,51.26,159.13,18.44,188.6 +3381,6,E07000165,0,52.28,412.57,18.44,450.29 +3707,8,E07000165,0,51.26,412.57,18.44,450.29 +4397,5,E07000165,1,51.27,126.48,26.1,138.27 +4551,7,E07000165,1,46.6,126.48,26.1,138.27 +4819,7,E07000165,2,53.13,158.63,26.1,174.72 +4877,5,E07000165,2,58.72,158.63,26.1,174.72 +5508,5,E07000165,3,63.38,194.01,26.1,212.24 +5855,7,E07000165,3,56.86,194.01,26.1,212.24 +6113,5,E07000165,4,73.64,375.16,26.1,409.45 +6211,7,E07000165,4,64.31,375.16,26.1,409.45 +6641,9,E07000165,1,51.27,158.09,26.1,172.84 +6967,9,E07000165,2,53.13,198.3,26.1,218.38 +7293,9,E07000165,3,63.38,242.51,26.1,265.29 +7619,9,E07000165,4,73.64,468.95,26.1,511.83 +7945,10,E07000165,0,52.28,515.71,18.44,562.87 +122,1,E09000015,1,66.17,146.84,26.1,199.38 +448,1,E09000015,2,78.29,158.63,26.1,194.01 +774,1,E09000015,3,84.82,168.29,26.1,228.29 +1100,1,E09000015,4,102.51,188.66,26.1,254.03 +1426,3,E09000015,1,58.72,120.05,26.1,147.91 +1752,3,E09000015,2,64.31,140.42,26.1,176.86 +2078,3,E09000015,3,71.78,160.78,26.1,202.58 +2404,3,E09000015,4,83.89,262.61,26.1,263.68 +2730,2,E09000015,0,69.7,313.55,18.44,497.44 +3056,4,E09000015,0,59.45,367.77,18.44,398.42 +3382,6,E09000015,0,69.7,499.79,18.44,544.59 +3708,8,E09000015,0,59.45,499.79,18.44,544.59 +3964,5,E09000015,1,66.17,200.45,26.1,217.59 +4178,7,E09000015,1,58.72,200.45,26.1,217.59 +4579,5,E09000015,2,78.29,262.61,26.1,285.11 +4679,7,E09000015,2,64.31,262.61,26.1,285.11 +5231,5,E09000015,3,84.82,319.42,26.1,348.36 +5331,7,E09000015,3,71.78,319.42,26.1,348.36 +5883,7,E09000015,4,83.89,454.47,26.1,495.21 +5916,5,E09000015,4,102.51,454.47,26.1,495.21 +6642,9,E09000015,1,66.17,250.54,26.1,271.98 +6968,9,E09000015,2,78.29,328.26,26.1,356.4 +7294,9,E09000015,3,84.82,399.29,26.1,435.45 +7620,9,E09000015,4,102.51,568.09,26.1,619.01 +7946,10,E09000015,0,69.7,624.74,18.44,680.75 +123,1,E07000089,1,57.79,124.33,26.1,177.93 +449,1,E07000089,2,71.78,147.91,26.1,188.66 +775,1,E07000089,3,82.02,162.93,26.1,205.81 +1101,1,E07000089,4,90.42,180.08,26.1,224.01 +1427,3,E07000089,1,52.2,116.83,26.1,160.78 +1753,3,E07000089,2,63.38,130.77,26.1,146.84 +2079,3,E07000089,3,68.97,151.13,26.1,187.58 +2405,3,E07000089,4,73.64,186.51,26.1,196.15 +2731,2,E07000089,0,61.49,265.21,18.44,340.65 +3057,4,E07000089,0,48.18,193.32,18.44,202.73 +3383,6,E07000089,0,61.49,462.06,18.44,503.31 +3709,8,E07000089,0,48.18,462.06,18.44,503.31 +4006,5,E07000089,1,57.79,166.14,26.1,181.15 +4073,7,E07000089,1,52.2,166.14,26.1,181.15 +4621,5,E07000089,2,71.78,200.45,26.1,217.59 +4768,7,E07000089,2,63.38,200.45,26.1,217.59 +5273,5,E07000089,3,82.02,273.34,26.1,297.99 +5373,7,E07000089,3,68.97,273.34,26.1,297.99 +5958,5,E07000089,4,90.42,420.18,26.1,457.7 +6062,7,E07000089,4,73.64,420.18,26.1,457.7 +6643,9,E07000089,1,57.79,207.68,26.1,226.44 +6969,9,E07000089,2,71.78,250.54,26.1,271.98 +7295,9,E07000089,3,82.02,341.67,26.1,372.48 +7621,9,E07000089,4,90.42,525.22,26.1,572.11 +7947,10,E07000089,0,61.49,577.59,18.44,629.15 +124,1,E06000001,1,51.27,88.96,26.1,98.62 +450,1,E06000001,2,57.79,102.91,26.1,121.11 +776,1,E06000001,3,61.52,114.68,26.1,160.78 +1102,1,E06000001,4,70.84,128.63,26.1,140.42 +1428,3,E06000001,1,42.87,100.76,26.1,106.12 +1754,3,E06000001,2,50.34,91.12,26.1,112.54 +2080,3,E06000001,3,54.06,106.12,26.1,125.4 +2406,3,E06000001,4,56.86,116.83,26.1,121.11 +2732,2,E06000001,0,55.36,234.56,18.44,337.12 +3058,4,E06000001,0,47.15,251.08,18.44,285.25 +3384,6,E06000001,0,55.36,189.79,18.44,206.28 +3710,8,E06000001,0,47.15,189.79,18.44,206.28 +4454,7,E06000001,1,42.87,93.26,26.1,101.83 +4535,5,E06000001,1,51.27,93.26,26.1,101.83 +5050,5,E06000001,2,57.79,105.05,26.1,115.76 +5101,7,E06000001,2,50.34,105.05,26.1,115.76 +5555,5,E06000001,3,61.52,136.13,26.1,148.99 +5730,7,E06000001,3,54.06,136.13,26.1,148.99 +6354,5,E06000001,4,70.84,172.58,26.1,187.58 +6512,7,E06000001,4,56.86,172.58,26.1,187.58 +6644,9,E06000001,1,42.87,116.56,26.1,127.29 +6970,9,E06000001,2,57.79,131.29,26.1,144.7 +7296,9,E06000001,3,61.52,170.16,26.1,186.23 +7622,9,E06000001,4,70.84,215.73,26.1,234.49 +7948,10,E06000001,0,55.36,237.24,18.44,257.84 +125,1,E07000062,1,57.79,124.33,26.1,177.93 +451,1,E07000062,2,71.78,147.91,26.1,188.66 +777,1,E07000062,3,82.02,162.93,26.1,205.81 +1103,1,E07000062,4,90.42,180.08,26.1,224.01 +1429,3,E07000062,1,52.2,116.83,26.1,160.78 +1755,3,E07000062,2,63.38,130.77,26.1,146.84 +2081,3,E07000062,3,68.97,151.13,26.1,187.58 +2407,3,E07000062,4,73.64,186.51,26.1,196.15 +2733,2,E07000062,0,61.49,265.21,18.44,340.65 +3059,4,E07000062,0,48.18,193.32,18.44,202.73 +3385,6,E07000062,0,61.49,275.83,18.44,300.58 +3711,8,E07000062,0,48.18,275.83,18.44,300.58 +4007,5,E07000062,1,57.79,100.76,26.1,110.39 +4074,7,E07000062,1,52.2,100.76,26.1,110.39 +4622,5,E07000062,2,71.78,136.13,26.1,148.99 +4769,7,E07000062,2,63.38,136.13,26.1,148.99 +5274,5,E07000062,3,82.02,172.58,26.1,187.58 +5374,7,E07000062,3,68.97,172.58,26.1,187.58 +5959,5,E07000062,4,90.42,250.82,26.1,273.34 +6063,7,E07000062,4,73.64,250.82,26.1,273.34 +6645,9,E07000062,1,57.79,125.95,26.1,138.01 +6971,9,E07000062,2,71.78,170.16,26.1,186.23 +7297,9,E07000062,3,82.02,215.73,26.1,234.49 +7623,9,E07000062,4,90.42,313.51,26.1,341.67 +7949,10,E07000062,0,61.49,344.81,18.44,375.73 +126,1,E07000090,1,57.79,124.33,26.1,177.93 +452,1,E07000090,2,71.78,147.91,26.1,188.66 +778,1,E07000090,3,82.02,162.93,26.1,205.81 +1104,1,E07000090,4,90.42,180.08,26.1,224.01 +1430,3,E07000090,1,52.2,116.83,26.1,160.78 +1756,3,E07000090,2,63.38,130.77,26.1,146.84 +2082,3,E07000090,3,68.97,151.13,26.1,187.58 +2408,3,E07000090,4,73.64,186.51,26.1,196.15 +2734,2,E07000090,0,61.49,265.21,18.44,340.65 +3060,4,E07000090,0,48.18,193.32,18.44,202.73 +3386,6,E07000090,0,61.49,312.38,18.44,340.65 +3712,8,E07000090,0,48.18,312.38,18.44,340.65 +4008,5,E07000090,1,57.79,131.84,26.1,144.7 +4075,7,E07000090,1,52.2,131.84,26.1,144.7 +4623,5,E07000090,2,71.78,160.78,26.1,175.78 +4770,7,E07000090,2,63.38,160.78,26.1,175.78 +5275,5,E07000090,3,82.02,194.01,26.1,212.24 +5375,7,E07000090,3,68.97,194.01,26.1,212.24 +5960,5,E07000090,4,90.42,284.04,26.1,309.78 +6064,7,E07000090,4,73.64,284.04,26.1,309.78 +6646,9,E07000090,1,57.79,164.8,26.1,180.87 +6972,9,E07000090,2,71.78,200.97,26.1,219.74 +7298,9,E07000090,3,82.02,242.51,26.1,265.29 +7624,9,E07000090,4,90.42,355.06,26.1,387.21 +7950,10,E07000090,0,61.49,390.47,18.44,425.82 +127,1,E09000016,1,66.17,146.84,26.1,199.38 +453,1,E09000016,2,78.29,158.63,26.1,194.01 +779,1,E09000016,3,84.82,168.29,26.1,228.29 +1105,1,E09000016,4,102.51,188.66,26.1,254.03 +1431,3,E09000016,1,58.72,120.05,26.1,147.91 +1757,3,E09000016,2,64.31,140.42,26.1,176.86 +2083,3,E09000016,3,71.78,160.78,26.1,202.58 +2409,3,E09000016,4,83.89,262.61,26.1,263.68 +2735,2,E09000016,0,69.7,313.55,18.44,497.44 +3061,4,E09000016,0,59.45,367.77,18.44,398.42 +3387,6,E09000016,0,69.7,450.29,18.44,490.34 +3713,8,E09000016,0,59.45,450.29,18.44,490.34 +3965,5,E09000016,1,66.17,162.93,26.1,177.93 +4179,7,E09000016,1,58.72,162.93,26.1,177.93 +4580,5,E09000016,2,78.29,205.81,26.1,224.01 +4680,7,E09000016,2,64.31,205.81,26.1,224.01 +5232,5,E09000016,3,84.82,250.82,26.1,273.34 +5332,7,E09000016,3,71.78,250.82,26.1,273.34 +5884,7,E09000016,4,83.89,409.45,26.1,445.89 +5917,5,E09000016,4,102.51,409.45,26.1,445.89 +6647,9,E09000016,1,66.17,203.65,26.1,222.43 +6973,9,E09000016,2,78.29,257.26,26.1,280.03 +7299,9,E09000016,3,84.82,313.51,26.1,341.67 +7625,9,E09000016,4,102.51,511.83,26.1,557.37 +7951,10,E09000016,0,69.7,562.87,18.44,612.95 +128,1,E06000019,1,53.13,99.69,26.1,125.4 +454,1,E06000019,2,58.72,117.9,26.1,138.27 +780,1,E06000019,3,69.9,133.98,26.1,161.86 +1106,1,E06000019,4,81.09,162.93,26.1,180.08 +1432,3,E06000019,1,46.6,88.96,26.1,98.62 +1758,3,E06000019,2,50.34,95.42,26.1,103.98 +2084,3,E06000019,3,60.59,105.05,26.1,121.11 +2410,3,E06000019,4,68.97,128.63,26.1,128.63 +2736,2,E06000019,0,38.95,242.82,18.44,378.37 +3062,4,E06000019,0,46.12,106.09,18.44,106.09 +3388,6,E06000019,0,38.95,238.1,18.44,260.5 +3714,8,E06000019,0,46.12,238.1,18.44,260.5 +4287,5,E06000019,1,53.13,110.39,26.1,120.05 +4508,7,E06000019,1,46.6,110.39,26.1,120.05 +4897,5,E06000019,2,58.72,131.84,26.1,144.7 +5193,7,E06000019,2,50.34,131.84,26.1,144.7 +5528,5,E06000019,3,69.9,159.7,26.1,174.72 +5784,7,E06000019,3,60.59,159.7,26.1,174.72 +6180,5,E06000019,4,81.09,216.52,26.1,236.89 +6445,7,E06000019,4,68.97,216.52,26.1,236.89 +6648,9,E06000019,1,53.13,138.01,26.1,150.06 +6974,9,E06000019,2,58.72,164.8,26.1,180.87 +7300,9,E06000019,3,69.9,199.62,26.1,218.38 +7626,9,E06000019,4,81.09,270.66,26.1,296.11 +7952,10,E06000019,0,38.95,297.64,18.44,325.63 +129,1,E07000098,1,54.99,120.05,26.1,150.06 +455,1,E07000098,2,65.24,143.62,26.1,169.36 +781,1,E07000098,3,71.78,157.56,26.1,182.22 +1107,1,E07000098,4,82.02,172.58,26.1,180.08 +1433,3,E07000098,1,50.34,100.76,26.1,132.91 +1759,3,E07000098,2,58.72,118.97,26.1,133.98 +2085,3,E07000098,3,64.31,131.84,26.1,144.7 +2411,3,E07000098,4,71.78,150.06,26.1,160.78 +2737,2,E07000098,0,35.87,223.96,18.44,418.45 +3063,4,E07000098,0,55.36,134.38,18.44,314.73 +3389,6,E07000098,0,35.87,584.67,18.44,636.54 +3715,8,E07000098,0,55.36,584.67,18.44,636.54 +4138,5,E07000098,1,54.99,177.93,26.1,192.94 +4255,7,E07000098,1,50.34,177.93,26.1,192.94 +4719,5,E07000098,2,65.24,229.37,26.1,248.67 +4981,7,E07000098,2,58.72,229.37,26.1,248.67 +5438,5,E07000098,3,71.78,319.42,26.1,348.36 +5624,7,E07000098,3,64.31,319.42,26.1,348.36 +6148,5,E07000098,4,82.02,531.67,26.1,578.8 +6286,7,E07000098,4,71.78,531.67,26.1,578.8 +6649,9,E07000098,1,54.99,222.43,26.1,241.18 +6975,9,E07000098,2,65.24,286.72,26.1,310.84 +7301,9,E07000098,3,71.78,399.29,26.1,435.45 +7627,9,E07000098,4,82.02,664.55,26.1,723.51 +7953,10,E07000098,0,35.87,730.84,18.44,795.66 +130,1,E07000037,1,52.2,100.76,26.1,123.26 +456,1,E07000037,2,62.45,115.76,26.1,130.77 +782,1,E07000037,3,68.97,127.56,26.1,139.34 +1108,1,E07000037,4,76.43,159.7,26.1,168.29 +1434,3,E07000037,1,46.6,91.12,26.1,108.27 +1760,3,E07000037,2,53.13,97.54,26.1,109.33 +2086,3,E07000037,3,58.72,105.05,26.1,120.05 +2412,3,E07000037,4,64.31,123.26,26.1,123.26 +2738,2,E07000037,0,51.26,238.1,18.44,357.17 +3064,4,E07000037,0,49.2,113.15,18.44,122.59 +3390,6,E07000037,0,51.26,213.35,18.44,233.38 +3716,8,E07000037,0,49.2,213.35,18.44,233.38 +4329,5,E07000037,1,52.2,103.98,26.1,113.61 +4429,7,E07000037,1,46.6,103.98,26.1,113.61 +5025,5,E07000037,2,62.45,126.48,26.1,138.27 +5165,7,E07000037,2,53.13,126.48,26.1,138.27 +5668,5,E07000037,3,68.97,155.41,26.1,169.36 +5826,7,E07000037,3,58.72,155.41,26.1,169.36 +6243,5,E07000037,4,76.43,194.01,26.1,212.24 +6487,7,E07000037,4,64.31,194.01,26.1,212.24 +6650,9,E07000037,1,52.2,129.97,26.1,142.02 +6976,9,E07000037,2,62.45,158.09,26.1,172.84 +7302,9,E07000037,3,68.97,194.27,26.1,211.69 +7628,9,E07000037,4,76.43,242.51,26.1,265.29 +7954,10,E07000037,0,51.26,266.69,18.44,291.74 +131,1,E09000017,1,66.17,146.84,26.1,199.38 +457,1,E09000017,2,78.29,158.63,26.1,194.01 +783,1,E09000017,3,84.82,168.29,26.1,228.29 +1109,1,E09000017,4,102.51,188.66,26.1,254.03 +1435,3,E09000017,1,58.72,120.05,26.1,147.91 +1761,3,E09000017,2,64.31,140.42,26.1,176.86 +2087,3,E09000017,3,71.78,160.78,26.1,202.58 +2413,3,E09000017,4,83.89,262.61,26.1,263.68 +2739,2,E09000017,0,69.7,313.55,18.44,497.44 +3065,4,E09000017,0,59.45,367.77,18.44,398.42 +3391,6,E09000017,0,69.7,473.86,18.44,517.47 +3717,8,E09000017,0,59.45,473.86,18.44,517.47 +3966,5,E09000017,1,66.17,183.29,26.1,200.45 +4180,7,E09000017,1,58.72,183.29,26.1,200.45 +4581,5,E09000017,2,78.29,250.82,26.1,273.34 +4681,7,E09000017,2,64.31,250.82,26.1,273.34 +5233,5,E09000017,3,84.82,295.83,26.1,322.64 +5333,7,E09000017,3,71.78,295.83,26.1,322.64 +5885,7,E09000017,4,83.89,430.9,26.1,470.55 +5918,5,E09000017,4,102.51,430.9,26.1,470.55 +6651,9,E09000017,1,66.17,229.13,26.1,250.54 +6977,9,E09000017,2,78.29,313.51,26.1,341.67 +7303,9,E09000017,3,84.82,369.81,26.1,403.3 +7629,9,E09000017,4,102.51,538.61,26.1,588.19 +7955,10,E09000017,0,69.7,592.32,18.44,646.84 +132,1,E07000132,1,52.2,100.76,26.1,123.26 +458,1,E07000132,2,62.45,115.76,26.1,130.77 +784,1,E07000132,3,68.97,127.56,26.1,139.34 +1110,1,E07000132,4,76.43,159.7,26.1,168.29 +1436,3,E07000132,1,46.6,91.12,26.1,108.27 +1762,3,E07000132,2,53.13,97.54,26.1,109.33 +2088,3,E07000132,3,58.72,105.05,26.1,120.05 +2414,3,E07000132,4,64.31,123.26,26.1,123.26 +2740,2,E07000132,0,51.26,238.1,18.44,357.17 +3066,4,E07000132,0,49.2,113.15,18.44,122.59 +3392,6,E07000132,0,51.26,238.1,18.44,260.5 +3718,8,E07000132,0,49.2,238.1,18.44,260.5 +4330,5,E07000132,1,52.2,93.26,26.1,100.76 +4430,7,E07000132,1,46.6,93.26,26.1,100.76 +5026,5,E07000132,2,62.45,121.11,26.1,131.84 +5166,7,E07000132,2,53.13,121.11,26.1,131.84 +5669,5,E07000132,3,68.97,142.56,26.1,155.41 +5827,7,E07000132,3,58.72,142.56,26.1,155.41 +6244,5,E07000132,4,76.43,216.52,26.1,236.89 +6488,7,E07000132,4,64.31,216.52,26.1,236.89 +6652,9,E07000132,1,52.2,116.56,26.1,125.95 +6978,9,E07000132,2,62.45,151.41,26.1,164.8 +7304,9,E07000132,3,68.97,178.2,26.1,194.27 +7630,9,E07000132,4,76.43,270.66,26.1,296.11 +7956,10,E07000132,0,51.26,297.64,18.44,325.63 +133,1,E07000227,1,57.79,124.33,26.1,177.93 +459,1,E07000227,2,71.78,147.91,26.1,188.66 +785,1,E07000227,3,82.02,162.93,26.1,205.81 +1111,1,E07000227,4,90.42,180.08,26.1,224.01 +1437,3,E07000227,1,52.2,116.83,26.1,160.78 +1763,3,E07000227,2,63.38,130.77,26.1,146.84 +2089,3,E07000227,3,68.97,151.13,26.1,187.58 +2415,3,E07000227,4,73.64,186.51,26.1,196.15 +2741,2,E07000227,0,61.49,265.21,18.44,340.65 +3067,4,E07000227,0,48.18,193.32,18.44,202.73 +3393,6,E07000227,0,61.49,473.86,18.44,517.47 +3719,8,E07000227,0,48.18,473.86,18.44,517.47 +4009,5,E07000227,1,57.79,148.99,26.1,161.86 +4076,7,E07000227,1,52.2,148.99,26.1,161.86 +4624,5,E07000227,2,71.78,188.66,26.1,205.81 +4771,7,E07000227,2,63.38,188.66,26.1,205.81 +5276,5,E07000227,3,82.02,262.61,26.1,285.11 +5376,7,E07000227,3,68.97,262.61,26.1,285.11 +5961,5,E07000227,4,90.42,430.9,26.1,470.55 +6065,7,E07000227,4,73.64,430.9,26.1,470.55 +6653,9,E07000227,1,57.79,186.23,26.1,202.34 +6979,9,E07000227,2,71.78,235.82,26.1,257.26 +7305,9,E07000227,3,82.02,328.26,26.1,356.4 +7631,9,E07000227,4,90.42,538.61,26.1,588.19 +7957,10,E07000227,0,61.49,592.32,18.44,646.84 +134,1,E09000018,1,66.17,146.84,26.1,199.38 +460,1,E09000018,2,78.29,158.63,26.1,194.01 +786,1,E09000018,3,84.82,168.29,26.1,228.29 +1112,1,E09000018,4,102.51,188.66,26.1,254.03 +1438,3,E09000018,1,58.72,120.05,26.1,147.91 +1764,3,E09000018,2,64.31,140.42,26.1,176.86 +2090,3,E09000018,3,71.78,160.78,26.1,202.58 +2416,3,E09000018,4,83.89,262.61,26.1,263.68 +2742,2,E09000018,0,69.7,313.55,18.44,497.44 +3068,4,E09000018,0,59.45,367.77,18.44,398.42 +3394,6,E09000018,0,69.7,808.63,18.44,882.9 +3720,8,E09000018,0,59.45,808.63,18.44,882.9 +3967,5,E09000018,1,66.17,217.59,26.1,237.96 +4181,7,E09000018,1,58.72,217.59,26.1,237.96 +4582,5,E09000018,2,78.29,295.83,26.1,322.64 +4682,7,E09000018,2,64.31,295.83,26.1,322.64 +5234,5,E09000018,3,84.82,319.42,26.1,348.36 +5334,7,E09000018,3,71.78,319.42,26.1,348.36 +5886,7,E09000018,4,83.89,735.31,26.1,802.83 +5919,5,E09000018,4,102.51,735.31,26.1,802.83 +6654,9,E09000018,1,66.17,271.98,26.1,297.46 +6980,9,E09000018,2,78.29,369.81,26.1,403.3 +7306,9,E09000018,3,84.82,399.29,26.1,435.45 +7632,9,E09000018,4,102.51,919.14,26.1,1003.53 +7958,10,E09000018,0,69.7,1010.78,18.44,1103.61 +135,1,E07000011,1,54.99,120.05,26.1,150.06 +461,1,E07000011,2,65.24,143.62,26.1,169.36 +787,1,E07000011,3,71.78,157.56,26.1,182.22 +1113,1,E07000011,4,82.02,172.58,26.1,180.08 +1439,3,E07000011,1,50.34,100.76,26.1,132.91 +1765,3,E07000011,2,58.72,118.97,26.1,133.98 +2091,3,E07000011,3,64.31,131.84,26.1,144.7 +2417,3,E07000011,4,71.78,150.06,26.1,160.78 +2743,2,E07000011,0,35.87,223.96,18.44,418.45 +3069,4,E07000011,0,55.36,134.38,18.44,314.73 +3395,6,E07000011,0,35.87,312.38,18.44,340.65 +3721,8,E07000011,0,55.36,312.38,18.44,340.65 +4139,5,E07000011,1,54.99,114.68,26.1,124.33 +4256,7,E07000011,1,50.34,114.68,26.1,124.33 +4720,5,E07000011,2,65.24,144.7,26.1,157.56 +4982,7,E07000011,2,58.72,144.7,26.1,157.56 +5439,5,E07000011,3,71.78,172.58,26.1,187.58 +5625,7,E07000011,3,64.31,172.58,26.1,187.58 +6149,5,E07000011,4,82.02,284.04,26.1,309.78 +6287,7,E07000011,4,71.78,284.04,26.1,309.78 +6655,9,E07000011,1,54.99,143.37,26.1,155.41 +6981,9,E07000011,2,65.24,180.87,26.1,196.95 +7307,9,E07000011,3,71.78,215.73,26.1,234.49 +7633,9,E07000011,4,82.02,355.06,26.1,387.21 +7959,10,E07000011,0,35.87,390.47,18.44,425.82 +136,1,E07000120,1,52.2,94.33,26.1,117.9 +462,1,E07000120,2,59.66,108.27,26.1,136.13 +788,1,E07000120,3,66.17,121.11,26.1,146.84 +1114,1,E07000120,4,72.71,135.06,26.1,160.78 +1440,3,E07000120,1,43.8,86.81,26.1,101.83 +1766,3,E07000120,2,54.06,95.42,26.1,114.68 +2092,3,E07000120,3,58.72,106.12,26.1,125.4 +2418,3,E07000120,4,55.93,120.05,26.1,135.06 +2744,2,E07000120,0,55.36,236.93,18.44,338.29 +3070,4,E07000120,0,32.8,464.43,18.44,592.92 +3396,6,E07000120,0,55.36,189.79,18.44,206.28 +3722,8,E07000120,0,32.8,189.79,18.44,206.28 +4367,5,E07000120,1,52.2,91.12,26.1,98.62 +4479,7,E07000120,1,43.8,91.12,26.1,98.62 +4937,5,E07000120,2,59.66,99.69,26.1,109.33 +5075,7,E07000120,2,54.06,99.69,26.1,109.33 +5580,5,E07000120,3,66.17,126.48,26.1,138.27 +5755,7,E07000120,3,58.72,126.48,26.1,138.27 +6328,5,E07000120,4,72.71,172.58,26.1,187.58 +6379,7,E07000120,4,55.93,172.58,26.1,187.58 +6656,9,E07000120,1,52.2,113.9,26.1,123.26 +6982,9,E07000120,2,59.66,124.6,26.1,136.67 +7308,9,E07000120,3,66.17,158.09,26.1,172.84 +7634,9,E07000120,4,72.71,215.73,26.1,234.49 +7960,10,E07000120,0,55.36,237.24,18.44,257.84 +137,1,E07000202,1,54.99,120.05,26.1,150.06 +463,1,E07000202,2,65.24,143.62,26.1,169.36 +789,1,E07000202,3,71.78,157.56,26.1,182.22 +1115,1,E07000202,4,82.02,172.58,26.1,180.08 +1441,3,E07000202,1,50.34,100.76,26.1,132.91 +1767,3,E07000202,2,58.72,118.97,26.1,133.98 +2093,3,E07000202,3,64.31,131.84,26.1,144.7 +2419,3,E07000202,4,71.78,150.06,26.1,160.78 +2745,2,E07000202,0,35.87,223.96,18.44,418.45 +3071,4,E07000202,0,55.36,134.38,18.44,314.73 +3397,6,E07000202,0,35.87,271.13,18.44,295.87 +3723,8,E07000202,0,55.36,271.13,18.44,295.87 +4140,5,E07000202,1,54.99,103.98,26.1,113.61 +4257,7,E07000202,1,50.34,103.98,26.1,113.61 +4721,5,E07000202,2,65.24,126.48,26.1,138.27 +4983,7,E07000202,2,58.72,126.48,26.1,138.27 +5440,5,E07000202,3,71.78,147.91,26.1,159.7 +5626,7,E07000202,3,64.31,147.91,26.1,159.7 +6150,5,E07000202,4,82.02,247.6,26.1,269.04 +6288,7,E07000202,4,71.78,247.6,26.1,269.04 +6657,9,E07000202,1,54.99,129.97,26.1,142.02 +6983,9,E07000202,2,65.24,158.09,26.1,172.84 +7309,9,E07000202,3,71.78,184.89,26.1,199.62 +7635,9,E07000202,4,82.02,309.5,26.1,336.31 +7961,10,E07000202,0,35.87,338.9,18.44,369.84 +138,1,E06000046,1,57.79,124.33,26.1,177.93 +464,1,E06000046,2,71.78,147.91,26.1,188.66 +790,1,E06000046,3,82.02,162.93,26.1,205.81 +1116,1,E06000046,4,90.42,180.08,26.1,224.01 +1442,3,E06000046,1,52.2,116.83,26.1,160.78 +1768,3,E06000046,2,63.38,130.77,26.1,146.84 +2094,3,E06000046,3,68.97,151.13,26.1,187.58 +2420,3,E06000046,4,73.64,186.51,26.1,196.15 +2746,2,E06000046,0,61.49,265.21,18.44,340.65 +3072,4,E06000046,0,48.18,193.32,18.44,202.73 +3398,6,E06000046,0,61.49,264.04,18.44,287.62 +3724,8,E06000046,0,48.18,264.04,18.44,287.62 +4010,5,E06000046,1,57.79,108.27,26.1,117.9 +4077,7,E06000046,1,52.2,108.27,26.1,117.9 +4625,5,E06000046,2,71.78,138.27,26.1,150.06 +4772,7,E06000046,2,63.38,138.27,26.1,150.06 +5277,5,E06000046,3,82.02,172.58,26.1,187.58 +5377,7,E06000046,3,68.97,172.58,26.1,187.58 +5962,5,E06000046,4,90.42,240.09,26.1,261.54 +6066,7,E06000046,4,73.64,240.09,26.1,261.54 +6658,9,E06000046,1,57.79,135.33,26.1,147.38 +6984,9,E06000046,2,71.78,172.84,26.1,187.57 +7310,9,E06000046,3,82.02,215.73,26.1,234.49 +7636,9,E06000046,4,90.42,300.12,26.1,326.92 +7962,10,E06000046,0,61.49,330.05,18.44,359.53 +139,1,E06000053,1,49.41,108.27,26.1,141.49 +465,1,E06000053,2,55.93,122.19,26.1,145.77 +791,1,E06000053,3,62.45,142.56,26.1,162.93 +1117,1,E06000053,4,71.78,159.7,26.1,196.15 +1443,3,E06000053,1,47.54,90.03,26.1,212.24 +1769,3,E06000053,2,54.99,101.83,26.1,112.54 +2095,3,E06000053,3,62.45,110.39,26.1,127.56 +2421,3,E06000053,4,74.57,131.84,26.1,131.84 +2747,2,E06000053,0,54.33,228.68,18.44,354.8 +3073,4,E06000053,0,54.33,114.33,18.44,140.27 +3399,6,E06000053,0,54.33,213.35,18.44,233.38 +3725,8,E06000053,0,54.33,213.35,18.44,233.38 +3925,7,E06000053,1,47.54,130.77,26.1,143.62 +4209,5,E06000053,1,49.41,130.77,26.1,143.62 +4845,5,E06000053,2,55.93,166.14,26.1,181.15 +5122,7,E06000053,2,54.99,166.14,26.1,181.15 +5476,5,E06000053,3,62.45,194.01,26.1,212.24 +5702,7,E06000053,3,62.45,194.01,26.1,212.24 +6014,5,E06000053,4,71.78,295.83,26.1,322.64 +6414,7,E06000053,4,74.57,295.83,26.1,322.64 +6659,9,E06000053,1,49.41,163.46,26.1,179.53 +6985,9,E06000053,2,55.93,207.68,26.1,226.44 +7311,9,E06000053,3,62.45,242.51,26.1,265.29 +7637,9,E06000053,4,71.78,369.81,26.1,403.3 +7963,10,E06000053,0,54.33,266.69,18.44,291.74 +140,1,E09000019,1,66.17,146.84,26.1,199.38 +466,1,E09000019,2,78.29,158.63,26.1,194.01 +792,1,E09000019,3,84.82,168.29,26.1,228.29 +1118,1,E09000019,4,102.51,188.66,26.1,254.03 +1444,3,E09000019,1,58.72,120.05,26.1,147.91 +1770,3,E09000019,2,64.31,140.42,26.1,176.86 +2096,3,E09000019,3,71.78,160.78,26.1,202.58 +2422,3,E09000019,4,83.89,262.61,26.1,263.68 +2748,2,E09000019,0,69.7,313.55,18.44,497.44 +3074,4,E09000019,0,59.45,367.77,18.44,398.42 +3400,6,E09000019,0,69.7,723.76,18.44,789.76 +3726,8,E09000019,0,59.45,723.76,18.44,789.76 +3968,5,E09000019,1,66.17,335.49,26.1,365.5 +4182,7,E09000019,1,58.72,335.49,26.1,365.5 +4583,5,E09000019,2,78.29,452.33,26.1,493.07 +4683,7,E09000019,2,64.31,452.33,26.1,493.07 +5235,5,E09000019,3,84.82,529.51,26.1,576.67 +5335,7,E09000019,3,71.78,529.51,26.1,576.67 +5887,7,E09000019,4,83.89,658.13,26.1,718.15 +5920,5,E09000019,4,102.51,658.13,26.1,718.15 +6660,9,E09000019,1,66.17,419.36,26.1,456.88 +6986,9,E09000019,2,78.29,565.41,26.1,616.32 +7312,9,E09000019,3,84.82,661.89,26.1,720.83 +7638,9,E09000019,4,102.51,822.66,26.1,897.7 +7964,10,E09000019,0,69.7,904.69,18.44,987.21 +141,1,E09000020,1,66.17,146.84,26.1,199.38 +467,1,E09000020,2,78.29,158.63,26.1,194.01 +793,1,E09000020,3,84.82,168.29,26.1,228.29 +1119,1,E09000020,4,102.51,188.66,26.1,254.03 +1445,3,E09000020,1,58.72,120.05,26.1,147.91 +1771,3,E09000020,2,64.31,140.42,26.1,176.86 +2097,3,E09000020,3,71.78,160.78,26.1,202.58 +2423,3,E09000020,4,83.89,262.61,26.1,263.68 +2749,2,E09000020,0,69.7,313.55,18.44,497.44 +3075,4,E09000020,0,59.45,367.77,18.44,398.42 +3401,6,E09000020,0,69.7,3175.58,18.44,3464.37 +3727,8,E09000020,0,59.45,3175.58,18.44,3464.37 +3969,5,E09000020,1,66.17,486.62,26.1,531.67 +4183,7,E09000020,1,58.72,486.62,26.1,531.67 +4584,5,E09000020,2,78.29,735.31,26.1,802.83 +4684,7,E09000020,2,64.31,735.31,26.1,802.83 +5236,5,E09000020,3,84.82,1568.16,26.1,1709.64 +5336,7,E09000020,3,71.78,1568.16,26.1,1709.64 +5888,7,E09000020,4,83.89,2888.71,26.1,3150.23 +5921,5,E09000020,4,102.51,2888.71,26.1,3150.23 +6661,9,E09000020,1,66.17,608.29,26.1,664.55 +6987,9,E09000020,2,78.29,919.14,26.1,1003.53 +7313,9,E09000020,3,84.82,1960.2,26.1,2137.04 +7639,9,E09000020,4,102.51,3610.88,26.1,3937.78 +7965,10,E09000020,0,69.7,3969.47,18.44,4330.46 +143,1,E07000146,1,54.99,120.05,26.1,150.06 +469,1,E07000146,2,65.24,143.62,26.1,169.36 +795,1,E07000146,3,71.78,157.56,26.1,182.22 +1121,1,E07000146,4,82.02,172.58,26.1,180.08 +1447,3,E07000146,1,50.34,100.76,26.1,132.91 +1773,3,E07000146,2,58.72,118.97,26.1,133.98 +2099,3,E07000146,3,64.31,131.84,26.1,144.7 +2425,3,E07000146,4,71.78,150.06,26.1,160.78 +2751,2,E07000146,0,35.87,223.96,18.44,418.45 +3077,4,E07000146,0,55.36,134.38,18.44,314.73 +3403,6,E07000146,0,35.87,269.94,18.44,294.71 +3729,8,E07000146,0,55.36,269.94,18.44,294.71 +4141,5,E07000146,1,54.99,100.76,26.1,110.39 +4258,7,E07000146,1,50.34,100.76,26.1,110.39 +4722,5,E07000146,2,65.24,126.48,26.1,138.27 +4984,7,E07000146,2,58.72,126.48,26.1,138.27 +5441,5,E07000146,3,71.78,148.99,26.1,161.86 +5627,7,E07000146,3,64.31,148.99,26.1,161.86 +6151,5,E07000146,4,82.02,245.47,26.1,267.97 +6289,7,E07000146,4,71.78,245.47,26.1,267.97 +6663,9,E07000146,1,54.99,125.95,26.1,138.01 +6989,9,E07000146,2,65.24,158.09,26.1,172.84 +7315,9,E07000146,3,71.78,186.23,26.1,202.34 +7641,9,E07000146,4,82.02,306.81,26.1,334.98 +7967,10,E07000146,0,35.87,337.42,18.44,368.37 +144,1,E06000010,1,51.27,92.19,26.1,114.68 +470,1,E06000010,2,58.72,109.33,26.1,141.49 +796,1,E06000010,3,63.38,121.11,26.1,162.93 +1122,1,E06000010,4,73.64,145.77,26.1,180.08 +1448,3,E06000010,1,46.6,82.54,26.1,93.26 +1774,3,E06000010,2,53.13,113.61,26.1,145.77 +2100,3,E06000010,3,56.86,105.05,26.1,114.68 +2426,3,E06000010,4,64.31,122.19,26.1,176.86 +2752,2,E06000010,0,52.28,232.2,18.44,319.44 +3078,4,E06000010,0,51.26,159.13,18.44,188.6 +3404,6,E06000010,0,52.28,189.79,18.44,206.28 +3730,8,E06000010,0,51.26,189.79,18.44,206.28 +4398,5,E06000010,1,51.27,82.54,26.1,88.96 +4552,7,E06000010,1,46.6,82.54,26.1,88.96 +4820,7,E06000010,2,53.13,103.98,26.1,113.61 +4878,5,E06000010,2,58.72,103.98,26.1,113.61 +5509,5,E06000010,3,63.38,126.48,26.1,138.27 +5856,7,E06000010,3,56.86,126.48,26.1,138.27 +6114,5,E06000010,4,73.64,172.58,26.1,187.58 +6212,7,E06000010,4,64.31,172.58,26.1,187.58 +6664,9,E06000010,1,51.27,103.19,26.1,111.21 +6990,9,E06000010,2,53.13,129.97,26.1,142.02 +7316,9,E06000010,3,63.38,158.09,26.1,172.84 +7642,9,E06000010,4,73.64,215.73,26.1,234.49 +7968,10,E06000010,0,52.28,237.24,18.44,257.84 +145,1,E09000021,1,66.17,146.84,26.1,199.38 +471,1,E09000021,2,78.29,158.63,26.1,194.01 +797,1,E09000021,3,84.82,168.29,26.1,228.29 +1123,1,E09000021,4,102.51,188.66,26.1,254.03 +1449,3,E09000021,1,58.72,120.05,26.1,147.91 +1775,3,E09000021,2,64.31,140.42,26.1,176.86 +2101,3,E09000021,3,71.78,160.78,26.1,202.58 +2427,3,E09000021,4,83.89,262.61,26.1,263.68 +2753,2,E09000021,0,69.7,313.55,18.44,497.44 +3079,4,E09000021,0,59.45,367.77,18.44,398.42 +3405,6,E09000021,0,69.7,623.56,18.44,678.97 +3731,8,E09000021,0,59.45,623.56,18.44,678.97 +3970,5,E09000021,1,66.17,211.17,26.1,230.44 +4184,7,E09000021,1,58.72,211.17,26.1,230.44 +4585,5,E09000021,2,78.29,273.34,26.1,297.99 +4685,7,E09000021,2,64.31,273.34,26.1,297.99 +5237,5,E09000021,3,84.82,339.77,26.1,370.87 +5337,7,E09000021,3,71.78,339.77,26.1,370.87 +5889,7,E09000021,4,83.89,567.02,26.1,617.4 +5922,5,E09000021,4,102.51,567.02,26.1,617.4 +6665,9,E09000021,1,66.17,263.95,26.1,288.07 +6991,9,E09000021,2,78.29,341.67,26.1,372.48 +7317,9,E09000021,3,84.82,424.73,26.1,463.59 +7643,9,E09000021,4,102.51,708.78,26.1,771.75 +7969,10,E09000021,0,69.7,779.44,18.44,848.71 +146,1,E08000034,1,51.27,92.19,26.1,114.68 +472,1,E08000034,2,58.72,109.33,26.1,141.49 +798,1,E08000034,3,63.38,121.11,26.1,162.93 +1124,1,E08000034,4,73.64,145.77,26.1,180.08 +1450,3,E08000034,1,46.6,82.54,26.1,93.26 +1776,3,E08000034,2,53.13,113.61,26.1,145.77 +2102,3,E08000034,3,56.86,105.05,26.1,114.68 +2428,3,E08000034,4,64.31,122.19,26.1,176.86 +2754,2,E08000034,0,52.28,232.2,18.44,319.44 +3080,4,E08000034,0,51.26,159.13,18.44,188.6 +3406,6,E08000034,0,52.28,213.35,18.44,233.38 +3732,8,E08000034,0,51.26,213.35,18.44,233.38 +4399,5,E08000034,1,51.27,97.54,26.1,106.12 +4553,7,E08000034,1,46.6,97.54,26.1,106.12 +4821,7,E08000034,2,53.13,114.68,26.1,124.33 +4879,5,E08000034,2,58.72,114.68,26.1,124.33 +5510,5,E08000034,3,63.38,136.13,26.1,148.99 +5857,7,E08000034,3,56.86,136.13,26.1,148.99 +6115,5,E08000034,4,73.64,194.01,26.1,212.24 +6213,7,E08000034,4,64.31,194.01,26.1,212.24 +6666,9,E08000034,1,51.27,121.95,26.1,132.65 +6992,9,E08000034,2,53.13,143.37,26.1,155.41 +7318,9,E08000034,3,63.38,170.16,26.1,186.23 +7644,9,E08000034,4,73.64,242.51,26.1,265.29 +7970,10,E08000034,0,52.28,266.69,18.44,291.74 +147,1,E08000011,1,52.2,94.33,26.1,117.9 +473,1,E08000011,2,59.66,108.27,26.1,136.13 +799,1,E08000011,3,66.17,121.11,26.1,146.84 +1125,1,E08000011,4,72.71,135.06,26.1,160.78 +1451,3,E08000011,1,43.8,86.81,26.1,101.83 +1777,3,E08000011,2,54.06,95.42,26.1,114.68 +2103,3,E08000011,3,58.72,106.12,26.1,125.4 +2429,3,E08000011,4,55.93,120.05,26.1,135.06 +2755,2,E08000011,0,55.36,236.93,18.44,338.29 +3081,4,E08000011,0,32.8,464.43,18.44,592.92 +3407,6,E08000011,0,55.36,226.32,18.44,246.36 +3733,8,E08000011,0,32.8,226.32,18.44,246.36 +4368,5,E08000011,1,52.2,110.39,26.1,120.05 +4480,7,E08000011,1,43.8,110.39,26.1,120.05 +4938,5,E08000011,2,59.66,126.48,26.1,138.27 +5076,7,E08000011,2,54.06,126.48,26.1,138.27 +5581,5,E08000011,3,66.17,143.62,26.1,156.49 +5756,7,E08000011,3,58.72,143.62,26.1,156.49 +6329,5,E08000011,4,72.71,205.81,26.1,224.01 +6380,7,E08000011,4,55.93,205.81,26.1,224.01 +6667,9,E08000011,1,52.2,138.01,26.1,150.06 +6993,9,E08000011,2,59.66,158.09,26.1,172.84 +7319,9,E08000011,3,66.17,179.53,26.1,195.6 +7645,9,E08000011,4,72.71,257.26,26.1,280.03 +7971,10,E08000011,0,55.36,282.91,18.44,307.95 +148,1,E09000022,1,66.17,146.84,26.1,199.38 +474,1,E09000022,2,78.29,158.63,26.1,194.01 +800,1,E09000022,3,84.82,168.29,26.1,228.29 +1126,1,E09000022,4,102.51,188.66,26.1,254.03 +1452,3,E09000022,1,58.72,120.05,26.1,147.91 +1778,3,E09000022,2,64.31,140.42,26.1,176.86 +2104,3,E09000022,3,71.78,160.78,26.1,202.58 +2430,3,E09000022,4,83.89,262.61,26.1,263.68 +2756,2,E09000022,0,69.7,313.55,18.44,497.44 +3082,4,E09000022,0,59.45,367.77,18.44,398.42 +3408,6,E09000022,0,69.7,678.97,18.44,741.43 +3734,8,E09000022,0,59.45,678.97,18.44,741.43 +3971,5,E09000022,1,66.17,276.55,26.1,301.2 +4185,7,E09000022,1,58.72,276.55,26.1,301.2 +4586,5,E09000022,2,78.29,330.14,26.1,360.15 +4686,7,E09000022,2,64.31,330.14,26.1,360.15 +5238,5,E09000022,3,84.82,433.04,26.1,472.7 +5338,7,E09000022,3,71.78,433.04,26.1,472.7 +5890,7,E09000022,4,83.89,619.55,26.1,674.22 +5923,5,E09000022,4,102.51,619.55,26.1,674.22 +6668,9,E09000022,1,66.17,345.69,26.1,376.51 +6994,9,E09000022,2,78.29,412.67,26.1,450.18 +7320,9,E09000022,3,84.82,541.3,26.1,590.86 +7646,9,E09000022,4,102.51,774.45,26.1,842.76 +7972,10,E09000022,0,69.7,848.71,18.44,926.8 +149,1,E07000121,1,52.2,94.33,26.1,117.9 +475,1,E07000121,2,59.66,108.27,26.1,136.13 +801,1,E07000121,3,66.17,121.11,26.1,146.84 +1127,1,E07000121,4,72.71,135.06,26.1,160.78 +1453,3,E07000121,1,43.8,86.81,26.1,101.83 +1779,3,E07000121,2,54.06,95.42,26.1,114.68 +2105,3,E07000121,3,58.72,106.12,26.1,125.4 +2431,3,E07000121,4,55.93,120.05,26.1,135.06 +2757,2,E07000121,0,55.36,236.93,18.44,338.29 +3083,4,E07000121,0,32.8,464.43,18.44,592.92 +3409,6,E07000121,0,55.36,200.38,18.44,219.25 +3735,8,E07000121,0,32.8,200.38,18.44,219.25 +4369,5,E07000121,1,52.2,110.39,26.1,120.05 +4481,7,E07000121,1,43.8,110.39,26.1,120.05 +4939,5,E07000121,2,59.66,131.84,26.1,144.7 +5077,7,E07000121,2,54.06,131.84,26.1,144.7 +5582,5,E07000121,3,66.17,148.99,26.1,161.86 +5757,7,E07000121,3,58.72,148.99,26.1,161.86 +6330,5,E07000121,4,72.71,182.22,26.1,199.38 +6381,7,E07000121,4,55.93,182.22,26.1,199.38 +6669,9,E07000121,1,52.2,138.01,26.1,150.06 +6995,9,E07000121,2,59.66,164.8,26.1,180.87 +7321,9,E07000121,3,66.17,186.23,26.1,202.34 +7647,9,E07000121,4,72.71,227.8,26.1,249.22 +7973,10,E07000121,0,55.36,250.47,18.44,274.05 +150,1,E08000035,1,51.27,92.19,26.1,114.68 +476,1,E08000035,2,58.72,109.33,26.1,141.49 +802,1,E08000035,3,63.38,121.11,26.1,162.93 +1128,1,E08000035,4,73.64,145.77,26.1,180.08 +1454,3,E08000035,1,46.6,82.54,26.1,93.26 +1780,3,E08000035,2,53.13,113.61,26.1,145.77 +2106,3,E08000035,3,56.86,105.05,26.1,114.68 +2432,3,E08000035,4,64.31,122.19,26.1,176.86 +2758,2,E08000035,0,52.28,232.2,18.44,319.44 +3084,4,E08000035,0,51.26,159.13,18.44,188.6 +3410,6,E08000035,0,52.28,455,18.44,496.26 +3736,8,E08000035,0,51.26,455,18.44,496.26 +4400,5,E08000035,1,51.27,126.48,26.1,138.27 +4554,7,E08000035,1,46.6,126.48,26.1,138.27 +4822,7,E08000035,2,53.13,155.41,26.1,169.36 +4880,5,E08000035,2,58.72,155.41,26.1,169.36 +5511,5,E08000035,3,63.38,190.79,26.1,207.96 +5858,7,E08000035,3,56.86,190.79,26.1,207.96 +6116,5,E08000035,4,73.64,413.74,26.1,451.27 +6214,7,E08000035,4,64.31,413.74,26.1,451.27 +6670,9,E08000035,1,51.27,158.09,26.1,172.84 +6996,9,E08000035,2,53.13,194.27,26.1,211.69 +7322,9,E08000035,3,63.38,238.5,26.1,259.93 +7648,9,E08000035,4,73.64,517.19,26.1,564.06 +7974,10,E08000035,0,52.28,568.74,18.44,620.3 +151,1,E06000016,1,52.2,100.76,26.1,123.26 +477,1,E06000016,2,62.45,115.76,26.1,130.77 +803,1,E06000016,3,68.97,127.56,26.1,139.34 +1129,1,E06000016,4,76.43,159.7,26.1,168.29 +1455,3,E06000016,1,46.6,91.12,26.1,108.27 +1781,3,E06000016,2,53.13,97.54,26.1,109.33 +2107,3,E06000016,3,58.72,105.05,26.1,120.05 +2433,3,E06000016,4,64.31,123.26,26.1,123.26 +2759,2,E06000016,0,51.26,238.1,18.44,357.17 +3085,4,E06000016,0,49.2,113.15,18.44,122.59 +3411,6,E06000016,0,51.26,218.08,18.44,238.1 +3737,8,E06000016,0,49.2,218.08,18.44,238.1 +4332,5,E06000016,1,52.2,108.27,26.1,117.9 +4432,7,E06000016,1,46.6,108.27,26.1,117.9 +5028,5,E06000016,2,62.45,126.48,26.1,138.27 +5168,7,E06000016,2,53.13,126.48,26.1,138.27 +5671,5,E06000016,3,68.97,138.27,26.1,150.06 +5829,7,E06000016,3,58.72,138.27,26.1,150.06 +6246,5,E06000016,4,76.43,199.38,26.1,216.52 +6490,7,E06000016,4,64.31,199.38,26.1,216.52 +6671,9,E06000016,1,52.2,135.33,26.1,147.38 +6997,9,E06000016,2,62.45,158.09,26.1,172.84 +7323,9,E06000016,3,68.97,172.84,26.1,187.57 +7649,9,E06000016,4,76.43,249.22,26.1,270.66 +7975,10,E06000016,0,51.26,272.59,18.44,297.64 +152,1,E07000063,1,57.79,124.33,26.1,177.93 +478,1,E07000063,2,71.78,147.91,26.1,188.66 +804,1,E07000063,3,82.02,162.93,26.1,205.81 +1130,1,E07000063,4,90.42,180.08,26.1,224.01 +1456,3,E07000063,1,52.2,116.83,26.1,160.78 +1782,3,E07000063,2,63.38,130.77,26.1,146.84 +2108,3,E07000063,3,68.97,151.13,26.1,187.58 +2434,3,E07000063,4,73.64,186.51,26.1,196.15 +2760,2,E07000063,0,61.49,265.21,18.44,340.65 +3086,4,E07000063,0,48.18,193.32,18.44,202.73 +3412,6,E07000063,0,61.49,374.83,18.44,409.03 +3738,8,E07000063,0,48.18,374.83,18.44,409.03 +4011,5,E07000063,1,57.79,143.62,26.1,156.49 +4078,7,E07000063,1,52.2,143.62,26.1,156.49 +4626,5,E07000063,2,71.78,188.66,26.1,205.81 +4773,7,E07000063,2,63.38,188.66,26.1,205.81 +5278,5,E07000063,3,82.02,228.29,26.1,247.6 +5378,7,E07000063,3,68.97,228.29,26.1,247.6 +5963,5,E07000063,4,90.42,340.85,26.1,371.94 +6067,7,E07000063,4,73.64,340.85,26.1,371.94 +6672,9,E07000063,1,57.79,179.53,26.1,195.6 +6998,9,E07000063,2,71.78,235.82,26.1,257.26 +7324,9,E07000063,3,82.02,285.39,26.1,309.5 +7650,9,E07000063,4,90.42,426.06,26.1,464.91 +7976,10,E07000063,0,61.49,468.55,18.44,511.3 +153,1,E09000023,1,66.17,146.84,26.1,199.38 +479,1,E09000023,2,78.29,158.63,26.1,194.01 +805,1,E09000023,3,84.82,168.29,26.1,228.29 +1131,1,E09000023,4,102.51,188.66,26.1,254.03 +1457,3,E09000023,1,58.72,120.05,26.1,147.91 +1783,3,E09000023,2,64.31,140.42,26.1,176.86 +2109,3,E09000023,3,71.78,160.78,26.1,202.58 +2435,3,E09000023,4,83.89,262.61,26.1,263.68 +2761,2,E09000023,0,69.7,313.55,18.44,497.44 +3087,4,E09000023,0,59.45,367.77,18.44,398.42 +3413,6,E09000023,0,69.7,519.83,18.44,565.81 +3739,8,E09000023,0,59.45,519.83,18.44,565.81 +3972,5,E09000023,1,66.17,194.01,26.1,212.24 +4186,7,E09000023,1,58.72,194.01,26.1,212.24 +4587,5,E09000023,2,78.29,250.82,26.1,273.34 +4687,7,E09000023,2,64.31,250.82,26.1,273.34 +5239,5,E09000023,3,84.82,319.42,26.1,348.36 +5339,7,E09000023,3,71.78,319.42,26.1,348.36 +5891,7,E09000023,4,83.89,472.7,26.1,514.5 +5924,5,E09000023,4,102.51,472.7,26.1,514.5 +6673,9,E09000023,1,66.17,242.51,26.1,265.29 +6999,9,E09000023,2,78.29,313.51,26.1,341.67 +7325,9,E09000023,3,84.82,399.29,26.1,435.45 +7651,9,E09000023,4,102.51,590.86,26.1,643.13 +7977,10,E09000023,0,69.7,649.79,18.44,707.26 +154,1,E07000194,1,53.13,99.69,26.1,125.4 +480,1,E07000194,2,58.72,117.9,26.1,138.27 +806,1,E07000194,3,69.9,133.98,26.1,161.86 +1132,1,E07000194,4,81.09,162.93,26.1,180.08 +1458,3,E07000194,1,46.6,88.96,26.1,98.62 +1784,3,E07000194,2,50.34,95.42,26.1,103.98 +2110,3,E07000194,3,60.59,105.05,26.1,121.11 +2436,3,E07000194,4,68.97,128.63,26.1,128.63 +2762,2,E07000194,0,38.95,242.82,18.44,378.37 +3088,4,E07000194,0,46.12,106.09,18.44,106.09 +3414,6,E07000194,0,38.95,299.41,18.44,326.52 +3740,8,E07000194,0,46.12,299.41,18.44,326.52 +4288,5,E07000194,1,53.13,114.68,26.1,124.33 +4509,7,E07000194,1,46.6,114.68,26.1,124.33 +4898,5,E07000194,2,58.72,136.13,26.1,148.99 +5194,7,E07000194,2,50.34,136.13,26.1,148.99 +5529,5,E07000194,3,69.9,172.58,26.1,187.58 +5785,7,E07000194,3,60.59,172.58,26.1,187.58 +6181,5,E07000194,4,81.09,272.26,26.1,296.91 +6446,7,E07000194,4,68.97,272.26,26.1,296.91 +6674,9,E07000194,1,53.13,143.37,26.1,155.41 +7000,9,E07000194,2,58.72,170.16,26.1,186.23 +7326,9,E07000194,3,69.9,215.73,26.1,234.49 +7652,9,E07000194,4,81.09,340.33,26.1,371.13 +7978,10,E07000194,0,38.95,374.27,18.44,408.14 +155,1,E07000138,1,52.2,100.76,26.1,123.26 +481,1,E07000138,2,62.45,115.76,26.1,130.77 +807,1,E07000138,3,68.97,127.56,26.1,139.34 +1133,1,E07000138,4,76.43,159.7,26.1,168.29 +1459,3,E07000138,1,46.6,91.12,26.1,108.27 +1785,3,E07000138,2,53.13,97.54,26.1,109.33 +2111,3,E07000138,3,58.72,105.05,26.1,120.05 +2437,3,E07000138,4,64.31,123.26,26.1,123.26 +2763,2,E07000138,0,51.26,238.1,18.44,357.17 +3089,4,E07000138,0,49.2,113.15,18.44,122.59 +3415,6,E07000138,0,51.26,194.49,18.44,210.99 +3741,8,E07000138,0,49.2,194.49,18.44,210.99 +4333,5,E07000138,1,52.2,103.98,26.1,113.61 +4433,7,E07000138,1,46.6,103.98,26.1,113.61 +5029,5,E07000138,2,62.45,118.97,26.1,129.7 +5169,7,E07000138,2,53.13,118.97,26.1,129.7 +5672,5,E07000138,3,68.97,136.13,26.1,148.99 +5830,7,E07000138,3,58.72,136.13,26.1,148.99 +6247,5,E07000138,4,76.43,176.86,26.1,191.86 +6491,7,E07000138,4,64.31,176.86,26.1,191.86 +6675,9,E07000138,1,52.2,129.97,26.1,142.02 +7001,9,E07000138,2,62.45,148.72,26.1,162.13 +7327,9,E07000138,3,68.97,170.16,26.1,186.23 +7653,9,E07000138,4,76.43,221.08,26.1,239.84 +7979,10,E07000138,0,51.26,243.12,18.44,263.73 +156,1,E08000012,1,52.2,94.33,26.1,117.9 +482,1,E08000012,2,59.66,108.27,26.1,136.13 +808,1,E08000012,3,66.17,121.11,26.1,146.84 +1134,1,E08000012,4,72.71,135.06,26.1,160.78 +1460,3,E08000012,1,43.8,86.81,26.1,101.83 +1786,3,E08000012,2,54.06,95.42,26.1,114.68 +2112,3,E08000012,3,58.72,106.12,26.1,125.4 +2438,3,E08000012,4,55.93,120.05,26.1,135.06 +2764,2,E08000012,0,55.36,236.93,18.44,338.29 +3090,4,E08000012,0,32.8,464.43,18.44,592.92 +3416,6,E08000012,0,55.36,252.25,18.44,273.47 +3742,8,E08000012,0,32.8,252.25,18.44,273.47 +4370,5,E08000012,1,52.2,114.68,26.1,124.33 +4482,7,E08000012,1,43.8,114.68,26.1,124.33 +4940,5,E08000012,2,59.66,148.99,26.1,161.86 +5078,7,E08000012,2,54.06,148.99,26.1,161.86 +5583,5,E08000012,3,66.17,143.62,26.1,156.49 +5758,7,E08000012,3,58.72,143.62,26.1,156.49 +6331,5,E08000012,4,72.71,229.37,26.1,248.67 +6382,7,E08000012,4,55.93,229.37,26.1,248.67 +6676,9,E08000012,1,52.2,143.37,26.1,155.41 +7002,9,E08000012,2,59.66,186.23,26.1,202.34 +7328,9,E08000012,3,66.17,179.53,26.1,195.6 +7654,9,E08000012,4,72.71,286.72,26.1,310.84 +7980,10,E08000012,0,55.36,315.32,18.44,341.84 +157,1,E06000032,1,54.99,120.05,26.1,150.06 +483,1,E06000032,2,65.24,143.62,26.1,169.36 +809,1,E06000032,3,71.78,157.56,26.1,182.22 +1135,1,E06000032,4,82.02,172.58,26.1,180.08 +1461,3,E06000032,1,50.34,100.76,26.1,132.91 +1787,3,E06000032,2,58.72,118.97,26.1,133.98 +2113,3,E06000032,3,64.31,131.84,26.1,144.7 +2439,3,E06000032,4,71.78,150.06,26.1,160.78 +2765,2,E06000032,0,35.87,223.96,18.44,418.45 +3091,4,E06000032,0,55.36,134.38,18.44,314.73 +3417,6,E06000032,0,35.87,275.83,18.44,300.58 +3743,8,E06000032,0,55.36,275.83,18.44,300.58 +4142,5,E06000032,1,54.99,121.11,26.1,131.84 +4259,7,E06000032,1,50.34,121.11,26.1,131.84 +4723,5,E06000032,2,65.24,148.99,26.1,161.86 +4985,7,E06000032,2,58.72,148.99,26.1,161.86 +5442,5,E06000032,3,71.78,182.22,26.1,199.38 +5628,7,E06000032,3,64.31,182.22,26.1,199.38 +6152,5,E06000032,4,82.02,250.82,26.1,273.34 +6290,7,E06000032,4,71.78,250.82,26.1,273.34 +6677,9,E06000032,1,54.99,151.41,26.1,164.8 +7003,9,E06000032,2,65.24,186.23,26.1,202.34 +7329,9,E06000032,3,71.78,227.8,26.1,249.22 +7655,9,E06000032,4,82.02,313.51,26.1,341.67 +7981,10,E06000032,0,35.87,344.81,18.44,375.73 +158,1,E07000110,1,57.79,124.33,26.1,177.93 +484,1,E07000110,2,71.78,147.91,26.1,188.66 +810,1,E07000110,3,82.02,162.93,26.1,205.81 +1136,1,E07000110,4,90.42,180.08,26.1,224.01 +1462,3,E07000110,1,52.2,116.83,26.1,160.78 +1788,3,E07000110,2,63.38,130.77,26.1,146.84 +2114,3,E07000110,3,68.97,151.13,26.1,187.58 +2440,3,E07000110,4,73.64,186.51,26.1,196.15 +2766,2,E07000110,0,61.49,265.21,18.44,340.65 +3092,4,E07000110,0,48.18,193.32,18.44,202.73 +3418,6,E07000110,0,61.49,312.38,18.44,340.65 +3744,8,E07000110,0,48.18,312.38,18.44,340.65 +4012,5,E07000110,1,57.79,136.13,26.1,148.99 +4079,7,E07000110,1,52.2,136.13,26.1,148.99 +4627,5,E07000110,2,71.78,166.14,26.1,181.15 +4774,7,E07000110,2,63.38,166.14,26.1,181.15 +5279,5,E07000110,3,82.02,194.01,26.1,212.24 +5379,7,E07000110,3,68.97,194.01,26.1,212.24 +5964,5,E07000110,4,90.42,284.04,26.1,309.78 +6068,7,E07000110,4,73.64,284.04,26.1,309.78 +6678,9,E07000110,1,57.79,170.16,26.1,186.23 +7004,9,E07000110,2,71.78,207.68,26.1,226.44 +7330,9,E07000110,3,82.02,242.51,26.1,265.29 +7656,9,E07000110,4,90.42,355.06,26.1,387.21 +7982,10,E07000110,0,61.49,390.47,18.44,425.82 +159,1,E07000074,1,54.99,120.05,26.1,150.06 +485,1,E07000074,2,65.24,143.62,26.1,169.36 +811,1,E07000074,3,71.78,157.56,26.1,182.22 +1137,1,E07000074,4,82.02,172.58,26.1,180.08 +1463,3,E07000074,1,50.34,100.76,26.1,132.91 +1789,3,E07000074,2,58.72,118.97,26.1,133.98 +2115,3,E07000074,3,64.31,131.84,26.1,144.7 +2441,3,E07000074,4,71.78,150.06,26.1,160.78 +2767,2,E07000074,0,35.87,223.96,18.44,418.45 +3093,4,E07000074,0,55.36,134.38,18.44,314.73 +3419,6,E07000074,0,35.87,325.34,18.44,354.8 +3745,8,E07000074,0,55.36,325.34,18.44,354.8 +4143,5,E07000074,1,54.99,126.48,26.1,138.27 +4260,7,E07000074,1,50.34,126.48,26.1,138.27 +4724,5,E07000074,2,65.24,166.14,26.1,181.15 +4986,7,E07000074,2,58.72,166.14,26.1,181.15 +5443,5,E07000074,3,71.78,194.01,26.1,212.24 +5629,7,E07000074,3,64.31,194.01,26.1,212.24 +6153,5,E07000074,4,82.02,295.83,26.1,322.64 +6291,7,E07000074,4,71.78,295.83,26.1,322.64 +6679,9,E07000074,1,54.99,158.09,26.1,172.84 +7005,9,E07000074,2,65.24,207.68,26.1,226.44 +7331,9,E07000074,3,71.78,242.51,26.1,265.29 +7657,9,E07000074,4,82.02,369.81,26.1,403.3 +7983,10,E07000074,0,35.87,406.66,18.44,443.51 +160,1,E07000235,1,53.13,99.69,26.1,125.4 +486,1,E07000235,2,58.72,117.9,26.1,138.27 +812,1,E07000235,3,69.9,133.98,26.1,161.86 +1138,1,E07000235,4,81.09,162.93,26.1,180.08 +1464,3,E07000235,1,46.6,88.96,26.1,98.62 +1790,3,E07000235,2,50.34,95.42,26.1,103.98 +2116,3,E07000235,3,60.59,105.05,26.1,121.11 +2442,3,E07000235,4,68.97,128.63,26.1,128.63 +2768,2,E07000235,0,38.95,242.82,18.44,378.37 +3094,4,E07000235,0,46.12,106.09,18.44,106.09 +3420,6,E07000235,0,38.95,300.58,18.44,327.69 +3746,8,E07000235,0,46.12,300.58,18.44,327.69 +4289,5,E07000235,1,53.13,114.68,26.1,124.33 +4510,7,E07000235,1,46.6,114.68,26.1,124.33 +4899,5,E07000235,2,58.72,136.13,26.1,148.99 +5195,7,E07000235,2,50.34,136.13,26.1,148.99 +5530,5,E07000235,3,69.9,166.14,26.1,181.15 +5786,7,E07000235,3,60.59,166.14,26.1,181.15 +6182,5,E07000235,4,81.09,273.34,26.1,297.99 +6447,7,E07000235,4,68.97,273.34,26.1,297.99 +6680,9,E07000235,1,53.13,143.37,26.1,155.41 +7006,9,E07000235,2,58.72,170.16,26.1,186.23 +7332,9,E07000235,3,69.9,207.68,26.1,226.44 +7658,9,E07000235,4,81.09,341.67,26.1,372.48 +7984,10,E07000235,0,38.95,375.73,18.44,409.61 +61,1,E08000003,1,52.2,94.33,26.1,117.9 +387,1,E08000003,2,59.66,108.27,26.1,136.13 +713,1,E08000003,3,66.17,121.11,26.1,146.84 +1039,1,E08000003,4,72.71,135.06,26.1,160.78 +1365,3,E08000003,1,43.8,86.81,26.1,101.83 +1691,3,E08000003,2,54.06,95.42,26.1,114.68 +2017,3,E08000003,3,58.72,106.12,26.1,125.4 +2343,3,E08000003,4,55.93,120.05,26.1,135.06 +2669,2,E08000003,0,55.36,236.93,18.44,338.29 +2995,4,E08000003,0,32.8,464.43,18.44,592.92 +3321,6,E08000003,0,55.36,300.58,18.44,327.69 +3647,8,E08000003,0,32.8,300.58,18.44,327.69 +4361,5,E08000003,1,52.2,131.84,26.1,144.7 +4473,7,E08000003,1,43.8,131.84,26.1,144.7 +4931,5,E08000003,2,59.66,155.41,26.1,169.36 +5069,7,E08000003,2,54.06,155.41,26.1,169.36 +5574,5,E08000003,3,66.17,175.78,26.1,191.86 +5749,7,E08000003,3,58.72,175.78,26.1,191.86 +6322,5,E08000003,4,72.71,273.34,26.1,297.99 +6373,7,E08000003,4,55.93,273.34,26.1,297.99 +6581,9,E08000003,1,52.2,164.8,26.1,180.87 +6907,9,E08000003,2,59.66,194.27,26.1,211.69 +7233,9,E08000003,3,66.17,219.74,26.1,239.84 +7559,9,E08000003,4,72.71,341.67,26.1,372.48 +7885,10,E08000003,0,55.36,375.73,18.44,409.61 +161,1,E07000174,1,52.2,100.76,26.1,123.26 +487,1,E07000174,2,62.45,115.76,26.1,130.77 +813,1,E07000174,3,68.97,127.56,26.1,139.34 +1139,1,E07000174,4,76.43,159.7,26.1,168.29 +1465,3,E07000174,1,46.6,91.12,26.1,108.27 +1791,3,E07000174,2,53.13,97.54,26.1,109.33 +2117,3,E07000174,3,58.72,105.05,26.1,120.05 +2443,3,E07000174,4,64.31,123.26,26.1,123.26 +2769,2,E07000174,0,51.26,238.1,18.44,357.17 +3095,4,E07000174,0,49.2,113.15,18.44,122.59 +3421,6,E07000174,0,51.26,200.38,18.44,219.25 +3747,8,E07000174,0,49.2,200.38,18.44,219.25 +4334,5,E07000174,1,52.2,88.96,26.1,97.54 +4434,7,E07000174,1,46.6,88.96,26.1,97.54 +5030,5,E07000174,2,62.45,110.39,26.1,120.05 +5170,7,E07000174,2,53.13,110.39,26.1,120.05 +5673,5,E07000174,3,68.97,126.48,26.1,138.27 +5831,7,E07000174,3,58.72,126.48,26.1,138.27 +6248,5,E07000174,4,76.43,182.22,26.1,199.38 +6492,7,E07000174,4,64.31,182.22,26.1,199.38 +6681,9,E07000174,1,52.2,111.21,26.1,121.95 +7007,9,E07000174,2,62.45,138.01,26.1,150.06 +7333,9,E07000174,3,68.97,158.09,26.1,172.84 +7659,9,E07000174,4,76.43,227.8,26.1,249.22 +7985,10,E07000174,0,51.26,250.47,18.44,274.05 +280,1,E06000035,1,57.79,124.33,26.1,177.93 +606,1,E06000035,2,71.78,147.91,26.1,188.66 +932,1,E06000035,3,82.02,162.93,26.1,205.81 +1258,1,E06000035,4,90.42,180.08,26.1,224.01 +1584,3,E06000035,1,52.2,116.83,26.1,160.78 +1910,3,E06000035,2,63.38,130.77,26.1,146.84 +2236,3,E06000035,3,68.97,151.13,26.1,187.58 +2562,3,E06000035,4,73.64,186.51,26.1,196.15 +2888,2,E06000035,0,61.49,265.21,18.44,340.65 +3214,4,E06000035,0,48.18,193.32,18.44,202.73 +3540,6,E06000035,0,61.49,300.58,18.44,327.69 +3866,8,E06000035,0,48.18,300.58,18.44,327.69 +4036,5,E06000035,1,57.79,126.48,26.1,138.27 +4103,7,E06000035,1,52.2,126.48,26.1,138.27 +4651,5,E06000035,2,71.78,148.99,26.1,161.86 +4798,7,E06000035,2,63.38,148.99,26.1,161.86 +5303,5,E06000035,3,82.02,172.58,26.1,187.58 +5403,7,E06000035,3,68.97,172.58,26.1,187.58 +5988,5,E06000035,4,90.42,273.34,26.1,297.99 +6092,7,E06000035,4,73.64,273.34,26.1,297.99 +6800,9,E06000035,1,57.79,158.09,26.1,172.84 +7126,9,E06000035,2,71.78,186.23,26.1,202.34 +7452,9,E06000035,3,82.02,215.73,26.1,234.49 +7778,9,E06000035,4,90.42,341.67,26.1,372.48 +8104,10,E06000035,0,61.49,375.73,18.44,409.61 +162,1,E07000133,1,52.2,100.76,26.1,123.26 +488,1,E07000133,2,62.45,115.76,26.1,130.77 +814,1,E07000133,3,68.97,127.56,26.1,139.34 +1140,1,E07000133,4,76.43,159.7,26.1,168.29 +1466,3,E07000133,1,46.6,91.12,26.1,108.27 +1792,3,E07000133,2,53.13,97.54,26.1,109.33 +2118,3,E07000133,3,58.72,105.05,26.1,120.05 +2444,3,E07000133,4,64.31,123.26,26.1,123.26 +2770,2,E07000133,0,51.26,238.1,18.44,357.17 +3096,4,E07000133,0,49.2,113.15,18.44,122.59 +3422,6,E07000133,0,51.26,312.38,18.44,340.65 +3748,8,E07000133,0,49.2,312.38,18.44,340.65 +4335,5,E07000133,1,52.2,98.62,26.1,108.27 +4435,7,E07000133,1,46.6,98.62,26.1,108.27 +5031,5,E07000133,2,62.45,121.11,26.1,131.84 +5171,7,E07000133,2,53.13,121.11,26.1,131.84 +5674,5,E07000133,3,68.97,138.27,26.1,150.06 +5832,7,E07000133,3,58.72,138.27,26.1,150.06 +6249,5,E07000133,4,76.43,284.04,26.1,309.78 +6493,7,E07000133,4,64.31,284.04,26.1,309.78 +6682,9,E07000133,1,52.2,123.26,26.1,135.33 +7008,9,E07000133,2,62.45,151.41,26.1,164.8 +7334,9,E07000133,3,68.97,172.84,26.1,187.57 +7660,9,E07000133,4,76.43,355.06,26.1,387.21 +7986,10,E07000133,0,51.26,390.47,18.44,425.82 +163,1,E07000187,1,49.41,108.27,26.1,141.49 +489,1,E07000187,2,55.93,122.19,26.1,145.77 +815,1,E07000187,3,62.45,142.56,26.1,162.93 +1141,1,E07000187,4,71.78,159.7,26.1,196.15 +1467,3,E07000187,1,47.54,90.03,26.1,212.24 +1793,3,E07000187,2,54.99,101.83,26.1,112.54 +2119,3,E07000187,3,62.45,110.39,26.1,127.56 +2445,3,E07000187,4,74.57,131.84,26.1,131.84 +2771,2,E07000187,0,54.33,228.68,18.44,354.8 +3097,4,E07000187,0,54.33,114.33,18.44,140.27 +3423,6,E07000187,0,54.33,300.58,18.44,327.69 +3749,8,E07000187,0,54.33,300.58,18.44,327.69 +3926,7,E07000187,1,47.54,108.27,26.1,117.9 +4210,5,E07000187,1,49.41,108.27,26.1,117.9 +4846,5,E07000187,2,55.93,136.13,26.1,148.99 +5123,7,E07000187,2,54.99,136.13,26.1,148.99 +5477,5,E07000187,3,62.45,172.58,26.1,187.58 +5703,7,E07000187,3,62.45,172.58,26.1,187.58 +6015,5,E07000187,4,71.78,273.34,26.1,297.99 +6415,7,E07000187,4,74.57,273.34,26.1,297.99 +6683,9,E07000187,1,49.41,135.33,26.1,147.38 +7009,9,E07000187,2,55.93,170.16,26.1,186.23 +7335,9,E07000187,3,62.45,215.73,26.1,234.49 +7661,9,E07000187,4,71.78,341.67,26.1,372.48 +7987,10,E07000187,0,54.33,375.73,18.44,409.61 +164,1,E09000024,1,66.17,146.84,26.1,199.38 +490,1,E09000024,2,78.29,158.63,26.1,194.01 +816,1,E09000024,3,84.82,168.29,26.1,228.29 +1142,1,E09000024,4,102.51,188.66,26.1,254.03 +1468,3,E09000024,1,58.72,120.05,26.1,147.91 +1794,3,E09000024,2,64.31,140.42,26.1,176.86 +2120,3,E09000024,3,71.78,160.78,26.1,202.58 +2446,3,E09000024,4,83.89,262.61,26.1,263.68 +2772,2,E09000024,0,69.7,313.55,18.44,497.44 +3098,4,E09000024,0,59.45,367.77,18.44,398.42 +3424,6,E09000024,0,69.7,648.32,18.44,706.08 +3750,8,E09000024,0,59.45,648.32,18.44,706.08 +3973,5,E09000024,1,66.17,240.09,26.1,261.54 +4187,7,E09000024,1,58.72,240.09,26.1,261.54 +4588,5,E09000024,2,78.29,307.63,26.1,335.49 +4688,7,E09000024,2,64.31,307.63,26.1,335.49 +5240,5,E09000024,3,84.82,375.16,26.1,409.45 +5340,7,E09000024,3,71.78,375.16,26.1,409.45 +5892,7,E09000024,4,83.89,589.54,26.1,642.06 +5925,5,E09000024,4,102.51,589.54,26.1,642.06 +6684,9,E09000024,1,66.17,300.12,26.1,326.92 +7010,9,E09000024,2,78.29,384.53,26.1,419.36 +7336,9,E09000024,3,84.82,468.95,26.1,511.83 +7662,9,E09000024,4,102.51,736.91,26.1,802.56 +7988,10,E09000024,0,69.7,810.39,18.44,882.59 +165,1,E07000042,1,49.41,108.27,26.1,141.49 +491,1,E07000042,2,55.93,122.19,26.1,145.77 +817,1,E07000042,3,62.45,142.56,26.1,162.93 +1143,1,E07000042,4,71.78,159.7,26.1,196.15 +1469,3,E07000042,1,47.54,90.03,26.1,212.24 +1795,3,E07000042,2,54.99,101.83,26.1,112.54 +2121,3,E07000042,3,62.45,110.39,26.1,127.56 +2447,3,E07000042,4,74.57,131.84,26.1,131.84 +2773,2,E07000042,0,54.33,228.68,18.44,354.8 +3099,4,E07000042,0,54.33,114.33,18.44,140.27 +3425,6,E07000042,0,54.33,275.83,18.44,300.58 +3751,8,E07000042,0,54.33,275.83,18.44,300.58 +3927,7,E07000042,1,47.54,103.98,26.1,113.61 +4211,5,E07000042,1,49.41,103.98,26.1,113.61 +4847,5,E07000042,2,55.93,131.84,26.1,144.7 +5124,7,E07000042,2,54.99,131.84,26.1,144.7 +5478,5,E07000042,3,62.45,166.14,26.1,182.22 +5704,7,E07000042,3,62.45,166.14,26.1,182.22 +6016,5,E07000042,4,71.78,250.82,26.1,273.34 +6416,7,E07000042,4,74.57,250.82,26.1,273.34 +6685,9,E07000042,1,49.41,129.97,26.1,142.02 +7011,9,E07000042,2,55.93,164.8,26.1,180.87 +7337,9,E07000042,3,62.45,207.68,26.1,227.8 +7663,9,E07000042,4,71.78,313.51,26.1,341.67 +7989,10,E07000042,0,54.33,344.81,18.44,375.73 +166,1,E07000203,1,54.99,120.05,26.1,150.06 +492,1,E07000203,2,65.24,143.62,26.1,169.36 +818,1,E07000203,3,71.78,157.56,26.1,182.22 +1144,1,E07000203,4,82.02,172.58,26.1,180.08 +1470,3,E07000203,1,50.34,100.76,26.1,132.91 +1796,3,E07000203,2,58.72,118.97,26.1,133.98 +2122,3,E07000203,3,64.31,131.84,26.1,144.7 +2448,3,E07000203,4,71.78,150.06,26.1,160.78 +2774,2,E07000203,0,35.87,223.96,18.44,418.45 +3100,4,E07000203,0,55.36,134.38,18.44,314.73 +3426,6,E07000203,0,35.87,319.44,18.44,347.72 +3752,8,E07000203,0,55.36,319.44,18.44,347.72 +4144,5,E07000203,1,54.99,101.83,26.1,111.47 +4261,7,E07000203,1,50.34,101.83,26.1,111.47 +4725,5,E07000203,2,65.24,126.48,26.1,138.27 +4987,7,E07000203,2,58.72,126.48,26.1,138.27 +5444,5,E07000203,3,71.78,160.78,26.1,175.78 +5630,7,E07000203,3,64.31,160.78,26.1,175.78 +6154,5,E07000203,4,82.02,290.49,26.1,316.21 +6292,7,E07000203,4,71.78,290.49,26.1,316.21 +6686,9,E07000203,1,54.99,127.29,26.1,139.34 +7012,9,E07000203,2,65.24,158.09,26.1,172.84 +7338,9,E07000203,3,71.78,200.97,26.1,219.74 +7664,9,E07000203,4,82.02,363.1,26.1,395.26 +7990,10,E07000203,0,35.87,399.32,18.44,434.66 +167,1,E07000228,1,57.79,124.33,26.1,177.93 +493,1,E07000228,2,71.78,147.91,26.1,188.66 +819,1,E07000228,3,82.02,162.93,26.1,205.81 +1145,1,E07000228,4,90.42,180.08,26.1,224.01 +1471,3,E07000228,1,52.2,116.83,26.1,160.78 +1797,3,E07000228,2,63.38,130.77,26.1,146.84 +2123,3,E07000228,3,68.97,151.13,26.1,187.58 +2449,3,E07000228,4,73.64,186.51,26.1,196.15 +2775,2,E07000228,0,61.49,265.21,18.44,340.65 +3101,4,E07000228,0,48.18,193.32,18.44,202.73 +3427,6,E07000228,0,61.49,497.44,18.44,543.41 +3753,8,E07000228,0,48.18,497.44,18.44,543.41 +4013,5,E07000228,1,57.79,155.41,26.1,169.36 +4080,7,E07000228,1,52.2,155.41,26.1,169.36 +4628,5,E07000228,2,71.78,194.01,26.1,212.24 +4775,7,E07000228,2,63.38,194.01,26.1,212.24 +5280,5,E07000228,3,82.02,271.19,26.1,295.83 +5380,7,E07000228,3,68.97,271.19,26.1,295.83 +5965,5,E07000228,4,90.42,453.4,26.1,494.14 +6069,7,E07000228,4,73.64,453.4,26.1,494.14 +6687,9,E07000228,1,57.79,194.27,26.1,211.69 +7013,9,E07000228,2,71.78,242.51,26.1,265.29 +7339,9,E07000228,3,82.02,338.98,26.1,369.81 +7665,9,E07000228,4,90.42,566.75,26.1,617.67 +7991,10,E07000228,0,61.49,621.79,18.44,679.26 +168,1,E06000002,1,51.27,88.96,26.1,98.62 +494,1,E06000002,2,57.79,102.91,26.1,121.11 +820,1,E06000002,3,61.52,114.68,26.1,160.78 +1146,1,E06000002,4,70.84,128.63,26.1,140.42 +1472,3,E06000002,1,42.87,100.76,26.1,106.12 +1798,3,E06000002,2,50.34,91.12,26.1,112.54 +2124,3,E06000002,3,54.06,106.12,26.1,125.4 +2450,3,E06000002,4,56.86,116.83,26.1,121.11 +2776,2,E06000002,0,55.36,234.56,18.44,337.12 +3102,4,E06000002,0,47.15,251.08,18.44,285.25 +3428,6,E06000002,0,55.36,213.35,18.44,233.38 +3754,8,E06000002,0,47.15,213.35,18.44,233.38 +4455,7,E06000002,1,42.87,98.62,26.1,108.27 +4536,5,E06000002,1,51.27,98.62,26.1,108.27 +5051,5,E06000002,2,57.79,115.76,26.1,125.4 +5102,7,E06000002,2,50.34,115.76,26.1,125.4 +5556,5,E06000002,3,61.52,133.98,26.1,146.84 +5731,7,E06000002,3,54.06,133.98,26.1,146.84 +6355,5,E06000002,4,70.84,194.01,26.1,212.24 +6513,7,E06000002,4,56.86,194.01,26.1,212.24 +6688,9,E06000002,1,42.87,123.26,26.1,135.33 +7014,9,E06000002,2,57.79,144.7,26.1,156.77 +7340,9,E06000002,3,61.52,167.48,26.1,183.56 +7666,9,E06000002,4,70.84,242.51,26.1,265.29 +7992,10,E06000002,0,55.36,266.69,18.44,291.74 +169,1,E06000042,1,57.79,124.33,26.1,177.93 +495,1,E06000042,2,71.78,147.91,26.1,188.66 +821,1,E06000042,3,82.02,162.93,26.1,205.81 +1147,1,E06000042,4,90.42,180.08,26.1,224.01 +1473,3,E06000042,1,52.2,116.83,26.1,160.78 +1799,3,E06000042,2,63.38,130.77,26.1,146.84 +2125,3,E06000042,3,68.97,151.13,26.1,187.58 +2451,3,E06000042,4,73.64,186.51,26.1,196.15 +2777,2,E06000042,0,61.49,265.21,18.44,340.65 +3103,4,E06000042,0,48.18,193.32,18.44,202.73 +3429,6,E06000042,0,61.49,363.05,18.44,396.05 +3755,8,E06000042,0,48.18,363.05,18.44,396.05 +4014,5,E06000042,1,57.79,136.13,26.1,148.99 +4081,7,E06000042,1,52.2,136.13,26.1,148.99 +4629,5,E06000042,2,71.78,166.14,26.1,181.15 +4776,7,E06000042,2,63.38,166.14,26.1,181.15 +5281,5,E06000042,3,82.02,188.66,26.1,205.81 +5381,7,E06000042,3,68.97,188.66,26.1,205.81 +5966,5,E06000042,4,90.42,330.14,26.1,360.15 +6070,7,E06000042,4,73.64,330.14,26.1,360.15 +6689,9,E06000042,1,57.79,170.16,26.1,186.23 +7015,9,E06000042,2,71.78,207.68,26.1,226.44 +7341,9,E06000042,3,82.02,235.82,26.1,257.26 +7667,9,E06000042,4,90.42,412.67,26.1,450.18 +7993,10,E06000042,0,61.49,453.82,18.44,495.08 +170,1,E07000210,1,57.79,124.33,26.1,177.93 +496,1,E07000210,2,71.78,147.91,26.1,188.66 +822,1,E07000210,3,82.02,162.93,26.1,205.81 +1148,1,E07000210,4,90.42,180.08,26.1,224.01 +1474,3,E07000210,1,52.2,116.83,26.1,160.78 +1800,3,E07000210,2,63.38,130.77,26.1,146.84 +2126,3,E07000210,3,68.97,151.13,26.1,187.58 +2452,3,E07000210,4,73.64,186.51,26.1,196.15 +2778,2,E07000210,0,61.49,265.21,18.44,340.65 +3104,4,E07000210,0,48.18,193.32,18.44,202.73 +3430,6,E07000210,0,61.49,623.56,18.44,678.97 +3756,8,E07000210,0,48.18,623.56,18.44,678.97 +4015,5,E07000210,1,57.79,166.14,26.1,181.15 +4082,7,E07000210,1,52.2,166.14,26.1,181.15 +4630,5,E07000210,2,71.78,240.09,26.1,261.54 +4777,7,E07000210,2,63.38,240.09,26.1,261.54 +5282,5,E07000210,3,82.02,330.14,26.1,360.15 +5382,7,E07000210,3,68.97,330.14,26.1,360.15 +5967,5,E07000210,4,90.42,567.02,26.1,617.4 +6071,7,E07000210,4,73.64,567.02,26.1,617.4 +6690,9,E07000210,1,57.79,207.68,26.1,226.44 +7016,9,E07000210,2,71.78,300.12,26.1,326.92 +7342,9,E07000210,3,82.02,412.67,26.1,450.18 +7668,9,E07000210,4,90.42,708.78,26.1,771.75 +7994,10,E07000210,0,61.49,779.44,18.44,848.71 +171,1,E07000091,1,57.79,124.33,26.1,177.93 +497,1,E07000091,2,71.78,147.91,26.1,188.66 +823,1,E07000091,3,82.02,162.93,26.1,205.81 +1149,1,E07000091,4,90.42,180.08,26.1,224.01 +1475,3,E07000091,1,52.2,116.83,26.1,160.78 +1801,3,E07000091,2,63.38,130.77,26.1,146.84 +2127,3,E07000091,3,68.97,151.13,26.1,187.58 +2453,3,E07000091,4,73.64,186.51,26.1,196.15 +2779,2,E07000091,0,61.49,265.21,18.44,340.65 +3105,4,E07000091,0,48.18,193.32,18.44,202.73 +3431,6,E07000091,0,61.49,374.83,18.44,409.03 +3757,8,E07000091,0,48.18,374.83,18.44,409.03 +4016,5,E07000091,1,57.79,136.13,26.1,148.99 +4083,7,E07000091,1,52.2,136.13,26.1,148.99 +4631,5,E07000091,2,71.78,175.78,26.1,190.79 +4778,7,E07000091,2,63.38,175.78,26.1,190.79 +5283,5,E07000091,3,82.02,216.52,26.1,236.89 +5383,7,E07000091,3,68.97,216.52,26.1,236.89 +5968,5,E07000091,4,90.42,340.85,26.1,371.94 +6072,7,E07000091,4,73.64,340.85,26.1,371.94 +6691,9,E07000091,1,57.79,170.16,26.1,186.23 +7017,9,E07000091,2,71.78,219.74,26.1,238.5 +7343,9,E07000091,3,82.02,270.66,26.1,296.11 +7669,9,E07000091,4,90.42,426.06,26.1,464.91 +7995,10,E07000091,0,61.49,468.55,18.44,511.3 +172,1,E07000175,1,52.2,100.76,26.1,123.26 +498,1,E07000175,2,62.45,115.76,26.1,130.77 +824,1,E07000175,3,68.97,127.56,26.1,139.34 +1150,1,E07000175,4,76.43,159.7,26.1,168.29 +1476,3,E07000175,1,46.6,91.12,26.1,108.27 +1802,3,E07000175,2,53.13,97.54,26.1,109.33 +2128,3,E07000175,3,58.72,105.05,26.1,120.05 +2454,3,E07000175,4,64.31,123.26,26.1,123.26 +2780,2,E07000175,0,51.26,238.1,18.44,357.17 +3106,4,E07000175,0,49.2,113.15,18.44,122.59 +3432,6,E07000175,0,51.26,225.15,18.44,245.18 +3758,8,E07000175,0,49.2,225.15,18.44,245.18 +4336,5,E07000175,1,52.2,93.26,26.1,100.76 +4436,7,E07000175,1,46.6,93.26,26.1,100.76 +5032,5,E07000175,2,62.45,114.68,26.1,124.33 +5172,7,E07000175,2,53.13,114.68,26.1,124.33 +5675,5,E07000175,3,68.97,133.98,26.1,146.84 +5833,7,E07000175,3,58.72,133.98,26.1,146.84 +6250,5,E07000175,4,76.43,204.74,26.1,222.95 +6494,7,E07000175,4,64.31,204.74,26.1,222.95 +6692,9,E07000175,1,52.2,116.56,26.1,125.95 +7018,9,E07000175,2,62.45,143.37,26.1,155.41 +7344,9,E07000175,3,68.97,167.48,26.1,183.56 +7670,9,E07000175,4,76.43,255.92,26.1,278.69 +7996,10,E07000175,0,51.26,281.43,18.44,306.45 +174,1,E08000021,1,51.27,88.96,26.1,98.62 +500,1,E08000021,2,57.79,102.91,26.1,121.11 +826,1,E08000021,3,61.52,114.68,26.1,160.78 +1152,1,E08000021,4,70.84,128.63,26.1,140.42 +1478,3,E08000021,1,42.87,100.76,26.1,106.12 +1804,3,E08000021,2,50.34,91.12,26.1,112.54 +2130,3,E08000021,3,54.06,106.12,26.1,125.4 +2456,3,E08000021,4,56.86,116.83,26.1,121.11 +2782,2,E08000021,0,55.36,234.56,18.44,337.12 +3108,4,E08000021,0,47.15,251.08,18.44,285.25 +3434,6,E08000021,0,55.36,239.29,18.44,261.68 +3760,8,E08000021,0,47.15,239.29,18.44,261.68 +4456,7,E08000021,1,42.87,114.68,26.1,124.33 +4537,5,E08000021,1,51.27,114.68,26.1,124.33 +5052,5,E08000021,2,57.79,136.13,26.1,148.99 +5103,7,E08000021,2,50.34,136.13,26.1,148.99 +5557,5,E08000021,3,61.52,143.62,26.1,156.49 +5732,7,E08000021,3,54.06,143.62,26.1,156.49 +6356,5,E08000021,4,70.84,217.59,26.1,237.96 +6514,7,E08000021,4,56.86,217.59,26.1,237.96 +6694,9,E08000021,1,42.87,143.37,26.1,155.41 +7020,9,E08000021,2,57.79,170.16,26.1,186.23 +7346,9,E08000021,3,61.52,179.53,26.1,195.6 +7672,9,E08000021,4,70.84,271.98,26.1,297.46 +7998,10,E08000021,0,55.36,299.12,18.44,327.11 +173,1,E07000195,1,53.13,99.69,26.1,125.4 +499,1,E07000195,2,58.72,117.9,26.1,138.27 +825,1,E07000195,3,69.9,133.98,26.1,161.86 +1151,1,E07000195,4,81.09,162.93,26.1,180.08 +1477,3,E07000195,1,46.6,88.96,26.1,98.62 +1803,3,E07000195,2,50.34,95.42,26.1,103.98 +2129,3,E07000195,3,60.59,105.05,26.1,121.11 +2455,3,E07000195,4,68.97,128.63,26.1,128.63 +2781,2,E07000195,0,38.95,242.82,18.44,378.37 +3107,4,E07000195,0,46.12,106.09,18.44,106.09 +3433,6,E07000195,0,38.95,220.42,18.44,239.29 +3759,8,E07000195,0,46.12,220.42,18.44,239.29 +4290,5,E07000195,1,53.13,98.62,26.1,108.27 +4511,7,E07000195,1,46.6,98.62,26.1,108.27 +4900,5,E07000195,2,58.72,114.68,26.1,124.33 +5196,7,E07000195,2,50.34,114.68,26.1,124.33 +5531,5,E07000195,3,69.9,136.13,26.1,148.99 +5787,7,E07000195,3,60.59,136.13,26.1,148.99 +6183,5,E07000195,4,81.09,200.45,26.1,217.59 +6448,7,E07000195,4,68.97,200.45,26.1,217.59 +6693,9,E07000195,1,53.13,123.26,26.1,135.33 +7019,9,E07000195,2,58.72,143.37,26.1,155.41 +7345,9,E07000195,3,69.9,170.16,26.1,186.23 +7671,9,E07000195,4,81.09,250.54,26.1,271.98 +7997,10,E07000195,0,38.95,275.54,18.44,299.12 +175,1,E09000025,1,66.17,146.84,26.1,199.38 +501,1,E09000025,2,78.29,158.63,26.1,194.01 +827,1,E09000025,3,84.82,168.29,26.1,228.29 +1153,1,E09000025,4,102.51,188.66,26.1,254.03 +1479,3,E09000025,1,58.72,120.05,26.1,147.91 +1805,3,E09000025,2,64.31,140.42,26.1,176.86 +2131,3,E09000025,3,71.78,160.78,26.1,202.58 +2457,3,E09000025,4,83.89,262.61,26.1,263.68 +2783,2,E09000025,0,69.7,313.55,18.44,497.44 +3109,4,E09000025,0,59.45,367.77,18.44,398.42 +3435,6,E09000025,0,69.7,409.03,18.44,445.55 +3761,8,E09000025,0,59.45,409.03,18.44,445.55 +3974,5,E09000025,1,66.17,210.1,26.1,229.37 +4188,7,E09000025,1,58.72,210.1,26.1,229.37 +4589,5,E09000025,2,78.29,256.17,26.1,279.76 +4689,7,E09000025,2,64.31,256.17,26.1,279.76 +5241,5,E09000025,3,84.82,295.83,26.1,322.64 +5341,7,E09000025,3,71.78,295.83,26.1,322.64 +5893,7,E09000025,4,83.89,371.94,26.1,405.18 +5926,5,E09000025,4,102.51,371.94,26.1,405.18 +6695,9,E09000025,1,66.17,262.61,26.1,286.72 +7021,9,E09000025,2,78.29,320.22,26.1,349.7 +7347,9,E09000025,3,84.82,369.81,26.1,403.3 +7673,9,E09000025,4,102.51,464.91,26.1,506.46 +7999,10,E09000025,0,69.7,511.3,18.44,556.97 +176,1,E07000043,1,49.41,108.27,26.1,141.49 +502,1,E07000043,2,55.93,122.19,26.1,145.77 +828,1,E07000043,3,62.45,142.56,26.1,162.93 +1154,1,E07000043,4,71.78,159.7,26.1,196.15 +1480,3,E07000043,1,47.54,90.03,26.1,212.24 +1806,3,E07000043,2,54.99,101.83,26.1,112.54 +2132,3,E07000043,3,62.45,110.39,26.1,127.56 +2458,3,E07000043,4,74.57,131.84,26.1,131.84 +2784,2,E07000043,0,54.33,228.68,18.44,354.8 +3110,4,E07000043,0,54.33,114.33,18.44,140.27 +3436,6,E07000043,0,54.33,244,18.44,266.39 +3762,8,E07000043,0,54.33,244,18.44,266.39 +3928,7,E07000043,1,47.54,103.98,26.1,113.61 +4212,5,E07000043,1,49.41,103.98,26.1,113.61 +4848,5,E07000043,2,55.93,136.13,26.1,148.99 +5125,7,E07000043,2,54.99,136.13,26.1,148.99 +5479,5,E07000043,3,62.45,160.78,26.1,175.78 +5705,7,E07000043,3,62.45,160.78,26.1,175.78 +6017,5,E07000043,4,71.78,221.88,26.1,242.25 +6417,7,E07000043,4,74.57,221.88,26.1,242.25 +6696,9,E07000043,1,49.41,129.97,26.1,142.02 +7022,9,E07000043,2,55.93,170.16,26.1,186.23 +7348,9,E07000043,3,62.45,200.97,26.1,219.74 +7674,9,E07000043,4,71.78,277.34,26.1,302.81 +8000,10,E07000043,0,54.33,305,18.44,332.99 +178,1,E07000038,1,52.2,100.76,26.1,123.26 +504,1,E07000038,2,62.45,115.76,26.1,130.77 +830,1,E07000038,3,68.97,127.56,26.1,139.34 +1156,1,E07000038,4,76.43,159.7,26.1,168.29 +1482,3,E07000038,1,46.6,91.12,26.1,108.27 +1808,3,E07000038,2,53.13,97.54,26.1,109.33 +2134,3,E07000038,3,58.72,105.05,26.1,120.05 +2460,3,E07000038,4,64.31,123.26,26.1,123.26 +2786,2,E07000038,0,51.26,238.1,18.44,357.17 +3112,4,E07000038,0,49.2,113.15,18.44,122.59 +3438,6,E07000038,0,51.26,225.15,18.44,245.18 +3764,8,E07000038,0,49.2,225.15,18.44,245.18 +4337,5,E07000038,1,52.2,92.19,26.1,99.69 +4437,7,E07000038,1,46.6,92.19,26.1,99.69 +5033,5,E07000038,2,62.45,115.76,26.1,125.4 +5173,7,E07000038,2,53.13,115.76,26.1,125.4 +5676,5,E07000038,3,68.97,148.99,26.1,161.86 +5834,7,E07000038,3,58.72,148.99,26.1,161.86 +6251,5,E07000038,4,76.43,204.74,26.1,222.95 +6495,7,E07000038,4,64.31,204.74,26.1,222.95 +6698,9,E07000038,1,52.2,115.24,26.1,124.6 +7024,9,E07000038,2,62.45,144.7,26.1,156.77 +7350,9,E07000038,3,68.97,186.23,26.1,202.34 +7676,9,E07000038,4,76.43,255.92,26.1,278.69 +8002,10,E07000038,0,51.26,281.43,18.44,306.45 +179,1,E06000012,1,51.27,92.19,26.1,114.68 +505,1,E06000012,2,58.72,109.33,26.1,141.49 +831,1,E06000012,3,63.38,121.11,26.1,162.93 +1157,1,E06000012,4,73.64,145.77,26.1,180.08 +1483,3,E06000012,1,46.6,82.54,26.1,93.26 +1809,3,E06000012,2,53.13,113.61,26.1,145.77 +2135,3,E06000012,3,56.86,105.05,26.1,114.68 +2461,3,E06000012,4,64.31,122.19,26.1,176.86 +2787,2,E06000012,0,52.28,232.2,18.44,319.44 +3113,4,E06000012,0,51.26,159.13,18.44,188.6 +3439,6,E06000012,0,52.28,176.82,18.44,193.32 +3765,8,E06000012,0,51.26,176.82,18.44,193.32 +4401,5,E06000012,1,51.27,85.75,26.1,93.26 +4555,7,E06000012,1,46.6,85.75,26.1,93.26 +4823,7,E06000012,2,53.13,108.27,26.1,117.9 +4881,5,E06000012,2,58.72,108.27,26.1,117.9 +5512,5,E06000012,3,63.38,114.68,26.1,124.33 +5859,7,E06000012,3,56.86,114.68,26.1,124.33 +6117,5,E06000012,4,73.64,160.78,26.1,175.78 +6215,7,E06000012,4,64.31,160.78,26.1,175.78 +6699,9,E06000012,1,51.27,107.2,26.1,116.56 +7025,9,E06000012,2,53.13,135.33,26.1,147.38 +7351,9,E06000012,3,63.38,143.37,26.1,155.41 +7677,9,E06000012,4,73.64,200.97,26.1,219.74 +8003,10,E06000012,0,52.28,221.02,18.44,241.66 +180,1,E07000099,1,54.99,120.05,26.1,150.06 +506,1,E07000099,2,65.24,143.62,26.1,169.36 +832,1,E07000099,3,71.78,157.56,26.1,182.22 +1158,1,E07000099,4,82.02,172.58,26.1,180.08 +1484,3,E07000099,1,50.34,100.76,26.1,132.91 +1810,3,E07000099,2,58.72,118.97,26.1,133.98 +2136,3,E07000099,3,64.31,131.84,26.1,144.7 +2462,3,E07000099,4,71.78,150.06,26.1,160.78 +2788,2,E07000099,0,35.87,223.96,18.44,418.45 +3114,4,E07000099,0,55.36,134.38,18.44,314.73 +3440,6,E07000099,0,35.87,467.95,18.44,510.39 +3766,8,E07000099,0,55.36,467.95,18.44,510.39 +4145,5,E07000099,1,54.99,131.84,26.1,144.7 +4262,7,E07000099,1,50.34,131.84,26.1,144.7 +4726,5,E07000099,2,65.24,171.5,26.1,186.51 +4988,7,E07000099,2,58.72,171.5,26.1,186.51 +5445,5,E07000099,3,71.78,219.73,26.1,240.09 +5631,7,E07000099,3,64.31,219.73,26.1,240.09 +6155,5,E07000099,4,82.02,425.54,26.1,464.12 +6293,7,E07000099,4,71.78,425.54,26.1,464.12 +6700,9,E07000099,1,54.99,164.8,26.1,180.87 +7026,9,E07000099,2,65.24,214.37,26.1,233.14 +7352,9,E07000099,3,71.78,274.67,26.1,300.12 +7678,9,E07000099,4,82.02,531.92,26.1,580.15 +8004,10,E07000099,0,35.87,584.95,18.44,638 +181,1,E07000139,1,52.2,100.76,26.1,123.26 +507,1,E07000139,2,62.45,115.76,26.1,130.77 +833,1,E07000139,3,68.97,127.56,26.1,139.34 +1159,1,E07000139,4,76.43,159.7,26.1,168.29 +1485,3,E07000139,1,46.6,91.12,26.1,108.27 +1811,3,E07000139,2,53.13,97.54,26.1,109.33 +2137,3,E07000139,3,58.72,105.05,26.1,120.05 +2463,3,E07000139,4,64.31,123.26,26.1,123.26 +2789,2,E07000139,0,51.26,238.1,18.44,357.17 +3115,4,E07000139,0,49.2,113.15,18.44,122.59 +3441,6,E07000139,0,51.26,213.35,18.44,233.38 +3767,8,E07000139,0,49.2,213.35,18.44,233.38 +4338,5,E07000139,1,52.2,103.98,26.1,113.61 +4438,7,E07000139,1,46.6,103.98,26.1,113.61 +5034,5,E07000139,2,62.45,114.68,26.1,124.33 +5174,7,E07000139,2,53.13,114.68,26.1,124.33 +5677,5,E07000139,3,68.97,138.27,26.1,150.06 +5835,7,E07000139,3,58.72,138.27,26.1,150.06 +6252,5,E07000139,4,76.43,194.01,26.1,212.24 +6496,7,E07000139,4,64.31,194.01,26.1,212.24 +6701,9,E07000139,1,52.2,129.97,26.1,142.02 +7027,9,E07000139,2,62.45,143.37,26.1,155.41 +7353,9,E07000139,3,68.97,172.84,26.1,187.57 +7679,9,E07000139,4,76.43,242.51,26.1,265.29 +8005,10,E07000139,0,51.26,266.69,18.44,291.74 +182,1,E06000013,1,51.27,92.19,26.1,114.68 +508,1,E06000013,2,58.72,109.33,26.1,141.49 +834,1,E06000013,3,63.38,121.11,26.1,162.93 +1160,1,E06000013,4,73.64,145.77,26.1,180.08 +1486,3,E06000013,1,46.6,82.54,26.1,93.26 +1812,3,E06000013,2,53.13,113.61,26.1,145.77 +2138,3,E06000013,3,56.86,105.05,26.1,114.68 +2464,3,E06000013,4,64.31,122.19,26.1,176.86 +2790,2,E06000013,0,52.28,232.2,18.44,319.44 +3116,4,E06000013,0,51.26,159.13,18.44,188.6 +3442,6,E06000013,0,52.28,200.38,18.44,219.25 +3768,8,E06000013,0,51.26,200.38,18.44,219.25 +4402,5,E06000013,1,51.27,82.54,26.1,88.96 +4556,7,E06000013,1,46.6,82.54,26.1,88.96 +4824,7,E06000013,2,53.13,103.98,26.1,113.61 +4882,5,E06000013,2,58.72,103.98,26.1,113.61 +5513,5,E06000013,3,63.38,115.76,26.1,125.4 +5860,7,E06000013,3,56.86,115.76,26.1,125.4 +6118,5,E06000013,4,73.64,182.22,26.1,199.38 +6216,7,E06000013,4,64.31,182.22,26.1,199.38 +6702,9,E06000013,1,51.27,103.19,26.1,111.21 +7028,9,E06000013,2,53.13,129.97,26.1,142.02 +7354,9,E06000013,3,63.38,144.7,26.1,156.77 +7680,9,E06000013,4,73.64,227.8,26.1,249.22 +8006,10,E06000013,0,52.28,250.47,18.44,274.05 +183,1,E07000147,1,54.99,120.05,26.1,150.06 +509,1,E07000147,2,65.24,143.62,26.1,169.36 +835,1,E07000147,3,71.78,157.56,26.1,182.22 +1161,1,E07000147,4,82.02,172.58,26.1,180.08 +1487,3,E07000147,1,50.34,100.76,26.1,132.91 +1813,3,E07000147,2,58.72,118.97,26.1,133.98 +2139,3,E07000147,3,64.31,131.84,26.1,144.7 +2465,3,E07000147,4,71.78,150.06,26.1,160.78 +2791,2,E07000147,0,35.87,223.96,18.44,418.45 +3117,4,E07000147,0,55.36,134.38,18.44,314.73 +3443,6,E07000147,0,35.87,300.58,18.44,327.69 +3769,8,E07000147,0,55.36,300.58,18.44,327.69 +4146,5,E07000147,1,54.99,100.76,26.1,110.39 +4263,7,E07000147,1,50.34,100.76,26.1,110.39 +4727,5,E07000147,2,65.24,126.48,26.1,138.27 +4989,7,E07000147,2,58.72,126.48,26.1,138.27 +5446,5,E07000147,3,71.78,166.14,26.1,181.15 +5632,7,E07000147,3,64.31,166.14,26.1,181.15 +6156,5,E07000147,4,82.02,273.34,26.1,297.99 +6294,7,E07000147,4,71.78,273.34,26.1,297.99 +6703,9,E07000147,1,54.99,125.95,26.1,138.01 +7029,9,E07000147,2,65.24,158.09,26.1,172.84 +7355,9,E07000147,3,71.78,207.68,26.1,226.44 +7681,9,E07000147,4,82.02,341.67,26.1,372.48 +8007,10,E07000147,0,35.87,375.73,18.44,409.61 +184,1,E06000024,1,49.41,108.27,26.1,141.49 +510,1,E06000024,2,55.93,122.19,26.1,145.77 +836,1,E06000024,3,62.45,142.56,26.1,162.93 +1162,1,E06000024,4,71.78,159.7,26.1,196.15 +1488,3,E06000024,1,47.54,90.03,26.1,212.24 +1814,3,E06000024,2,54.99,101.83,26.1,112.54 +2140,3,E06000024,3,62.45,110.39,26.1,127.56 +2466,3,E06000024,4,74.57,131.84,26.1,131.84 +2792,2,E06000024,0,54.33,228.68,18.44,354.8 +3118,4,E06000024,0,54.33,114.33,18.44,140.27 +3444,6,E06000024,0,54.33,275.83,18.44,300.58 +3770,8,E06000024,0,54.33,275.83,18.44,300.58 +3930,7,E06000024,1,47.54,114.68,26.1,124.33 +4214,5,E06000024,1,49.41,114.68,26.1,124.33 +4850,5,E06000024,2,55.93,138.27,26.1,150.06 +5127,7,E06000024,2,54.99,138.27,26.1,150.06 +5481,5,E06000024,3,62.45,166.14,26.1,181.15 +5707,7,E06000024,3,62.45,166.14,26.1,181.15 +6019,5,E06000024,4,71.78,250.82,26.1,273.34 +6419,7,E06000024,4,74.57,250.82,26.1,273.34 +6704,9,E06000024,1,49.41,143.37,26.1,155.41 +7030,9,E06000024,2,55.93,172.84,26.1,187.57 +7356,9,E06000024,3,62.45,207.68,26.1,226.44 +7682,9,E06000024,4,71.78,313.51,26.1,341.67 +8008,10,E06000024,0,54.33,344.81,18.44,375.73 +185,1,E08000022,1,51.27,88.96,26.1,98.62 +511,1,E08000022,2,57.79,102.91,26.1,121.11 +837,1,E08000022,3,61.52,114.68,26.1,160.78 +1163,1,E08000022,4,70.84,128.63,26.1,140.42 +1489,3,E08000022,1,42.87,100.76,26.1,106.12 +1815,3,E08000022,2,50.34,91.12,26.1,112.54 +2141,3,E08000022,3,54.06,106.12,26.1,125.4 +2467,3,E08000022,4,56.86,116.83,26.1,121.11 +2793,2,E08000022,0,55.36,234.56,18.44,337.12 +3119,4,E08000022,0,47.15,251.08,18.44,285.25 +3445,6,E08000022,0,55.36,252.25,18.44,273.47 +3771,8,E08000022,0,47.15,252.25,18.44,273.47 +4457,7,E08000022,1,42.87,99.69,26.1,109.33 +4538,5,E08000022,1,51.27,99.69,26.1,109.33 +5053,5,E08000022,2,57.79,126.48,26.1,138.27 +5104,7,E08000022,2,50.34,126.48,26.1,138.27 +5558,5,E08000022,3,61.52,148.99,26.1,161.86 +5733,7,E08000022,3,54.06,148.99,26.1,161.86 +6357,5,E08000022,4,70.84,229.37,26.1,248.67 +6515,7,E08000022,4,56.86,229.37,26.1,248.67 +6705,9,E08000022,1,42.87,124.6,26.1,136.67 +7031,9,E08000022,2,57.79,158.09,26.1,172.84 +7357,9,E08000022,3,61.52,186.23,26.1,202.34 +7683,9,E08000022,4,70.84,286.72,26.1,310.84 +8009,10,E08000022,0,55.36,315.32,18.44,341.84 +186,1,E07000218,1,53.13,99.69,26.1,125.4 +512,1,E07000218,2,58.72,117.9,26.1,138.27 +838,1,E07000218,3,69.9,133.98,26.1,161.86 +1164,1,E07000218,4,81.09,162.93,26.1,180.08 +1490,3,E07000218,1,46.6,88.96,26.1,98.62 +1816,3,E07000218,2,50.34,95.42,26.1,103.98 +2142,3,E07000218,3,60.59,105.05,26.1,121.11 +2468,3,E07000218,4,68.97,128.63,26.1,128.63 +2794,2,E07000218,0,38.95,242.82,18.44,378.37 +3120,4,E07000218,0,46.12,106.09,18.44,106.09 +3446,6,E07000218,0,38.95,213.35,18.44,233.38 +3772,8,E07000218,0,46.12,213.35,18.44,233.38 +4291,5,E07000218,1,53.13,103.98,26.1,113.61 +4512,7,E07000218,1,46.6,103.98,26.1,113.61 +4901,5,E07000218,2,58.72,126.48,26.1,138.27 +5197,7,E07000218,2,50.34,126.48,26.1,138.27 +5532,5,E07000218,3,69.9,148.99,26.1,161.86 +5788,7,E07000218,3,60.59,148.99,26.1,161.86 +6184,5,E07000218,4,81.09,194.01,26.1,212.24 +6449,7,E07000218,4,68.97,194.01,26.1,212.24 +6706,9,E07000218,1,53.13,129.97,26.1,142.02 +7032,9,E07000218,2,58.72,158.09,26.1,172.84 +7358,9,E07000218,3,69.9,186.23,26.1,202.34 +7684,9,E07000218,4,81.09,242.51,26.1,265.29 +8010,10,E07000218,0,38.95,266.69,18.44,291.74 +187,1,E07000134,1,52.2,100.76,26.1,123.26 +513,1,E07000134,2,62.45,115.76,26.1,130.77 +839,1,E07000134,3,68.97,127.56,26.1,139.34 +1165,1,E07000134,4,76.43,159.7,26.1,168.29 +1491,3,E07000134,1,46.6,91.12,26.1,108.27 +1817,3,E07000134,2,53.13,97.54,26.1,109.33 +2143,3,E07000134,3,58.72,105.05,26.1,120.05 +2469,3,E07000134,4,64.31,123.26,26.1,123.26 +2795,2,E07000134,0,51.26,238.1,18.44,357.17 +3121,4,E07000134,0,49.2,113.15,18.44,122.59 +3447,6,E07000134,0,51.26,225.15,18.44,245.18 +3773,8,E07000134,0,49.2,225.15,18.44,245.18 +4339,5,E07000134,1,52.2,98.62,26.1,108.27 +4439,7,E07000134,1,46.6,98.62,26.1,108.27 +5035,5,E07000134,2,62.45,121.11,26.1,131.84 +5175,7,E07000134,2,53.13,121.11,26.1,131.84 +5678,5,E07000134,3,68.97,138.27,26.1,150.06 +5836,7,E07000134,3,58.72,138.27,26.1,150.06 +6253,5,E07000134,4,76.43,204.74,26.1,222.95 +6497,7,E07000134,4,64.31,204.74,26.1,222.95 +6707,9,E07000134,1,52.2,123.26,26.1,135.33 +7033,9,E07000134,2,62.45,151.41,26.1,164.8 +7359,9,E07000134,3,68.97,172.84,26.1,187.57 +7685,9,E07000134,4,76.43,255.92,26.1,278.69 +8011,10,E07000134,0,51.26,281.43,18.44,306.45 +189,1,E06000057,1,51.27,88.96,26.1,98.62 +515,1,E06000057,2,57.79,102.91,26.1,121.11 +841,1,E06000057,3,61.52,114.68,26.1,160.78 +1167,1,E06000057,4,70.84,128.63,26.1,140.42 +1493,3,E06000057,1,42.87,100.76,26.1,106.12 +1819,3,E06000057,2,50.34,91.12,26.1,112.54 +2145,3,E06000057,3,54.06,106.12,26.1,125.4 +2471,3,E06000057,4,56.86,116.83,26.1,121.11 +2797,2,E06000057,0,55.36,234.56,18.44,337.12 +3123,4,E06000057,0,47.15,251.08,18.44,285.25 +3449,6,E06000057,0,55.36,225.15,18.44,245.18 +3775,8,E06000057,0,47.15,225.15,18.44,245.18 +4458,7,E06000057,1,42.87,92.19,26.1,99.69 +4539,5,E06000057,1,51.27,92.19,26.1,99.69 +5054,5,E06000057,2,57.79,110.39,26.1,120.05 +5105,7,E06000057,2,50.34,110.39,26.1,120.05 +5559,5,E06000057,3,61.52,126.48,26.1,138.27 +5734,7,E06000057,3,54.06,126.48,26.1,138.27 +6358,5,E06000057,4,70.84,204.74,26.1,222.95 +6516,7,E06000057,4,56.86,204.74,26.1,222.95 +6709,9,E06000057,1,42.87,115.24,26.1,124.6 +7035,9,E06000057,2,57.79,138.01,26.1,150.06 +7361,9,E06000057,3,61.52,158.09,26.1,172.84 +7687,9,E06000057,4,70.84,255.92,26.1,278.69 +8013,10,E06000057,0,55.36,281.43,18.44,306.45 +190,1,E07000148,1,54.99,120.05,26.1,150.06 +516,1,E07000148,2,65.24,143.62,26.1,169.36 +842,1,E07000148,3,71.78,157.56,26.1,182.22 +1168,1,E07000148,4,82.02,172.58,26.1,180.08 +1494,3,E07000148,1,50.34,100.76,26.1,132.91 +1820,3,E07000148,2,58.72,118.97,26.1,133.98 +2146,3,E07000148,3,64.31,131.84,26.1,144.7 +2472,3,E07000148,4,71.78,150.06,26.1,160.78 +2798,2,E07000148,0,35.87,223.96,18.44,418.45 +3124,4,E07000148,0,55.36,134.38,18.44,314.73 +3450,6,E07000148,0,35.87,271.13,18.44,295.87 +3776,8,E07000148,0,55.36,271.13,18.44,295.87 +4147,5,E07000148,1,54.99,114.68,26.1,124.33 +4264,7,E07000148,1,50.34,114.68,26.1,124.33 +4728,5,E07000148,2,65.24,136.13,26.1,148.99 +4990,7,E07000148,2,58.72,136.13,26.1,148.99 +5447,5,E07000148,3,71.78,172.58,26.1,187.58 +5633,7,E07000148,3,64.31,172.58,26.1,187.58 +6157,5,E07000148,4,82.02,246.53,26.1,269.04 +6295,7,E07000148,4,71.78,246.53,26.1,269.04 +6710,9,E07000148,1,54.99,143.37,26.1,155.41 +7036,9,E07000148,2,65.24,170.16,26.1,186.23 +7362,9,E07000148,3,71.78,215.73,26.1,234.49 +7688,9,E07000148,4,82.02,308.16,26.1,336.31 +8014,10,E07000148,0,35.87,338.9,18.44,369.84 +191,1,E06000018,1,52.2,100.76,26.1,123.26 +517,1,E06000018,2,62.45,115.76,26.1,130.77 +843,1,E06000018,3,68.97,127.56,26.1,139.34 +1169,1,E06000018,4,76.43,159.7,26.1,168.29 +1495,3,E06000018,1,46.6,91.12,26.1,108.27 +1821,3,E06000018,2,53.13,97.54,26.1,109.33 +2147,3,E06000018,3,58.72,105.05,26.1,120.05 +2473,3,E06000018,4,64.31,123.26,26.1,123.26 +2799,2,E06000018,0,51.26,238.1,18.44,357.17 +3125,4,E06000018,0,49.2,113.15,18.44,122.59 +3451,6,E06000018,0,51.26,351.26,18.44,383.09 +3777,8,E06000018,0,49.2,351.26,18.44,383.09 +4341,5,E06000018,1,52.2,121.11,26.1,131.84 +4441,7,E06000018,1,46.6,121.11,26.1,131.84 +5037,5,E06000018,2,62.45,148.99,26.1,161.86 +5177,7,E06000018,2,53.13,148.99,26.1,161.86 +5680,5,E06000018,3,68.97,148.99,26.1,161.86 +5838,7,E06000018,3,58.72,148.99,26.1,161.86 +6255,5,E06000018,4,76.43,319.42,26.1,348.36 +6499,7,E06000018,4,64.31,319.42,26.1,348.36 +6711,9,E06000018,1,52.2,151.41,26.1,164.8 +7037,9,E06000018,2,62.45,186.23,26.1,202.34 +7363,9,E06000018,3,68.97,186.23,26.1,202.34 +7689,9,E06000018,4,76.43,399.29,26.1,435.45 +8015,10,E06000018,0,51.26,439.1,18.44,478.86 +192,1,E07000219,1,53.13,99.69,26.1,125.4 +518,1,E07000219,2,58.72,117.9,26.1,138.27 +844,1,E07000219,3,69.9,133.98,26.1,161.86 +1170,1,E07000219,4,81.09,162.93,26.1,180.08 +1496,3,E07000219,1,46.6,88.96,26.1,98.62 +1822,3,E07000219,2,50.34,95.42,26.1,103.98 +2148,3,E07000219,3,60.59,105.05,26.1,121.11 +2474,3,E07000219,4,68.97,128.63,26.1,128.63 +2800,2,E07000219,0,38.95,242.82,18.44,378.37 +3126,4,E07000219,0,46.12,106.09,18.44,106.09 +3452,6,E07000219,0,38.95,220.42,18.44,239.29 +3778,8,E07000219,0,46.12,220.42,18.44,239.29 +4292,5,E07000219,1,53.13,98.62,26.1,108.27 +4513,7,E07000219,1,46.6,98.62,26.1,108.27 +4902,5,E07000219,2,58.72,120.05,26.1,130.77 +5198,7,E07000219,2,50.34,120.05,26.1,130.77 +5533,5,E07000219,3,69.9,143.62,26.1,156.49 +5789,7,E07000219,3,60.59,143.62,26.1,156.49 +6185,5,E07000219,4,81.09,200.45,26.1,217.59 +6450,7,E07000219,4,68.97,200.45,26.1,217.59 +6712,9,E07000219,1,53.13,123.26,26.1,135.33 +7038,9,E07000219,2,58.72,150.06,26.1,163.46 +7364,9,E07000219,3,69.9,179.53,26.1,195.6 +7690,9,E07000219,4,81.09,250.54,26.1,271.98 +8016,10,E07000219,0,38.95,275.54,18.44,299.12 +193,1,E07000135,1,52.2,100.76,26.1,123.26 +519,1,E07000135,2,62.45,115.76,26.1,130.77 +845,1,E07000135,3,68.97,127.56,26.1,139.34 +1171,1,E07000135,4,76.43,159.7,26.1,168.29 +1497,3,E07000135,1,46.6,91.12,26.1,108.27 +1823,3,E07000135,2,53.13,97.54,26.1,109.33 +2149,3,E07000135,3,58.72,105.05,26.1,120.05 +2475,3,E07000135,4,64.31,123.26,26.1,123.26 +2801,2,E07000135,0,51.26,238.1,18.44,357.17 +3127,4,E07000135,0,49.2,113.15,18.44,122.59 +3453,6,E07000135,0,51.26,252.25,18.44,273.47 +3779,8,E07000135,0,49.2,252.25,18.44,273.47 +4342,5,E07000135,1,52.2,103.98,26.1,113.61 +4442,7,E07000135,1,46.6,103.98,26.1,113.61 +5038,5,E07000135,2,62.45,126.48,26.1,138.27 +5178,7,E07000135,2,53.13,126.48,26.1,138.27 +5681,5,E07000135,3,68.97,148.99,26.1,161.86 +5839,7,E07000135,3,58.72,148.99,26.1,161.86 +6256,5,E07000135,4,76.43,229.37,26.1,248.67 +6500,7,E07000135,4,64.31,229.37,26.1,248.67 +6713,9,E07000135,1,52.2,129.97,26.1,142.02 +7039,9,E07000135,2,62.45,158.09,26.1,172.84 +7365,9,E07000135,3,68.97,186.23,26.1,202.34 +7691,9,E07000135,4,76.43,286.72,26.1,310.84 +8017,10,E07000135,0,51.26,315.32,18.44,341.84 +194,1,E08000004,1,52.2,94.33,26.1,117.9 +520,1,E08000004,2,59.66,108.27,26.1,136.13 +846,1,E08000004,3,66.17,121.11,26.1,146.84 +1172,1,E08000004,4,72.71,135.06,26.1,160.78 +1498,3,E08000004,1,43.8,86.81,26.1,101.83 +1824,3,E08000004,2,54.06,95.42,26.1,114.68 +2150,3,E08000004,3,58.72,106.12,26.1,125.4 +2476,3,E08000004,4,55.93,120.05,26.1,135.06 +2802,2,E08000004,0,55.36,236.93,18.44,338.29 +3128,4,E08000004,0,32.8,464.43,18.44,592.92 +3454,6,E08000004,0,55.36,213.35,18.44,233.38 +3780,8,E08000004,0,32.8,213.35,18.44,233.38 +4371,5,E08000004,1,52.2,103.98,26.1,113.61 +4483,7,E08000004,1,43.8,103.98,26.1,113.61 +4941,5,E08000004,2,59.66,114.68,26.1,124.33 +5079,7,E08000004,2,54.06,114.68,26.1,124.33 +5584,5,E08000004,3,66.17,138.27,26.1,150.06 +5759,7,E08000004,3,58.72,138.27,26.1,150.06 +6332,5,E08000004,4,72.71,194.01,26.1,212.24 +6383,7,E08000004,4,55.93,194.01,26.1,212.24 +6714,9,E08000004,1,52.2,129.97,26.1,142.02 +7040,9,E08000004,2,59.66,143.37,26.1,155.41 +7366,9,E08000004,3,66.17,172.84,26.1,187.57 +7692,9,E08000004,4,72.71,242.51,26.1,265.29 +8018,10,E08000004,0,55.36,266.69,18.44,291.74 +195,1,E07000178,1,57.79,124.33,26.1,177.93 +521,1,E07000178,2,71.78,147.91,26.1,188.66 +847,1,E07000178,3,82.02,162.93,26.1,205.81 +1173,1,E07000178,4,90.42,180.08,26.1,224.01 +1499,3,E07000178,1,52.2,116.83,26.1,160.78 +1825,3,E07000178,2,63.38,130.77,26.1,146.84 +2151,3,E07000178,3,68.97,151.13,26.1,187.58 +2477,3,E07000178,4,73.64,186.51,26.1,196.15 +2803,2,E07000178,0,61.49,265.21,18.44,340.65 +3129,4,E07000178,0,48.18,193.32,18.44,202.73 +3455,6,E07000178,0,61.49,485.64,18.44,529.26 +3781,8,E07000178,0,48.18,485.64,18.44,529.26 +4017,5,E07000178,1,57.79,191.86,26.1,210.1 +4084,7,E07000178,1,52.2,191.86,26.1,210.1 +4632,5,E07000178,2,71.78,240.09,26.1,261.54 +4779,7,E07000178,2,63.38,240.09,26.1,261.54 +5284,5,E07000178,3,82.02,295.83,26.1,322.64 +5384,7,E07000178,3,68.97,295.83,26.1,322.64 +5969,5,E07000178,4,90.42,441.6,26.1,481.27 +6073,7,E07000178,4,73.64,441.6,26.1,481.27 +6715,9,E07000178,1,57.79,239.84,26.1,262.61 +7041,9,E07000178,2,71.78,300.12,26.1,326.92 +7367,9,E07000178,3,82.02,369.81,26.1,403.3 +7693,9,E07000178,4,90.42,552,26.1,601.57 +8019,10,E07000178,0,61.49,607.06,18.44,661.58 +196,1,E07000122,1,52.2,94.33,26.1,117.9 +522,1,E07000122,2,59.66,108.27,26.1,136.13 +848,1,E07000122,3,66.17,121.11,26.1,146.84 +1174,1,E07000122,4,72.71,135.06,26.1,160.78 +1500,3,E07000122,1,43.8,86.81,26.1,101.83 +1826,3,E07000122,2,54.06,95.42,26.1,114.68 +2152,3,E07000122,3,58.72,106.12,26.1,125.4 +2478,3,E07000122,4,55.93,120.05,26.1,135.06 +2804,2,E07000122,0,55.36,236.93,18.44,338.29 +3130,4,E07000122,0,32.8,464.43,18.44,592.92 +3456,6,E07000122,0,55.36,200.38,18.44,219.25 +3782,8,E07000122,0,32.8,200.38,18.44,219.25 +4372,5,E07000122,1,52.2,91.12,26.1,98.62 +4484,7,E07000122,1,43.8,91.12,26.1,98.62 +4942,5,E07000122,2,59.66,98.62,26.1,109.33 +5080,7,E07000122,2,54.06,98.62,26.1,109.33 +5585,5,E07000122,3,66.17,126.48,26.1,138.27 +5760,7,E07000122,3,58.72,126.48,26.1,138.27 +6333,5,E07000122,4,72.71,182.22,26.1,199.38 +6384,7,E07000122,4,55.93,182.22,26.1,199.38 +6716,9,E07000122,1,52.2,113.9,26.1,123.26 +7042,9,E07000122,2,59.66,123.26,26.1,136.67 +7368,9,E07000122,3,66.17,158.09,26.1,172.84 +7694,9,E07000122,4,72.71,227.8,26.1,249.22 +8020,10,E07000122,0,55.36,250.47,18.44,274.05 +197,1,E06000031,1,54.99,120.05,26.1,150.06 +523,1,E06000031,2,65.24,143.62,26.1,169.36 +849,1,E06000031,3,71.78,157.56,26.1,182.22 +1175,1,E06000031,4,82.02,172.58,26.1,180.08 +1501,3,E06000031,1,50.34,100.76,26.1,132.91 +1827,3,E06000031,2,58.72,118.97,26.1,133.98 +2153,3,E06000031,3,64.31,131.84,26.1,144.7 +2479,3,E06000031,4,71.78,150.06,26.1,160.78 +2805,2,E06000031,0,35.87,223.96,18.44,418.45 +3131,4,E06000031,0,55.36,134.38,18.44,314.73 +3457,6,E06000031,0,35.87,226.32,18.44,246.36 +3783,8,E06000031,0,55.36,226.32,18.44,246.36 +4148,5,E06000031,1,54.99,103.98,26.1,113.61 +4265,7,E06000031,1,50.34,103.98,26.1,113.61 +4729,5,E06000031,2,65.24,126.48,26.1,138.27 +4991,7,E06000031,2,58.72,126.48,26.1,138.27 +5448,5,E06000031,3,71.78,148.99,26.1,161.86 +5634,7,E06000031,3,64.31,148.99,26.1,161.86 +6158,5,E06000031,4,82.02,205.81,26.1,224.01 +6296,7,E06000031,4,71.78,205.81,26.1,224.01 +6717,9,E06000031,1,54.99,129.97,26.1,142.02 +7043,9,E06000031,2,65.24,158.09,26.1,172.84 +7369,9,E06000031,3,71.78,186.23,26.1,202.34 +7695,9,E06000031,4,82.02,257.26,26.1,280.03 +8021,10,E06000031,0,35.87,282.91,18.44,307.95 +198,1,E06000026,1,49.41,108.27,26.1,141.49 +524,1,E06000026,2,55.93,122.19,26.1,145.77 +850,1,E06000026,3,62.45,142.56,26.1,162.93 +1176,1,E06000026,4,71.78,159.7,26.1,196.15 +1502,3,E06000026,1,47.54,90.03,26.1,212.24 +1828,3,E06000026,2,54.99,101.83,26.1,112.54 +2154,3,E06000026,3,62.45,110.39,26.1,127.56 +2480,3,E06000026,4,74.57,131.84,26.1,131.84 +2806,2,E06000026,0,54.33,228.68,18.44,354.8 +3132,4,E06000026,0,54.33,114.33,18.44,140.27 +3458,6,E06000026,0,54.33,301.76,18.44,328.86 +3784,8,E06000026,0,54.33,301.76,18.44,328.86 +3931,7,E06000026,1,47.54,111.47,26.1,121.11 +4215,5,E06000026,1,49.41,111.47,26.1,121.11 +4851,5,E06000026,2,55.93,138.27,26.1,150.06 +5128,7,E06000026,2,54.99,138.27,26.1,150.06 +5482,5,E06000026,3,62.45,160.78,26.1,175.78 +5708,7,E06000026,3,62.45,160.78,26.1,175.78 +6020,5,E06000026,4,71.78,274.41,26.1,299.06 +6420,7,E06000026,4,74.57,274.41,26.1,299.06 +6718,9,E06000026,1,49.41,139.34,26.1,151.41 +7044,9,E06000026,2,55.93,172.84,26.1,187.57 +7370,9,E06000026,3,62.45,200.97,26.1,219.74 +7696,9,E06000026,4,71.78,343.01,26.1,373.82 +8022,10,E06000026,0,54.33,377.19,18.44,411.08 +200,1,E06000044,1,57.79,124.33,26.1,177.93 +526,1,E06000044,2,71.78,147.91,26.1,188.66 +852,1,E06000044,3,82.02,162.93,26.1,205.81 +1178,1,E06000044,4,90.42,180.08,26.1,224.01 +1504,3,E06000044,1,52.2,116.83,26.1,160.78 +1830,3,E06000044,2,63.38,130.77,26.1,146.84 +2156,3,E06000044,3,68.97,151.13,26.1,187.58 +2482,3,E06000044,4,73.64,186.51,26.1,196.15 +2808,2,E06000044,0,61.49,265.21,18.44,340.65 +3134,4,E06000044,0,48.18,193.32,18.44,202.73 +3460,6,E06000044,0,61.49,351.26,18.44,383.09 +3786,8,E06000044,0,48.18,351.26,18.44,383.09 +4018,5,E06000044,1,57.79,126.48,26.1,138.27 +4085,7,E06000044,1,52.2,126.48,26.1,138.27 +4633,5,E06000044,2,71.78,155.41,26.1,169.36 +4780,7,E06000044,2,63.38,155.41,26.1,169.36 +5285,5,E06000044,3,82.02,194.01,26.1,212.24 +5385,7,E06000044,3,68.97,194.01,26.1,212.24 +5970,5,E06000044,4,90.42,319.42,26.1,348.36 +6074,7,E06000044,4,73.64,319.42,26.1,348.36 +6720,9,E06000044,1,57.79,158.09,26.1,172.84 +7046,9,E06000044,2,71.78,194.27,26.1,211.69 +7372,9,E06000044,3,82.02,242.51,26.1,265.29 +7698,9,E06000044,4,90.42,399.29,26.1,435.45 +8024,10,E06000044,0,61.49,439.1,18.44,478.86 +201,1,E07000123,1,52.2,94.33,26.1,117.9 +527,1,E07000123,2,59.66,108.27,26.1,136.13 +853,1,E07000123,3,66.17,121.11,26.1,146.84 +1179,1,E07000123,4,72.71,135.06,26.1,160.78 +1505,3,E07000123,1,43.8,86.81,26.1,101.83 +1831,3,E07000123,2,54.06,95.42,26.1,114.68 +2157,3,E07000123,3,58.72,106.12,26.1,125.4 +2483,3,E07000123,4,55.93,120.05,26.1,135.06 +2809,2,E07000123,0,55.36,236.93,18.44,338.29 +3135,4,E07000123,0,32.8,464.43,18.44,592.92 +3461,6,E07000123,0,55.36,226.32,18.44,246.36 +3787,8,E07000123,0,32.8,226.32,18.44,246.36 +4373,5,E07000123,1,52.2,103.98,26.1,113.61 +4485,7,E07000123,1,43.8,103.98,26.1,113.61 +4943,5,E07000123,2,59.66,131.84,26.1,144.7 +5081,7,E07000123,2,54.06,131.84,26.1,144.7 +5586,5,E07000123,3,66.17,148.99,26.1,161.86 +5761,7,E07000123,3,58.72,148.99,26.1,161.86 +6334,5,E07000123,4,72.71,205.81,26.1,224.01 +6385,7,E07000123,4,55.93,205.81,26.1,224.01 +6721,9,E07000123,1,52.2,129.97,26.1,142.02 +7047,9,E07000123,2,59.66,164.8,26.1,180.87 +7373,9,E07000123,3,66.17,186.23,26.1,202.34 +7699,9,E07000123,4,72.71,257.26,26.1,280.03 +8025,10,E07000123,0,55.36,282.91,18.44,307.95 +203,1,E06000038,1,57.79,124.33,26.1,177.93 +529,1,E06000038,2,71.78,147.91,26.1,188.66 +855,1,E06000038,3,82.02,162.93,26.1,205.81 +1181,1,E06000038,4,90.42,180.08,26.1,224.01 +1507,3,E06000038,1,52.2,116.83,26.1,160.78 +1833,3,E06000038,2,63.38,130.77,26.1,146.84 +2159,3,E06000038,3,68.97,151.13,26.1,187.58 +2485,3,E06000038,4,73.64,186.51,26.1,196.15 +2811,2,E06000038,0,61.49,265.21,18.44,340.65 +3137,4,E06000038,0,48.18,193.32,18.44,202.73 +3463,6,E06000038,0,61.49,493.9,18.44,538.7 +3789,8,E06000038,0,48.18,493.9,18.44,538.7 +4019,5,E06000038,1,57.79,160.78,26.1,175.78 +4086,7,E06000038,1,52.2,160.78,26.1,175.78 +4634,5,E06000038,2,71.78,204.74,26.1,222.95 +4781,7,E06000038,2,63.38,204.74,26.1,222.95 +5286,5,E06000038,3,82.02,221.88,26.1,242.25 +5386,7,E06000038,3,68.97,221.88,26.1,242.25 +5971,5,E06000038,4,90.42,450.18,26.1,489.85 +6075,7,E06000038,4,73.64,450.18,26.1,489.85 +6723,9,E06000038,1,57.79,200.97,26.1,219.74 +7049,9,E06000038,2,71.78,255.92,26.1,278.69 +7375,9,E06000038,3,82.02,277.34,26.1,302.81 +7701,9,E06000038,4,90.42,562.74,26.1,612.31 +8027,10,E06000038,0,61.49,617.37,18.44,673.36 +204,1,E09000026,1,66.17,146.84,26.1,199.38 +530,1,E09000026,2,78.29,158.63,26.1,194.01 +856,1,E09000026,3,84.82,168.29,26.1,228.29 +1182,1,E09000026,4,102.51,188.66,26.1,254.03 +1508,3,E09000026,1,58.72,120.05,26.1,147.91 +1834,3,E09000026,2,64.31,140.42,26.1,176.86 +2160,3,E09000026,3,71.78,160.78,26.1,202.58 +2486,3,E09000026,4,83.89,262.61,26.1,263.68 +2812,2,E09000026,0,69.7,313.55,18.44,497.44 +3138,4,E09000026,0,59.45,367.77,18.44,398.42 +3464,6,E09000026,0,69.7,412.57,18.44,450.29 +3790,8,E09000026,0,59.45,412.57,18.44,450.29 +3975,5,E09000026,1,66.17,183.29,26.1,200.45 +4189,7,E09000026,1,58.72,183.29,26.1,200.45 +4590,5,E09000026,2,78.29,240.09,26.1,261.54 +4690,7,E09000026,2,64.31,240.09,26.1,261.54 +5242,5,E09000026,3,84.82,295.83,26.1,322.64 +5342,7,E09000026,3,71.78,295.83,26.1,322.64 +5894,7,E09000026,4,83.89,375.16,26.1,409.45 +5927,5,E09000026,4,102.51,375.16,26.1,409.45 +6724,9,E09000026,1,66.17,229.13,26.1,250.54 +7050,9,E09000026,2,78.29,300.12,26.1,326.92 +7376,9,E09000026,3,84.82,369.81,26.1,403.3 +7702,9,E09000026,4,102.51,468.95,26.1,511.83 +8028,10,E09000026,0,69.7,515.71,18.44,562.87 +205,1,E06000003,1,51.27,88.96,26.1,98.62 +531,1,E06000003,2,57.79,102.91,26.1,121.11 +857,1,E06000003,3,61.52,114.68,26.1,160.78 +1183,1,E06000003,4,70.84,128.63,26.1,140.42 +1509,3,E06000003,1,42.87,100.76,26.1,106.12 +1835,3,E06000003,2,50.34,91.12,26.1,112.54 +2161,3,E06000003,3,54.06,106.12,26.1,125.4 +2487,3,E06000003,4,56.86,116.83,26.1,121.11 +2813,2,E06000003,0,55.36,234.56,18.44,337.12 +3139,4,E06000003,0,47.15,251.08,18.44,285.25 +3465,6,E06000003,0,55.36,189.79,18.44,206.28 +3791,8,E06000003,0,47.15,189.79,18.44,206.28 +4459,7,E06000003,1,42.87,98.62,26.1,108.27 +4540,5,E06000003,1,51.27,98.62,26.1,108.27 +5055,5,E06000003,2,57.79,115.76,26.1,125.4 +5106,7,E06000003,2,50.34,115.76,26.1,125.4 +5560,5,E06000003,3,61.52,133.98,26.1,146.84 +5735,7,E06000003,3,54.06,133.98,26.1,146.84 +6359,5,E06000003,4,70.84,172.58,26.1,187.58 +6517,7,E06000003,4,56.86,172.58,26.1,187.58 +6725,9,E06000003,1,42.87,123.26,26.1,135.33 +7051,9,E06000003,2,57.79,144.7,26.1,156.77 +7377,9,E06000003,3,61.52,167.48,26.1,183.56 +7703,9,E06000003,4,70.84,215.73,26.1,234.49 +8029,10,E06000003,0,55.36,237.24,18.44,257.84 +206,1,E07000236,1,53.13,99.69,26.1,125.4 +532,1,E07000236,2,58.72,117.9,26.1,138.27 +858,1,E07000236,3,69.9,133.98,26.1,161.86 +1184,1,E07000236,4,81.09,162.93,26.1,180.08 +1510,3,E07000236,1,46.6,88.96,26.1,98.62 +1836,3,E07000236,2,50.34,95.42,26.1,103.98 +2162,3,E07000236,3,60.59,105.05,26.1,121.11 +2488,3,E07000236,4,68.97,128.63,26.1,128.63 +2814,2,E07000236,0,38.95,242.82,18.44,378.37 +3140,4,E07000236,0,46.12,106.09,18.44,106.09 +3466,6,E07000236,0,38.95,213.35,18.44,233.38 +3792,8,E07000236,0,46.12,213.35,18.44,233.38 +4293,5,E07000236,1,53.13,110.39,26.1,120.05 +4514,7,E07000236,1,46.6,110.39,26.1,120.05 +4903,5,E07000236,2,58.72,131.84,26.1,144.7 +5199,7,E07000236,2,50.34,131.84,26.1,144.7 +5534,5,E07000236,3,69.9,148.99,26.1,161.86 +5790,7,E07000236,3,60.59,148.99,26.1,161.86 +6186,5,E07000236,4,81.09,194.01,26.1,212.24 +6451,7,E07000236,4,68.97,194.01,26.1,212.24 +6726,9,E07000236,1,53.13,138.01,26.1,150.06 +7052,9,E07000236,2,58.72,164.8,26.1,180.87 +7378,9,E07000236,3,69.9,186.23,26.1,202.34 +7704,9,E07000236,4,81.09,242.51,26.1,265.29 +8030,10,E07000236,0,38.95,266.69,18.44,291.74 +207,1,E07000211,1,57.79,124.33,26.1,177.93 +533,1,E07000211,2,71.78,147.91,26.1,188.66 +859,1,E07000211,3,82.02,162.93,26.1,205.81 +1185,1,E07000211,4,90.42,180.08,26.1,224.01 +1511,3,E07000211,1,52.2,116.83,26.1,160.78 +1837,3,E07000211,2,63.38,130.77,26.1,146.84 +2163,3,E07000211,3,68.97,151.13,26.1,187.58 +2489,3,E07000211,4,73.64,186.51,26.1,196.15 +2815,2,E07000211,0,61.49,265.21,18.44,340.65 +3141,4,E07000211,0,48.18,193.32,18.44,202.73 +3467,6,E07000211,0,61.49,486.82,18.44,530.44 +3793,8,E07000211,0,48.18,486.82,18.44,530.44 +4020,5,E07000211,1,57.79,160.78,26.1,175.78 +4087,7,E07000211,1,52.2,160.78,26.1,175.78 +4635,5,E07000211,2,71.78,211.17,26.1,230.44 +4782,7,E07000211,2,63.38,211.17,26.1,230.44 +5287,5,E07000211,3,82.02,272.26,26.1,296.91 +5387,7,E07000211,3,68.97,272.26,26.1,296.91 +5972,5,E07000211,4,90.42,442.67,26.1,482.35 +6076,7,E07000211,4,73.64,442.67,26.1,482.35 +6727,9,E07000211,1,57.79,200.97,26.1,219.74 +7053,9,E07000211,2,71.78,263.95,26.1,288.07 +7379,9,E07000211,3,82.02,340.33,26.1,371.13 +7705,9,E07000211,4,90.42,553.35,26.1,602.94 +8031,10,E07000211,0,61.49,608.53,18.44,663.05 +208,1,E07000124,1,52.2,94.33,26.1,117.9 +534,1,E07000124,2,59.66,108.27,26.1,136.13 +860,1,E07000124,3,66.17,121.11,26.1,146.84 +1186,1,E07000124,4,72.71,135.06,26.1,160.78 +1512,3,E07000124,1,43.8,86.81,26.1,101.83 +1838,3,E07000124,2,54.06,95.42,26.1,114.68 +2164,3,E07000124,3,58.72,106.12,26.1,125.4 +2490,3,E07000124,4,55.93,120.05,26.1,135.06 +2816,2,E07000124,0,55.36,236.93,18.44,338.29 +3142,4,E07000124,0,32.8,464.43,18.44,592.92 +3468,6,E07000124,0,55.36,275.83,18.44,300.58 +3794,8,E07000124,0,32.8,275.83,18.44,300.58 +4374,5,E07000124,1,52.2,103.98,26.1,113.61 +4486,7,E07000124,1,43.8,103.98,26.1,113.61 +4944,5,E07000124,2,59.66,131.84,26.1,144.7 +5082,7,E07000124,2,54.06,131.84,26.1,144.7 +5587,5,E07000124,3,66.17,159.7,26.1,174.72 +5762,7,E07000124,3,58.72,159.7,26.1,174.72 +6335,5,E07000124,4,72.71,250.82,26.1,273.34 +6386,7,E07000124,4,55.93,250.82,26.1,273.34 +6728,9,E07000124,1,52.2,129.97,26.1,142.02 +7054,9,E07000124,2,59.66,164.8,26.1,180.87 +7380,9,E07000124,3,66.17,199.62,26.1,218.38 +7706,9,E07000124,4,72.71,313.51,26.1,341.67 +8032,10,E07000124,0,55.36,344.81,18.44,375.73 +210,1,E09000027,1,66.17,146.84,26.1,199.38 +536,1,E09000027,2,78.29,158.63,26.1,194.01 +862,1,E09000027,3,84.82,168.29,26.1,228.29 +1188,1,E09000027,4,102.51,188.66,26.1,254.03 +1514,3,E09000027,1,58.72,120.05,26.1,147.91 +1840,3,E09000027,2,64.31,140.42,26.1,176.86 +2166,3,E09000027,3,71.78,160.78,26.1,202.58 +2492,3,E09000027,4,83.89,262.61,26.1,263.68 +2818,2,E09000027,0,69.7,313.55,18.44,497.44 +3144,4,E09000027,0,59.45,367.77,18.44,398.42 +3470,6,E09000027,0,69.7,994.86,18.44,1085.64 +3796,8,E09000027,0,59.45,994.86,18.44,1085.64 +3976,5,E09000027,1,66.17,250.82,26.1,273.34 +4190,7,E09000027,1,58.72,250.82,26.1,273.34 +4591,5,E09000027,2,78.29,339.77,26.1,370.87 +4691,7,E09000027,2,64.31,339.77,26.1,370.87 +5243,5,E09000027,3,84.82,476.98,26.1,519.86 +5343,7,E09000027,3,71.78,476.98,26.1,519.86 +5895,7,E09000027,4,83.89,904.65,26.1,987.19 +5928,5,E09000027,4,102.51,904.65,26.1,987.19 +6730,9,E09000027,1,66.17,313.51,26.1,341.67 +7056,9,E09000027,2,78.29,424.73,26.1,463.59 +7382,9,E09000027,3,84.82,596.23,26.1,649.84 +7708,9,E09000027,4,102.51,1130.82,26.1,1234 +8034,10,E09000027,0,69.7,1243.58,18.44,1357.05 +209,1,E07000166,1,51.27,92.19,26.1,114.68 +535,1,E07000166,2,58.72,109.33,26.1,141.49 +861,1,E07000166,3,63.38,121.11,26.1,162.93 +1187,1,E07000166,4,73.64,145.77,26.1,180.08 +1513,3,E07000166,1,46.6,82.54,26.1,93.26 +1839,3,E07000166,2,53.13,113.61,26.1,145.77 +2165,3,E07000166,3,56.86,105.05,26.1,114.68 +2491,3,E07000166,4,64.31,122.19,26.1,176.86 +2817,2,E07000166,0,52.28,232.2,18.44,319.44 +3143,4,E07000166,0,51.26,159.13,18.44,188.6 +3469,6,E07000166,0,52.28,225.15,18.44,245.18 +3795,8,E07000166,0,51.26,225.15,18.44,245.18 +4403,5,E07000166,1,51.27,97.54,26.1,106.12 +4557,7,E07000166,1,46.6,97.54,26.1,106.12 +4825,7,E07000166,2,53.13,126.48,26.1,138.27 +4883,5,E07000166,2,58.72,126.48,26.1,138.27 +5514,5,E07000166,3,63.38,148.99,26.1,161.86 +5861,7,E07000166,3,56.86,148.99,26.1,161.86 +6119,5,E07000166,4,73.64,204.74,26.1,222.95 +6217,7,E07000166,4,64.31,204.74,26.1,222.95 +6729,9,E07000166,1,51.27,121.95,26.1,132.65 +7055,9,E07000166,2,53.13,158.09,26.1,172.84 +7381,9,E07000166,3,63.38,186.23,26.1,202.34 +7707,9,E07000166,4,73.64,255.92,26.1,278.69 +8033,10,E07000166,0,52.28,281.43,18.44,306.45 +211,1,E08000005,1,52.2,94.33,26.1,117.9 +537,1,E08000005,2,59.66,108.27,26.1,136.13 +863,1,E08000005,3,66.17,121.11,26.1,146.84 +1189,1,E08000005,4,72.71,135.06,26.1,160.78 +1515,3,E08000005,1,43.8,86.81,26.1,101.83 +1841,3,E08000005,2,54.06,95.42,26.1,114.68 +2167,3,E08000005,3,58.72,106.12,26.1,125.4 +2493,3,E08000005,4,55.93,120.05,26.1,135.06 +2819,2,E08000005,0,55.36,236.93,18.44,338.29 +3145,4,E08000005,0,32.8,464.43,18.44,592.92 +3471,6,E08000005,0,55.36,213.35,18.44,233.38 +3797,8,E08000005,0,32.8,213.35,18.44,233.38 +4375,5,E08000005,1,52.2,96.49,26.1,105.05 +4487,7,E08000005,1,43.8,96.49,26.1,105.05 +4945,5,E08000005,2,59.66,110.39,26.1,120.05 +5083,7,E08000005,2,54.06,110.39,26.1,120.05 +5588,5,E08000005,3,66.17,131.84,26.1,144.7 +5763,7,E08000005,3,58.72,131.84,26.1,144.7 +6336,5,E08000005,4,72.71,194.01,26.1,212.24 +6387,7,E08000005,4,55.93,194.01,26.1,212.24 +6731,9,E08000005,1,52.2,120.59,26.1,131.29 +7057,9,E08000005,2,59.66,138.01,26.1,150.06 +7383,9,E08000005,3,66.17,164.8,26.1,180.87 +7709,9,E08000005,4,72.71,242.51,26.1,265.29 +8035,10,E08000005,0,55.36,266.69,18.44,291.74 +212,1,E07000075,1,54.99,120.05,26.1,150.06 +538,1,E07000075,2,65.24,143.62,26.1,169.36 +864,1,E07000075,3,71.78,157.56,26.1,182.22 +1190,1,E07000075,4,82.02,172.58,26.1,180.08 +1516,3,E07000075,1,50.34,100.76,26.1,132.91 +1842,3,E07000075,2,58.72,118.97,26.1,133.98 +2168,3,E07000075,3,64.31,131.84,26.1,144.7 +2494,3,E07000075,4,71.78,150.06,26.1,160.78 +2820,2,E07000075,0,35.87,223.96,18.44,418.45 +3146,4,E07000075,0,55.36,134.38,18.44,314.73 +3472,6,E07000075,0,35.87,325.34,18.44,354.8 +3798,8,E07000075,0,55.36,325.34,18.44,354.8 +4149,5,E07000075,1,54.99,136.13,26.1,148.99 +4266,7,E07000075,1,50.34,136.13,26.1,148.99 +4730,5,E07000075,2,65.24,182.22,26.1,199.38 +4992,7,E07000075,2,58.72,182.22,26.1,199.38 +5449,5,E07000075,3,71.78,216.52,26.1,236.89 +5635,7,E07000075,3,64.31,216.52,26.1,236.89 +6159,5,E07000075,4,82.02,295.83,26.1,322.64 +6297,7,E07000075,4,71.78,295.83,26.1,322.64 +6732,9,E07000075,1,54.99,170.16,26.1,186.23 +7058,9,E07000075,2,65.24,227.8,26.1,249.22 +7384,9,E07000075,3,71.78,270.66,26.1,296.11 +7710,9,E07000075,4,82.02,369.81,26.1,403.3 +8036,10,E07000075,0,35.87,406.66,18.44,443.51 +213,1,E07000125,1,52.2,94.33,26.1,117.9 +539,1,E07000125,2,59.66,108.27,26.1,136.13 +865,1,E07000125,3,66.17,121.11,26.1,146.84 +1191,1,E07000125,4,72.71,135.06,26.1,160.78 +1517,3,E07000125,1,43.8,86.81,26.1,101.83 +1843,3,E07000125,2,54.06,95.42,26.1,114.68 +2169,3,E07000125,3,58.72,106.12,26.1,125.4 +2495,3,E07000125,4,55.93,120.05,26.1,135.06 +2821,2,E07000125,0,55.36,236.93,18.44,338.29 +3147,4,E07000125,0,32.8,464.43,18.44,592.92 +3473,6,E07000125,0,55.36,201.56,18.44,220.42 +3799,8,E07000125,0,32.8,201.56,18.44,220.42 +4376,5,E07000125,1,52.2,92.19,26.1,99.69 +4488,7,E07000125,1,43.8,92.19,26.1,99.69 +4946,5,E07000125,2,59.66,110.39,26.1,120.05 +5084,7,E07000125,2,54.06,110.39,26.1,120.05 +5589,5,E07000125,3,66.17,126.48,26.1,138.27 +5764,7,E07000125,3,58.72,126.48,26.1,138.27 +6337,5,E07000125,4,72.71,183.29,26.1,200.45 +6388,7,E07000125,4,55.93,183.29,26.1,200.45 +6733,9,E07000125,1,52.2,115.24,26.1,124.6 +7059,9,E07000125,2,59.66,138.01,26.1,150.06 +7385,9,E07000125,3,66.17,158.09,26.1,172.84 +7711,9,E07000125,4,72.71,229.13,26.1,250.54 +8037,10,E07000125,0,55.36,251.95,18.44,275.54 +214,1,E07000064,1,57.79,124.33,26.1,177.93 +540,1,E07000064,2,71.78,147.91,26.1,188.66 +866,1,E07000064,3,82.02,162.93,26.1,205.81 +1192,1,E07000064,4,90.42,180.08,26.1,224.01 +1518,3,E07000064,1,52.2,116.83,26.1,160.78 +1844,3,E07000064,2,63.38,130.77,26.1,146.84 +2170,3,E07000064,3,68.97,151.13,26.1,187.58 +2496,3,E07000064,4,73.64,186.51,26.1,196.15 +2822,2,E07000064,0,61.49,265.21,18.44,340.65 +3148,4,E07000064,0,48.18,193.32,18.44,202.73 +3474,6,E07000064,0,61.49,312.38,18.44,340.65 +3800,8,E07000064,0,48.18,312.38,18.44,340.65 +4021,5,E07000064,1,57.79,117.9,26.1,128.63 +4088,7,E07000064,1,52.2,117.9,26.1,128.63 +4636,5,E07000064,2,71.78,148.99,26.1,161.86 +4783,7,E07000064,2,63.38,148.99,26.1,161.86 +5288,5,E07000064,3,82.02,200.45,26.1,217.59 +5388,7,E07000064,3,68.97,200.45,26.1,217.59 +5973,5,E07000064,4,90.42,284.04,26.1,309.78 +6077,7,E07000064,4,73.64,284.04,26.1,309.78 +6734,9,E07000064,1,57.79,147.38,26.1,160.78 +7060,9,E07000064,2,71.78,186.23,26.1,202.34 +7386,9,E07000064,3,82.02,250.54,26.1,271.98 +7712,9,E07000064,4,90.42,355.06,26.1,387.21 +8038,10,E07000064,0,61.49,390.47,18.44,425.82 +215,1,E08000018,1,51.27,92.19,26.1,114.68 +541,1,E08000018,2,58.72,109.33,26.1,141.49 +867,1,E08000018,3,63.38,121.11,26.1,162.93 +1193,1,E08000018,4,73.64,145.77,26.1,180.08 +1519,3,E08000018,1,46.6,82.54,26.1,93.26 +1845,3,E08000018,2,53.13,113.61,26.1,145.77 +2171,3,E08000018,3,56.86,105.05,26.1,114.68 +2497,3,E08000018,4,64.31,122.19,26.1,176.86 +2823,2,E08000018,0,52.28,232.2,18.44,319.44 +3149,4,E08000018,0,51.26,159.13,18.44,188.6 +3475,6,E08000018,0,52.28,189.79,18.44,206.28 +3801,8,E08000018,0,51.26,189.79,18.44,206.28 +4404,5,E08000018,1,51.27,87.89,26.1,95.42 +4558,7,E08000018,1,46.6,87.89,26.1,95.42 +4826,7,E08000018,2,53.13,114.68,26.1,124.33 +4884,5,E08000018,2,58.72,114.68,26.1,124.33 +5515,5,E08000018,3,63.38,126.48,26.1,138.27 +5862,7,E08000018,3,56.86,126.48,26.1,138.27 +6120,5,E08000018,4,73.64,172.58,26.1,187.58 +6218,7,E08000018,4,64.31,172.58,26.1,187.58 +6735,9,E08000018,1,51.27,109.88,26.1,119.25 +7061,9,E08000018,2,53.13,143.37,26.1,155.41 +7387,9,E08000018,3,63.38,158.09,26.1,172.84 +7713,9,E08000018,4,73.64,215.73,26.1,234.49 +8039,10,E08000018,0,52.28,237.24,18.44,257.84 +216,1,E07000220,1,53.13,99.69,26.1,125.4 +542,1,E07000220,2,58.72,117.9,26.1,138.27 +868,1,E07000220,3,69.9,133.98,26.1,161.86 +1194,1,E07000220,4,81.09,162.93,26.1,180.08 +1520,3,E07000220,1,46.6,88.96,26.1,98.62 +1846,3,E07000220,2,50.34,95.42,26.1,103.98 +2172,3,E07000220,3,60.59,105.05,26.1,121.11 +2498,3,E07000220,4,68.97,128.63,26.1,128.63 +2824,2,E07000220,0,38.95,242.82,18.44,378.37 +3150,4,E07000220,0,46.12,106.09,18.44,106.09 +3476,6,E07000220,0,38.95,294.71,18.44,321.8 +3802,8,E07000220,0,46.12,294.71,18.44,321.8 +4294,5,E07000220,1,53.13,103.98,26.1,113.61 +4515,7,E07000220,1,46.6,103.98,26.1,113.61 +4904,5,E07000220,2,58.72,126.48,26.1,138.27 +5200,7,E07000220,2,50.34,126.48,26.1,138.27 +5535,5,E07000220,3,69.9,155.41,26.1,169.36 +5791,7,E07000220,3,60.59,155.41,26.1,169.36 +6187,5,E07000220,4,81.09,267.97,26.1,292.61 +6452,7,E07000220,4,68.97,267.97,26.1,292.61 +6736,9,E07000220,1,53.13,129.97,26.1,142.02 +7062,9,E07000220,2,58.72,158.09,26.1,172.84 +7388,9,E07000220,3,69.9,194.27,26.1,211.69 +7714,9,E07000220,4,81.09,334.98,26.1,365.79 +8040,10,E07000220,0,38.95,368.37,18.44,402.27 +217,1,E07000212,1,57.79,124.33,26.1,177.93 +543,1,E07000212,2,71.78,147.91,26.1,188.66 +869,1,E07000212,3,82.02,162.93,26.1,205.81 +1195,1,E07000212,4,90.42,180.08,26.1,224.01 +1521,3,E07000212,1,52.2,116.83,26.1,160.78 +1847,3,E07000212,2,63.38,130.77,26.1,146.84 +2173,3,E07000212,3,68.97,151.13,26.1,187.58 +2499,3,E07000212,4,73.64,186.51,26.1,196.15 +2825,2,E07000212,0,61.49,265.21,18.44,340.65 +3151,4,E07000212,0,48.18,193.32,18.44,202.73 +3477,6,E07000212,0,61.49,598.8,18.44,653.04 +3803,8,E07000212,0,48.18,598.8,18.44,653.04 +4022,5,E07000212,1,57.79,183.29,26.1,200.45 +4089,7,E07000212,1,52.2,183.29,26.1,200.45 +4637,5,E07000212,2,71.78,250.82,26.1,273.34 +4784,7,E07000212,2,63.38,250.82,26.1,273.34 +5289,5,E07000212,3,82.02,307.63,26.1,335.49 +5389,7,E07000212,3,68.97,307.63,26.1,335.49 +5974,5,E07000212,4,90.42,544.51,26.1,593.82 +6078,7,E07000212,4,73.64,544.51,26.1,593.82 +6737,9,E07000212,1,57.79,229.13,26.1,250.54 +7063,9,E07000212,2,71.78,313.51,26.1,341.67 +7389,9,E07000212,3,82.02,384.53,26.1,419.36 +7715,9,E07000212,4,90.42,680.64,26.1,742.29 +8041,10,E07000212,0,61.49,748.51,18.44,816.29 +218,1,E07000176,1,52.2,100.76,26.1,123.26 +544,1,E07000176,2,62.45,115.76,26.1,130.77 +870,1,E07000176,3,68.97,127.56,26.1,139.34 +1196,1,E07000176,4,76.43,159.7,26.1,168.29 +1522,3,E07000176,1,46.6,91.12,26.1,108.27 +1848,3,E07000176,2,53.13,97.54,26.1,109.33 +2174,3,E07000176,3,58.72,105.05,26.1,120.05 +2500,3,E07000176,4,64.31,123.26,26.1,123.26 +2826,2,E07000176,0,51.26,238.1,18.44,357.17 +3152,4,E07000176,0,49.2,113.15,18.44,122.59 +3478,6,E07000176,0,51.26,300.58,18.44,327.69 +3804,8,E07000176,0,49.2,300.58,18.44,327.69 +4343,5,E07000176,1,52.2,110.39,26.1,120.05 +4443,7,E07000176,1,46.6,110.39,26.1,120.05 +5039,5,E07000176,2,62.45,136.13,26.1,148.99 +5179,7,E07000176,2,53.13,136.13,26.1,148.99 +5682,5,E07000176,3,68.97,172.58,26.1,187.58 +5840,7,E07000176,3,58.72,172.58,26.1,187.58 +6257,5,E07000176,4,76.43,273.34,26.1,297.99 +6501,7,E07000176,4,64.31,273.34,26.1,297.99 +6738,9,E07000176,1,52.2,138.01,26.1,150.06 +7064,9,E07000176,2,62.45,170.16,26.1,186.23 +7390,9,E07000176,3,68.97,215.73,26.1,234.49 +7716,9,E07000176,4,76.43,341.67,26.1,372.48 +8042,10,E07000176,0,51.26,375.73,18.44,409.61 +219,1,E07000092,1,57.79,124.33,26.1,177.93 +545,1,E07000092,2,71.78,147.91,26.1,188.66 +871,1,E07000092,3,82.02,162.93,26.1,205.81 +1197,1,E07000092,4,90.42,180.08,26.1,224.01 +1523,3,E07000092,1,52.2,116.83,26.1,160.78 +1849,3,E07000092,2,63.38,130.77,26.1,146.84 +2175,3,E07000092,3,68.97,151.13,26.1,187.58 +2501,3,E07000092,4,73.64,186.51,26.1,196.15 +2827,2,E07000092,0,61.49,265.21,18.44,340.65 +3153,4,E07000092,0,48.18,193.32,18.44,202.73 +3479,6,E07000092,0,61.49,374.83,18.44,409.03 +3805,8,E07000092,0,48.18,374.83,18.44,409.03 +4023,5,E07000092,1,57.79,148.99,26.1,161.86 +4090,7,E07000092,1,52.2,148.99,26.1,161.86 +4638,5,E07000092,2,71.78,183.29,26.1,200.45 +4785,7,E07000092,2,63.38,183.29,26.1,200.45 +5290,5,E07000092,3,82.02,240.09,26.1,261.54 +5390,7,E07000092,3,68.97,240.09,26.1,261.54 +5975,5,E07000092,4,90.42,340.85,26.1,371.94 +6079,7,E07000092,4,73.64,340.85,26.1,371.94 +6739,9,E07000092,1,57.79,186.23,26.1,202.34 +7065,9,E07000092,2,71.78,229.13,26.1,250.54 +7391,9,E07000092,3,82.02,300.12,26.1,326.92 +7717,9,E07000092,4,90.42,426.06,26.1,464.91 +8043,10,E07000092,0,61.49,468.55,18.44,511.3 +220,1,E06000017,1,52.2,100.76,26.1,123.26 +546,1,E06000017,2,62.45,115.76,26.1,130.77 +872,1,E06000017,3,68.97,127.56,26.1,139.34 +1198,1,E06000017,4,76.43,159.7,26.1,168.29 +1524,3,E06000017,1,46.6,91.12,26.1,108.27 +1850,3,E06000017,2,53.13,97.54,26.1,109.33 +2176,3,E06000017,3,58.72,105.05,26.1,120.05 +2502,3,E06000017,4,64.31,123.26,26.1,123.26 +2828,2,E06000017,0,51.26,238.1,18.44,357.17 +3154,4,E06000017,0,49.2,113.15,18.44,122.59 +3480,6,E06000017,0,51.26,319.44,18.44,346.55 +3806,8,E06000017,0,49.2,319.44,18.44,346.55 +4344,5,E06000017,1,52.2,110.39,26.1,120.05 +4444,7,E06000017,1,46.6,110.39,26.1,120.05 +5040,5,E06000017,2,62.45,131.84,26.1,144.7 +5180,7,E06000017,2,53.13,131.84,26.1,144.7 +5683,5,E06000017,3,68.97,166.14,26.1,181.15 +5841,7,E06000017,3,58.72,166.14,26.1,181.15 +6258,5,E06000017,4,76.43,290.49,26.1,315.14 +6502,7,E06000017,4,64.31,290.49,26.1,315.14 +6740,9,E06000017,1,52.2,138.01,26.1,150.06 +7066,9,E06000017,2,62.45,164.8,26.1,180.87 +7392,9,E06000017,3,68.97,207.68,26.1,226.44 +7718,9,E06000017,4,76.43,363.1,26.1,393.91 +8044,10,E06000017,0,51.26,399.32,18.44,433.19 +221,1,E07000167,1,51.27,92.19,26.1,114.68 +547,1,E07000167,2,58.72,109.33,26.1,141.49 +873,1,E07000167,3,63.38,121.11,26.1,162.93 +1199,1,E07000167,4,73.64,145.77,26.1,180.08 +1525,3,E07000167,1,46.6,82.54,26.1,93.26 +1851,3,E07000167,2,53.13,113.61,26.1,145.77 +2177,3,E07000167,3,56.86,105.05,26.1,114.68 +2503,3,E07000167,4,64.31,122.19,26.1,176.86 +2829,2,E07000167,0,52.28,232.2,18.44,319.44 +3155,4,E07000167,0,51.26,159.13,18.44,188.6 +3481,6,E07000167,0,52.28,252.25,18.44,273.47 +3807,8,E07000167,0,51.26,252.25,18.44,273.47 +4405,5,E07000167,1,51.27,100.76,26.1,110.39 +4559,7,E07000167,1,46.6,100.76,26.1,110.39 +4827,7,E07000167,2,53.13,126.48,26.1,138.27 +4885,5,E07000167,2,58.72,126.48,26.1,138.27 +5516,5,E07000167,3,63.38,148.99,26.1,161.86 +5863,7,E07000167,3,56.86,148.99,26.1,161.86 +6121,5,E07000167,4,73.64,229.37,26.1,248.67 +6219,7,E07000167,4,64.31,229.37,26.1,248.67 +6741,9,E07000167,1,51.27,125.95,26.1,138.01 +7067,9,E07000167,2,53.13,158.09,26.1,172.84 +7393,9,E07000167,3,63.38,186.23,26.1,202.34 +7719,9,E07000167,4,73.64,286.72,26.1,310.84 +8045,10,E07000167,0,52.28,315.32,18.44,341.84 +222,1,E08000006,1,52.2,94.33,26.1,117.9 +548,1,E08000006,2,59.66,108.27,26.1,136.13 +874,1,E08000006,3,66.17,121.11,26.1,146.84 +1200,1,E08000006,4,72.71,135.06,26.1,160.78 +1526,3,E08000006,1,43.8,86.81,26.1,101.83 +1852,3,E08000006,2,54.06,95.42,26.1,114.68 +2178,3,E08000006,3,58.72,106.12,26.1,125.4 +2504,3,E08000006,4,55.93,120.05,26.1,135.06 +2830,2,E08000006,0,55.36,236.93,18.44,338.29 +3156,4,E08000006,0,32.8,464.43,18.44,592.92 +3482,6,E08000006,0,55.36,269.94,18.44,294.71 +3808,8,E08000006,0,32.8,269.94,18.44,294.71 +4377,5,E08000006,1,52.2,114.68,26.1,124.33 +4489,7,E08000006,1,43.8,114.68,26.1,124.33 +4947,5,E08000006,2,59.66,131.84,26.1,144.7 +5085,7,E08000006,2,54.06,131.84,26.1,144.7 +5590,5,E08000006,3,66.17,148.99,26.1,161.86 +5765,7,E08000006,3,58.72,148.99,26.1,161.86 +6338,5,E08000006,4,72.71,245.47,26.1,267.97 +6389,7,E08000006,4,55.93,245.47,26.1,267.97 +6742,9,E08000006,1,52.2,143.37,26.1,155.41 +7068,9,E08000006,2,59.66,164.8,26.1,180.87 +7394,9,E08000006,3,66.17,186.23,26.1,202.34 +7720,9,E08000006,4,72.71,306.81,26.1,334.98 +8046,10,E08000006,0,55.36,337.42,18.44,368.37 +223,1,E08000028,1,53.13,99.69,26.1,125.4 +549,1,E08000028,2,58.72,117.9,26.1,138.27 +875,1,E08000028,3,69.9,133.98,26.1,161.86 +1201,1,E08000028,4,81.09,162.93,26.1,180.08 +1527,3,E08000028,1,46.6,88.96,26.1,98.62 +1853,3,E08000028,2,50.34,95.42,26.1,103.98 +2179,3,E08000028,3,60.59,105.05,26.1,121.11 +2505,3,E08000028,4,68.97,128.63,26.1,128.63 +2831,2,E08000028,0,38.95,242.82,18.44,378.37 +3157,4,E08000028,0,46.12,106.09,18.44,106.09 +3483,6,E08000028,0,38.95,201.56,18.44,220.42 +3809,8,E08000028,0,46.12,201.56,18.44,220.42 +4295,5,E08000028,1,53.13,100.76,26.1,110.39 +4516,7,E08000028,1,46.6,100.76,26.1,110.39 +4905,5,E08000028,2,58.72,121.11,26.1,131.84 +5201,7,E08000028,2,50.34,121.11,26.1,131.84 +5536,5,E08000028,3,69.9,136.13,26.1,148.99 +5792,7,E08000028,3,60.59,136.13,26.1,148.99 +6188,5,E08000028,4,81.09,183.29,26.1,200.45 +6453,7,E08000028,4,68.97,183.29,26.1,200.45 +6743,9,E08000028,1,53.13,125.95,26.1,138.01 +7069,9,E08000028,2,58.72,151.41,26.1,164.8 +7395,9,E08000028,3,69.9,170.16,26.1,186.23 +7721,9,E08000028,4,81.09,229.13,26.1,250.54 +8047,10,E08000028,0,38.95,251.95,18.44,275.54 +224,1,E07000168,1,51.27,92.19,26.1,114.68 +550,1,E07000168,2,58.72,109.33,26.1,141.49 +876,1,E07000168,3,63.38,121.11,26.1,162.93 +1202,1,E07000168,4,73.64,145.77,26.1,180.08 +1528,3,E07000168,1,46.6,82.54,26.1,93.26 +1854,3,E07000168,2,53.13,113.61,26.1,145.77 +2180,3,E07000168,3,56.86,105.05,26.1,114.68 +2506,3,E07000168,4,64.31,122.19,26.1,176.86 +2832,2,E07000168,0,52.28,232.2,18.44,319.44 +3158,4,E07000168,0,51.26,159.13,18.44,188.6 +3484,6,E07000168,0,52.28,174.46,18.44,192.14 +3810,8,E07000168,0,51.26,174.46,18.44,192.14 +4406,5,E07000168,1,51.27,91.12,26.1,98.62 +4560,7,E07000168,1,46.6,91.12,26.1,98.62 +4828,7,E07000168,2,53.13,120.05,26.1,130.77 +4886,5,E07000168,2,58.72,120.05,26.1,130.77 +5517,5,E07000168,3,63.38,138.27,26.1,150.06 +5864,7,E07000168,3,56.86,138.27,26.1,150.06 +6122,5,E07000168,4,73.64,159.7,26.1,174.72 +6220,7,E07000168,4,64.31,159.7,26.1,174.72 +6744,9,E07000168,1,51.27,113.9,26.1,123.26 +7070,9,E07000168,2,53.13,150.06,26.1,163.46 +7396,9,E07000168,3,63.38,172.84,26.1,187.57 +7722,9,E07000168,4,73.64,199.62,26.1,218.38 +8048,10,E07000168,0,52.28,218.08,18.44,240.17 +225,1,E07000188,1,49.41,108.27,26.1,141.49 +551,1,E07000188,2,55.93,122.19,26.1,145.77 +877,1,E07000188,3,62.45,142.56,26.1,162.93 +1203,1,E07000188,4,71.78,159.7,26.1,196.15 +1529,3,E07000188,1,47.54,90.03,26.1,212.24 +1855,3,E07000188,2,54.99,101.83,26.1,112.54 +2181,3,E07000188,3,62.45,110.39,26.1,127.56 +2507,3,E07000188,4,74.57,131.84,26.1,131.84 +2833,2,E07000188,0,54.33,228.68,18.44,354.8 +3159,4,E07000188,0,54.33,114.33,18.44,140.27 +3485,6,E07000188,0,54.33,244,18.44,266.39 +3811,8,E07000188,0,54.33,244,18.44,266.39 +3934,7,E07000188,1,47.54,103.98,26.1,113.61 +4218,5,E07000188,1,49.41,103.98,26.1,113.61 +4854,5,E07000188,2,55.93,128.63,26.1,141.49 +5131,7,E07000188,2,54.99,128.63,26.1,141.49 +5485,5,E07000188,3,62.45,159.7,26.1,174.72 +5711,7,E07000188,3,62.45,159.7,26.1,174.72 +6023,5,E07000188,4,71.78,221.88,26.1,242.25 +6423,7,E07000188,4,74.57,221.88,26.1,242.25 +6745,9,E07000188,1,49.41,129.97,26.1,142.02 +7071,9,E07000188,2,55.93,160.78,26.1,176.86 +7397,9,E07000188,3,62.45,199.62,26.1,218.38 +7723,9,E07000188,4,71.78,277.34,26.1,302.81 +8049,10,E07000188,0,54.33,305,18.44,332.99 +226,1,E08000014,1,52.2,94.33,26.1,117.9 +552,1,E08000014,2,59.66,108.27,26.1,136.13 +878,1,E08000014,3,66.17,121.11,26.1,146.84 +1204,1,E08000014,4,72.71,135.06,26.1,160.78 +1530,3,E08000014,1,43.8,86.81,26.1,101.83 +1856,3,E08000014,2,54.06,95.42,26.1,114.68 +2182,3,E08000014,3,58.72,106.12,26.1,125.4 +2508,3,E08000014,4,55.93,120.05,26.1,135.06 +2834,2,E08000014,0,55.36,236.93,18.44,338.29 +3160,4,E08000014,0,32.8,464.43,18.44,592.92 +3486,6,E08000014,0,55.36,244,18.44,266.39 +3812,8,E08000014,0,32.8,244,18.44,266.39 +4378,5,E08000014,1,52.2,103.98,26.1,113.61 +4490,7,E08000014,1,43.8,103.98,26.1,113.61 +4948,5,E08000014,2,59.66,132.91,26.1,145.77 +5086,7,E08000014,2,54.06,132.91,26.1,145.77 +5591,5,E08000014,3,66.17,155.41,26.1,169.36 +5766,7,E08000014,3,58.72,155.41,26.1,169.36 +6339,5,E08000014,4,72.71,221.88,26.1,242.25 +6390,7,E08000014,4,55.93,221.88,26.1,242.25 +6746,9,E08000014,1,52.2,129.97,26.1,142.02 +7072,9,E08000014,2,59.66,166.13,26.1,182.21 +7398,9,E08000014,3,66.17,194.27,26.1,211.69 +7724,9,E08000014,4,72.71,277.34,26.1,302.81 +8050,10,E08000014,0,55.36,305,18.44,332.99 +227,1,E07000169,1,51.27,92.19,26.1,114.68 +553,1,E07000169,2,58.72,109.33,26.1,141.49 +879,1,E07000169,3,63.38,121.11,26.1,162.93 +1205,1,E07000169,4,73.64,145.77,26.1,180.08 +1531,3,E07000169,1,46.6,82.54,26.1,93.26 +1857,3,E07000169,2,53.13,113.61,26.1,145.77 +2183,3,E07000169,3,56.86,105.05,26.1,114.68 +2509,3,E07000169,4,64.31,122.19,26.1,176.86 +2835,2,E07000169,0,52.28,232.2,18.44,319.44 +3161,4,E07000169,0,51.26,159.13,18.44,188.6 +3487,6,E07000169,0,52.28,213.35,18.44,233.38 +3813,8,E07000169,0,51.26,213.35,18.44,233.38 +4407,5,E07000169,1,51.27,102.91,26.1,112.54 +4561,7,E07000169,1,46.6,102.91,26.1,112.54 +4829,7,E07000169,2,53.13,121.11,26.1,131.84 +4887,5,E07000169,2,58.72,121.11,26.1,131.84 +5518,5,E07000169,3,63.38,148.99,26.1,161.86 +5865,7,E07000169,3,56.86,148.99,26.1,161.86 +6123,5,E07000169,4,73.64,194.01,26.1,212.24 +6221,7,E07000169,4,64.31,194.01,26.1,212.24 +6747,9,E07000169,1,51.27,128.63,26.1,140.68 +7073,9,E07000169,2,53.13,151.41,26.1,164.8 +7399,9,E07000169,3,63.38,186.23,26.1,202.34 +7725,9,E07000169,4,73.64,242.51,26.1,265.29 +8051,10,E07000169,0,52.28,266.69,18.44,291.74 +228,1,E07000111,1,57.79,124.33,26.1,177.93 +554,1,E07000111,2,71.78,147.91,26.1,188.66 +880,1,E07000111,3,82.02,162.93,26.1,205.81 +1206,1,E07000111,4,90.42,180.08,26.1,224.01 +1532,3,E07000111,1,52.2,116.83,26.1,160.78 +1858,3,E07000111,2,63.38,130.77,26.1,146.84 +2184,3,E07000111,3,68.97,151.13,26.1,187.58 +2510,3,E07000111,4,73.64,186.51,26.1,196.15 +2836,2,E07000111,0,61.49,265.21,18.44,340.65 +3162,4,E07000111,0,48.18,193.32,18.44,202.73 +3488,6,E07000111,0,61.49,697.84,18.44,761.47 +3814,8,E07000111,0,48.18,697.84,18.44,761.47 +4024,5,E07000111,1,57.79,160.78,26.1,175.78 +4091,7,E07000111,1,52.2,160.78,26.1,175.78 +4639,5,E07000111,2,71.78,216.52,26.1,236.89 +4786,7,E07000111,2,63.38,216.52,26.1,236.89 +5291,5,E07000111,3,82.02,318.35,26.1,346.22 +5391,7,E07000111,3,68.97,318.35,26.1,346.22 +5976,5,E07000111,4,90.42,634.56,26.1,692.43 +6080,7,E07000111,4,73.64,634.56,26.1,692.43 +6748,9,E07000111,1,57.79,200.97,26.1,219.74 +7074,9,E07000111,2,71.78,270.66,26.1,296.11 +7400,9,E07000111,3,82.02,397.93,26.1,432.75 +7726,9,E07000111,4,90.42,793.2,26.1,865.54 +8052,10,E07000111,0,61.49,872.3,18.44,951.83 +229,1,E08000019,1,51.27,92.19,26.1,114.68 +555,1,E08000019,2,58.72,109.33,26.1,141.49 +881,1,E08000019,3,63.38,121.11,26.1,162.93 +1207,1,E08000019,4,73.64,145.77,26.1,180.08 +1533,3,E08000019,1,46.6,82.54,26.1,93.26 +1859,3,E08000019,2,53.13,113.61,26.1,145.77 +2185,3,E08000019,3,56.86,105.05,26.1,114.68 +2511,3,E08000019,4,64.31,122.19,26.1,176.86 +2837,2,E08000019,0,52.28,232.2,18.44,319.44 +3163,4,E08000019,0,51.26,159.13,18.44,188.6 +3489,6,E08000019,0,52.28,232.2,18.44,253.42 +3815,8,E08000019,0,51.26,232.2,18.44,253.42 +4408,5,E08000019,1,51.27,115.76,26.1,125.4 +4562,7,E08000019,1,46.6,115.76,26.1,125.4 +4830,7,E08000019,2,53.13,131.84,26.1,144.7 +4888,5,E08000019,2,58.72,131.84,26.1,144.7 +5519,5,E08000019,3,63.38,138.27,26.1,150.06 +5866,7,E08000019,3,56.86,138.27,26.1,150.06 +6124,5,E08000019,4,73.64,211.17,26.1,230.44 +6222,7,E08000019,4,64.31,211.17,26.1,230.44 +6749,9,E08000019,1,51.27,144.7,26.1,156.77 +7075,9,E08000019,2,53.13,164.8,26.1,180.87 +7401,9,E08000019,3,63.38,172.84,26.1,187.57 +7727,9,E08000019,4,73.64,263.95,26.1,288.07 +8053,10,E08000019,0,52.28,290.27,18.44,316.79 +230,1,E07000112,1,57.79,124.33,26.1,177.93 +556,1,E07000112,2,71.78,147.91,26.1,188.66 +882,1,E07000112,3,82.02,162.93,26.1,205.81 +1208,1,E07000112,4,90.42,180.08,26.1,224.01 +1534,3,E07000112,1,52.2,116.83,26.1,160.78 +1860,3,E07000112,2,63.38,130.77,26.1,146.84 +2186,3,E07000112,3,68.97,151.13,26.1,187.58 +2512,3,E07000112,4,73.64,186.51,26.1,196.15 +2838,2,E07000112,0,61.49,265.21,18.44,340.65 +3164,4,E07000112,0,48.18,193.32,18.44,202.73 +3490,6,E07000112,0,61.49,294.71,18.44,321.8 +3816,8,E07000112,0,48.18,294.71,18.44,321.8 +4025,5,E07000112,1,57.79,103.98,26.1,113.61 +4092,7,E07000112,1,52.2,103.98,26.1,113.61 +4640,5,E07000112,2,71.78,142.56,26.1,155.41 +4787,7,E07000112,2,63.38,142.56,26.1,155.41 +5292,5,E07000112,3,82.02,172.58,26.1,187.58 +5392,7,E07000112,3,68.97,172.58,26.1,187.58 +5977,5,E07000112,4,90.42,267.97,26.1,292.61 +6081,7,E07000112,4,73.64,267.97,26.1,292.61 +6750,9,E07000112,1,57.79,129.97,26.1,142.02 +7076,9,E07000112,2,71.78,178.2,26.1,194.27 +7402,9,E07000112,3,82.02,215.73,26.1,234.49 +7728,9,E07000112,4,90.42,334.98,26.1,365.79 +8054,10,E07000112,0,61.49,368.37,18.44,402.27 +231,1,E06000051,1,53.13,99.69,26.1,125.4 +557,1,E06000051,2,58.72,117.9,26.1,138.27 +883,1,E06000051,3,69.9,133.98,26.1,161.86 +1209,1,E06000051,4,81.09,162.93,26.1,180.08 +1535,3,E06000051,1,46.6,88.96,26.1,98.62 +1861,3,E06000051,2,50.34,95.42,26.1,103.98 +2187,3,E06000051,3,60.59,105.05,26.1,121.11 +2513,3,E06000051,4,68.97,128.63,26.1,128.63 +2839,2,E06000051,0,38.95,242.82,18.44,378.37 +3165,4,E06000051,0,46.12,106.09,18.44,106.09 +3491,6,E06000051,0,38.95,244,18.44,266.39 +3817,8,E06000051,0,46.12,244,18.44,266.39 +4296,5,E06000051,1,53.13,103.98,26.1,113.61 +4517,7,E06000051,1,46.6,103.98,26.1,113.61 +4906,5,E06000051,2,58.72,126.48,26.1,138.27 +5202,7,E06000051,2,50.34,126.48,26.1,138.27 +5537,5,E06000051,3,69.9,148.99,26.1,161.86 +5793,7,E06000051,3,60.59,148.99,26.1,161.86 +6189,5,E06000051,4,81.09,221.88,26.1,242.25 +6454,7,E06000051,4,68.97,221.88,26.1,242.25 +6751,9,E06000051,1,53.13,129.97,26.1,142.02 +7077,9,E06000051,2,58.72,158.09,26.1,172.84 +7403,9,E06000051,3,69.9,186.23,26.1,202.34 +7729,9,E06000051,4,81.09,277.34,26.1,302.81 +8055,10,E06000051,0,38.95,305,18.44,332.99 +232,1,E06000039,1,57.79,124.33,26.1,177.93 +558,1,E06000039,2,71.78,147.91,26.1,188.66 +884,1,E06000039,3,82.02,162.93,26.1,205.81 +1210,1,E06000039,4,90.42,180.08,26.1,224.01 +1536,3,E06000039,1,52.2,116.83,26.1,160.78 +1862,3,E06000039,2,63.38,130.77,26.1,146.84 +2188,3,E06000039,3,68.97,151.13,26.1,187.58 +2514,3,E06000039,4,73.64,186.51,26.1,196.15 +2840,2,E06000039,0,61.49,265.21,18.44,340.65 +3166,4,E06000039,0,48.18,193.32,18.44,202.73 +3492,6,E06000039,0,61.49,374.83,18.44,409.03 +3818,8,E06000039,0,48.18,374.83,18.44,409.03 +4026,5,E06000039,1,57.79,155.41,26.1,169.36 +4093,7,E06000039,1,52.2,155.41,26.1,169.36 +4641,5,E06000039,2,71.78,194.01,26.1,212.24 +4788,7,E06000039,2,63.38,194.01,26.1,212.24 +5293,5,E06000039,3,82.02,240.09,26.1,261.54 +5393,7,E06000039,3,68.97,240.09,26.1,261.54 +5978,5,E06000039,4,90.42,340.85,26.1,371.94 +6082,7,E06000039,4,73.64,340.85,26.1,371.94 +6752,9,E06000039,1,57.79,194.27,26.1,211.69 +7078,9,E06000039,2,71.78,242.51,26.1,265.29 +7404,9,E06000039,3,82.02,300.12,26.1,326.92 +7730,9,E06000039,4,90.42,426.06,26.1,464.91 +8056,10,E06000039,0,61.49,468.55,18.44,511.3 +233,1,E08000029,1,53.13,99.69,26.1,125.4 +559,1,E08000029,2,58.72,117.9,26.1,138.27 +885,1,E08000029,3,69.9,133.98,26.1,161.86 +1211,1,E08000029,4,81.09,162.93,26.1,180.08 +1537,3,E08000029,1,46.6,88.96,26.1,98.62 +1863,3,E08000029,2,50.34,95.42,26.1,103.98 +2189,3,E08000029,3,60.59,105.05,26.1,121.11 +2515,3,E08000029,4,68.97,128.63,26.1,128.63 +2841,2,E08000029,0,38.95,242.82,18.44,378.37 +3167,4,E08000029,0,46.12,106.09,18.44,106.09 +3493,6,E08000029,0,38.95,398.42,18.44,434.96 +3819,8,E08000029,0,46.12,398.42,18.44,434.96 +4297,5,E08000029,1,53.13,126.48,26.1,138.27 +4518,7,E08000029,1,46.6,126.48,26.1,138.27 +4907,5,E08000029,2,58.72,160.78,26.1,175.78 +5203,7,E08000029,2,50.34,160.78,26.1,175.78 +5538,5,E08000029,3,69.9,194.01,26.1,212.24 +5794,7,E08000029,3,60.59,194.01,26.1,212.24 +6190,5,E08000029,4,81.09,362.28,26.1,395.52 +6455,7,E08000029,4,68.97,362.28,26.1,395.52 +6753,9,E08000029,1,53.13,158.09,26.1,172.84 +7079,9,E08000029,2,58.72,200.97,26.1,219.74 +7405,9,E08000029,3,69.9,242.51,26.1,265.29 +7731,9,E08000029,4,81.09,452.87,26.1,494.42 +8057,10,E08000029,0,38.95,498.02,18.44,543.71 +309,1,E07000246,1,49.41,108.27,26.1,141.49 +635,1,E07000246,2,55.93,122.19,26.1,145.77 +961,1,E07000246,3,62.45,142.56,26.1,162.93 +1287,1,E07000246,4,71.78,159.7,26.1,196.15 +1613,3,E07000246,1,47.54,90.03,26.1,212.24 +1939,3,E07000246,2,54.99,101.83,26.1,112.54 +2265,3,E07000246,3,62.45,110.39,26.1,127.56 +2591,3,E07000246,4,74.57,131.84,26.1,131.84 +2917,2,E07000246,0,54.33,228.68,18.44,354.8 +3243,4,E07000246,0,54.33,114.33,18.44,140.27 +3569,6,E07000246,0,54.33,275.83,18.44,300.58 +3895,8,E07000246,0,54.33,275.83,18.44,300.58 +3947,7,E07000246,1,47.54,114.68,26.1,124.33 +4231,5,E07000246,1,49.41,114.68,26.1,124.33 +4867,5,E07000246,2,55.93,138.27,26.1,150.06 +5144,7,E07000246,2,54.99,138.27,26.1,150.06 +5498,5,E07000246,3,62.45,166.14,26.1,181.15 +5724,7,E07000246,3,62.45,166.14,26.1,181.15 +6036,5,E07000246,4,71.78,250.82,26.1,273.34 +6436,7,E07000246,4,74.57,250.82,26.1,273.34 +6829,9,E07000246,1,49.41,143.37,26.1,155.41 +7155,9,E07000246,2,55.93,172.84,26.1,187.57 +7481,9,E07000246,3,62.45,207.68,26.1,226.44 +7807,9,E07000246,4,71.78,313.51,26.1,341.67 +8133,10,E07000246,0,54.33,344.81,18.44,375.73 +235,1,E07000012,1,54.99,120.05,26.1,150.06 +561,1,E07000012,2,65.24,143.62,26.1,169.36 +887,1,E07000012,3,71.78,157.56,26.1,182.22 +1213,1,E07000012,4,82.02,172.58,26.1,180.08 +1539,3,E07000012,1,50.34,100.76,26.1,132.91 +1865,3,E07000012,2,58.72,118.97,26.1,133.98 +2191,3,E07000012,3,64.31,131.84,26.1,144.7 +2517,3,E07000012,4,71.78,150.06,26.1,160.78 +2843,2,E07000012,0,35.87,223.96,18.44,418.45 +3169,4,E07000012,0,55.36,134.38,18.44,314.73 +3495,6,E07000012,0,35.87,351.26,18.44,383.09 +3821,8,E07000012,0,55.36,351.26,18.44,383.09 +4150,5,E07000012,1,54.99,148.99,26.1,161.86 +4267,7,E07000012,1,50.34,148.99,26.1,161.86 +4731,5,E07000012,2,65.24,172.58,26.1,187.58 +4993,7,E07000012,2,58.72,172.58,26.1,187.58 +5450,5,E07000012,3,71.78,204.74,26.1,222.95 +5636,7,E07000012,3,64.31,204.74,26.1,222.95 +6160,5,E07000012,4,82.02,319.42,26.1,348.36 +6298,7,E07000012,4,71.78,319.42,26.1,348.36 +6755,9,E07000012,1,54.99,186.23,26.1,202.34 +7081,9,E07000012,2,65.24,215.73,26.1,234.49 +7407,9,E07000012,3,71.78,255.92,26.1,278.69 +7733,9,E07000012,4,82.02,399.29,26.1,435.45 +8059,10,E07000012,0,35.87,439.1,18.44,478.86 +236,1,E07000039,1,52.2,100.76,26.1,123.26 +562,1,E07000039,2,62.45,115.76,26.1,130.77 +888,1,E07000039,3,68.97,127.56,26.1,139.34 +1214,1,E07000039,4,76.43,159.7,26.1,168.29 +1540,3,E07000039,1,46.6,91.12,26.1,108.27 +1866,3,E07000039,2,53.13,97.54,26.1,109.33 +2192,3,E07000039,3,58.72,105.05,26.1,120.05 +2518,3,E07000039,4,64.31,123.26,26.1,123.26 +2844,2,E07000039,0,51.26,238.1,18.44,357.17 +3170,4,E07000039,0,49.2,113.15,18.44,122.59 +3496,6,E07000039,0,51.26,274.65,18.44,300.58 +3822,8,E07000039,0,49.2,274.65,18.44,300.58 +4345,5,E07000039,1,52.2,103.98,26.1,113.61 +4445,7,E07000039,1,46.6,103.98,26.1,113.61 +5041,5,E07000039,2,62.45,126.48,26.1,138.27 +5181,7,E07000039,2,53.13,126.48,26.1,138.27 +5684,5,E07000039,3,68.97,148.99,26.1,161.86 +5842,7,E07000039,3,58.72,148.99,26.1,161.86 +6259,5,E07000039,4,76.43,249.75,26.1,273.34 +6503,7,E07000039,4,64.31,249.75,26.1,273.34 +6756,9,E07000039,1,52.2,129.97,26.1,142.02 +7082,9,E07000039,2,62.45,158.09,26.1,172.84 +7408,9,E07000039,3,68.97,186.23,26.1,202.34 +7734,9,E07000039,4,76.43,312.18,26.1,341.67 +8060,10,E07000039,0,51.26,343.33,18.44,375.73 +237,1,E06000025,1,49.41,108.27,26.1,141.49 +563,1,E06000025,2,55.93,122.19,26.1,145.77 +889,1,E06000025,3,62.45,142.56,26.1,162.93 +1215,1,E06000025,4,71.78,159.7,26.1,196.15 +1541,3,E06000025,1,47.54,90.03,26.1,212.24 +1867,3,E06000025,2,54.99,101.83,26.1,112.54 +2193,3,E06000025,3,62.45,110.39,26.1,127.56 +2519,3,E06000025,4,74.57,131.84,26.1,131.84 +2845,2,E06000025,0,54.33,228.68,18.44,354.8 +3171,4,E06000025,0,54.33,114.33,18.44,140.27 +3497,6,E06000025,0,54.33,299.41,18.44,326.52 +3823,8,E06000025,0,54.33,299.41,18.44,326.52 +3935,7,E06000025,1,47.54,126.48,26.1,138.27 +4219,5,E06000025,1,49.41,126.48,26.1,138.27 +4855,5,E06000025,2,55.93,152.21,26.1,166.14 +5132,7,E06000025,2,54.99,152.21,26.1,166.14 +5486,5,E06000025,3,62.45,188.66,26.1,205.81 +5712,7,E06000025,3,62.45,188.66,26.1,205.81 +6024,5,E06000025,4,71.78,272.26,26.1,296.91 +6424,7,E06000025,4,74.57,272.26,26.1,296.91 +6757,9,E06000025,1,49.41,158.09,26.1,172.84 +7083,9,E06000025,2,55.93,190.26,26.1,207.68 +7409,9,E06000025,3,62.45,235.82,26.1,257.26 +7735,9,E06000025,4,71.78,340.33,26.1,371.13 +8061,10,E06000025,0,54.33,374.27,18.44,408.14 +238,1,E07000044,1,49.41,108.27,26.1,141.49 +564,1,E07000044,2,55.93,122.19,26.1,145.77 +890,1,E07000044,3,62.45,142.56,26.1,162.93 +1216,1,E07000044,4,71.78,159.7,26.1,196.15 +1542,3,E07000044,1,47.54,90.03,26.1,212.24 +1868,3,E07000044,2,54.99,101.83,26.1,112.54 +2194,3,E07000044,3,62.45,110.39,26.1,127.56 +2520,3,E07000044,4,74.57,131.84,26.1,131.84 +2846,2,E07000044,0,54.33,228.68,18.44,354.8 +3172,4,E07000044,0,54.33,114.33,18.44,140.27 +3498,6,E07000044,0,54.33,275.83,18.44,300.58 +3824,8,E07000044,0,54.33,275.83,18.44,300.58 +3936,7,E07000044,1,47.54,114.68,26.1,125.4 +4220,5,E07000044,1,49.41,114.68,26.1,125.4 +4856,5,E07000044,2,55.93,143.62,26.1,156.49 +5133,7,E07000044,2,54.99,143.62,26.1,156.49 +5487,5,E07000044,3,62.45,182.22,26.1,199.38 +5713,7,E07000044,3,62.45,182.22,26.1,199.38 +6025,5,E07000044,4,71.78,250.82,26.1,273.34 +6425,7,E07000044,4,74.57,250.82,26.1,273.34 +6758,9,E07000044,1,49.41,143.37,26.1,156.77 +7084,9,E07000044,2,55.93,179.53,26.1,195.6 +7410,9,E07000044,3,62.45,227.8,26.1,249.22 +7736,9,E07000044,4,71.78,313.51,26.1,341.67 +8062,10,E07000044,0,54.33,344.81,18.44,375.73 +239,1,E07000140,1,52.2,100.76,26.1,123.26 +565,1,E07000140,2,62.45,115.76,26.1,130.77 +891,1,E07000140,3,68.97,127.56,26.1,139.34 +1217,1,E07000140,4,76.43,159.7,26.1,168.29 +1543,3,E07000140,1,46.6,91.12,26.1,108.27 +1869,3,E07000140,2,53.13,97.54,26.1,109.33 +2195,3,E07000140,3,58.72,105.05,26.1,120.05 +2521,3,E07000140,4,64.31,123.26,26.1,123.26 +2847,2,E07000140,0,51.26,238.1,18.44,357.17 +3173,4,E07000140,0,49.2,113.15,18.44,122.59 +3499,6,E07000140,0,51.26,200.38,18.44,219.25 +3825,8,E07000140,0,49.2,200.38,18.44,219.25 +4346,5,E07000140,1,52.2,100.76,26.1,110.39 +4446,7,E07000140,1,46.6,100.76,26.1,110.39 +5042,5,E07000140,2,62.45,121.11,26.1,131.84 +5182,7,E07000140,2,53.13,121.11,26.1,131.84 +5685,5,E07000140,3,68.97,138.27,26.1,150.06 +5843,7,E07000140,3,58.72,138.27,26.1,150.06 +6260,5,E07000140,4,76.43,182.22,26.1,199.38 +6504,7,E07000140,4,64.31,182.22,26.1,199.38 +6759,9,E07000140,1,52.2,125.95,26.1,138.01 +7085,9,E07000140,2,62.45,151.41,26.1,164.8 +7411,9,E07000140,3,68.97,172.84,26.1,187.57 +7737,9,E07000140,4,76.43,227.8,26.1,249.22 +8063,10,E07000140,0,51.26,250.47,18.44,274.05 +240,1,E07000141,1,52.2,100.76,26.1,123.26 +566,1,E07000141,2,62.45,115.76,26.1,130.77 +892,1,E07000141,3,68.97,127.56,26.1,139.34 +1218,1,E07000141,4,76.43,159.7,26.1,168.29 +1544,3,E07000141,1,46.6,91.12,26.1,108.27 +1870,3,E07000141,2,53.13,97.54,26.1,109.33 +2196,3,E07000141,3,58.72,105.05,26.1,120.05 +2522,3,E07000141,4,64.31,123.26,26.1,123.26 +2848,2,E07000141,0,51.26,238.1,18.44,357.17 +3174,4,E07000141,0,49.2,113.15,18.44,122.59 +3500,6,E07000141,0,51.26,226.32,18.44,246.36 +3826,8,E07000141,0,49.2,226.32,18.44,246.36 +4347,5,E07000141,1,52.2,98.62,26.1,108.27 +4447,7,E07000141,1,46.6,98.62,26.1,108.27 +5043,5,E07000141,2,62.45,126.48,26.1,138.27 +5183,7,E07000141,2,53.13,126.48,26.1,138.27 +5686,5,E07000141,3,68.97,148.99,26.1,161.86 +5844,7,E07000141,3,58.72,148.99,26.1,161.86 +6261,5,E07000141,4,76.43,205.81,26.1,224.01 +6505,7,E07000141,4,64.31,205.81,26.1,224.01 +6760,9,E07000141,1,52.2,123.26,26.1,135.33 +7086,9,E07000141,2,62.45,158.09,26.1,172.84 +7412,9,E07000141,3,68.97,186.23,26.1,202.34 +7738,9,E07000141,4,76.43,257.26,26.1,280.03 +8064,10,E07000141,0,51.26,282.91,18.44,307.95 +241,1,E07000031,1,52.2,94.33,26.1,117.9 +567,1,E07000031,2,59.66,108.27,26.1,136.13 +893,1,E07000031,3,66.17,121.11,26.1,146.84 +1219,1,E07000031,4,72.71,135.06,26.1,160.78 +1545,3,E07000031,1,43.8,86.81,26.1,101.83 +1871,3,E07000031,2,54.06,95.42,26.1,114.68 +2197,3,E07000031,3,58.72,106.12,26.1,125.4 +2523,3,E07000031,4,55.93,120.05,26.1,135.06 +2849,2,E07000031,0,55.36,236.93,18.44,338.29 +3175,4,E07000031,0,32.8,464.43,18.44,592.92 +3501,6,E07000031,0,55.36,238.1,18.44,260.5 +3827,8,E07000031,0,32.8,238.1,18.44,260.5 +4379,5,E07000031,1,52.2,115.76,26.1,125.4 +4491,7,E07000031,1,43.8,115.76,26.1,125.4 +4949,5,E07000031,2,59.66,143.62,26.1,156.49 +5087,7,E07000031,2,54.06,143.62,26.1,156.49 +5592,5,E07000031,3,66.17,172.58,26.1,187.58 +5767,7,E07000031,3,58.72,172.58,26.1,187.58 +6340,5,E07000031,4,72.71,216.52,26.1,236.89 +6391,7,E07000031,4,55.93,216.52,26.1,236.89 +6761,9,E07000031,1,52.2,144.7,26.1,156.77 +7087,9,E07000031,2,59.66,179.53,26.1,195.6 +7413,9,E07000031,3,66.17,215.73,26.1,234.49 +7739,9,E07000031,4,72.71,270.66,26.1,296.11 +8065,10,E07000031,0,55.36,297.64,18.44,325.63 +242,1,E07000149,1,54.99,120.05,26.1,150.06 +568,1,E07000149,2,65.24,143.62,26.1,169.36 +894,1,E07000149,3,71.78,157.56,26.1,182.22 +1220,1,E07000149,4,82.02,172.58,26.1,180.08 +1546,3,E07000149,1,50.34,100.76,26.1,132.91 +1872,3,E07000149,2,58.72,118.97,26.1,133.98 +2198,3,E07000149,3,64.31,131.84,26.1,144.7 +2524,3,E07000149,4,71.78,150.06,26.1,160.78 +2850,2,E07000149,0,35.87,223.96,18.44,418.45 +3176,4,E07000149,0,55.36,134.38,18.44,314.73 +3502,6,E07000149,0,35.87,238.1,18.44,260.5 +3828,8,E07000149,0,55.36,238.1,18.44,260.5 +4151,5,E07000149,1,54.99,103.98,26.1,113.61 +4268,7,E07000149,1,50.34,103.98,26.1,113.61 +4732,5,E07000149,2,65.24,126.48,26.1,138.27 +4994,7,E07000149,2,58.72,126.48,26.1,138.27 +5451,5,E07000149,3,71.78,148.99,26.1,161.86 +5637,7,E07000149,3,64.31,148.99,26.1,161.86 +6161,5,E07000149,4,82.02,216.52,26.1,236.89 +6299,7,E07000149,4,71.78,216.52,26.1,236.89 +6762,9,E07000149,1,54.99,129.97,26.1,142.02 +7088,9,E07000149,2,65.24,158.09,26.1,172.84 +7414,9,E07000149,3,71.78,186.23,26.1,202.34 +7740,9,E07000149,4,82.02,270.66,26.1,296.11 +8066,10,E07000149,0,35.87,297.64,18.44,325.63 +243,1,E06000062,1,52.2,100.76,26.1,123.26 +569,1,E06000062,2,62.45,115.76,26.1,130.77 +895,1,E06000062,3,68.97,127.56,26.1,139.34 +1221,1,E06000062,4,76.43,159.7,26.1,168.29 +1547,3,E06000062,1,46.6,91.12,26.1,108.27 +1873,3,E06000062,2,53.13,97.54,26.1,109.33 +2199,3,E06000062,3,58.72,105.05,26.1,120.05 +2525,3,E06000062,4,64.31,123.26,26.1,123.26 +2851,2,E06000062,0,51.26,238.1,18.44,357.17 +3177,4,E06000062,0,49.2,113.15,18.44,122.59 +3503,6,E06000062,0,51.26,325.34,18.44,354.8 +3829,8,E06000062,0,49.2,325.34,18.44,354.8 +4348,5,E06000062,1,52.2,126.48,26.1,138.27 +4448,7,E06000062,1,46.6,126.48,26.1,138.27 +5044,5,E06000062,2,62.45,155.41,26.1,170.43 +5184,7,E06000062,2,53.13,155.41,26.1,170.43 +5687,5,E06000062,3,68.97,186.51,26.1,203.65 +5845,7,E06000062,3,58.72,186.51,26.1,203.65 +6262,5,E06000062,4,76.43,295.83,26.1,322.64 +6506,7,E06000062,4,64.31,295.83,26.1,322.64 +6763,9,E06000062,1,52.2,158.09,26.1,172.84 +7089,9,E06000062,2,62.45,194.27,26.1,213.04 +7415,9,E06000062,3,68.97,233.14,26.1,254.57 +7741,9,E06000062,4,76.43,369.81,26.1,403.3 +8067,10,E06000062,0,51.26,406.66,18.44,443.51 +244,1,E07000179,1,57.79,124.33,26.1,177.93 +570,1,E07000179,2,71.78,147.91,26.1,188.66 +896,1,E07000179,3,82.02,162.93,26.1,205.81 +1222,1,E07000179,4,90.42,180.08,26.1,224.01 +1548,3,E07000179,1,52.2,116.83,26.1,160.78 +1874,3,E07000179,2,63.38,130.77,26.1,146.84 +2200,3,E07000179,3,68.97,151.13,26.1,187.58 +2526,3,E07000179,4,73.64,186.51,26.1,196.15 +2852,2,E07000179,0,61.49,265.21,18.44,340.65 +3178,4,E07000179,0,48.18,193.32,18.44,202.73 +3504,6,E07000179,0,61.49,499.79,18.44,544.59 +3830,8,E07000179,0,48.18,499.79,18.44,544.59 +4028,5,E07000179,1,57.79,158.63,26.1,172.58 +4095,7,E07000179,1,52.2,158.63,26.1,172.58 +4643,5,E07000179,2,71.78,194.01,26.1,212.24 +4790,7,E07000179,2,63.38,194.01,26.1,212.24 +5295,5,E07000179,3,82.02,284.04,26.1,309.78 +5395,7,E07000179,3,68.97,284.04,26.1,309.78 +5980,5,E07000179,4,90.42,454.47,26.1,495.21 +6084,7,E07000179,4,73.64,454.47,26.1,495.21 +6764,9,E07000179,1,57.79,198.3,26.1,215.73 +7090,9,E07000179,2,71.78,242.51,26.1,265.29 +7416,9,E07000179,3,82.02,355.06,26.1,387.21 +7742,9,E07000179,4,90.42,568.09,26.1,619.01 +8068,10,E07000179,0,61.49,624.74,18.44,680.75 +245,1,E07000126,1,52.2,94.33,26.1,117.9 +571,1,E07000126,2,59.66,108.27,26.1,136.13 +897,1,E07000126,3,66.17,121.11,26.1,146.84 +1223,1,E07000126,4,72.71,135.06,26.1,160.78 +1549,3,E07000126,1,43.8,86.81,26.1,101.83 +1875,3,E07000126,2,54.06,95.42,26.1,114.68 +2201,3,E07000126,3,58.72,106.12,26.1,125.4 +2527,3,E07000126,4,55.93,120.05,26.1,135.06 +2853,2,E07000126,0,55.36,236.93,18.44,338.29 +3179,4,E07000126,0,32.8,464.43,18.44,592.92 +3505,6,E07000126,0,55.36,225.15,18.44,245.18 +3831,8,E07000126,0,32.8,225.15,18.44,245.18 +4380,5,E07000126,1,52.2,102.91,26.1,113.61 +4492,7,E07000126,1,43.8,102.91,26.1,113.61 +4950,5,E07000126,2,59.66,126.48,26.1,138.27 +5088,7,E07000126,2,54.06,126.48,26.1,138.27 +5593,5,E07000126,3,66.17,143.62,26.1,156.49 +5768,7,E07000126,3,58.72,143.62,26.1,156.49 +6341,5,E07000126,4,72.71,204.74,26.1,222.95 +6392,7,E07000126,4,55.93,204.74,26.1,222.95 +6765,9,E07000126,1,52.2,128.63,26.1,142.02 +7091,9,E07000126,2,59.66,158.09,26.1,172.84 +7417,9,E07000126,3,66.17,179.53,26.1,195.6 +7743,9,E07000126,4,72.71,255.92,26.1,278.69 +8069,10,E07000126,0,55.36,281.43,18.44,306.45 +246,1,E07000189,1,49.41,108.27,26.1,141.49 +572,1,E07000189,2,55.93,122.19,26.1,145.77 +898,1,E07000189,3,62.45,142.56,26.1,162.93 +1224,1,E07000189,4,71.78,159.7,26.1,196.15 +1550,3,E07000189,1,47.54,90.03,26.1,212.24 +1876,3,E07000189,2,54.99,101.83,26.1,112.54 +2202,3,E07000189,3,62.45,110.39,26.1,127.56 +2528,3,E07000189,4,74.57,131.84,26.1,131.84 +2854,2,E07000189,0,54.33,228.68,18.44,354.8 +3180,4,E07000189,0,54.33,114.33,18.44,140.27 +3506,6,E07000189,0,54.33,300.58,18.44,327.69 +3832,8,E07000189,0,54.33,300.58,18.44,327.69 +3937,7,E07000189,1,47.54,103.98,26.1,113.61 +4221,5,E07000189,1,49.41,103.98,26.1,113.61 +4857,5,E07000189,2,55.93,136.13,26.1,148.99 +5134,7,E07000189,2,54.99,136.13,26.1,148.99 +5488,5,E07000189,3,62.45,166.14,26.1,181.15 +5714,7,E07000189,3,62.45,166.14,26.1,181.15 +6026,5,E07000189,4,71.78,273.34,26.1,297.99 +6426,7,E07000189,4,74.57,273.34,26.1,297.99 +6766,9,E07000189,1,49.41,129.97,26.1,142.02 +7092,9,E07000189,2,55.93,170.16,26.1,186.23 +7418,9,E07000189,3,62.45,207.68,26.1,226.44 +7744,9,E07000189,4,71.78,341.67,26.1,372.48 +8070,10,E07000189,0,54.33,375.73,18.44,409.61 +247,1,E07000196,1,53.13,99.69,26.1,125.4 +573,1,E07000196,2,58.72,117.9,26.1,138.27 +899,1,E07000196,3,69.9,133.98,26.1,161.86 +1225,1,E07000196,4,81.09,162.93,26.1,180.08 +1551,3,E07000196,1,46.6,88.96,26.1,98.62 +1877,3,E07000196,2,50.34,95.42,26.1,103.98 +2203,3,E07000196,3,60.59,105.05,26.1,121.11 +2529,3,E07000196,4,68.97,128.63,26.1,128.63 +2855,2,E07000196,0,38.95,242.82,18.44,378.37 +3181,4,E07000196,0,46.12,106.09,18.44,106.09 +3507,6,E07000196,0,38.95,252.25,18.44,273.47 +3833,8,E07000196,0,46.12,252.25,18.44,273.47 +4298,5,E07000196,1,53.13,103.98,26.1,113.61 +4519,7,E07000196,1,46.6,103.98,26.1,113.61 +4908,5,E07000196,2,58.72,126.48,26.1,138.27 +5204,7,E07000196,2,50.34,126.48,26.1,138.27 +5539,5,E07000196,3,69.9,148.99,26.1,161.86 +5795,7,E07000196,3,60.59,148.99,26.1,161.86 +6191,5,E07000196,4,81.09,229.37,26.1,248.67 +6456,7,E07000196,4,68.97,229.37,26.1,248.67 +6767,9,E07000196,1,53.13,129.97,26.1,142.02 +7093,9,E07000196,2,58.72,158.09,26.1,172.84 +7419,9,E07000196,3,69.9,186.23,26.1,202.34 +7745,9,E07000196,4,81.09,286.72,26.1,310.84 +8071,10,E07000196,0,38.95,315.32,18.44,341.84 +248,1,E08000023,1,51.27,88.96,26.1,98.62 +574,1,E08000023,2,57.79,102.91,26.1,121.11 +900,1,E08000023,3,61.52,114.68,26.1,160.78 +1226,1,E08000023,4,70.84,128.63,26.1,140.42 +1552,3,E08000023,1,42.87,100.76,26.1,106.12 +1878,3,E08000023,2,50.34,91.12,26.1,112.54 +2204,3,E08000023,3,54.06,106.12,26.1,125.4 +2530,3,E08000023,4,56.86,116.83,26.1,121.11 +2856,2,E08000023,0,55.36,234.56,18.44,337.12 +3182,4,E08000023,0,47.15,251.08,18.44,285.25 +3508,6,E08000023,0,55.36,189.79,18.44,206.28 +3834,8,E08000023,0,47.15,189.79,18.44,206.28 +4460,7,E08000023,1,42.87,93.26,26.1,100.76 +4541,5,E08000023,1,51.27,93.26,26.1,100.76 +5056,5,E08000023,2,57.79,115.76,26.1,125.4 +5107,7,E08000023,2,50.34,115.76,26.1,125.4 +5561,5,E08000023,3,61.52,131.84,26.1,144.7 +5736,7,E08000023,3,54.06,131.84,26.1,144.7 +6360,5,E08000023,4,70.84,172.58,26.1,187.58 +6518,7,E08000023,4,56.86,172.58,26.1,187.58 +6768,9,E08000023,1,42.87,116.56,26.1,125.95 +7094,9,E08000023,2,57.79,144.7,26.1,156.77 +7420,9,E08000023,3,61.52,164.8,26.1,180.87 +7746,9,E08000023,4,70.84,215.73,26.1,234.49 +8072,10,E08000023,0,55.36,237.24,18.44,257.84 +249,1,E06000045,1,57.79,124.33,26.1,177.93 +575,1,E06000045,2,71.78,147.91,26.1,188.66 +901,1,E06000045,3,82.02,162.93,26.1,205.81 +1227,1,E06000045,4,90.42,180.08,26.1,224.01 +1553,3,E06000045,1,52.2,116.83,26.1,160.78 +1879,3,E06000045,2,63.38,130.77,26.1,146.84 +2205,3,E06000045,3,68.97,151.13,26.1,187.58 +2531,3,E06000045,4,73.64,186.51,26.1,196.15 +2857,2,E06000045,0,61.49,265.21,18.44,340.65 +3183,4,E06000045,0,48.18,193.32,18.44,202.73 +3509,6,E06000045,0,61.49,351.26,18.44,383.09 +3835,8,E06000045,0,48.18,351.26,18.44,383.09 +4029,5,E06000045,1,57.79,126.48,26.1,138.27 +4096,7,E06000045,1,52.2,126.48,26.1,138.27 +4644,5,E06000045,2,71.78,172.58,26.1,187.58 +4791,7,E06000045,2,63.38,172.58,26.1,187.58 +5296,5,E06000045,3,82.02,204.74,26.1,222.95 +5396,7,E06000045,3,68.97,204.74,26.1,222.95 +5981,5,E06000045,4,90.42,319.42,26.1,348.36 +6085,7,E06000045,4,73.64,319.42,26.1,348.36 +6769,9,E06000045,1,57.79,158.09,26.1,172.84 +7095,9,E06000045,2,71.78,215.73,26.1,234.49 +7421,9,E06000045,3,82.02,255.92,26.1,278.69 +7747,9,E06000045,4,90.42,399.29,26.1,435.45 +8073,10,E06000045,0,61.49,439.1,18.44,478.86 +250,1,E06000033,1,54.99,120.05,26.1,150.06 +576,1,E06000033,2,65.24,143.62,26.1,169.36 +902,1,E06000033,3,71.78,157.56,26.1,182.22 +1228,1,E06000033,4,82.02,172.58,26.1,180.08 +1554,3,E06000033,1,50.34,100.76,26.1,132.91 +1880,3,E06000033,2,58.72,118.97,26.1,133.98 +2206,3,E06000033,3,64.31,131.84,26.1,144.7 +2532,3,E06000033,4,71.78,150.06,26.1,160.78 +2858,2,E06000033,0,35.87,223.96,18.44,418.45 +3184,4,E06000033,0,55.36,134.38,18.44,314.73 +3510,6,E06000033,0,35.87,300.58,18.44,327.69 +3836,8,E06000033,0,55.36,300.58,18.44,327.69 +4152,5,E06000033,1,54.99,126.48,26.1,138.27 +4269,7,E06000033,1,50.34,126.48,26.1,138.27 +4733,5,E06000033,2,65.24,160.78,26.1,175.78 +4995,7,E06000033,2,58.72,160.78,26.1,175.78 +5452,5,E06000033,3,71.78,204.74,26.1,222.95 +5638,7,E06000033,3,64.31,204.74,26.1,222.95 +6162,5,E06000033,4,82.02,273.34,26.1,297.99 +6300,7,E06000033,4,71.78,273.34,26.1,297.99 +6770,9,E06000033,1,54.99,158.09,26.1,172.84 +7096,9,E06000033,2,65.24,200.97,26.1,219.74 +7422,9,E06000033,3,71.78,255.92,26.1,278.69 +7748,9,E06000033,4,82.02,341.67,26.1,372.48 +8074,10,E06000033,0,35.87,375.73,18.44,409.61 +251,1,E09000028,1,66.17,146.84,26.1,199.38 +577,1,E09000028,2,78.29,158.63,26.1,194.01 +903,1,E09000028,3,84.82,168.29,26.1,228.29 +1229,1,E09000028,4,102.51,188.66,26.1,254.03 +1555,3,E09000028,1,58.72,120.05,26.1,147.91 +1881,3,E09000028,2,64.31,140.42,26.1,176.86 +2207,3,E09000028,3,71.78,160.78,26.1,202.58 +2533,3,E09000028,4,83.89,262.61,26.1,263.68 +2859,2,E09000028,0,69.7,313.55,18.44,497.44 +3185,4,E09000028,0,59.45,367.77,18.44,398.42 +3511,6,E09000028,0,69.7,594.11,18.44,648.32 +3837,8,E09000028,0,59.45,594.11,18.44,648.32 +3977,5,E09000028,1,66.17,295.83,26.1,322.64 +4191,7,E09000028,1,58.72,295.83,26.1,322.64 +4592,5,E09000028,2,78.29,389.09,26.1,424.47 +4692,7,E09000028,2,64.31,389.09,26.1,424.47 +5244,5,E09000028,3,84.82,397.66,26.1,433.04 +5344,7,E09000028,3,71.78,397.66,26.1,433.04 +5896,7,E09000028,4,83.89,541.3,26.1,589.54 +5929,5,E09000028,4,102.51,541.3,26.1,589.54 +6771,9,E09000028,1,66.17,369.81,26.1,403.3 +7097,9,E09000028,2,78.29,486.38,26.1,530.59 +7423,9,E09000028,3,84.82,497.09,26.1,541.3 +7749,9,E09000028,4,102.51,676.64,26.1,736.91 +8075,10,E09000028,0,69.7,742.61,18.44,810.39 +252,1,E07000213,1,57.79,124.33,26.1,177.93 +578,1,E07000213,2,71.78,147.91,26.1,188.66 +904,1,E07000213,3,82.02,162.93,26.1,205.81 +1230,1,E07000213,4,90.42,180.08,26.1,224.01 +1556,3,E07000213,1,52.2,116.83,26.1,160.78 +1882,3,E07000213,2,63.38,130.77,26.1,146.84 +2208,3,E07000213,3,68.97,151.13,26.1,187.58 +2534,3,E07000213,4,73.64,186.51,26.1,196.15 +2860,2,E07000213,0,61.49,265.21,18.44,340.65 +3186,4,E07000213,0,48.18,193.32,18.44,202.73 +3512,6,E07000213,0,61.49,424.35,18.44,462.06 +3838,8,E07000213,0,48.18,424.35,18.44,462.06 +4030,5,E07000213,1,57.79,182.22,26.1,199.38 +4097,7,E07000213,1,52.2,182.22,26.1,199.38 +4645,5,E07000213,2,71.78,216.52,26.1,236.89 +4792,7,E07000213,2,63.38,216.52,26.1,236.89 +5297,5,E07000213,3,82.02,284.04,26.1,309.78 +5397,7,E07000213,3,68.97,284.04,26.1,309.78 +5982,5,E07000213,4,90.42,385.87,26.1,420.18 +6086,7,E07000213,4,73.64,385.87,26.1,420.18 +6772,9,E07000213,1,57.79,227.8,26.1,249.22 +7098,9,E07000213,2,71.78,270.66,26.1,296.11 +7424,9,E07000213,3,82.02,355.06,26.1,387.21 +7750,9,E07000213,4,90.42,482.35,26.1,525.22 +8076,10,E07000213,0,61.49,530.44,18.44,577.59 +253,1,E07000240,1,54.99,120.05,26.1,150.06 +579,1,E07000240,2,65.24,143.62,26.1,169.36 +905,1,E07000240,3,71.78,157.56,26.1,182.22 +1231,1,E07000240,4,82.02,172.58,26.1,180.08 +1557,3,E07000240,1,50.34,100.76,26.1,132.91 +1883,3,E07000240,2,58.72,118.97,26.1,133.98 +2209,3,E07000240,3,64.31,131.84,26.1,144.7 +2535,3,E07000240,4,71.78,150.06,26.1,160.78 +2861,2,E07000240,0,35.87,223.96,18.44,418.45 +3187,4,E07000240,0,55.36,134.38,18.44,314.73 +3513,6,E07000240,0,35.87,648.32,18.44,706.08 +3839,8,E07000240,0,55.36,648.32,18.44,706.08 +4153,5,E07000240,1,54.99,172.58,26.1,187.58 +4270,7,E07000240,1,50.34,172.58,26.1,187.58 +4734,5,E07000240,2,65.24,262.61,26.1,285.11 +4996,7,E07000240,2,58.72,262.61,26.1,285.11 +5453,5,E07000240,3,71.78,319.42,26.1,348.36 +5639,7,E07000240,3,64.31,319.42,26.1,348.36 +6163,5,E07000240,4,82.02,589.54,26.1,642.06 +6301,7,E07000240,4,71.78,589.54,26.1,642.06 +6773,9,E07000240,1,54.99,215.73,26.1,234.49 +7099,9,E07000240,2,65.24,328.26,26.1,356.4 +7425,9,E07000240,3,71.78,399.29,26.1,435.45 +7751,9,E07000240,4,82.02,736.91,26.1,802.56 +8077,10,E07000240,0,35.87,810.39,18.44,882.59 +255,1,E08000013,1,52.2,94.33,26.1,117.9 +581,1,E08000013,2,59.66,108.27,26.1,136.13 +907,1,E08000013,3,66.17,121.11,26.1,146.84 +1233,1,E08000013,4,72.71,135.06,26.1,160.78 +1559,3,E08000013,1,43.8,86.81,26.1,101.83 +1885,3,E08000013,2,54.06,95.42,26.1,114.68 +2211,3,E08000013,3,58.72,106.12,26.1,125.4 +2537,3,E08000013,4,55.93,120.05,26.1,135.06 +2863,2,E08000013,0,55.36,236.93,18.44,338.29 +3189,4,E08000013,0,32.8,464.43,18.44,592.92 +3515,6,E08000013,0,55.36,213.35,18.44,233.38 +3841,8,E08000013,0,32.8,213.35,18.44,233.38 +4381,5,E08000013,1,52.2,98.62,26.1,108.27 +4493,7,E08000013,1,43.8,98.62,26.1,108.27 +4951,5,E08000013,2,59.66,112.54,26.1,122.19 +5089,7,E08000013,2,54.06,112.54,26.1,122.19 +5594,5,E08000013,3,66.17,136.13,26.1,148.99 +5769,7,E08000013,3,58.72,136.13,26.1,148.99 +6342,5,E08000013,4,72.71,194.01,26.1,212.24 +6393,7,E08000013,4,55.93,194.01,26.1,212.24 +6775,9,E08000013,1,52.2,123.26,26.1,135.33 +7101,9,E08000013,2,59.66,140.68,26.1,152.74 +7427,9,E08000013,3,66.17,170.16,26.1,186.23 +7753,9,E08000013,4,72.71,242.51,26.1,265.29 +8079,10,E08000013,0,55.36,266.69,18.44,291.74 +256,1,E07000197,1,53.13,99.69,26.1,125.4 +582,1,E07000197,2,58.72,117.9,26.1,138.27 +908,1,E07000197,3,69.9,133.98,26.1,161.86 +1234,1,E07000197,4,81.09,162.93,26.1,180.08 +1560,3,E07000197,1,46.6,88.96,26.1,98.62 +1886,3,E07000197,2,50.34,95.42,26.1,103.98 +2212,3,E07000197,3,60.59,105.05,26.1,121.11 +2538,3,E07000197,4,68.97,128.63,26.1,128.63 +2864,2,E07000197,0,38.95,242.82,18.44,378.37 +3190,4,E07000197,0,46.12,106.09,18.44,106.09 +3516,6,E07000197,0,38.95,226.32,18.44,246.36 +3842,8,E07000197,0,46.12,226.32,18.44,246.36 +4299,5,E07000197,1,53.13,103.98,26.1,113.61 +4520,7,E07000197,1,46.6,103.98,26.1,113.61 +4909,5,E07000197,2,58.72,126.48,26.1,138.27 +5205,7,E07000197,2,50.34,126.48,26.1,138.27 +5540,5,E07000197,3,69.9,148.99,26.1,161.86 +5796,7,E07000197,3,60.59,148.99,26.1,161.86 +6192,5,E07000197,4,81.09,205.81,26.1,224.01 +6457,7,E07000197,4,68.97,205.81,26.1,224.01 +6776,9,E07000197,1,53.13,129.97,26.1,142.02 +7102,9,E07000197,2,58.72,158.09,26.1,172.84 +7428,9,E07000197,3,69.9,186.23,26.1,202.34 +7754,9,E07000197,4,81.09,257.26,26.1,280.03 +8080,10,E07000197,0,38.95,282.91,18.44,307.95 +257,1,E07000198,1,53.13,99.69,26.1,125.4 +583,1,E07000198,2,58.72,117.9,26.1,138.27 +909,1,E07000198,3,69.9,133.98,26.1,161.86 +1235,1,E07000198,4,81.09,162.93,26.1,180.08 +1561,3,E07000198,1,46.6,88.96,26.1,98.62 +1887,3,E07000198,2,50.34,95.42,26.1,103.98 +2213,3,E07000198,3,60.59,105.05,26.1,121.11 +2539,3,E07000198,4,68.97,128.63,26.1,128.63 +2865,2,E07000198,0,38.95,242.82,18.44,378.37 +3191,4,E07000198,0,46.12,106.09,18.44,106.09 +3517,6,E07000198,0,38.95,203.92,18.44,222.78 +3843,8,E07000198,0,46.12,203.92,18.44,222.78 +4300,5,E07000198,1,53.13,92.19,26.1,99.69 +4521,7,E07000198,1,46.6,92.19,26.1,99.69 +4910,5,E07000198,2,58.72,110.39,26.1,120.05 +5206,7,E07000198,2,50.34,110.39,26.1,120.05 +5541,5,E07000198,3,69.9,136.13,26.1,148.99 +5797,7,E07000198,3,60.59,136.13,26.1,148.99 +6193,5,E07000198,4,81.09,185.44,26.1,202.58 +6458,7,E07000198,4,68.97,185.44,26.1,202.58 +6777,9,E07000198,1,53.13,115.24,26.1,124.6 +7103,9,E07000198,2,58.72,138.01,26.1,150.06 +7429,9,E07000198,3,69.9,170.16,26.1,186.23 +7755,9,E07000198,4,81.09,231.8,26.1,253.23 +8081,10,E07000198,0,38.95,254.89,18.44,278.47 +258,1,E07000243,1,54.99,120.05,26.1,150.06 +584,1,E07000243,2,65.24,143.62,26.1,169.36 +910,1,E07000243,3,71.78,157.56,26.1,182.22 +1236,1,E07000243,4,82.02,172.58,26.1,180.08 +1562,3,E07000243,1,50.34,100.76,26.1,132.91 +1888,3,E07000243,2,58.72,118.97,26.1,133.98 +2214,3,E07000243,3,64.31,131.84,26.1,144.7 +2540,3,E07000243,4,71.78,150.06,26.1,160.78 +2866,2,E07000243,0,35.87,223.96,18.44,418.45 +3192,4,E07000243,0,55.36,134.38,18.44,314.73 +3518,6,E07000243,0,35.87,325.34,18.44,354.8 +3844,8,E07000243,0,55.36,325.34,18.44,354.8 +4155,5,E07000243,1,54.99,132.91,26.1,145.77 +4272,7,E07000243,1,50.34,132.91,26.1,145.77 +4736,5,E07000243,2,65.24,172.58,26.1,187.58 +4998,7,E07000243,2,58.72,172.58,26.1,187.58 +5455,5,E07000243,3,71.78,183.29,26.1,200.45 +5641,7,E07000243,3,64.31,183.29,26.1,200.45 +6165,5,E07000243,4,82.02,295.83,26.1,322.64 +6303,7,E07000243,4,71.78,295.83,26.1,322.64 +6778,9,E07000243,1,54.99,166.13,26.1,182.21 +7104,9,E07000243,2,65.24,215.73,26.1,234.49 +7430,9,E07000243,3,71.78,229.13,26.1,250.54 +7756,9,E07000243,4,82.02,369.81,26.1,403.3 +8082,10,E07000243,0,35.87,406.66,18.44,443.51 +259,1,E08000007,1,52.2,94.33,26.1,117.9 +585,1,E08000007,2,59.66,108.27,26.1,136.13 +911,1,E08000007,3,66.17,121.11,26.1,146.84 +1237,1,E08000007,4,72.71,135.06,26.1,160.78 +1563,3,E08000007,1,43.8,86.81,26.1,101.83 +1889,3,E08000007,2,54.06,95.42,26.1,114.68 +2215,3,E08000007,3,58.72,106.12,26.1,125.4 +2541,3,E08000007,4,55.93,120.05,26.1,135.06 +2867,2,E08000007,0,55.36,236.93,18.44,338.29 +3193,4,E08000007,0,32.8,464.43,18.44,592.92 +3519,6,E08000007,0,55.36,252.25,18.44,273.47 +3845,8,E08000007,0,32.8,252.25,18.44,273.47 +4382,5,E08000007,1,52.2,114.68,26.1,124.33 +4494,7,E08000007,1,43.8,114.68,26.1,124.33 +4952,5,E08000007,2,59.66,136.13,26.1,148.99 +5090,7,E08000007,2,54.06,136.13,26.1,148.99 +5595,5,E08000007,3,66.17,160.78,26.1,175.78 +5770,7,E08000007,3,58.72,160.78,26.1,175.78 +6343,5,E08000007,4,72.71,229.37,26.1,248.67 +6394,7,E08000007,4,55.93,229.37,26.1,248.67 +6779,9,E08000007,1,52.2,143.37,26.1,155.41 +7105,9,E08000007,2,59.66,170.16,26.1,186.23 +7431,9,E08000007,3,66.17,200.97,26.1,219.74 +7757,9,E08000007,4,72.71,286.72,26.1,310.84 +8083,10,E08000007,0,55.36,315.32,18.44,341.84 +260,1,E06000004,1,51.27,88.96,26.1,98.62 +586,1,E06000004,2,57.79,102.91,26.1,121.11 +912,1,E06000004,3,61.52,114.68,26.1,160.78 +1238,1,E06000004,4,70.84,128.63,26.1,140.42 +1564,3,E06000004,1,42.87,100.76,26.1,106.12 +1890,3,E06000004,2,50.34,91.12,26.1,112.54 +2216,3,E06000004,3,54.06,106.12,26.1,125.4 +2542,3,E06000004,4,56.86,116.83,26.1,121.11 +2868,2,E06000004,0,55.36,234.56,18.44,337.12 +3194,4,E06000004,0,47.15,251.08,18.44,285.25 +3520,6,E06000004,0,55.36,213.35,18.44,233.38 +3846,8,E06000004,0,47.15,213.35,18.44,233.38 +4461,7,E06000004,1,42.87,95.42,26.1,103.98 +4542,5,E06000004,1,51.27,95.42,26.1,103.98 +5057,5,E06000004,2,57.79,126.48,26.1,138.27 +5108,7,E06000004,2,50.34,126.48,26.1,138.27 +5562,5,E06000004,3,61.52,138.27,26.1,150.06 +5737,7,E06000004,3,54.06,138.27,26.1,150.06 +6361,5,E06000004,4,70.84,194.01,26.1,212.24 +6519,7,E06000004,4,56.86,194.01,26.1,212.24 +6780,9,E06000004,1,42.87,119.25,26.1,129.97 +7106,9,E06000004,2,57.79,158.09,26.1,172.84 +7432,9,E06000004,3,61.52,172.84,26.1,187.57 +7758,9,E06000004,4,70.84,242.51,26.1,265.29 +8084,10,E06000004,0,55.36,266.69,18.44,291.74 +261,1,E06000021,1,53.13,99.69,26.1,125.4 +587,1,E06000021,2,58.72,117.9,26.1,138.27 +913,1,E06000021,3,69.9,133.98,26.1,161.86 +1239,1,E06000021,4,81.09,162.93,26.1,180.08 +1565,3,E06000021,1,46.6,88.96,26.1,98.62 +1891,3,E06000021,2,50.34,95.42,26.1,103.98 +2217,3,E06000021,3,60.59,105.05,26.1,121.11 +2543,3,E06000021,4,68.97,128.63,26.1,128.63 +2869,2,E06000021,0,38.95,242.82,18.44,378.37 +3195,4,E06000021,0,46.12,106.09,18.44,106.09 +3521,6,E06000021,0,38.95,199.2,18.44,218.08 +3847,8,E06000021,0,46.12,199.2,18.44,218.08 +4301,5,E06000021,1,53.13,92.19,26.1,99.69 +4522,7,E06000021,1,46.6,92.19,26.1,99.69 +4911,5,E06000021,2,58.72,103.98,26.1,113.61 +5207,7,E06000021,2,50.34,103.98,26.1,113.61 +5542,5,E06000021,3,69.9,131.84,26.1,144.7 +5798,7,E06000021,3,60.59,131.84,26.1,144.7 +6194,5,E06000021,4,81.09,182.22,26.1,198.3 +6459,7,E06000021,4,68.97,182.22,26.1,198.3 +6781,9,E06000021,1,53.13,115.24,26.1,124.6 +7107,9,E06000021,2,58.72,129.97,26.1,142.02 +7433,9,E06000021,3,69.9,164.8,26.1,180.87 +7759,9,E06000021,4,81.09,227.8,26.1,247.88 +8085,10,E06000021,0,38.95,249,18.44,272.59 +262,1,E07000221,1,53.13,99.69,26.1,125.4 +588,1,E07000221,2,58.72,117.9,26.1,138.27 +914,1,E07000221,3,69.9,133.98,26.1,161.86 +1240,1,E07000221,4,81.09,162.93,26.1,180.08 +1566,3,E07000221,1,46.6,88.96,26.1,98.62 +1892,3,E07000221,2,50.34,95.42,26.1,103.98 +2218,3,E07000221,3,60.59,105.05,26.1,121.11 +2544,3,E07000221,4,68.97,128.63,26.1,128.63 +2870,2,E07000221,0,38.95,242.82,18.44,378.37 +3196,4,E07000221,0,46.12,106.09,18.44,106.09 +3522,6,E07000221,0,38.95,373.65,18.44,407.85 +3848,8,E07000221,0,46.12,373.65,18.44,407.85 +4302,5,E07000221,1,53.13,128.63,26.1,141.49 +4523,7,E07000221,1,46.6,128.63,26.1,141.49 +4912,5,E07000221,2,58.72,158.63,26.1,174.72 +5208,7,E07000221,2,50.34,158.63,26.1,174.72 +5543,5,E07000221,3,69.9,204.74,26.1,222.95 +5799,7,E07000221,3,60.59,204.74,26.1,222.95 +6195,5,E07000221,4,81.09,339.77,26.1,370.87 +6460,7,E07000221,4,68.97,339.77,26.1,370.87 +6782,9,E07000221,1,53.13,160.78,26.1,176.86 +7108,9,E07000221,2,58.72,198.3,26.1,218.38 +7434,9,E07000221,3,69.9,255.92,26.1,278.69 +7760,9,E07000221,4,81.09,424.73,26.1,463.59 +8086,10,E07000221,0,38.95,467.08,18.44,509.82 +263,1,E07000082,1,49.41,108.27,26.1,141.49 +589,1,E07000082,2,55.93,122.19,26.1,145.77 +915,1,E07000082,3,62.45,142.56,26.1,162.93 +1241,1,E07000082,4,71.78,159.7,26.1,196.15 +1567,3,E07000082,1,47.54,90.03,26.1,212.24 +1893,3,E07000082,2,54.99,101.83,26.1,112.54 +2219,3,E07000082,3,62.45,110.39,26.1,127.56 +2545,3,E07000082,4,74.57,131.84,26.1,131.84 +2871,2,E07000082,0,54.33,228.68,18.44,354.8 +3197,4,E07000082,0,54.33,114.33,18.44,140.27 +3523,6,E07000082,0,54.33,351.26,18.44,383.09 +3849,8,E07000082,0,54.33,351.26,18.44,383.09 +3938,7,E07000082,1,47.54,113.61,26.1,123.26 +4222,5,E07000082,1,49.41,113.61,26.1,123.26 +4858,5,E07000082,2,55.93,148.99,26.1,161.86 +5135,7,E07000082,2,54.99,148.99,26.1,161.86 +5489,5,E07000082,3,62.45,183.29,26.1,200.45 +5715,7,E07000082,3,62.45,183.29,26.1,200.45 +6027,5,E07000082,4,71.78,319.42,26.1,348.36 +6427,7,E07000082,4,74.57,319.42,26.1,348.36 +6783,9,E07000082,1,49.41,142.02,26.1,154.09 +7109,9,E07000082,2,55.93,186.23,26.1,202.34 +7435,9,E07000082,3,62.45,229.13,26.1,250.54 +7761,9,E07000082,4,71.78,399.29,26.1,435.45 +8087,10,E07000082,0,54.33,439.1,18.44,478.86 +265,1,E08000024,1,51.27,88.96,26.1,98.62 +591,1,E08000024,2,57.79,102.91,26.1,121.11 +917,1,E08000024,3,61.52,114.68,26.1,160.78 +1243,1,E08000024,4,70.84,128.63,26.1,140.42 +1569,3,E08000024,1,42.87,100.76,26.1,106.12 +1895,3,E08000024,2,50.34,91.12,26.1,112.54 +2221,3,E08000024,3,54.06,106.12,26.1,125.4 +2547,3,E08000024,4,56.86,116.83,26.1,121.11 +2873,2,E08000024,0,55.36,234.56,18.44,337.12 +3199,4,E08000024,0,47.15,251.08,18.44,285.25 +3525,6,E08000024,0,55.36,200.38,18.44,219.25 +3851,8,E08000024,0,47.15,200.38,18.44,219.25 +4462,7,E08000024,1,42.87,103.98,26.1,113.61 +4543,5,E08000024,1,51.27,103.98,26.1,113.61 +5058,5,E08000024,2,57.79,126.48,26.1,138.27 +5109,7,E08000024,2,50.34,126.48,26.1,138.27 +5563,5,E08000024,3,61.52,136.13,26.1,148.99 +5738,7,E08000024,3,54.06,136.13,26.1,148.99 +6362,5,E08000024,4,70.84,182.22,26.1,199.38 +6520,7,E08000024,4,56.86,182.22,26.1,199.38 +6785,9,E08000024,1,42.87,129.97,26.1,142.02 +7111,9,E08000024,2,57.79,158.09,26.1,172.84 +7437,9,E08000024,3,61.52,170.16,26.1,186.23 +7763,9,E08000024,4,70.84,227.8,26.1,249.22 +8089,10,E08000024,0,55.36,250.47,18.44,274.05 +266,1,E07000214,1,57.79,124.33,26.1,177.93 +592,1,E07000214,2,71.78,147.91,26.1,188.66 +918,1,E07000214,3,82.02,162.93,26.1,205.81 +1244,1,E07000214,4,90.42,180.08,26.1,224.01 +1570,3,E07000214,1,52.2,116.83,26.1,160.78 +1896,3,E07000214,2,63.38,130.77,26.1,146.84 +2222,3,E07000214,3,68.97,151.13,26.1,187.58 +2548,3,E07000214,4,73.64,186.51,26.1,196.15 +2874,2,E07000214,0,61.49,265.21,18.44,340.65 +3200,4,E07000214,0,48.18,193.32,18.44,202.73 +3526,6,E07000214,0,61.49,511.57,18.44,558.75 +3852,8,E07000214,0,48.18,511.57,18.44,558.75 +4031,5,E07000214,1,57.79,160.78,26.1,175.78 +4098,7,E07000214,1,52.2,160.78,26.1,175.78 +4646,5,E07000214,2,71.78,211.17,26.1,230.44 +4793,7,E07000214,2,63.38,211.17,26.1,230.44 +5298,5,E07000214,3,82.02,284.04,26.1,309.78 +5398,7,E07000214,3,68.97,284.04,26.1,309.78 +5983,5,E07000214,4,90.42,465.19,26.1,508.08 +6087,7,E07000214,4,73.64,465.19,26.1,508.08 +6786,9,E07000214,1,57.79,200.97,26.1,219.74 +7112,9,E07000214,2,71.78,263.95,26.1,288.07 +7438,9,E07000214,3,82.02,355.06,26.1,387.21 +7764,9,E07000214,4,90.42,581.5,26.1,635.09 +8090,10,E07000214,0,61.49,639.47,18.44,698.41 +267,1,E09000029,1,66.17,146.84,26.1,199.38 +593,1,E09000029,2,78.29,158.63,26.1,194.01 +919,1,E09000029,3,84.82,168.29,26.1,228.29 +1245,1,E09000029,4,102.51,188.66,26.1,254.03 +1571,3,E09000029,1,58.72,120.05,26.1,147.91 +1897,3,E09000029,2,64.31,140.42,26.1,176.86 +2223,3,E09000029,3,71.78,160.78,26.1,202.58 +2549,3,E09000029,4,83.89,262.61,26.1,263.68 +2875,2,E09000029,0,69.7,313.55,18.44,497.44 +3201,4,E09000029,0,59.45,367.77,18.44,398.42 +3527,6,E09000029,0,69.7,524.54,18.44,571.71 +3853,8,E09000029,0,59.45,524.54,18.44,571.71 +3978,5,E09000029,1,66.17,172.58,26.1,187.58 +4192,7,E09000029,1,58.72,172.58,26.1,187.58 +4593,5,E09000029,2,78.29,216.52,26.1,236.89 +4693,7,E09000029,2,64.31,216.52,26.1,236.89 +5245,5,E09000029,3,84.82,295.83,26.1,322.64 +5345,7,E09000029,3,71.78,295.83,26.1,322.64 +5897,7,E09000029,4,83.89,476.98,26.1,519.86 +5930,5,E09000029,4,102.51,476.98,26.1,519.86 +6787,9,E09000029,1,66.17,215.73,26.1,234.49 +7113,9,E09000029,2,78.29,270.66,26.1,296.11 +7439,9,E09000029,3,84.82,369.81,26.1,403.3 +7765,9,E09000029,4,102.51,596.23,26.1,649.84 +8091,10,E09000029,0,69.7,655.68,18.44,714.62 +268,1,E07000113,1,57.79,124.33,26.1,177.93 +594,1,E07000113,2,71.78,147.91,26.1,188.66 +920,1,E07000113,3,82.02,162.93,26.1,205.81 +1246,1,E07000113,4,90.42,180.08,26.1,224.01 +1572,3,E07000113,1,52.2,116.83,26.1,160.78 +1898,3,E07000113,2,63.38,130.77,26.1,146.84 +2224,3,E07000113,3,68.97,151.13,26.1,187.58 +2550,3,E07000113,4,73.64,186.51,26.1,196.15 +2876,2,E07000113,0,61.49,265.21,18.44,340.65 +3202,4,E07000113,0,48.18,193.32,18.44,202.73 +3528,6,E07000113,0,61.49,251.08,18.44,273.47 +3854,8,E07000113,0,48.18,251.08,18.44,273.47 +4032,5,E07000113,1,57.79,123.26,26.1,133.98 +4099,7,E07000113,1,52.2,123.26,26.1,133.98 +4647,5,E07000113,2,71.78,148.99,26.1,161.86 +4794,7,E07000113,2,63.38,148.99,26.1,161.86 +5299,5,E07000113,3,82.02,172.58,26.1,187.58 +5399,7,E07000113,3,68.97,172.58,26.1,187.58 +5984,5,E07000113,4,90.42,228.29,26.1,248.67 +6088,7,E07000113,4,73.64,228.29,26.1,248.67 +6788,9,E07000113,1,57.79,154.09,26.1,167.48 +7114,9,E07000113,2,71.78,186.23,26.1,202.34 +7440,9,E07000113,3,82.02,215.73,26.1,234.49 +7766,9,E07000113,4,90.42,285.39,26.1,310.84 +8092,10,E07000113,0,61.49,313.84,18.44,341.84 +269,1,E06000030,1,49.41,108.27,26.1,141.49 +595,1,E06000030,2,55.93,122.19,26.1,145.77 +921,1,E06000030,3,62.45,142.56,26.1,162.93 +1247,1,E06000030,4,71.78,159.7,26.1,196.15 +1573,3,E06000030,1,47.54,90.03,26.1,212.24 +1899,3,E06000030,2,54.99,101.83,26.1,112.54 +2225,3,E06000030,3,62.45,110.39,26.1,127.56 +2551,3,E06000030,4,74.57,131.84,26.1,131.84 +2877,2,E06000030,0,54.33,228.68,18.44,354.8 +3203,4,E06000030,0,54.33,114.33,18.44,140.27 +3529,6,E06000030,0,54.33,264.04,18.44,287.62 +3855,8,E06000030,0,54.33,264.04,18.44,287.62 +3939,7,E06000030,1,47.54,114.68,26.1,124.33 +4223,5,E06000030,1,49.41,114.68,26.1,124.33 +4859,5,E06000030,2,55.93,136.13,26.1,148.99 +5136,7,E06000030,2,54.99,136.13,26.1,148.99 +5490,5,E06000030,3,62.45,172.58,26.1,187.58 +5716,7,E06000030,3,62.45,172.58,26.1,187.58 +6028,5,E06000030,4,71.78,240.09,26.1,261.54 +6428,7,E06000030,4,74.57,240.09,26.1,261.54 +6789,9,E06000030,1,49.41,143.37,26.1,155.41 +7115,9,E06000030,2,55.93,170.16,26.1,186.23 +7441,9,E06000030,3,62.45,215.73,26.1,234.49 +7767,9,E06000030,4,71.78,300.12,26.1,326.92 +8093,10,E06000030,0,54.33,330.05,18.44,359.53 +270,1,E08000008,1,52.2,94.33,26.1,117.9 +596,1,E08000008,2,59.66,108.27,26.1,136.13 +922,1,E08000008,3,66.17,121.11,26.1,146.84 +1248,1,E08000008,4,72.71,135.06,26.1,160.78 +1574,3,E08000008,1,43.8,86.81,26.1,101.83 +1900,3,E08000008,2,54.06,95.42,26.1,114.68 +2226,3,E08000008,3,58.72,106.12,26.1,125.4 +2552,3,E08000008,4,55.93,120.05,26.1,135.06 +2878,2,E08000008,0,55.36,236.93,18.44,338.29 +3204,4,E08000008,0,32.8,464.43,18.44,592.92 +3530,6,E08000008,0,55.36,201.56,18.44,220.42 +3856,8,E08000008,0,32.8,201.56,18.44,220.42 +4383,5,E08000008,1,52.2,103.98,26.1,113.61 +4495,7,E08000008,1,43.8,103.98,26.1,113.61 +4953,5,E08000008,2,59.66,114.68,26.1,124.33 +5091,7,E08000008,2,54.06,114.68,26.1,124.33 +5596,5,E08000008,3,66.17,138.27,26.1,150.06 +5771,7,E08000008,3,58.72,138.27,26.1,150.06 +6344,5,E08000008,4,72.71,183.29,26.1,200.45 +6395,7,E08000008,4,55.93,183.29,26.1,200.45 +6790,9,E08000008,1,52.2,129.97,26.1,142.02 +7116,9,E08000008,2,59.66,143.37,26.1,155.41 +7442,9,E08000008,3,66.17,172.84,26.1,187.57 +7768,9,E08000008,4,72.71,229.13,26.1,250.54 +8094,10,E08000008,0,55.36,251.95,18.44,275.54 +271,1,E07000199,1,53.13,99.69,26.1,125.4 +597,1,E07000199,2,58.72,117.9,26.1,138.27 +923,1,E07000199,3,69.9,133.98,26.1,161.86 +1249,1,E07000199,4,81.09,162.93,26.1,180.08 +1575,3,E07000199,1,46.6,88.96,26.1,98.62 +1901,3,E07000199,2,50.34,95.42,26.1,103.98 +2227,3,E07000199,3,60.59,105.05,26.1,121.11 +2553,3,E07000199,4,68.97,128.63,26.1,128.63 +2879,2,E07000199,0,38.95,242.82,18.44,378.37 +3205,4,E07000199,0,46.12,106.09,18.44,106.09 +3531,6,E07000199,0,38.95,225.15,18.44,245.18 +3857,8,E07000199,0,46.12,225.15,18.44,245.18 +4303,5,E07000199,1,53.13,103.98,26.1,113.61 +4524,7,E07000199,1,46.6,103.98,26.1,113.61 +4913,5,E07000199,2,58.72,126.48,26.1,138.27 +5209,7,E07000199,2,50.34,126.48,26.1,138.27 +5544,5,E07000199,3,69.9,148.99,26.1,161.86 +5800,7,E07000199,3,60.59,148.99,26.1,161.86 +6196,5,E07000199,4,81.09,204.74,26.1,222.95 +6461,7,E07000199,4,68.97,204.74,26.1,222.95 +6791,9,E07000199,1,53.13,129.97,26.1,142.02 +7117,9,E07000199,2,58.72,158.09,26.1,172.84 +7443,9,E07000199,3,69.9,186.23,26.1,202.34 +7769,9,E07000199,4,81.09,255.92,26.1,278.69 +8095,10,E07000199,0,38.95,281.43,18.44,306.45 +272,1,E07000215,1,57.79,124.33,26.1,177.93 +598,1,E07000215,2,71.78,147.91,26.1,188.66 +924,1,E07000215,3,82.02,162.93,26.1,205.81 +1250,1,E07000215,4,90.42,180.08,26.1,224.01 +1576,3,E07000215,1,52.2,116.83,26.1,160.78 +1902,3,E07000215,2,63.38,130.77,26.1,146.84 +2228,3,E07000215,3,68.97,151.13,26.1,187.58 +2554,3,E07000215,4,73.64,186.51,26.1,196.15 +2880,2,E07000215,0,61.49,265.21,18.44,340.65 +3206,4,E07000215,0,48.18,193.32,18.44,202.73 +3532,6,E07000215,0,61.49,735.54,18.44,801.56 +3858,8,E07000215,0,48.18,735.54,18.44,801.56 +4033,5,E07000215,1,57.79,166.14,26.1,181.15 +4100,7,E07000215,1,52.2,166.14,26.1,181.15 +4648,5,E07000215,2,71.78,211.17,26.1,230.44 +4795,7,E07000215,2,63.38,211.17,26.1,230.44 +5300,5,E07000215,3,82.02,307.63,26.1,335.49 +5400,7,E07000215,3,68.97,307.63,26.1,335.49 +5985,5,E07000215,4,90.42,668.85,26.1,728.88 +6089,7,E07000215,4,73.64,668.85,26.1,728.88 +6792,9,E07000215,1,57.79,207.68,26.1,226.44 +7118,9,E07000215,2,71.78,263.95,26.1,288.07 +7444,9,E07000215,3,82.02,384.53,26.1,419.36 +7770,9,E07000215,4,90.42,836.07,26.1,911.09 +8096,10,E07000215,0,61.49,919.43,18.44,1001.95 +274,1,E07000045,1,49.41,108.27,26.1,141.49 +600,1,E07000045,2,55.93,122.19,26.1,145.77 +926,1,E07000045,3,62.45,142.56,26.1,162.93 +1252,1,E07000045,4,71.78,159.7,26.1,196.15 +1578,3,E07000045,1,47.54,90.03,26.1,212.24 +1904,3,E07000045,2,54.99,101.83,26.1,112.54 +2230,3,E07000045,3,62.45,110.39,26.1,127.56 +2556,3,E07000045,4,74.57,131.84,26.1,131.84 +2882,2,E07000045,0,54.33,228.68,18.44,354.8 +3208,4,E07000045,0,54.33,114.33,18.44,140.27 +3534,6,E07000045,0,54.33,275.83,18.44,300.58 +3860,8,E07000045,0,54.33,275.83,18.44,300.58 +3941,7,E07000045,1,47.54,114.68,26.1,124.33 +4225,5,E07000045,1,49.41,114.68,26.1,124.33 +4861,5,E07000045,2,55.93,148.99,26.1,161.86 +5138,7,E07000045,2,54.99,148.99,26.1,161.86 +5492,5,E07000045,3,62.45,177.93,26.1,192.94 +5718,7,E07000045,3,62.45,177.93,26.1,192.94 +6030,5,E07000045,4,71.78,250.82,26.1,273.34 +6430,7,E07000045,4,74.57,250.82,26.1,273.34 +6794,9,E07000045,1,49.41,143.37,26.1,155.41 +7120,9,E07000045,2,55.93,186.23,26.1,202.34 +7446,9,E07000045,3,62.45,222.43,26.1,241.18 +7772,9,E07000045,4,71.78,313.51,26.1,341.67 +8098,10,E07000045,0,54.33,344.81,18.44,375.73 +275,1,E06000020,1,53.13,99.69,26.1,125.4 +601,1,E06000020,2,58.72,117.9,26.1,138.27 +927,1,E06000020,3,69.9,133.98,26.1,161.86 +1253,1,E06000020,4,81.09,162.93,26.1,180.08 +1579,3,E06000020,1,46.6,88.96,26.1,98.62 +1905,3,E06000020,2,50.34,95.42,26.1,103.98 +2231,3,E06000020,3,60.59,105.05,26.1,121.11 +2557,3,E06000020,4,68.97,128.63,26.1,128.63 +2883,2,E06000020,0,38.95,242.82,18.44,378.37 +3209,4,E06000020,0,46.12,106.09,18.44,106.09 +3535,6,E06000020,0,38.95,226.32,18.44,246.36 +3861,8,E06000020,0,46.12,226.32,18.44,246.36 +4304,5,E06000020,1,53.13,103.98,26.1,113.61 +4525,7,E06000020,1,46.6,103.98,26.1,113.61 +4914,5,E06000020,2,58.72,126.48,26.1,138.27 +5210,7,E06000020,2,50.34,126.48,26.1,138.27 +5545,5,E06000020,3,69.9,143.62,26.1,156.49 +5801,7,E06000020,3,60.59,143.62,26.1,156.49 +6197,5,E06000020,4,81.09,205.81,26.1,224.01 +6462,7,E06000020,4,68.97,205.81,26.1,224.01 +6795,9,E06000020,1,53.13,129.97,26.1,142.02 +7121,9,E06000020,2,58.72,158.09,26.1,172.84 +7447,9,E06000020,3,69.9,179.53,26.1,195.6 +7773,9,E06000020,4,81.09,257.26,26.1,280.03 +8099,10,E06000020,0,38.95,282.91,18.44,307.95 +276,1,E07000076,1,54.99,120.05,26.1,150.06 +602,1,E07000076,2,65.24,143.62,26.1,169.36 +928,1,E07000076,3,71.78,157.56,26.1,182.22 +1254,1,E07000076,4,82.02,172.58,26.1,180.08 +1580,3,E07000076,1,50.34,100.76,26.1,132.91 +1906,3,E07000076,2,58.72,118.97,26.1,133.98 +2232,3,E07000076,3,64.31,131.84,26.1,144.7 +2558,3,E07000076,4,71.78,150.06,26.1,160.78 +2884,2,E07000076,0,35.87,223.96,18.44,418.45 +3210,4,E07000076,0,55.36,134.38,18.44,314.73 +3536,6,E07000076,0,35.87,248.71,18.44,272.3 +3862,8,E07000076,0,55.36,248.71,18.44,272.3 +4157,5,E07000076,1,54.99,112.54,26.1,122.19 +4274,7,E07000076,1,50.34,112.54,26.1,122.19 +4738,5,E07000076,2,65.24,145.77,26.1,157.56 +5000,7,E07000076,2,58.72,145.77,26.1,157.56 +5457,5,E07000076,3,71.78,172.58,26.1,187.58 +5643,7,E07000076,3,64.31,172.58,26.1,187.58 +6167,5,E07000076,4,82.02,228.29,26.1,247.6 +6305,7,E07000076,4,71.78,228.29,26.1,247.6 +6796,9,E07000076,1,54.99,140.68,26.1,152.74 +7122,9,E07000076,2,65.24,182.21,26.1,196.95 +7448,9,E07000076,3,71.78,215.73,26.1,234.49 +7774,9,E07000076,4,82.02,285.39,26.1,309.5 +8100,10,E07000076,0,35.87,310.9,18.44,340.38 +277,1,E07000093,1,57.79,124.33,26.1,177.93 +603,1,E07000093,2,71.78,147.91,26.1,188.66 +929,1,E07000093,3,82.02,162.93,26.1,205.81 +1255,1,E07000093,4,90.42,180.08,26.1,224.01 +1581,3,E07000093,1,52.2,116.83,26.1,160.78 +1907,3,E07000093,2,63.38,130.77,26.1,146.84 +2233,3,E07000093,3,68.97,151.13,26.1,187.58 +2559,3,E07000093,4,73.64,186.51,26.1,196.15 +2885,2,E07000093,0,61.49,265.21,18.44,340.65 +3211,4,E07000093,0,48.18,193.32,18.44,202.73 +3537,6,E07000093,0,61.49,424.35,18.44,463.25 +3863,8,E07000093,0,48.18,424.35,18.44,463.25 +4034,5,E07000093,1,57.79,138.27,26.1,150.06 +4101,7,E07000093,1,52.2,138.27,26.1,150.06 +4649,5,E07000093,2,71.78,182.22,26.1,199.38 +4796,7,E07000093,2,63.38,182.22,26.1,199.38 +5301,5,E07000093,3,82.02,216.52,26.1,236.89 +5401,7,E07000093,3,68.97,216.52,26.1,236.89 +5986,5,E07000093,4,90.42,385.87,26.1,421.25 +6090,7,E07000093,4,73.64,385.87,26.1,421.25 +6797,9,E07000093,1,57.79,172.84,26.1,187.57 +7123,9,E07000093,2,71.78,227.8,26.1,249.22 +7449,9,E07000093,3,82.02,270.66,26.1,296.11 +7775,9,E07000093,4,90.42,482.35,26.1,526.56 +8101,10,E07000093,0,61.49,530.44,18.44,579.06 +278,1,E07000083,1,49.41,108.27,26.1,141.49 +604,1,E07000083,2,55.93,122.19,26.1,145.77 +930,1,E07000083,3,62.45,142.56,26.1,162.93 +1256,1,E07000083,4,71.78,159.7,26.1,196.15 +1582,3,E07000083,1,47.54,90.03,26.1,212.24 +1908,3,E07000083,2,54.99,101.83,26.1,112.54 +2234,3,E07000083,3,62.45,110.39,26.1,127.56 +2560,3,E07000083,4,74.57,131.84,26.1,131.84 +2886,2,E07000083,0,54.33,228.68,18.44,354.8 +3212,4,E07000083,0,54.33,114.33,18.44,140.27 +3538,6,E07000083,0,54.33,351.26,18.44,383.09 +3864,8,E07000083,0,54.33,351.26,18.44,383.09 +3942,7,E07000083,1,47.54,114.68,26.1,124.33 +4226,5,E07000083,1,49.41,114.68,26.1,124.33 +4862,5,E07000083,2,55.93,148.99,26.1,161.86 +5139,7,E07000083,2,54.99,148.99,26.1,161.86 +5493,5,E07000083,3,62.45,177.93,26.1,192.94 +5719,7,E07000083,3,62.45,177.93,26.1,192.94 +6031,5,E07000083,4,71.78,319.42,26.1,348.36 +6431,7,E07000083,4,74.57,319.42,26.1,348.36 +6798,9,E07000083,1,49.41,143.37,26.1,155.41 +7124,9,E07000083,2,55.93,186.23,26.1,202.34 +7450,9,E07000083,3,62.45,222.43,26.1,241.18 +7776,9,E07000083,4,71.78,399.29,26.1,435.45 +8102,10,E07000083,0,54.33,439.1,18.44,478.86 +279,1,E07000114,1,57.79,124.33,26.1,177.93 +605,1,E07000114,2,71.78,147.91,26.1,188.66 +931,1,E07000114,3,82.02,162.93,26.1,205.81 +1257,1,E07000114,4,90.42,180.08,26.1,224.01 +1583,3,E07000114,1,52.2,116.83,26.1,160.78 +1909,3,E07000114,2,63.38,130.77,26.1,146.84 +2235,3,E07000114,3,68.97,151.13,26.1,187.58 +2561,3,E07000114,4,73.64,186.51,26.1,196.15 +2887,2,E07000114,0,61.49,265.21,18.44,340.65 +3213,4,E07000114,0,48.18,193.32,18.44,202.73 +3539,6,E07000114,0,61.49,248.71,18.44,272.3 +3865,8,E07000114,0,48.18,248.71,18.44,272.3 +4035,5,E07000114,1,57.79,98.62,26.1,108.27 +4102,7,E07000114,1,52.2,98.62,26.1,108.27 +4650,5,E07000114,2,71.78,132.91,26.1,145.77 +4797,7,E07000114,2,63.38,132.91,26.1,145.77 +5302,5,E07000114,3,82.02,166.14,26.1,181.15 +5402,7,E07000114,3,68.97,166.14,26.1,181.15 +5987,5,E07000114,4,90.42,228.29,26.1,247.6 +6091,7,E07000114,4,73.64,228.29,26.1,247.6 +6799,9,E07000114,1,57.79,123.26,26.1,135.33 +7125,9,E07000114,2,71.78,166.13,26.1,182.21 +7451,9,E07000114,3,82.02,207.68,26.1,226.44 +7777,9,E07000114,4,90.42,285.39,26.1,309.5 +8103,10,E07000114,0,61.49,310.9,18.44,340.38 +281,1,E07000102,1,54.99,120.05,26.1,150.06 +607,1,E07000102,2,65.24,143.62,26.1,169.36 +933,1,E07000102,3,71.78,157.56,26.1,182.22 +1259,1,E07000102,4,82.02,172.58,26.1,180.08 +1585,3,E07000102,1,50.34,100.76,26.1,132.91 +1911,3,E07000102,2,58.72,118.97,26.1,133.98 +2237,3,E07000102,3,64.31,131.84,26.1,144.7 +2563,3,E07000102,4,71.78,150.06,26.1,160.78 +2889,2,E07000102,0,35.87,223.96,18.44,418.45 +3215,4,E07000102,0,55.36,134.38,18.44,314.73 +3541,6,E07000102,0,35.87,623.56,18.44,678.97 +3867,8,E07000102,0,55.36,623.56,18.44,678.97 +4158,5,E07000102,1,54.99,172.58,26.1,187.58 +4275,7,E07000102,1,50.34,172.58,26.1,187.58 +4739,5,E07000102,2,65.24,262.61,26.1,285.11 +5001,7,E07000102,2,58.72,262.61,26.1,285.11 +5458,5,E07000102,3,71.78,386.95,26.1,421.25 +5644,7,E07000102,3,64.31,386.95,26.1,421.25 +6168,5,E07000102,4,82.02,567.02,26.1,617.4 +6306,7,E07000102,4,71.78,567.02,26.1,617.4 +6801,9,E07000102,1,54.99,215.73,26.1,234.49 +7127,9,E07000102,2,65.24,328.26,26.1,356.4 +7453,9,E07000102,3,71.78,483.69,26.1,526.56 +7779,9,E07000102,4,82.02,708.78,26.1,771.75 +8105,10,E07000102,0,35.87,779.44,18.44,848.71 +282,1,E06000034,1,54.99,120.05,26.1,150.06 +608,1,E06000034,2,65.24,143.62,26.1,169.36 +934,1,E06000034,3,71.78,157.56,26.1,182.22 +1260,1,E06000034,4,82.02,172.58,26.1,180.08 +1586,3,E06000034,1,50.34,100.76,26.1,132.91 +1912,3,E06000034,2,58.72,118.97,26.1,133.98 +2238,3,E06000034,3,64.31,131.84,26.1,144.7 +2564,3,E06000034,4,71.78,150.06,26.1,160.78 +2890,2,E06000034,0,35.87,223.96,18.44,418.45 +3216,4,E06000034,0,55.36,134.38,18.44,314.73 +3542,6,E06000034,0,35.87,325.34,18.44,354.8 +3868,8,E06000034,0,55.36,325.34,18.44,354.8 +4159,5,E06000034,1,54.99,136.13,26.1,148.99 +4276,7,E06000034,1,50.34,136.13,26.1,148.99 +4740,5,E06000034,2,65.24,172.58,26.1,187.58 +5002,7,E06000034,2,58.72,172.58,26.1,187.58 +5459,5,E06000034,3,71.78,205.81,26.1,224.01 +5645,7,E06000034,3,64.31,205.81,26.1,224.01 +6169,5,E06000034,4,82.02,295.83,26.1,322.64 +6307,7,E06000034,4,71.78,295.83,26.1,322.64 +6802,9,E06000034,1,54.99,170.16,26.1,186.23 +7128,9,E06000034,2,65.24,215.73,26.1,234.49 +7454,9,E06000034,3,71.78,257.26,26.1,280.03 +7780,9,E06000034,4,82.02,369.81,26.1,403.3 +8106,10,E06000034,0,35.87,406.66,18.44,443.51 +283,1,E07000115,1,57.79,124.33,26.1,177.93 +609,1,E07000115,2,71.78,147.91,26.1,188.66 +935,1,E07000115,3,82.02,162.93,26.1,205.81 +1261,1,E07000115,4,90.42,180.08,26.1,224.01 +1587,3,E07000115,1,52.2,116.83,26.1,160.78 +1913,3,E07000115,2,63.38,130.77,26.1,146.84 +2239,3,E07000115,3,68.97,151.13,26.1,187.58 +2565,3,E07000115,4,73.64,186.51,26.1,196.15 +2891,2,E07000115,0,61.49,265.21,18.44,340.65 +3217,4,E07000115,0,48.18,193.32,18.44,202.73 +3543,6,E07000115,0,61.49,486.82,18.44,530.44 +3869,8,E07000115,0,48.18,486.82,18.44,530.44 +4037,5,E07000115,1,57.79,138.27,26.1,150.06 +4104,7,E07000115,1,52.2,138.27,26.1,150.06 +4652,5,E07000115,2,71.78,182.22,26.1,199.38 +4799,7,E07000115,2,63.38,182.22,26.1,199.38 +5304,5,E07000115,3,82.02,209.03,26.1,228.29 +5404,7,E07000115,3,68.97,209.03,26.1,228.29 +5989,5,E07000115,4,90.42,442.67,26.1,482.35 +6093,7,E07000115,4,73.64,442.67,26.1,482.35 +6803,9,E07000115,1,57.79,172.84,26.1,187.57 +7129,9,E07000115,2,71.78,227.8,26.1,249.22 +7455,9,E07000115,3,82.02,261.26,26.1,285.39 +7781,9,E07000115,4,90.42,553.35,26.1,602.94 +8107,10,E07000115,0,61.49,608.53,18.44,663.05 +284,1,E06000027,1,49.41,108.27,26.1,141.49 +610,1,E06000027,2,55.93,122.19,26.1,145.77 +936,1,E06000027,3,62.45,142.56,26.1,162.93 +1262,1,E06000027,4,71.78,159.7,26.1,196.15 +1588,3,E06000027,1,47.54,90.03,26.1,212.24 +1914,3,E06000027,2,54.99,101.83,26.1,112.54 +2240,3,E06000027,3,62.45,110.39,26.1,127.56 +2566,3,E06000027,4,74.57,131.84,26.1,131.84 +2892,2,E06000027,0,54.33,228.68,18.44,354.8 +3218,4,E06000027,0,54.33,114.33,18.44,140.27 +3544,6,E06000027,0,54.33,241.64,18.44,264.04 +3870,8,E06000027,0,54.33,241.64,18.44,264.04 +3943,7,E06000027,1,47.54,110.39,26.1,120.05 +4227,5,E06000027,1,49.41,110.39,26.1,120.05 +4863,5,E06000027,2,55.93,141.49,26.1,154.35 +5140,7,E06000027,2,54.99,141.49,26.1,154.35 +5494,5,E06000027,3,62.45,166.14,26.1,181.15 +5720,7,E06000027,3,62.45,166.14,26.1,181.15 +6032,5,E06000027,4,71.78,219.73,26.1,240.09 +6432,7,E06000027,4,74.57,219.73,26.1,240.09 +6804,9,E06000027,1,49.41,138.01,26.1,150.06 +7130,9,E06000027,2,55.93,176.86,26.1,192.93 +7456,9,E06000027,3,62.45,207.68,26.1,226.44 +7782,9,E06000027,4,71.78,274.67,26.1,300.12 +8108,10,E06000027,0,54.33,302.04,18.44,330.05 +285,1,E07000046,1,49.41,108.27,26.1,141.49 +611,1,E07000046,2,55.93,122.19,26.1,145.77 +937,1,E07000046,3,62.45,142.56,26.1,162.93 +1263,1,E07000046,4,71.78,159.7,26.1,196.15 +1589,3,E07000046,1,47.54,90.03,26.1,212.24 +1915,3,E07000046,2,54.99,101.83,26.1,112.54 +2241,3,E07000046,3,62.45,110.39,26.1,127.56 +2567,3,E07000046,4,74.57,131.84,26.1,131.84 +2893,2,E07000046,0,54.33,228.68,18.44,354.8 +3219,4,E07000046,0,54.33,114.33,18.44,140.27 +3545,6,E07000046,0,54.33,213.35,18.44,233.38 +3871,8,E07000046,0,54.33,213.35,18.44,233.38 +3944,7,E07000046,1,47.54,98.62,26.1,108.27 +4228,5,E07000046,1,49.41,98.62,26.1,108.27 +4864,5,E07000046,2,55.93,124.33,26.1,135.06 +5141,7,E07000046,2,54.99,124.33,26.1,135.06 +5495,5,E07000046,3,62.45,148.99,26.1,161.86 +5721,7,E07000046,3,62.45,148.99,26.1,161.86 +6033,5,E07000046,4,71.78,194.01,26.1,212.24 +6433,7,E07000046,4,74.57,194.01,26.1,212.24 +6805,9,E07000046,1,49.41,123.26,26.1,135.33 +7131,9,E07000046,2,55.93,155.41,26.1,168.82 +7457,9,E07000046,3,62.45,186.23,26.1,202.34 +7783,9,E07000046,4,71.78,242.51,26.1,265.29 +8109,10,E07000046,0,54.33,266.69,18.44,291.74 +286,1,E09000030,1,66.17,146.84,26.1,199.38 +612,1,E09000030,2,78.29,158.63,26.1,194.01 +938,1,E09000030,3,84.82,168.29,26.1,228.29 +1264,1,E09000030,4,102.51,188.66,26.1,254.03 +1590,3,E09000030,1,58.72,120.05,26.1,147.91 +1916,3,E09000030,2,64.31,140.42,26.1,176.86 +2242,3,E09000030,3,71.78,160.78,26.1,202.58 +2568,3,E09000030,4,83.89,262.61,26.1,263.68 +2894,2,E09000030,0,69.7,313.55,18.44,497.44 +3220,4,E09000030,0,59.45,367.77,18.44,398.42 +3546,6,E09000030,0,69.7,594.11,18.44,648.32 +3872,8,E09000030,0,59.45,594.11,18.44,648.32 +3979,5,E09000030,1,66.17,320.49,26.1,349.42 +4193,7,E09000030,1,58.72,320.49,26.1,349.42 +4594,5,E09000030,2,78.29,393.38,26.1,428.76 +4694,7,E09000030,2,64.31,393.38,26.1,428.76 +5246,5,E09000030,3,84.82,476.98,26.1,519.86 +5346,7,E09000030,3,71.78,476.98,26.1,519.86 +5898,7,E09000030,4,83.89,541.3,26.1,589.54 +5931,5,E09000030,4,102.51,541.3,26.1,589.54 +6806,9,E09000030,1,66.17,400.6,26.1,436.8 +7132,9,E09000030,2,78.29,491.71,26.1,535.95 +7458,9,E09000030,3,84.82,596.23,26.1,649.84 +7784,9,E09000030,4,102.51,676.64,26.1,736.91 +8110,10,E09000030,0,69.7,742.61,18.44,810.39 +287,1,E08000009,1,52.2,94.33,26.1,117.9 +613,1,E08000009,2,59.66,108.27,26.1,136.13 +939,1,E08000009,3,66.17,121.11,26.1,146.84 +1265,1,E08000009,4,72.71,135.06,26.1,160.78 +1591,3,E08000009,1,43.8,86.81,26.1,101.83 +1917,3,E08000009,2,54.06,95.42,26.1,114.68 +2243,3,E08000009,3,58.72,106.12,26.1,125.4 +2569,3,E08000009,4,55.93,120.05,26.1,135.06 +2895,2,E08000009,0,55.36,236.93,18.44,338.29 +3221,4,E08000009,0,32.8,464.43,18.44,592.92 +3547,6,E08000009,0,55.36,398.42,18.44,434.96 +3873,8,E08000009,0,32.8,398.42,18.44,434.96 +4384,5,E08000009,1,52.2,125.4,26.1,136.13 +4496,7,E08000009,1,43.8,125.4,26.1,136.13 +4954,5,E08000009,2,59.66,158.63,26.1,174.72 +5092,7,E08000009,2,54.06,158.63,26.1,174.72 +5597,5,E08000009,3,66.17,194.01,26.1,212.24 +5772,7,E08000009,3,58.72,194.01,26.1,212.24 +6345,5,E08000009,4,72.71,362.28,26.1,395.52 +6396,7,E08000009,4,55.93,362.28,26.1,395.52 +6807,9,E08000009,1,52.2,156.77,26.1,170.16 +7133,9,E08000009,2,59.66,198.3,26.1,218.38 +7459,9,E08000009,3,66.17,242.51,26.1,265.29 +7785,9,E08000009,4,72.71,452.87,26.1,494.42 +8111,10,E08000009,0,55.36,498.02,18.44,543.71 +288,1,E07000116,1,57.79,124.33,26.1,177.93 +614,1,E07000116,2,71.78,147.91,26.1,188.66 +940,1,E07000116,3,82.02,162.93,26.1,205.81 +1266,1,E07000116,4,90.42,180.08,26.1,224.01 +1592,3,E07000116,1,52.2,116.83,26.1,160.78 +1918,3,E07000116,2,63.38,130.77,26.1,146.84 +2244,3,E07000116,3,68.97,151.13,26.1,187.58 +2570,3,E07000116,4,73.64,186.51,26.1,196.15 +2896,2,E07000116,0,61.49,265.21,18.44,340.65 +3222,4,E07000116,0,48.18,193.32,18.44,202.73 +3548,6,E07000116,0,61.49,587.03,18.44,638.89 +3874,8,E07000116,0,48.18,587.03,18.44,638.89 +4038,5,E07000116,1,57.79,153.28,26.1,168.29 +4105,7,E07000116,1,52.2,153.28,26.1,168.29 +4653,5,E07000116,2,71.78,204.74,26.1,222.95 +4800,7,E07000116,2,63.38,204.74,26.1,222.95 +5305,5,E07000116,3,82.02,284.04,26.1,309.78 +5405,7,E07000116,3,68.97,284.04,26.1,309.78 +5990,5,E07000116,4,90.42,533.8,26.1,580.94 +6094,7,E07000116,4,73.64,533.8,26.1,580.94 +6808,9,E07000116,1,57.79,191.6,26.1,210.37 +7134,9,E07000116,2,71.78,255.92,26.1,278.69 +7460,9,E07000116,3,82.02,355.06,26.1,387.21 +7786,9,E07000116,4,90.42,667.24,26.1,726.18 +8112,10,E07000116,0,61.49,733.79,18.44,798.6 +289,1,E07000077,1,54.99,120.05,26.1,150.06 +615,1,E07000077,2,65.24,143.62,26.1,169.36 +941,1,E07000077,3,71.78,157.56,26.1,182.22 +1267,1,E07000077,4,82.02,172.58,26.1,180.08 +1593,3,E07000077,1,50.34,100.76,26.1,132.91 +1919,3,E07000077,2,58.72,118.97,26.1,133.98 +2245,3,E07000077,3,64.31,131.84,26.1,144.7 +2571,3,E07000077,4,71.78,150.06,26.1,160.78 +2897,2,E07000077,0,35.87,223.96,18.44,418.45 +3223,4,E07000077,0,55.36,134.38,18.44,314.73 +3549,6,E07000077,0,35.87,437.32,18.44,476.22 +3875,8,E07000077,0,55.36,437.32,18.44,476.22 +4160,5,E07000077,1,54.99,136.13,26.1,148.99 +4277,7,E07000077,1,50.34,136.13,26.1,148.99 +4741,5,E07000077,2,65.24,177.93,26.1,192.94 +5003,7,E07000077,2,58.72,177.93,26.1,192.94 +5460,5,E07000077,3,71.78,221.88,26.1,242.25 +5646,7,E07000077,3,64.31,221.88,26.1,242.25 +6170,5,E07000077,4,82.02,397.66,26.1,433.04 +6308,7,E07000077,4,71.78,397.66,26.1,433.04 +6809,9,E07000077,1,54.99,170.16,26.1,186.23 +7135,9,E07000077,2,65.24,222.43,26.1,241.18 +7461,9,E07000077,3,71.78,277.34,26.1,302.81 +7787,9,E07000077,4,82.02,497.09,26.1,541.3 +8113,10,E07000077,0,35.87,546.66,18.44,595.28 +290,1,E07000180,1,57.79,124.33,26.1,177.93 +616,1,E07000180,2,71.78,147.91,26.1,188.66 +942,1,E07000180,3,82.02,162.93,26.1,205.81 +1268,1,E07000180,4,90.42,180.08,26.1,224.01 +1594,3,E07000180,1,52.2,116.83,26.1,160.78 +1920,3,E07000180,2,63.38,130.77,26.1,146.84 +2246,3,E07000180,3,68.97,151.13,26.1,187.58 +2572,3,E07000180,4,73.64,186.51,26.1,196.15 +2898,2,E07000180,0,61.49,265.21,18.44,340.65 +3224,4,E07000180,0,48.18,193.32,18.44,202.73 +3550,6,E07000180,0,61.49,437.32,18.44,476.22 +3876,8,E07000180,0,48.18,437.32,18.44,476.22 +4039,5,E07000180,1,57.79,160.78,26.1,175.78 +4106,7,E07000180,1,52.2,160.78,26.1,175.78 +4654,5,E07000180,2,71.78,194.01,26.1,212.24 +4801,7,E07000180,2,63.38,194.01,26.1,212.24 +5306,5,E07000180,3,82.02,240.09,26.1,261.54 +5406,7,E07000180,3,68.97,240.09,26.1,261.54 +5991,5,E07000180,4,90.42,397.66,26.1,433.04 +6095,7,E07000180,4,73.64,397.66,26.1,433.04 +6810,9,E07000180,1,57.79,200.97,26.1,219.74 +7136,9,E07000180,2,71.78,242.51,26.1,265.29 +7462,9,E07000180,3,82.02,300.12,26.1,326.92 +7788,9,E07000180,4,90.42,497.09,26.1,541.3 +8114,10,E07000180,0,61.49,546.66,18.44,595.28 +291,1,E08000036,1,51.27,92.19,26.1,114.68 +617,1,E08000036,2,58.72,109.33,26.1,141.49 +943,1,E08000036,3,63.38,121.11,26.1,162.93 +1269,1,E08000036,4,73.64,145.77,26.1,180.08 +1595,3,E08000036,1,46.6,82.54,26.1,93.26 +1921,3,E08000036,2,53.13,113.61,26.1,145.77 +2247,3,E08000036,3,56.86,105.05,26.1,114.68 +2573,3,E08000036,4,64.31,122.19,26.1,176.86 +2899,2,E08000036,0,52.28,232.2,18.44,319.44 +3225,4,E08000036,0,51.26,159.13,18.44,188.6 +3551,6,E08000036,0,52.28,213.35,18.44,233.38 +3877,8,E08000036,0,51.26,213.35,18.44,233.38 +4409,5,E08000036,1,51.27,110.39,26.1,120.05 +4563,7,E08000036,1,46.6,110.39,26.1,120.05 +4831,7,E08000036,2,53.13,126.48,26.1,138.27 +4889,5,E08000036,2,58.72,126.48,26.1,138.27 +5520,5,E08000036,3,63.38,138.27,26.1,150.06 +5867,7,E08000036,3,56.86,138.27,26.1,150.06 +6125,5,E08000036,4,73.64,194.01,26.1,212.24 +6223,7,E08000036,4,64.31,194.01,26.1,212.24 +6811,9,E08000036,1,51.27,138.01,26.1,150.06 +7137,9,E08000036,2,53.13,158.09,26.1,172.84 +7463,9,E08000036,3,63.38,172.84,26.1,187.57 +7789,9,E08000036,4,73.64,242.51,26.1,265.29 +8115,10,E08000036,0,52.28,266.69,18.44,291.74 +292,1,E08000030,1,53.13,99.69,26.1,125.4 +618,1,E08000030,2,58.72,117.9,26.1,138.27 +944,1,E08000030,3,69.9,133.98,26.1,161.86 +1270,1,E08000030,4,81.09,162.93,26.1,180.08 +1596,3,E08000030,1,46.6,88.96,26.1,98.62 +1922,3,E08000030,2,50.34,95.42,26.1,103.98 +2248,3,E08000030,3,60.59,105.05,26.1,121.11 +2574,3,E08000030,4,68.97,128.63,26.1,128.63 +2900,2,E08000030,0,38.95,242.82,18.44,378.37 +3226,4,E08000030,0,46.12,106.09,18.44,106.09 +3552,6,E08000030,0,38.95,213.35,18.44,233.38 +3878,8,E08000030,0,46.12,213.35,18.44,233.38 +4305,5,E08000030,1,53.13,98.62,26.1,108.27 +4526,7,E08000030,1,46.6,98.62,26.1,108.27 +4915,5,E08000030,2,58.72,121.11,26.1,131.84 +5211,7,E08000030,2,50.34,121.11,26.1,131.84 +5546,5,E08000030,3,69.9,131.84,26.1,144.7 +5802,7,E08000030,3,60.59,131.84,26.1,144.7 +6198,5,E08000030,4,81.09,194.01,26.1,212.24 +6463,7,E08000030,4,68.97,194.01,26.1,212.24 +6812,9,E08000030,1,53.13,123.26,26.1,135.33 +7138,9,E08000030,2,58.72,151.41,26.1,164.8 +7464,9,E08000030,3,69.9,164.8,26.1,180.87 +7790,9,E08000030,4,81.09,242.51,26.1,265.29 +8116,10,E08000030,0,38.95,266.69,18.44,291.74 +293,1,E09000031,1,66.17,146.84,26.1,199.38 +619,1,E09000031,2,78.29,158.63,26.1,194.01 +945,1,E09000031,3,84.82,168.29,26.1,228.29 +1271,1,E09000031,4,102.51,188.66,26.1,254.03 +1597,3,E09000031,1,58.72,120.05,26.1,147.91 +1923,3,E09000031,2,64.31,140.42,26.1,176.86 +2249,3,E09000031,3,71.78,160.78,26.1,202.58 +2575,3,E09000031,4,83.89,262.61,26.1,263.68 +2901,2,E09000031,0,69.7,313.55,18.44,497.44 +3227,4,E09000031,0,59.45,367.77,18.44,398.42 +3553,6,E09000031,0,69.7,394.88,18.44,431.42 +3879,8,E09000031,0,59.45,394.88,18.44,431.42 +3980,5,E09000031,1,66.17,188.66,26.1,205.81 +4194,7,E09000031,1,58.72,188.66,26.1,205.81 +4595,5,E09000031,2,78.29,240.09,26.1,261.54 +4695,7,E09000031,2,64.31,240.09,26.1,261.54 +5247,5,E09000031,3,84.82,295.83,26.1,322.64 +5347,7,E09000031,3,71.78,295.83,26.1,322.64 +5899,7,E09000031,4,83.89,360.15,26.1,392.31 +5932,5,E09000031,4,102.51,360.15,26.1,392.31 +6813,9,E09000031,1,66.17,235.82,26.1,257.26 +7139,9,E09000031,2,78.29,300.12,26.1,326.92 +7465,9,E09000031,3,84.82,369.81,26.1,403.3 +7791,9,E09000031,4,102.51,450.18,26.1,490.4 +8117,10,E09000031,0,69.7,493.61,18.44,539.28 +294,1,E09000032,1,66.17,146.84,26.1,199.38 +620,1,E09000032,2,78.29,158.63,26.1,194.01 +946,1,E09000032,3,84.82,168.29,26.1,228.29 +1272,1,E09000032,4,102.51,188.66,26.1,254.03 +1598,3,E09000032,1,58.72,120.05,26.1,147.91 +1924,3,E09000032,2,64.31,140.42,26.1,176.86 +2250,3,E09000032,3,71.78,160.78,26.1,202.58 +2576,3,E09000032,4,83.89,262.61,26.1,263.68 +2902,2,E09000032,0,69.7,313.55,18.44,497.44 +3228,4,E09000032,0,59.45,367.77,18.44,398.42 +3554,6,E09000032,0,69.7,744.99,18.44,813.35 +3880,8,E09000032,0,59.45,744.99,18.44,813.35 +3981,5,E09000032,1,66.17,295.83,26.1,322.64 +4195,7,E09000032,1,58.72,295.83,26.1,322.64 +4596,5,E09000032,2,78.29,368.73,26.1,401.95 +4696,7,E09000032,2,64.31,368.73,26.1,401.95 +5248,5,E09000032,3,84.82,457.7,26.1,499.48 +5348,7,E09000032,3,71.78,457.7,26.1,499.48 +5900,7,E09000032,4,83.89,677.43,26.1,739.59 +5933,5,E09000032,4,102.51,677.43,26.1,739.59 +6814,9,E09000032,1,66.17,369.81,26.1,403.3 +7140,9,E09000032,2,78.29,460.91,26.1,502.45 +7466,9,E09000032,3,84.82,572.11,26.1,624.36 +7792,9,E09000032,4,102.51,846.77,26.1,924.49 +8118,10,E09000032,0,69.7,931.22,18.44,1016.69 +295,1,E06000007,1,52.2,94.33,26.1,117.9 +621,1,E06000007,2,59.66,108.27,26.1,136.13 +947,1,E06000007,3,66.17,121.11,26.1,146.84 +1273,1,E06000007,4,72.71,135.06,26.1,160.78 +1599,3,E06000007,1,43.8,86.81,26.1,101.83 +1925,3,E06000007,2,54.06,95.42,26.1,114.68 +2251,3,E06000007,3,58.72,106.12,26.1,125.4 +2577,3,E06000007,4,55.93,120.05,26.1,135.06 +2903,2,E06000007,0,55.36,236.93,18.44,338.29 +3229,4,E06000007,0,32.8,464.43,18.44,592.92 +3555,6,E06000007,0,55.36,238.1,18.44,260.5 +3881,8,E06000007,0,32.8,238.1,18.44,260.5 +4385,5,E06000007,1,52.2,103.98,26.1,113.61 +4497,7,E06000007,1,43.8,103.98,26.1,113.61 +4955,5,E06000007,2,59.66,126.48,26.1,138.27 +5093,7,E06000007,2,54.06,126.48,26.1,138.27 +5598,5,E06000007,3,66.17,155.41,26.1,169.36 +5773,7,E06000007,3,58.72,155.41,26.1,169.36 +6346,5,E06000007,4,72.71,216.52,26.1,236.89 +6397,7,E06000007,4,55.93,216.52,26.1,236.89 +6815,9,E06000007,1,52.2,129.97,26.1,142.02 +7141,9,E06000007,2,59.66,158.09,26.1,172.84 +7467,9,E06000007,3,66.17,194.27,26.1,211.69 +7793,9,E06000007,4,72.71,270.66,26.1,296.11 +8119,10,E06000007,0,55.36,297.64,18.44,325.63 +296,1,E07000222,1,53.13,99.69,26.1,125.4 +622,1,E07000222,2,58.72,117.9,26.1,138.27 +948,1,E07000222,3,69.9,133.98,26.1,161.86 +1274,1,E07000222,4,81.09,162.93,26.1,180.08 +1600,3,E07000222,1,46.6,88.96,26.1,98.62 +1926,3,E07000222,2,50.34,95.42,26.1,103.98 +2252,3,E07000222,3,60.59,105.05,26.1,121.11 +2578,3,E07000222,4,68.97,128.63,26.1,128.63 +2904,2,E07000222,0,38.95,242.82,18.44,378.37 +3230,4,E07000222,0,46.12,106.09,18.44,106.09 +3556,6,E07000222,0,38.95,374.83,18.44,409.03 +3882,8,E07000222,0,46.12,374.83,18.44,409.03 +4306,5,E07000222,1,53.13,131.84,26.1,144.7 +4527,7,E07000222,1,46.6,131.84,26.1,144.7 +4916,5,E07000222,2,58.72,166.14,26.1,181.15 +5212,7,E07000222,2,50.34,166.14,26.1,181.15 +5547,5,E07000222,3,69.9,194.01,26.1,212.24 +5803,7,E07000222,3,60.59,194.01,26.1,212.24 +6199,5,E07000222,4,81.09,340.85,26.1,371.94 +6464,7,E07000222,4,68.97,340.85,26.1,371.94 +6816,9,E07000222,1,53.13,164.8,26.1,180.87 +7142,9,E07000222,2,58.72,207.68,26.1,226.44 +7468,9,E07000222,3,69.9,242.51,26.1,265.29 +7794,9,E07000222,4,81.09,426.06,26.1,464.91 +8120,10,E07000222,0,38.95,468.55,18.44,511.3 +297,1,E07000103,1,54.99,120.05,26.1,150.06 +623,1,E07000103,2,65.24,143.62,26.1,169.36 +949,1,E07000103,3,71.78,157.56,26.1,182.22 +1275,1,E07000103,4,82.02,172.58,26.1,180.08 +1601,3,E07000103,1,50.34,100.76,26.1,132.91 +1927,3,E07000103,2,58.72,118.97,26.1,133.98 +2253,3,E07000103,3,64.31,131.84,26.1,144.7 +2579,3,E07000103,4,71.78,150.06,26.1,160.78 +2905,2,E07000103,0,35.87,223.96,18.44,418.45 +3231,4,E07000103,0,55.36,134.38,18.44,314.73 +3557,6,E07000103,0,35.87,623.56,18.44,678.97 +3883,8,E07000103,0,55.36,623.56,18.44,678.97 +4161,5,E07000103,1,54.99,172.58,26.1,187.58 +4278,7,E07000103,1,50.34,172.58,26.1,187.58 +4742,5,E07000103,2,65.24,229.37,26.1,248.67 +5004,7,E07000103,2,58.72,229.37,26.1,248.67 +5461,5,E07000103,3,71.78,284.04,26.1,309.78 +5647,7,E07000103,3,64.31,284.04,26.1,309.78 +6171,5,E07000103,4,82.02,567.02,26.1,617.4 +6309,7,E07000103,4,71.78,567.02,26.1,617.4 +6817,9,E07000103,1,54.99,215.73,26.1,234.49 +7143,9,E07000103,2,65.24,286.72,26.1,310.84 +7469,9,E07000103,3,71.78,355.06,26.1,387.21 +7795,9,E07000103,4,82.02,708.78,26.1,771.75 +8121,10,E07000103,0,35.87,779.44,18.44,848.71 +299,1,E07000216,1,57.79,124.33,26.1,177.93 +625,1,E07000216,2,71.78,147.91,26.1,188.66 +951,1,E07000216,3,82.02,162.93,26.1,205.81 +1277,1,E07000216,4,90.42,180.08,26.1,224.01 +1603,3,E07000216,1,52.2,116.83,26.1,160.78 +1929,3,E07000216,2,63.38,130.77,26.1,146.84 +2255,3,E07000216,3,68.97,151.13,26.1,187.58 +2581,3,E07000216,4,73.64,186.51,26.1,196.15 +2907,2,E07000216,0,61.49,265.21,18.44,340.65 +3233,4,E07000216,0,48.18,193.32,18.44,202.73 +3559,6,E07000216,0,61.49,623.56,18.44,678.97 +3885,8,E07000216,0,48.18,623.56,18.44,678.97 +4040,5,E07000216,1,57.79,175.78,26.1,190.79 +4107,7,E07000216,1,52.2,175.78,26.1,190.79 +4655,5,E07000216,2,71.78,226.16,26.1,247.6 +4802,7,E07000216,2,63.38,226.16,26.1,247.6 +5307,5,E07000216,3,82.02,307.63,26.1,335.49 +5407,7,E07000216,3,68.97,307.63,26.1,335.49 +5992,5,E07000216,4,90.42,567.02,26.1,617.4 +6096,7,E07000216,4,73.64,567.02,26.1,617.4 +6819,9,E07000216,1,57.79,219.74,26.1,238.5 +7145,9,E07000216,2,71.78,282.71,26.1,309.5 +7471,9,E07000216,3,82.02,384.53,26.1,419.36 +7797,9,E07000216,4,90.42,708.78,26.1,771.75 +8123,10,E07000216,0,61.49,779.44,18.44,848.71 +300,1,E07000065,1,57.79,124.33,26.1,177.93 +626,1,E07000065,2,71.78,147.91,26.1,188.66 +952,1,E07000065,3,82.02,162.93,26.1,205.81 +1278,1,E07000065,4,90.42,180.08,26.1,224.01 +1604,3,E07000065,1,52.2,116.83,26.1,160.78 +1930,3,E07000065,2,63.38,130.77,26.1,146.84 +2256,3,E07000065,3,68.97,151.13,26.1,187.58 +2582,3,E07000065,4,73.64,186.51,26.1,196.15 +2908,2,E07000065,0,61.49,265.21,18.44,340.65 +3234,4,E07000065,0,48.18,193.32,18.44,202.73 +3560,6,E07000065,0,61.49,419.63,18.44,457.34 +3886,8,E07000065,0,48.18,419.63,18.44,457.34 +4041,5,E07000065,1,57.79,136.13,26.1,148.99 +4108,7,E07000065,1,52.2,136.13,26.1,148.99 +4656,5,E07000065,2,71.78,177.93,26.1,192.94 +4803,7,E07000065,2,63.38,177.93,26.1,192.94 +5308,5,E07000065,3,82.02,211.17,26.1,230.44 +5408,7,E07000065,3,68.97,211.17,26.1,230.44 +5993,5,E07000065,4,90.42,381.6,26.1,415.9 +6097,7,E07000065,4,73.64,381.6,26.1,415.9 +6820,9,E07000065,1,57.79,170.16,26.1,186.23 +7146,9,E07000065,2,71.78,222.43,26.1,241.18 +7472,9,E07000065,3,82.02,263.95,26.1,288.07 +7798,9,E07000065,4,90.42,476.99,26.1,519.86 +8124,10,E07000065,0,61.49,524.54,18.44,571.71 +302,1,E07000241,1,54.99,120.05,26.1,150.06 +628,1,E07000241,2,65.24,143.62,26.1,169.36 +954,1,E07000241,3,71.78,157.56,26.1,182.22 +1280,1,E07000241,4,82.02,172.58,26.1,180.08 +1606,3,E07000241,1,50.34,100.76,26.1,132.91 +1932,3,E07000241,2,58.72,118.97,26.1,133.98 +2258,3,E07000241,3,64.31,131.84,26.1,144.7 +2584,3,E07000241,4,71.78,150.06,26.1,160.78 +2910,2,E07000241,0,35.87,223.96,18.44,418.45 +3236,4,E07000241,0,55.36,134.38,18.44,314.73 +3562,6,E07000241,0,35.87,449.11,18.44,489.16 +3888,8,E07000241,0,55.36,449.11,18.44,489.16 +4163,5,E07000241,1,54.99,155.41,26.1,170.43 +4280,7,E07000241,1,50.34,155.41,26.1,170.43 +4744,5,E07000241,2,65.24,194.01,26.1,212.24 +5006,7,E07000241,2,58.72,194.01,26.1,212.24 +5463,5,E07000241,3,71.78,273.34,26.1,297.99 +5649,7,E07000241,3,64.31,273.34,26.1,297.99 +6173,5,E07000241,4,82.02,408.38,26.1,444.82 +6311,7,E07000241,4,71.78,408.38,26.1,444.82 +6822,9,E07000241,1,54.99,194.27,26.1,213.04 +7148,9,E07000241,2,65.24,242.51,26.1,265.29 +7474,9,E07000241,3,71.78,341.67,26.1,372.48 +7800,9,E07000241,4,82.02,510.49,26.1,556.05 +8126,10,E07000241,0,35.87,561.4,18.44,611.47 +303,1,E06000037,1,57.79,124.33,26.1,177.93 +629,1,E06000037,2,71.78,147.91,26.1,188.66 +955,1,E06000037,3,82.02,162.93,26.1,205.81 +1281,1,E06000037,4,90.42,180.08,26.1,224.01 +1607,3,E06000037,1,52.2,116.83,26.1,160.78 +1933,3,E06000037,2,63.38,130.77,26.1,146.84 +2259,3,E06000037,3,68.97,151.13,26.1,187.58 +2585,3,E06000037,4,73.64,186.51,26.1,196.15 +2911,2,E06000037,0,61.49,265.21,18.44,340.65 +3237,4,E06000037,0,48.18,193.32,18.44,202.73 +3563,6,E06000037,0,61.49,437.32,18.44,476.22 +3889,8,E06000037,0,48.18,437.32,18.44,476.22 +4042,5,E06000037,1,57.79,143.62,26.1,156.49 +4109,7,E06000037,1,52.2,143.62,26.1,156.49 +4657,5,E06000037,2,71.78,182.22,26.1,199.38 +4804,7,E06000037,2,63.38,182.22,26.1,199.38 +5309,5,E06000037,3,82.02,216.52,26.1,236.89 +5409,7,E06000037,3,68.97,216.52,26.1,236.89 +5994,5,E06000037,4,90.42,397.66,26.1,433.04 +6098,7,E06000037,4,73.64,397.66,26.1,433.04 +6823,9,E06000037,1,57.79,179.53,26.1,195.6 +7149,9,E06000037,2,71.78,227.8,26.1,249.22 +7475,9,E06000037,3,82.02,270.66,26.1,296.11 +7801,9,E06000037,4,90.42,497.09,26.1,541.3 +8127,10,E06000037,0,61.49,546.66,18.44,595.28 +304,1,E07000047,1,49.41,108.27,26.1,141.49 +630,1,E07000047,2,55.93,122.19,26.1,145.77 +956,1,E07000047,3,62.45,142.56,26.1,162.93 +1282,1,E07000047,4,71.78,159.7,26.1,196.15 +1608,3,E07000047,1,47.54,90.03,26.1,212.24 +1934,3,E07000047,2,54.99,101.83,26.1,112.54 +2260,3,E07000047,3,62.45,110.39,26.1,127.56 +2586,3,E07000047,4,74.57,131.84,26.1,131.84 +2912,2,E07000047,0,54.33,228.68,18.44,354.8 +3238,4,E07000047,0,54.33,114.33,18.44,140.27 +3564,6,E07000047,0,54.33,244,18.44,266.39 +3890,8,E07000047,0,54.33,244,18.44,266.39 +3945,7,E07000047,1,47.54,103.98,26.1,113.61 +4229,5,E07000047,1,49.41,103.98,26.1,113.61 +4865,5,E07000047,2,55.93,128.63,26.1,141.49 +5142,7,E07000047,2,54.99,128.63,26.1,141.49 +5496,5,E07000047,3,62.45,159.7,26.1,174.72 +5722,7,E07000047,3,62.45,159.7,26.1,174.72 +6034,5,E07000047,4,71.78,221.88,26.1,242.25 +6434,7,E07000047,4,74.57,221.88,26.1,242.25 +6824,9,E07000047,1,49.41,129.97,26.1,142.02 +7150,9,E07000047,2,55.93,160.78,26.1,176.86 +7476,9,E07000047,3,62.45,199.62,26.1,218.38 +7802,9,E07000047,4,71.78,277.34,26.1,302.81 +8128,10,E07000047,0,54.33,305,18.44,332.99 +306,1,E07000127,1,52.2,94.33,26.1,117.9 +632,1,E07000127,2,59.66,108.27,26.1,136.13 +958,1,E07000127,3,66.17,121.11,26.1,146.84 +1284,1,E07000127,4,72.71,135.06,26.1,160.78 +1610,3,E07000127,1,43.8,86.81,26.1,101.83 +1936,3,E07000127,2,54.06,95.42,26.1,114.68 +2262,3,E07000127,3,58.72,106.12,26.1,125.4 +2588,3,E07000127,4,55.93,120.05,26.1,135.06 +2914,2,E07000127,0,55.36,236.93,18.44,338.29 +3240,4,E07000127,0,32.8,464.43,18.44,592.92 +3566,6,E07000127,0,55.36,238.1,18.44,260.5 +3892,8,E07000127,0,32.8,238.1,18.44,260.5 +4386,5,E07000127,1,52.2,103.98,26.1,113.61 +4498,7,E07000127,1,43.8,103.98,26.1,113.61 +4956,5,E07000127,2,59.66,136.13,26.1,148.99 +5094,7,E07000127,2,54.06,136.13,26.1,148.99 +5599,5,E07000127,3,66.17,148.99,26.1,161.86 +5774,7,E07000127,3,58.72,148.99,26.1,161.86 +6347,5,E07000127,4,72.71,216.52,26.1,236.89 +6398,7,E07000127,4,55.93,216.52,26.1,236.89 +6826,9,E07000127,1,52.2,129.97,26.1,142.02 +7152,9,E07000127,2,59.66,170.16,26.1,186.23 +7478,9,E07000127,3,66.17,186.23,26.1,202.34 +7804,9,E07000127,4,72.71,270.66,26.1,296.11 +8130,10,E07000127,0,55.36,297.64,18.44,325.63 +307,1,E07000142,1,52.2,100.76,26.1,123.26 +633,1,E07000142,2,62.45,115.76,26.1,130.77 +959,1,E07000142,3,68.97,127.56,26.1,139.34 +1285,1,E07000142,4,76.43,159.7,26.1,168.29 +1611,3,E07000142,1,46.6,91.12,26.1,108.27 +1937,3,E07000142,2,53.13,97.54,26.1,109.33 +2263,3,E07000142,3,58.72,105.05,26.1,120.05 +2589,3,E07000142,4,64.31,123.26,26.1,123.26 +2915,2,E07000142,0,51.26,238.1,18.44,357.17 +3241,4,E07000142,0,49.2,113.15,18.44,122.59 +3567,6,E07000142,0,51.26,213.35,18.44,233.38 +3893,8,E07000142,0,49.2,213.35,18.44,233.38 +4350,5,E07000142,1,52.2,85.75,26.1,93.26 +4450,7,E07000142,1,46.6,85.75,26.1,93.26 +5046,5,E07000142,2,62.45,110.39,26.1,120.05 +5186,7,E07000142,2,53.13,110.39,26.1,120.05 +5689,5,E07000142,3,68.97,130.77,26.1,143.62 +5847,7,E07000142,3,58.72,130.77,26.1,143.62 +6264,5,E07000142,4,76.43,194.01,26.1,212.24 +6508,7,E07000142,4,64.31,194.01,26.1,212.24 +6827,9,E07000142,1,52.2,107.2,26.1,116.56 +7153,9,E07000142,2,62.45,138.01,26.1,150.06 +7479,9,E07000142,3,68.97,163.46,26.1,179.53 +7805,9,E07000142,4,76.43,242.51,26.1,265.29 +8131,10,E07000142,0,51.26,266.69,18.44,291.74 +308,1,E07000181,1,57.79,124.33,26.1,177.93 +634,1,E07000181,2,71.78,147.91,26.1,188.66 +960,1,E07000181,3,82.02,162.93,26.1,205.81 +1286,1,E07000181,4,90.42,180.08,26.1,224.01 +1612,3,E07000181,1,52.2,116.83,26.1,160.78 +1938,3,E07000181,2,63.38,130.77,26.1,146.84 +2264,3,E07000181,3,68.97,151.13,26.1,187.58 +2590,3,E07000181,4,73.64,186.51,26.1,196.15 +2916,2,E07000181,0,61.49,265.21,18.44,340.65 +3242,4,E07000181,0,48.18,193.32,18.44,202.73 +3568,6,E07000181,0,61.49,443.21,18.44,484.46 +3894,8,E07000181,0,48.18,443.21,18.44,484.46 +4043,5,E07000181,1,57.79,148.99,26.1,161.86 +4110,7,E07000181,1,52.2,148.99,26.1,161.86 +4658,5,E07000181,2,71.78,183.29,26.1,200.45 +4805,7,E07000181,2,63.38,183.29,26.1,200.45 +5310,5,E07000181,3,82.02,228.29,26.1,247.6 +5410,7,E07000181,3,68.97,228.29,26.1,247.6 +5995,5,E07000181,4,90.42,403.03,26.1,440.54 +6099,7,E07000181,4,73.64,403.03,26.1,440.54 +6828,9,E07000181,1,57.79,186.23,26.1,202.34 +7154,9,E07000181,2,71.78,229.13,26.1,250.54 +7480,9,E07000181,3,82.02,285.39,26.1,309.5 +7806,9,E07000181,4,90.42,503.79,26.1,550.68 +8132,10,E07000181,0,61.49,554.02,18.44,605.58 +254,1,E07000245,1,54.99,120.05,26.1,150.06 +580,1,E07000245,2,65.24,143.62,26.1,169.36 +906,1,E07000245,3,71.78,157.56,26.1,182.22 +1232,1,E07000245,4,82.02,172.58,26.1,180.08 +1558,3,E07000245,1,50.34,100.76,26.1,132.91 +1884,3,E07000245,2,58.72,118.97,26.1,133.98 +2210,3,E07000245,3,64.31,131.84,26.1,144.7 +2536,3,E07000245,4,71.78,150.06,26.1,160.78 +2862,2,E07000245,0,35.87,223.96,18.44,418.45 +3188,4,E07000245,0,55.36,134.38,18.44,314.73 +3514,6,E07000245,0,35.87,368.95,18.44,401.95 +3840,8,E07000245,0,55.36,368.95,18.44,401.95 +4154,5,E07000245,1,54.99,126.48,26.1,138.27 +4271,7,E07000245,1,50.34,126.48,26.1,138.27 +4735,5,E07000245,2,65.24,148.99,26.1,161.86 +4997,7,E07000245,2,58.72,148.99,26.1,161.86 +5454,5,E07000245,3,71.78,183.29,26.1,200.45 +5640,7,E07000245,3,64.31,183.29,26.1,200.45 +6164,5,E07000245,4,82.02,335.49,26.1,365.5 +6302,7,E07000245,4,71.78,335.49,26.1,365.5 +6774,9,E07000245,1,54.99,158.09,26.1,172.84 +7100,9,E07000245,2,65.24,186.23,26.1,202.34 +7426,9,E07000245,3,71.78,229.13,26.1,250.54 +7752,9,E07000245,4,82.02,419.36,26.1,456.88 +8078,10,E07000245,0,35.87,461.19,18.44,502.44 +310,1,E09000033,1,66.17,146.84,26.1,199.38 +636,1,E09000033,2,78.29,158.63,26.1,194.01 +962,1,E09000033,3,84.82,168.29,26.1,228.29 +1288,1,E09000033,4,102.51,188.66,26.1,254.03 +1614,3,E09000033,1,58.72,120.05,26.1,147.91 +1940,3,E09000033,2,64.31,140.42,26.1,176.86 +2266,3,E09000033,3,71.78,160.78,26.1,202.58 +2592,3,E09000033,4,83.89,262.61,26.1,263.68 +2918,2,E09000033,0,69.7,313.55,18.44,497.44 +3244,4,E09000033,0,59.45,367.77,18.44,398.42 +3570,6,E09000033,0,69.7,2503.67,18.44,2731.17 +3896,8,E09000033,0,59.45,2503.67,18.44,2731.17 +3982,5,E09000033,1,66.17,442.67,26.1,482.35 +4196,7,E09000033,1,58.72,442.67,26.1,482.35 +4597,5,E09000033,2,78.29,637.77,26.1,696.71 +4697,7,E09000033,2,64.31,637.77,26.1,696.71 +5249,5,E09000033,3,84.82,932.53,26.1,1017.2 +5349,7,E09000033,3,71.78,932.53,26.1,1017.2 +5901,7,E09000033,4,83.89,2276.66,26.1,2483.53 +5934,5,E09000033,4,102.51,2276.66,26.1,2483.53 +6830,9,E09000033,1,66.17,553.35,26.1,602.94 +7156,9,E09000033,2,78.29,797.22,26.1,870.9 +7482,9,E09000033,3,84.82,1165.67,26.1,1271.52 +7808,9,E09000033,4,102.51,2845.82,26.1,3104.42 +8134,10,E09000033,0,69.7,3129.61,18.44,3413.97 +312,1,E08000010,1,52.2,94.33,26.1,117.9 +638,1,E08000010,2,59.66,108.27,26.1,136.13 +964,1,E08000010,3,66.17,121.11,26.1,146.84 +1290,1,E08000010,4,72.71,135.06,26.1,160.78 +1616,3,E08000010,1,43.8,86.81,26.1,101.83 +1942,3,E08000010,2,54.06,95.42,26.1,114.68 +2268,3,E08000010,3,58.72,106.12,26.1,125.4 +2594,3,E08000010,4,55.93,120.05,26.1,135.06 +2920,2,E08000010,0,55.36,236.93,18.44,338.29 +3246,4,E08000010,0,32.8,464.43,18.44,592.92 +3572,6,E08000010,0,55.36,201.56,18.44,220.42 +3898,8,E08000010,0,32.8,201.56,18.44,220.42 +4387,5,E08000010,1,52.2,93.26,26.1,100.76 +4499,7,E08000010,1,43.8,93.26,26.1,100.76 +4957,5,E08000010,2,59.66,110.39,26.1,120.05 +5095,7,E08000010,2,54.06,110.39,26.1,120.05 +5600,5,E08000010,3,66.17,131.84,26.1,144.7 +5775,7,E08000010,3,58.72,131.84,26.1,144.7 +6348,5,E08000010,4,72.71,183.29,26.1,200.45 +6399,7,E08000010,4,55.93,183.29,26.1,200.45 +6832,9,E08000010,1,52.2,116.56,26.1,125.95 +7158,9,E08000010,2,59.66,138.01,26.1,150.06 +7484,9,E08000010,3,66.17,164.8,26.1,180.87 +7810,9,E08000010,4,72.71,229.13,26.1,250.54 +8136,10,E08000010,0,55.36,251.95,18.44,275.54 +313,1,E06000054,1,49.41,108.27,26.1,141.49 +639,1,E06000054,2,55.93,122.19,26.1,145.77 +965,1,E06000054,3,62.45,142.56,26.1,162.93 +1291,1,E06000054,4,71.78,159.7,26.1,196.15 +1617,3,E06000054,1,47.54,90.03,26.1,212.24 +1943,3,E06000054,2,54.99,101.83,26.1,112.54 +2269,3,E06000054,3,62.45,110.39,26.1,127.56 +2595,3,E06000054,4,74.57,131.84,26.1,131.84 +2921,2,E06000054,0,54.33,228.68,18.44,354.8 +3247,4,E06000054,0,54.33,114.33,18.44,140.27 +3573,6,E06000054,0,54.33,325.34,18.44,354.8 +3899,8,E06000054,0,54.33,325.34,18.44,354.8 +3949,7,E06000054,1,47.54,126.48,26.1,138.27 +4233,5,E06000054,1,49.41,126.48,26.1,138.27 +4869,5,E06000054,2,55.93,156.49,26.1,171.5 +5146,7,E06000054,2,54.99,156.49,26.1,171.5 +5500,5,E06000054,3,62.45,194.01,26.1,212.24 +5726,7,E06000054,3,62.45,194.01,26.1,212.24 +6038,5,E06000054,4,71.78,295.83,26.1,322.64 +6438,7,E06000054,4,74.57,295.83,26.1,322.64 +6833,9,E06000054,1,49.41,158.09,26.1,172.84 +7159,9,E06000054,2,55.93,195.6,26.1,214.37 +7485,9,E06000054,3,62.45,242.51,26.1,265.29 +7811,9,E06000054,4,71.78,369.81,26.1,403.3 +8137,10,E06000054,0,54.33,406.66,18.44,443.51 +314,1,E07000094,1,57.79,124.33,26.1,177.93 +640,1,E07000094,2,71.78,147.91,26.1,188.66 +966,1,E07000094,3,82.02,162.93,26.1,205.81 +1292,1,E07000094,4,90.42,180.08,26.1,224.01 +1618,3,E07000094,1,52.2,116.83,26.1,160.78 +1944,3,E07000094,2,63.38,130.77,26.1,146.84 +2270,3,E07000094,3,68.97,151.13,26.1,187.58 +2596,3,E07000094,4,73.64,186.51,26.1,196.15 +2922,2,E07000094,0,61.49,265.21,18.44,340.65 +3248,4,E07000094,0,48.18,193.32,18.44,202.73 +3574,6,E07000094,0,61.49,467.95,18.44,510.39 +3900,8,E07000094,0,48.18,467.95,18.44,510.39 +4044,5,E07000094,1,57.79,172.58,26.1,187.58 +4111,7,E07000094,1,52.2,172.58,26.1,187.58 +4659,5,E07000094,2,71.78,216.52,26.1,236.89 +4806,7,E07000094,2,63.38,216.52,26.1,236.89 +5311,5,E07000094,3,82.02,284.04,26.1,309.78 +5411,7,E07000094,3,68.97,284.04,26.1,309.78 +5996,5,E07000094,4,90.42,425.54,26.1,464.12 +6100,7,E07000094,4,73.64,425.54,26.1,464.12 +6834,9,E07000094,1,57.79,215.73,26.1,234.49 +7160,9,E07000094,2,71.78,270.66,26.1,296.11 +7486,9,E07000094,3,82.02,355.06,26.1,387.21 +7812,9,E07000094,4,90.42,531.92,26.1,580.15 +8138,10,E07000094,0,61.49,584.95,18.44,638 +315,1,E06000040,1,57.79,124.33,26.1,177.93 +641,1,E06000040,2,71.78,147.91,26.1,188.66 +967,1,E06000040,3,82.02,162.93,26.1,205.81 +1293,1,E06000040,4,90.42,180.08,26.1,224.01 +1619,3,E06000040,1,52.2,116.83,26.1,160.78 +1945,3,E06000040,2,63.38,130.77,26.1,146.84 +2271,3,E06000040,3,68.97,151.13,26.1,187.58 +2597,3,E06000040,4,73.64,186.51,26.1,196.15 +2923,2,E06000040,0,61.49,265.21,18.44,340.65 +3249,4,E06000040,0,48.18,193.32,18.44,202.73 +3575,6,E06000040,0,61.49,847.54,18.44,924.15 +3901,8,E06000040,0,48.18,847.54,18.44,924.15 +4045,5,E06000040,1,57.79,200.45,26.1,217.59 +4112,7,E06000040,1,52.2,200.45,26.1,217.59 +4660,5,E06000040,2,71.78,284.04,26.1,309.78 +4807,7,E06000040,2,63.38,284.04,26.1,309.78 +5312,5,E06000040,3,82.02,346.22,26.1,378.38 +5412,7,E06000040,3,68.97,346.22,26.1,378.38 +5997,5,E06000040,4,90.42,770.67,26.1,840.36 +6101,7,E06000040,4,73.64,770.67,26.1,840.36 +6835,9,E06000040,1,57.79,250.54,26.1,271.98 +7161,9,E06000040,2,71.78,355.06,26.1,387.21 +7487,9,E06000040,3,82.02,432.75,26.1,472.98 +7813,9,E06000040,4,90.42,963.35,26.1,1050.45 +8139,10,E06000040,0,61.49,1059.42,18.44,1155.18 +316,1,E08000015,1,52.2,94.33,26.1,117.9 +642,1,E08000015,2,59.66,108.27,26.1,136.13 +968,1,E08000015,3,66.17,121.11,26.1,146.84 +1294,1,E08000015,4,72.71,135.06,26.1,160.78 +1620,3,E08000015,1,43.8,86.81,26.1,101.83 +1946,3,E08000015,2,54.06,95.42,26.1,114.68 +2272,3,E08000015,3,58.72,106.12,26.1,125.4 +2598,3,E08000015,4,55.93,120.05,26.1,135.06 +2924,2,E08000015,0,55.36,236.93,18.44,338.29 +3250,4,E08000015,0,32.8,464.43,18.44,592.92 +3576,6,E08000015,0,55.36,213.35,18.44,233.38 +3902,8,E08000015,0,32.8,213.35,18.44,233.38 +4388,5,E08000015,1,52.2,103.98,26.1,113.61 +4500,7,E08000015,1,43.8,103.98,26.1,113.61 +4958,5,E08000015,2,59.66,126.48,26.1,138.27 +5096,7,E08000015,2,54.06,126.48,26.1,138.27 +5601,5,E08000015,3,66.17,148.99,26.1,161.86 +5776,7,E08000015,3,58.72,148.99,26.1,161.86 +6349,5,E08000015,4,72.71,194.01,26.1,212.24 +6400,7,E08000015,4,55.93,194.01,26.1,212.24 +6836,9,E08000015,1,52.2,129.97,26.1,142.02 +7162,9,E08000015,2,59.66,158.09,26.1,172.84 +7488,9,E08000015,3,66.17,186.23,26.1,202.34 +7814,9,E08000015,4,72.71,242.51,26.1,265.29 +8140,10,E08000015,0,55.36,266.69,18.44,291.74 +317,1,E07000217,1,57.79,124.33,26.1,177.93 +643,1,E07000217,2,71.78,147.91,26.1,188.66 +969,1,E07000217,3,82.02,162.93,26.1,205.81 +1295,1,E07000217,4,90.42,180.08,26.1,224.01 +1621,3,E07000217,1,52.2,116.83,26.1,160.78 +1947,3,E07000217,2,63.38,130.77,26.1,146.84 +2273,3,E07000217,3,68.97,151.13,26.1,187.58 +2599,3,E07000217,4,73.64,186.51,26.1,196.15 +2925,2,E07000217,0,61.49,265.21,18.44,340.65 +3251,4,E07000217,0,48.18,193.32,18.44,202.73 +3577,6,E07000217,0,61.49,748.51,18.44,815.71 +3903,8,E07000217,0,48.18,748.51,18.44,815.71 +4046,5,E07000217,1,57.79,177.93,26.1,192.94 +4113,7,E07000217,1,52.2,177.93,26.1,192.94 +4661,5,E07000217,2,71.78,250.82,26.1,273.34 +4808,7,E07000217,2,63.38,250.82,26.1,273.34 +5313,5,E07000217,3,82.02,302.28,26.1,329.06 +5413,7,E07000217,3,68.97,302.28,26.1,329.06 +5998,5,E07000217,4,90.42,680.64,26.1,741.74 +6102,7,E07000217,4,73.64,680.64,26.1,741.74 +6837,9,E07000217,1,57.79,222.43,26.1,241.18 +7163,9,E07000217,2,71.78,313.51,26.1,341.67 +7489,9,E07000217,3,82.02,377.83,26.1,411.33 +7815,9,E07000217,4,90.42,850.81,26.1,927.17 +8141,10,E07000217,0,61.49,935.63,18.44,1019.62 +318,1,E06000041,1,57.79,124.33,26.1,177.93 +644,1,E06000041,2,71.78,147.91,26.1,188.66 +970,1,E06000041,3,82.02,162.93,26.1,205.81 +1296,1,E06000041,4,90.42,180.08,26.1,224.01 +1622,3,E06000041,1,52.2,116.83,26.1,160.78 +1948,3,E06000041,2,63.38,130.77,26.1,146.84 +2274,3,E06000041,3,68.97,151.13,26.1,187.58 +2600,3,E06000041,4,73.64,186.51,26.1,196.15 +2926,2,E06000041,0,61.49,265.21,18.44,340.65 +3252,4,E06000041,0,48.18,193.32,18.44,202.73 +3578,6,E06000041,0,61.49,473.86,18.44,517.47 +3904,8,E06000041,0,48.18,473.86,18.44,517.47 +4047,5,E06000041,1,57.79,166.14,26.1,181.15 +4114,7,E06000041,1,52.2,166.14,26.1,181.15 +4662,5,E06000041,2,71.78,207.96,26.1,226.16 +4809,7,E06000041,2,63.38,207.96,26.1,226.16 +5314,5,E06000041,3,82.02,272.26,26.1,296.91 +5414,7,E06000041,3,68.97,272.26,26.1,296.91 +5999,5,E06000041,4,90.42,430.9,26.1,470.55 +6103,7,E06000041,4,73.64,430.9,26.1,470.55 +6838,9,E06000041,1,57.79,207.68,26.1,226.44 +7164,9,E06000041,2,71.78,259.93,26.1,282.71 +7490,9,E06000041,3,82.02,340.33,26.1,371.13 +7816,9,E06000041,4,90.42,538.61,26.1,588.19 +8142,10,E06000041,0,61.49,592.32,18.44,646.84 +319,1,E08000031,1,53.13,99.69,26.1,125.4 +645,1,E08000031,2,58.72,117.9,26.1,138.27 +971,1,E08000031,3,69.9,133.98,26.1,161.86 +1297,1,E08000031,4,81.09,162.93,26.1,180.08 +1623,3,E08000031,1,46.6,88.96,26.1,98.62 +1949,3,E08000031,2,50.34,95.42,26.1,103.98 +2275,3,E08000031,3,60.59,105.05,26.1,121.11 +2601,3,E08000031,4,68.97,128.63,26.1,128.63 +2927,2,E08000031,0,38.95,242.82,18.44,378.37 +3253,4,E08000031,0,46.12,106.09,18.44,106.09 +3579,6,E08000031,0,38.95,189.79,18.44,206.28 +3905,8,E08000031,0,46.12,189.79,18.44,206.28 +4307,5,E08000031,1,53.13,98.62,26.1,108.27 +4528,7,E08000031,1,46.6,98.62,26.1,108.27 +4917,5,E08000031,2,58.72,121.11,26.1,131.84 +5213,7,E08000031,2,50.34,121.11,26.1,131.84 +5548,5,E08000031,3,69.9,136.13,26.1,148.99 +5804,7,E08000031,3,60.59,136.13,26.1,148.99 +6200,5,E08000031,4,81.09,172.58,26.1,187.58 +6465,7,E08000031,4,68.97,172.58,26.1,187.58 +6839,9,E08000031,1,53.13,123.26,26.1,135.33 +7165,9,E08000031,2,58.72,151.41,26.1,164.8 +7491,9,E08000031,3,69.9,170.16,26.1,186.23 +7817,9,E08000031,4,81.09,215.73,26.1,234.49 +8143,10,E08000031,0,38.95,237.24,18.44,257.84 +320,1,E07000237,1,53.13,99.69,26.1,125.4 +646,1,E07000237,2,58.72,117.9,26.1,138.27 +972,1,E07000237,3,69.9,133.98,26.1,161.86 +1298,1,E07000237,4,81.09,162.93,26.1,180.08 +1624,3,E07000237,1,46.6,88.96,26.1,98.62 +1950,3,E07000237,2,50.34,95.42,26.1,103.98 +2276,3,E07000237,3,60.59,105.05,26.1,121.11 +2602,3,E07000237,4,68.97,128.63,26.1,128.63 +2928,2,E07000237,0,38.95,242.82,18.44,378.37 +3254,4,E07000237,0,46.12,106.09,18.44,106.09 +3580,6,E07000237,0,38.95,238.1,18.44,260.5 +3906,8,E07000237,0,46.12,238.1,18.44,260.5 +4308,5,E07000237,1,53.13,115.76,26.1,125.4 +4529,7,E07000237,1,46.6,115.76,26.1,125.4 +4918,5,E07000237,2,58.72,143.62,26.1,156.49 +5214,7,E07000237,2,50.34,143.62,26.1,156.49 +5549,5,E07000237,3,69.9,166.14,26.1,181.15 +5805,7,E07000237,3,60.59,166.14,26.1,181.15 +6201,5,E07000237,4,81.09,216.52,26.1,236.89 +6466,7,E07000237,4,68.97,216.52,26.1,236.89 +6840,9,E07000237,1,53.13,144.7,26.1,156.77 +7166,9,E07000237,2,58.72,179.53,26.1,195.6 +7492,9,E07000237,3,69.9,207.68,26.1,226.44 +7818,9,E07000237,4,81.09,270.66,26.1,296.11 +8144,10,E07000237,0,38.95,297.64,18.44,325.63 +321,1,E07000229,1,57.79,124.33,26.1,177.93 +647,1,E07000229,2,71.78,147.91,26.1,188.66 +973,1,E07000229,3,82.02,162.93,26.1,205.81 +1299,1,E07000229,4,90.42,180.08,26.1,224.01 +1625,3,E07000229,1,52.2,116.83,26.1,160.78 +1951,3,E07000229,2,63.38,130.77,26.1,146.84 +2277,3,E07000229,3,68.97,151.13,26.1,187.58 +2603,3,E07000229,4,73.64,186.51,26.1,196.15 +2929,2,E07000229,0,61.49,265.21,18.44,340.65 +3255,4,E07000229,0,48.18,193.32,18.44,202.73 +3581,6,E07000229,0,61.49,322.99,18.44,352.44 +3907,8,E07000229,0,48.18,322.99,18.44,352.44 +4048,5,E07000229,1,57.79,131.84,26.1,144.7 +4115,7,E07000229,1,52.2,131.84,26.1,144.7 +4663,5,E07000229,2,71.78,172.58,26.1,187.58 +4810,7,E07000229,2,63.38,172.58,26.1,187.58 +5315,5,E07000229,3,82.02,216.52,26.1,236.89 +5415,7,E07000229,3,68.97,216.52,26.1,236.89 +6000,5,E07000229,4,90.42,294.76,26.1,320.49 +6104,7,E07000229,4,73.64,294.76,26.1,320.49 +6841,9,E07000229,1,57.79,164.8,26.1,180.87 +7167,9,E07000229,2,71.78,215.73,26.1,234.49 +7493,9,E07000229,3,82.02,270.66,26.1,296.11 +7819,9,E07000229,4,90.42,368.46,26.1,400.6 +8145,10,E07000229,0,61.49,403.75,18.44,440.57 +322,1,E07000238,1,53.13,99.69,26.1,125.4 +648,1,E07000238,2,58.72,117.9,26.1,138.27 +974,1,E07000238,3,69.9,133.98,26.1,161.86 +1300,1,E07000238,4,81.09,162.93,26.1,180.08 +1626,3,E07000238,1,46.6,88.96,26.1,98.62 +1952,3,E07000238,2,50.34,95.42,26.1,103.98 +2278,3,E07000238,3,60.59,105.05,26.1,121.11 +2604,3,E07000238,4,68.97,128.63,26.1,128.63 +2930,2,E07000238,0,38.95,242.82,18.44,378.37 +3256,4,E07000238,0,46.12,106.09,18.44,106.09 +3582,6,E07000238,0,38.95,275.83,18.44,300.58 +3908,8,E07000238,0,46.12,275.83,18.44,300.58 +4309,5,E07000238,1,53.13,114.68,26.1,124.33 +4530,7,E07000238,1,46.6,114.68,26.1,124.33 +4919,5,E07000238,2,58.72,139.34,26.1,152.21 +5215,7,E07000238,2,50.34,139.34,26.1,152.21 +5550,5,E07000238,3,69.9,172.58,26.1,187.58 +5806,7,E07000238,3,60.59,172.58,26.1,187.58 +6202,5,E07000238,4,81.09,250.82,26.1,273.34 +6467,7,E07000238,4,68.97,250.82,26.1,273.34 +6842,9,E07000238,1,53.13,143.37,26.1,155.41 +7168,9,E07000238,2,58.72,174.17,26.1,190.26 +7494,9,E07000238,3,69.9,215.73,26.1,234.49 +7820,9,E07000238,4,81.09,313.51,26.1,341.67 +8146,10,E07000238,0,38.95,344.81,18.44,375.73 +324,1,E07000128,1,52.2,94.33,26.1,117.9 +650,1,E07000128,2,59.66,108.27,26.1,136.13 +976,1,E07000128,3,66.17,121.11,26.1,146.84 +1302,1,E07000128,4,72.71,135.06,26.1,160.78 +1628,3,E07000128,1,43.8,86.81,26.1,101.83 +1954,3,E07000128,2,54.06,95.42,26.1,114.68 +2280,3,E07000128,3,58.72,106.12,26.1,125.4 +2606,3,E07000128,4,55.93,120.05,26.1,135.06 +2932,2,E07000128,0,55.36,236.93,18.44,338.29 +3258,4,E07000128,0,32.8,464.43,18.44,592.92 +3584,6,E07000128,0,55.36,213.35,18.44,233.38 +3910,8,E07000128,0,32.8,213.35,18.44,233.38 +4389,5,E07000128,1,52.2,103.98,26.1,114.68 +4501,7,E07000128,1,43.8,103.98,26.1,114.68 +4959,5,E07000128,2,59.66,133.98,26.1,146.84 +5097,7,E07000128,2,54.06,133.98,26.1,146.84 +5602,5,E07000128,3,66.17,148.99,26.1,161.86 +5777,7,E07000128,3,58.72,148.99,26.1,161.86 +6350,5,E07000128,4,72.71,194.01,26.1,212.24 +6401,7,E07000128,4,55.93,194.01,26.1,212.24 +6844,9,E07000128,1,52.2,129.97,26.1,143.37 +7170,9,E07000128,2,59.66,167.48,26.1,183.56 +7496,9,E07000128,3,66.17,186.23,26.1,202.34 +7822,9,E07000128,4,72.71,242.51,26.1,265.29 +8148,10,E07000128,0,55.36,266.69,18.44,291.74 +325,1,E07000239,1,53.13,99.69,26.1,125.4 +651,1,E07000239,2,58.72,117.9,26.1,138.27 +977,1,E07000239,3,69.9,133.98,26.1,161.86 +1303,1,E07000239,4,81.09,162.93,26.1,180.08 +1629,3,E07000239,1,46.6,88.96,26.1,98.62 +1955,3,E07000239,2,50.34,95.42,26.1,103.98 +2281,3,E07000239,3,60.59,105.05,26.1,121.11 +2607,3,E07000239,4,68.97,128.63,26.1,128.63 +2933,2,E07000239,0,38.95,242.82,18.44,378.37 +3259,4,E07000239,0,46.12,106.09,18.44,106.09 +3585,6,E07000239,0,38.95,213.35,18.44,233.38 +3911,8,E07000239,0,46.12,213.35,18.44,233.38 +4310,5,E07000239,1,53.13,98.62,26.1,108.27 +4531,7,E07000239,1,46.6,98.62,26.1,108.27 +4920,5,E07000239,2,58.72,126.48,26.1,138.27 +5216,7,E07000239,2,50.34,126.48,26.1,138.27 +5551,5,E07000239,3,69.9,143.62,26.1,156.49 +5807,7,E07000239,3,60.59,143.62,26.1,156.49 +6203,5,E07000239,4,81.09,194.01,26.1,212.24 +6468,7,E07000239,4,68.97,194.01,26.1,212.24 +6845,9,E07000239,1,53.13,123.26,26.1,135.33 +7171,9,E07000239,2,58.72,158.09,26.1,172.84 +7497,9,E07000239,3,69.9,179.53,26.1,195.6 +7823,9,E07000239,4,81.09,242.51,26.1,265.29 +8149,10,E07000239,0,38.95,266.69,18.44,291.74 +326,1,E06000014,1,51.27,92.19,26.1,114.68 +652,1,E06000014,2,58.72,109.33,26.1,141.49 +978,1,E06000014,3,63.38,121.11,26.1,162.93 +1304,1,E06000014,4,73.64,145.77,26.1,180.08 +1630,3,E06000014,1,46.6,82.54,26.1,93.26 +1956,3,E06000014,2,53.13,113.61,26.1,145.77 +2282,3,E06000014,3,56.86,105.05,26.1,114.68 +2608,3,E06000014,4,64.31,122.19,26.1,176.86 +2934,2,E06000014,0,52.28,232.2,18.44,319.44 +3260,4,E06000014,0,51.26,159.13,18.44,188.6 +3586,6,E06000014,0,52.28,390.17,18.44,425.53 +3912,8,E06000014,0,51.26,390.17,18.44,425.53 +4410,5,E06000014,1,51.27,136.13,26.1,148.99 +4564,7,E06000014,1,46.6,136.13,26.1,148.99 +4832,7,E06000014,2,53.13,158.63,26.1,174.72 +4890,5,E06000014,2,58.72,158.63,26.1,174.72 +5521,5,E06000014,3,63.38,204.74,26.1,222.95 +5868,7,E06000014,3,56.86,204.74,26.1,222.95 +6126,5,E06000014,4,73.64,354.8,26.1,386.95 +6224,7,E06000014,4,64.31,354.8,26.1,386.95 +6846,9,E06000014,1,51.27,170.16,26.1,186.23 +7172,9,E06000014,2,53.13,198.3,26.1,218.38 +7498,9,E06000014,3,63.38,255.92,26.1,278.69 +7824,9,E06000014,4,73.64,443.49,26.1,483.69 +8150,10,E06000014,0,52.28,487.72,18.44,531.91 diff --git a/config/routes.rb b/config/routes.rb index 0be5f5b6a..8db33eb10 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -79,6 +79,16 @@ Rails.application.routes.draw do post "logs/email-csv", to: "organisations#email_csv" get "logs/csv-confirmation", to: "lettings_logs#csv_confirmation" get "schemes", to: "organisations#schemes" + get "housing-providers", to: "organisation_relationships#housing_providers" + get "housing-providers/add", to: "organisation_relationships#add_housing_provider" + get "housing-providers/remove", to: "organisation_relationships#remove_housing_provider" + post "housing-providers", to: "organisation_relationships#create_housing_provider" + delete "housing-providers", to: "organisation_relationships#delete_housing_provider" + get "managing-agents", to: "organisation_relationships#managing_agents" + get "managing-agents/add", to: "organisation_relationships#add_managing_agent" + get "managing-agents/remove", to: "organisation_relationships#remove_managing_agent" + post "managing-agents", to: "organisation_relationships#create_managing_agent" + delete "managing-agents", to: "organisation_relationships#delete_managing_agent" end end diff --git a/db/migrate/20221007133155_add_la_to_sales_log.rb b/db/migrate/20221007133155_add_la_to_sales_log.rb new file mode 100644 index 000000000..9e40b3a59 --- /dev/null +++ b/db/migrate/20221007133155_add_la_to_sales_log.rb @@ -0,0 +1,8 @@ +class AddLaToSalesLog < ActiveRecord::Migration[7.0] + def change + change_table :sales_logs, bulk: true do |t| + t.column :la, :string + t.column :la_known, :integer + end + end +end diff --git a/db/migrate/20221017095918_add_relationship_type_to_org_relationships.rb b/db/migrate/20221017095918_add_relationship_type_to_org_relationships.rb new file mode 100644 index 000000000..a45cff1d9 --- /dev/null +++ b/db/migrate/20221017095918_add_relationship_type_to_org_relationships.rb @@ -0,0 +1,10 @@ +class AddRelationshipTypeToOrgRelationships < ActiveRecord::Migration[7.0] + def change + add_column( + :organisation_relationships, + :relationship_type, + :integer, + null: false, # rubocop:disable Rails/NotNullColumn + ) + end +end diff --git a/db/migrate/20221019082625_rename_managing_agents_column.rb b/db/migrate/20221019082625_rename_managing_agents_column.rb new file mode 100644 index 000000000..dd03a7435 --- /dev/null +++ b/db/migrate/20221019082625_rename_managing_agents_column.rb @@ -0,0 +1,5 @@ +class RenameManagingAgentsColumn < ActiveRecord::Migration[7.0] + def change + rename_column :organisations, :managing_agents, :managing_agents_label + end +end diff --git a/db/schema.rb b/db/schema.rb index 863dcbfc3..4791020ae 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -296,6 +296,7 @@ ActiveRecord::Schema[7.0].define(version: 2022_10_18_221143) do t.integer "parent_organisation_id" t.datetime "created_at", null: false t.datetime "updated_at", null: false + t.integer "relationship_type", null: false end create_table "organisation_rent_periods", force: :cascade do |t| @@ -315,7 +316,7 @@ ActiveRecord::Schema[7.0].define(version: 2022_10_18_221143) do t.string "postcode" t.boolean "holds_own_stock" t.string "other_stock_owners" - t.string "managing_agents" + t.string "managing_agents_label" t.datetime "created_at", null: false t.datetime "updated_at", null: false t.boolean "active" @@ -393,6 +394,8 @@ ActiveRecord::Schema[7.0].define(version: 2022_10_18_221143) do t.boolean "pcodenk", default: true t.integer "postcode_known" t.integer "la_known" + t.integer "income1" + t.integer "income1nk" t.index ["created_by_id"], name: "index_sales_logs_on_created_by_id" t.index ["managing_organisation_id"], name: "index_sales_logs_on_managing_organisation_id" t.index ["owning_organisation_id"], name: "index_sales_logs_on_owning_organisation_id" diff --git a/db/seeds.rb b/db/seeds.rb index 8491db6b6..e357e6efe 100644 --- a/db/seeds.rb +++ b/db/seeds.rb @@ -8,14 +8,35 @@ # rubocop:disable Rails/Output unless Rails.env.test? + housing_provider = Organisation.find_or_create_by!( + name: "Housing Provider", + address_line1: "2 Marsham Street", + address_line2: "London", + postcode: "SW1P 4DF", + holds_own_stock: true, + other_stock_owners: "None", + managing_agents_label: "None", + provider_type: "LA", + ) + managing_agent = Organisation.find_or_create_by!( + name: "Managing Agent", + address_line1: "2 Marsham Street", + address_line2: "London", + postcode: "SW1P 4DF", + holds_own_stock: true, + other_stock_owners: "None", + managing_agents_label: "None", + provider_type: "LA", + ) + org = Organisation.find_or_create_by!( name: "DLUHC", address_line1: "2 Marsham Street", address_line2: "London", postcode: "SW1P 4DF", - holds_own_stock: false, + holds_own_stock: true, other_stock_owners: "None", - managing_agents: "None", + managing_agents_label: "None", provider_type: "LA", ) do info = "Seeded DLUHC Organisation" @@ -26,6 +47,17 @@ unless Rails.env.test? end end + OrganisationRelationship.create!( + child_organisation: org, + parent_organisation: housing_provider, + relationship_type: OrganisationRelationship::OWNING, + ) + OrganisationRelationship.create!( + child_organisation: managing_agent, + parent_organisation: org, + relationship_type: OrganisationRelationship::MANAGING, + ) + if Rails.env.development? && User.count.zero? User.create!( name: "Provider", @@ -65,7 +97,7 @@ unless Rails.env.test? postcode: "BA21 4AT", holds_own_stock: false, other_stock_owners: "None", - managing_agents: "None", + managing_agents_label: "None", provider_type: "LA", ) @@ -157,6 +189,7 @@ unless Rails.env.test? Dir.glob("config/rent_range_data/*.csv").each do |path| start_year = File.basename(path, ".csv") Rake::Task["data_import:rent_ranges"].invoke(start_year, path) + Rake::Task["data_import:rent_ranges"].reenable end end end diff --git a/docs/api/v1.json b/docs/api/v1.json index 49ff3534f..1caf96253 100644 --- a/docs/api/v1.json +++ b/docs/api/v1.json @@ -311,7 +311,7 @@ "reason": 1, "underoccupation_benefitcap": 0, "leftreg": 1, - "reservist": 0, + "reservist": 1, "illness": 1, "preg_occ": 0, "tenancy_code": "BZ757", diff --git a/lib/tasks/rent_ranges.rake b/lib/tasks/rent_ranges.rake index eafa5495a..d7eb36850 100644 --- a/lib/tasks/rent_ranges.rake +++ b/lib/tasks/rent_ranges.rake @@ -24,6 +24,6 @@ namespace :data_import do ) count += 1 end - pp "Created/updated #{count} LA Rent Range records" unless Rails.env.test? + pp "Created/updated #{count} LA Rent Range records for #{start_year}" unless Rails.env.test? end end diff --git a/spec/factories/lettings_log.rb b/spec/factories/lettings_log.rb index 48b964b84..d337bc592 100644 --- a/spec/factories/lettings_log.rb +++ b/spec/factories/lettings_log.rb @@ -56,7 +56,7 @@ FactoryBot.define do homeless { 1 } underoccupation_benefitcap { 0 } leftreg { 1 } - reservist { 0 } + reservist { 1 } illness { 1 } preg_occ { 2 } startertenancy { 1 } @@ -132,7 +132,7 @@ FactoryBot.define do hbrentshortfall { 1 } tshortfall { 12 } property_relet { 0 } - mrcdate { Time.utc(2020, 5, 0o5, 10, 36, 49) } + mrcdate { Time.zone.local(2020, 5, 5, 10, 36, 49) } incref { 0 } startdate { Time.utc(2022, 2, 2, 10, 36, 49) } armedforces { 1 } diff --git a/spec/factories/organisation.rb b/spec/factories/organisation.rb index 8b02f030a..fa40663ac 100644 --- a/spec/factories/organisation.rb +++ b/spec/factories/organisation.rb @@ -17,9 +17,4 @@ FactoryBot.define do created_at { Time.zone.now } updated_at { Time.zone.now } end - - factory :organisation_relationship do - child_organisation { FactoryBot.create(:organisation) } - parent_organisation { FactoryBot.create(:organisation) } - end end diff --git a/spec/factories/organisation_relationship.rb b/spec/factories/organisation_relationship.rb new file mode 100644 index 000000000..418599902 --- /dev/null +++ b/spec/factories/organisation_relationship.rb @@ -0,0 +1,14 @@ +FactoryBot.define do + factory :organisation_relationship do + child_organisation { FactoryBot.create(:organisation) } + parent_organisation { FactoryBot.create(:organisation) } + + trait :owning do + relationship_type { OrganisationRelationship::OWNING } + end + + trait :managing do + relationship_type { OrganisationRelationship::MANAGING } + end + end +end diff --git a/spec/factories/sales_log.rb b/spec/factories/sales_log.rb index 903e3c041..31c4f1882 100644 --- a/spec/factories/sales_log.rb +++ b/spec/factories/sales_log.rb @@ -49,6 +49,8 @@ FactoryBot.define do age6 { 40 } income1nk { 0 } income1 { 10_000 } + la_known { "1" } + la { "E09000003" } end end end diff --git a/spec/fixtures/exports/general_needs_log.csv b/spec/fixtures/exports/general_needs_log.csv index 8a2dd1764..d93f66ab0 100644 --- a/spec/fixtures/exports/general_needs_log.csv +++ b/spec/fixtures/exports/general_needs_log.csv @@ -1,2 +1,2 @@ status,tenancycode,age1,sex1,ethnic,national,prevten,ecstat1,hhmemb,age2,sex2,ecstat2,age3,sex3,ecstat3,age4,sex4,ecstat4,age5,sex5,ecstat5,age6,sex6,ecstat6,age7,sex7,ecstat7,age8,sex8,ecstat8,homeless,underoccupation_benefitcap,leftreg,reservist,illness,preg_occ,startertenancy,tenancylength,tenancy,ppostcode_full,rsnvac,unittype_gn,beds,offered,wchair,earnings,incfreq,benefits,period,layear,waityear,postcode_full,reasonpref,cbl,chr,cap,reasonother,housingneeds_a,housingneeds_b,housingneeds_c,housingneeds_f,housingneeds_g,housingneeds_h,illness_type_1,illness_type_2,illness_type_3,illness_type_4,illness_type_8,illness_type_5,illness_type_6,illness_type_7,illness_type_9,illness_type_10,rp_homeless,rp_insan_unsat,rp_medwel,rp_hardship,rp_dontknow,tenancyother,irproduct_other,reason,propcode,la,prevloc,hb,hbrentshortfall,mrcdate,incref,startdate,armedforces,unitletas,builtype,voiddate,renttype,needstype,lettype,totchild,totelder,totadult,nocharge,referral,brent,scharge,pscharge,supcharg,tcharge,tshortfall,chcharge,ppcodenk,has_benefits,renewal,wrent,wscharge,wpschrge,wsupchrg,wtcharge,wtshortfall,refused,housingneeds,wchchrg,newprop,relat2,relat3,relat4,relat5,relat6,relat7,relat8,lar,irproduct,joint,sheltered,hhtype,new_old,vacdays,form,owningorgid,owningorgname,hcnum,maningorgid,maningorgname,manhcnum,createddate,uploaddate -2,BZ737,35,F,2,4,6,0,2,32,M,6,,,,,,,,,,,,,,,,,,,1,0,1,0,1,2,1,5,1,SE2 6RT,6,7,3,2,1,68,1,1,2,2,1,NW1 5TY,1,1,1,2,,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,,,4,123,E09000003,E07000105,6,1,2020-05-05 10:36:49 UTC,0,2022-02-02 10:36:49 UTC,1,2,1,2019-11-03 00:00:00 UTC,2,1,7,0,0,2,0,2,200.0,50.0,40.0,35.0,325.0,12.0,,1,1,0,100.0,25.0,20.0,17.5,162.5,6.0,0,1,,2,P,,,,,,,,,,,4,2,638,{id},{owning_org_id},DLUHC,1234,{managing_org_id},DLUHC,1234,2022-02-08 16:52:15 UTC,2022-02-08 16:52:15 UTC +2,BZ737,35,F,2,4,6,0,2,32,M,6,,,,,,,,,,,,,,,,,,,1,0,1,1,1,2,1,5,1,SE2 6RT,6,7,3,2,1,68,1,1,2,2,1,NW1 5TY,1,1,1,2,,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,,,4,123,E09000003,E07000105,6,1,2020-05-05T10:36:49+01:00,0,2022-02-02T10:36:49+00:00,1,2,1,2019-11-03T00:00:00+00:00,2,1,7,0,0,2,0,2,200.0,50.0,40.0,35.0,325.0,12.0,,1,1,0,100.0,25.0,20.0,17.5,162.5,6.0,0,1,,2,P,,,,,,,,,,,4,2,638,{id},{owning_org_id},DLUHC,1234,{managing_org_id},DLUHC,1234,2022-02-08T16:52:15+00:00,2022-02-08T16:52:15+00:00 diff --git a/spec/fixtures/exports/general_needs_log.xml b/spec/fixtures/exports/general_needs_log.xml index 642b6ac6a..8e72e23de 100644 --- a/spec/fixtures/exports/general_needs_log.xml +++ b/spec/fixtures/exports/general_needs_log.xml @@ -34,7 +34,7 @@ 1 0 1 - 0 + 1 1 2 1 @@ -87,13 +87,13 @@ E07000105 6 1 - 2020-05-05 10:36:49 UTC + 2020-05-05T10:36:49+01:00 0 - 2022-02-02 10:36:49 UTC + 2022-02-02T10:36:49+00:00 1 2 1 - 2019-11-03 00:00:00 UTC + 2019-11-03T00:00:00+00:00 2 1 7 @@ -142,8 +142,8 @@ {managing_org_id} DLUHC 1234 - 2022-02-08 16:52:15 UTC - 2022-02-08 16:52:15 UTC + 2022-02-08T16:52:15+00:00 + 2022-02-08T16:52:15+00:00 1 diff --git a/spec/fixtures/exports/supported_housing_logs.xml b/spec/fixtures/exports/supported_housing_logs.xml index b04a86b0c..bd5b1d209 100644 --- a/spec/fixtures/exports/supported_housing_logs.xml +++ b/spec/fixtures/exports/supported_housing_logs.xml @@ -34,7 +34,7 @@ 1 0 1 - 0 + 1 1 2 1 @@ -86,13 +86,13 @@ E07000105 6 1 - 2020-05-05 10:36:49 UTC + 2020-05-05T10:36:49+01:00 0 - 2022-02-02 10:36:49 UTC + 2022-02-02T10:36:49+00:00 1 - 2019-11-03 00:00:00 UTC + 2019-11-03T00:00:00+00:00 2 2 8 @@ -141,8 +141,8 @@ {managing_org_id} DLUHC 1234 - 2022-02-08 16:52:15 UTC - 2022-02-08 16:52:15 UTC + 2022-02-08T16:52:15+00:00 + 2022-02-08T16:52:15+00:00 7 1 G diff --git a/spec/helpers/navigation_items_helper_spec.rb b/spec/helpers/navigation_items_helper_spec.rb index fc656d024..35cf00725 100644 --- a/spec/helpers/navigation_items_helper_spec.rb +++ b/spec/helpers/navigation_items_helper_spec.rb @@ -346,6 +346,8 @@ RSpec.describe NavigationItemsHelper do NavigationItemsHelper::NavigationItem.new("Schemes", "/schemes", false), NavigationItemsHelper::NavigationItem.new("Users", users_path, false), NavigationItemsHelper::NavigationItem.new("About your organisation", organisation_path, false), + NavigationItemsHelper::NavigationItem.new("Housing providers", "/organisations/#{current_user.organisation.id}/housing-providers", false), + NavigationItemsHelper::NavigationItem.new("Managing agents", "/organisations/#{current_user.organisation.id}/managing-agents", false), ] end @@ -362,6 +364,8 @@ RSpec.describe NavigationItemsHelper do NavigationItemsHelper::NavigationItem.new("Schemes", "/schemes", false), NavigationItemsHelper::NavigationItem.new("Users", users_path, false), NavigationItemsHelper::NavigationItem.new("About your organisation", organisation_path, false), + NavigationItemsHelper::NavigationItem.new("Housing providers", "/organisations/#{current_user.organisation.id}/housing-providers", false), + NavigationItemsHelper::NavigationItem.new("Managing agents", "/organisations/#{current_user.organisation.id}/managing-agents", false), ] end @@ -378,6 +382,8 @@ RSpec.describe NavigationItemsHelper do NavigationItemsHelper::NavigationItem.new("Schemes", "/schemes", false), NavigationItemsHelper::NavigationItem.new("Users", users_path, true), NavigationItemsHelper::NavigationItem.new("About your organisation", organisation_path, false), + NavigationItemsHelper::NavigationItem.new("Housing providers", "/organisations/#{current_user.organisation.id}/housing-providers", false), + NavigationItemsHelper::NavigationItem.new("Managing agents", "/organisations/#{current_user.organisation.id}/managing-agents", false), ] end @@ -394,6 +400,8 @@ RSpec.describe NavigationItemsHelper do NavigationItemsHelper::NavigationItem.new("Schemes", "/schemes", false), NavigationItemsHelper::NavigationItem.new("Users", users_path, false), NavigationItemsHelper::NavigationItem.new("About your organisation", organisation_path, true), + NavigationItemsHelper::NavigationItem.new("Housing providers", "/organisations/#{current_user.organisation.id}/housing-providers", false), + NavigationItemsHelper::NavigationItem.new("Managing agents", "/organisations/#{current_user.organisation.id}/managing-agents", false), ] end @@ -410,6 +418,8 @@ RSpec.describe NavigationItemsHelper do NavigationItemsHelper::NavigationItem.new("Schemes", "/schemes", false), NavigationItemsHelper::NavigationItem.new("Users", "/organisations/#{current_user.organisation.id}/users", false), NavigationItemsHelper::NavigationItem.new("About your organisation", organisation_path, false), + NavigationItemsHelper::NavigationItem.new("Housing providers", "/organisations/#{current_user.organisation.id}/housing-providers", false), + NavigationItemsHelper::NavigationItem.new("Managing agents", "/organisations/#{current_user.organisation.id}/managing-agents", false), ] end @@ -426,6 +436,8 @@ RSpec.describe NavigationItemsHelper do NavigationItemsHelper::NavigationItem.new("Schemes", "/schemes", false), NavigationItemsHelper::NavigationItem.new("Users", "/organisations/#{current_user.organisation.id}/users", true), NavigationItemsHelper::NavigationItem.new("About your organisation", organisation_path, false), + NavigationItemsHelper::NavigationItem.new("Housing providers", "/organisations/#{current_user.organisation.id}/housing-providers", false), + NavigationItemsHelper::NavigationItem.new("Managing agents", "/organisations/#{current_user.organisation.id}/managing-agents", false), ] end @@ -442,6 +454,8 @@ RSpec.describe NavigationItemsHelper do NavigationItemsHelper::NavigationItem.new("Schemes", "/schemes", true), NavigationItemsHelper::NavigationItem.new("Users", "/organisations/#{current_user.organisation.id}/users", false), NavigationItemsHelper::NavigationItem.new("About your organisation", organisation_path, false), + NavigationItemsHelper::NavigationItem.new("Housing providers", "/organisations/#{current_user.organisation.id}/housing-providers", false), + NavigationItemsHelper::NavigationItem.new("Managing agents", "/organisations/#{current_user.organisation.id}/managing-agents", false), ] end @@ -618,6 +632,8 @@ RSpec.describe NavigationItemsHelper do NavigationItemsHelper::NavigationItem.new("Schemes", "/organisations/#{current_user.organisation.id}/schemes", false), NavigationItemsHelper::NavigationItem.new("Users", "/organisations/#{current_user.organisation.id}/users", false), NavigationItemsHelper::NavigationItem.new("About this organisation", "/organisations/#{current_user.organisation.id}", false), + NavigationItemsHelper::NavigationItem.new("Housing providers", "/organisations/#{current_user.organisation.id}/housing-providers", false), + NavigationItemsHelper::NavigationItem.new("Managing agents", "/organisations/#{current_user.organisation.id}/managing-agents", false), ] end @@ -646,6 +662,8 @@ RSpec.describe NavigationItemsHelper do NavigationItemsHelper::NavigationItem.new("Schemes", "/organisations/#{current_user.organisation.id}/schemes", false), NavigationItemsHelper::NavigationItem.new("Users", "/organisations/#{current_user.organisation.id}/users", true), NavigationItemsHelper::NavigationItem.new("About this organisation", "/organisations/#{current_user.organisation.id}", false), + NavigationItemsHelper::NavigationItem.new("Housing providers", "/organisations/#{current_user.organisation.id}/housing-providers", false), + NavigationItemsHelper::NavigationItem.new("Managing agents", "/organisations/#{current_user.organisation.id}/managing-agents", false), ] end @@ -674,6 +692,8 @@ RSpec.describe NavigationItemsHelper do NavigationItemsHelper::NavigationItem.new("Schemes", "/organisations/#{current_user.organisation.id}/schemes", true), NavigationItemsHelper::NavigationItem.new("Users", "/organisations/#{current_user.organisation.id}/users", false), NavigationItemsHelper::NavigationItem.new("About this organisation", "/organisations/#{current_user.organisation.id}", false), + NavigationItemsHelper::NavigationItem.new("Housing providers", "/organisations/#{current_user.organisation.id}/housing-providers", false), + NavigationItemsHelper::NavigationItem.new("Managing agents", "/organisations/#{current_user.organisation.id}/managing-agents", false), ] end @@ -702,6 +722,8 @@ RSpec.describe NavigationItemsHelper do NavigationItemsHelper::NavigationItem.new("Schemes", "/organisations/#{current_user.organisation.id}/schemes", false), NavigationItemsHelper::NavigationItem.new("Users", "/organisations/#{current_user.organisation.id}/users", false), NavigationItemsHelper::NavigationItem.new("About this organisation", "/organisations/#{current_user.organisation.id}", true), + NavigationItemsHelper::NavigationItem.new("Housing providers", "/organisations/#{current_user.organisation.id}/housing-providers", false), + NavigationItemsHelper::NavigationItem.new("Managing agents", "/organisations/#{current_user.organisation.id}/managing-agents", false), ] end diff --git a/spec/models/form/sales/subsections/property_information_spec.rb b/spec/models/form/sales/subsections/property_information_spec.rb index ab33936c5..284d0e02c 100644 --- a/spec/models/form/sales/subsections/property_information_spec.rb +++ b/spec/models/form/sales/subsections/property_information_spec.rb @@ -17,6 +17,7 @@ RSpec.describe Form::Sales::Subsections::PropertyInformation, type: :model do property_number_of_bedrooms property_building_type property_unit_type + property_local_authority ], ) end diff --git a/spec/models/form_handler_spec.rb b/spec/models/form_handler_spec.rb index 5108a56c3..87a04487a 100644 --- a/spec/models/form_handler_spec.rb +++ b/spec/models/form_handler_spec.rb @@ -61,14 +61,14 @@ RSpec.describe FormHandler do it "is able to load a current sales form" do form = form_handler.get_form("current_sales") expect(form).to be_a(Form) - expect(form.pages.count).to eq(40) + expect(form.pages.count).to eq(41) expect(form.name).to eq("2022_2023_sales") end it "is able to load a previous sales form" do form = form_handler.get_form("previous_sales") expect(form).to be_a(Form) - expect(form.pages.count).to eq(40) + expect(form.pages.count).to eq(41) expect(form.name).to eq("2021_2022_sales") end end diff --git a/spec/models/lettings_log_spec.rb b/spec/models/lettings_log_spec.rb index dc4a646fe..f97711562 100644 --- a/spec/models/lettings_log_spec.rb +++ b/spec/models/lettings_log_spec.rb @@ -1431,8 +1431,8 @@ RSpec.describe LettingsLog do it "correctly derives and saves referral" do record_from_db = ActiveRecord::Base.connection.execute("select referral from lettings_logs where id=#{lettings_log.id}").to_a[0] - expect(record_from_db["referral"]).to eq(0) - expect(lettings_log["referral"]).to eq(0) + expect(record_from_db["referral"]).to eq(1) + expect(lettings_log["referral"]).to eq(1) end it "correctly derives and saves vacdays" do diff --git a/spec/models/organisation_spec.rb b/spec/models/organisation_spec.rb index 7bc1d7cc1..d4d63b6a0 100644 --- a/spec/models/organisation_spec.rb +++ b/spec/models/organisation_spec.rb @@ -27,19 +27,101 @@ RSpec.describe Organisation, type: :model do .to raise_error(ActiveRecord::RecordInvalid, "Validation failed: Provider type #{I18n.t('validations.organisation.provider_type_missing')}") end - context "with parent/child association" do - let(:child_organisation) { FactoryBot.create(:organisation, name: "DLUHC Child") } + context "with parent/child associations", :aggregate_failures do + let!(:child_organisation) { FactoryBot.create(:organisation, name: "DLUHC Child") } + let!(:grandchild_organisation) { FactoryBot.create(:organisation, name: "DLUHC Grandchild") } before do - FactoryBot.create(:organisation_relationship, child_organisation:, parent_organisation: organisation) + FactoryBot.create( + :organisation_relationship, + :owning, + child_organisation:, + parent_organisation: organisation, + ) + + FactoryBot.create( + :organisation_relationship, + :owning, + child_organisation: grandchild_organisation, + parent_organisation: child_organisation, + ) + end + + it "has correct child_organisations" do + expect(organisation.child_organisations).to eq([child_organisation]) + expect(child_organisation.child_organisations).to eq([grandchild_organisation]) + end + + it "has correct parent_organisations" do + expect(child_organisation.parent_organisations).to eq([organisation]) + expect(grandchild_organisation.parent_organisations).to eq([child_organisation]) end + end + + context "with owning association", :aggregate_failures do + let!(:child_organisation) { FactoryBot.create(:organisation, name: "DLUHC Child") } + let!(:grandchild_organisation) { FactoryBot.create(:organisation, name: "DLUHC Grandchild") } + + before do + FactoryBot.create( + :organisation_relationship, + :managing, + child_organisation:, + parent_organisation: organisation, + ) + + FactoryBot.create( + :organisation_relationship, + :owning, + child_organisation:, + parent_organisation: organisation, + ) - it "has correct child" do - expect(organisation.child_organisations.first).to eq(child_organisation) + FactoryBot.create( + :organisation_relationship, + :owning, + child_organisation: grandchild_organisation, + parent_organisation: child_organisation, + ) + end + + it "has correct housing_providers" do + expect(child_organisation.housing_providers).to eq([organisation]) + expect(grandchild_organisation.housing_providers).to eq([child_organisation]) + end + end + + context "with managing association", :aggregate_failures do + let!(:child_organisation) { FactoryBot.create(:organisation, name: "DLUHC Child") } + let!(:grandchild_organisation) { FactoryBot.create(:organisation, name: "DLUHC Grandchild") } + + before do + FactoryBot.create( + :organisation_relationship, + :managing, + child_organisation:, + parent_organisation: organisation, + ) + + FactoryBot.create( + :organisation_relationship, + :owning, + child_organisation:, + parent_organisation: organisation, + ) + + FactoryBot.create( + :organisation_relationship, + :managing, + child_organisation: grandchild_organisation, + parent_organisation: child_organisation, + ) end - it "has correct parent" do - expect(child_organisation.parent_organisations.first).to eq(organisation) + it "has correct managing_agents" do + expect(organisation.managing_agents).to eq([child_organisation]) + expect(child_organisation.managing_agents).to eq([grandchild_organisation]) + expect(grandchild_organisation.managing_agents).to eq([]) end end diff --git a/spec/models/validations/financial_validations_spec.rb b/spec/models/validations/financial_validations_spec.rb index 895840cdb..c4c4958db 100644 --- a/spec/models/validations/financial_validations_spec.rb +++ b/spec/models/validations/financial_validations_spec.rb @@ -247,6 +247,8 @@ RSpec.describe Validations::FinancialValidations do end describe "rent and charges validations" do + let!(:location) { FactoryBot.create(:location, location_code: "E07000223") } + context "when the owning organisation is a private registered provider" do before { record.owning_organisation.provider_type = 2 } @@ -777,7 +779,7 @@ RSpec.describe Validations::FinancialValidations do context "when validating ranges based on LA and needstype" do before do - LaRentRange.create( + LaRentRange.create!( ranges_rent_id: "1", la: "E07000223", beds: 1, @@ -788,9 +790,21 @@ RSpec.describe Validations::FinancialValidations do hard_max: 100.99, start_year: 2021, ) + LaRentRange.create!( + ranges_rent_id: "2", + la: "E07000223", + beds: 0, + lettype: 2, + soft_min: 12.41, + soft_max: 89.54, + hard_min: 9.87, + hard_max: 100.99, + start_year: 2021, + ) end - it "validates hard minimum" do + it "validates hard minimum for general needs" do + record.needstype = 1 record.lettype = 1 record.period = 1 record.la = "E07000223" @@ -800,10 +814,24 @@ RSpec.describe Validations::FinancialValidations do financial_validator.validate_rent_amount(record) expect(record.errors["brent"]) - .to include(match I18n.t("validations.financial.brent.not_in_range")) + .to include(match I18n.t("validations.financial.brent.below_hard_min")) + end + + it "validates hard minimum for supported housing" do + record.needstype = 2 + record.lettype = 2 + record.period = 1 + record.location = location + record.startdate = Time.zone.local(2021, 9, 17) + record.brent = 9.17 + + financial_validator.validate_rent_amount(record) + expect(record.errors["brent"]) + .to include(match I18n.t("validations.financial.brent.below_hard_min")) end - it "validates hard max" do + it "validates hard max for general needs" do + record.needstype = 1 record.lettype = 1 record.period = 1 record.la = "E07000223" @@ -813,15 +841,52 @@ RSpec.describe Validations::FinancialValidations do financial_validator.validate_rent_amount(record) expect(record.errors["brent"]) - .to include(match I18n.t("validations.financial.brent.not_in_range")) + .to include(match I18n.t("validations.financial.brent.above_hard_max")) expect(record.errors["beds"]) - .to include(match I18n.t("validations.financial.brent.beds.not_in_range")) + .to include(match I18n.t("validations.financial.brent.beds.above_hard_max")) expect(record.errors["la"]) - .to include(match I18n.t("validations.financial.brent.la.not_in_range")) + .to include(match I18n.t("validations.financial.brent.la.above_hard_max")) + expect(record.errors["postcode_known"]) + .to include(match I18n.t("validations.financial.brent.postcode_known.above_hard_max")) + expect(record.errors["scheme_id"]) + .to include(match I18n.t("validations.financial.brent.scheme_id.above_hard_max")) + expect(record.errors["location_id"]) + .to include(match I18n.t("validations.financial.brent.location_id.above_hard_max")) expect(record.errors["rent_type"]) - .to include(match I18n.t("validations.financial.brent.rent_type.not_in_range")) + .to include(match I18n.t("validations.financial.brent.rent_type.above_hard_max")) expect(record.errors["needstype"]) - .to include(match I18n.t("validations.financial.brent.needstype.not_in_range")) + .to include(match I18n.t("validations.financial.brent.needstype.above_hard_max")) + expect(record.errors["period"]) + .to include(match I18n.t("validations.financial.brent.period.above_hard_max")) + end + + it "validates hard max for supported housing" do + record.needstype = 2 + record.lettype = 2 + record.period = 1 + record.location = location + record.startdate = Time.zone.local(2021, 9, 17) + record.brent = 200 + + financial_validator.validate_rent_amount(record) + expect(record.errors["brent"]) + .to include(match I18n.t("validations.financial.brent.above_hard_max")) + expect(record.errors["beds"]) + .to include(match I18n.t("validations.financial.brent.beds.above_hard_max")) + expect(record.errors["la"]) + .to include(match I18n.t("validations.financial.brent.la.above_hard_max")) + expect(record.errors["postcode_known"]) + .to include(match I18n.t("validations.financial.brent.postcode_known.above_hard_max")) + expect(record.errors["scheme_id"]) + .to include(match I18n.t("validations.financial.brent.scheme_id.above_hard_max")) + expect(record.errors["location_id"]) + .to include(match I18n.t("validations.financial.brent.location_id.above_hard_max")) + expect(record.errors["rent_type"]) + .to include(match I18n.t("validations.financial.brent.rent_type.above_hard_max")) + expect(record.errors["needstype"]) + .to include(match I18n.t("validations.financial.brent.needstype.above_hard_max")) + expect(record.errors["period"]) + .to include(match I18n.t("validations.financial.brent.period.above_hard_max")) end it "validates hard max for correct collection year" do @@ -834,15 +899,15 @@ RSpec.describe Validations::FinancialValidations do financial_validator.validate_rent_amount(record) expect(record.errors["brent"]) - .to include(match I18n.t("validations.financial.brent.not_in_range")) + .to include(match I18n.t("validations.financial.brent.above_hard_max")) expect(record.errors["beds"]) - .to include(match I18n.t("validations.financial.brent.beds.not_in_range")) + .to include(match I18n.t("validations.financial.brent.beds.above_hard_max")) expect(record.errors["la"]) - .to include(match I18n.t("validations.financial.brent.la.not_in_range")) + .to include(match I18n.t("validations.financial.brent.la.above_hard_max")) expect(record.errors["rent_type"]) - .to include(match I18n.t("validations.financial.brent.rent_type.not_in_range")) + .to include(match I18n.t("validations.financial.brent.rent_type.above_hard_max")) expect(record.errors["needstype"]) - .to include(match I18n.t("validations.financial.brent.needstype.not_in_range")) + .to include(match I18n.t("validations.financial.brent.needstype.above_hard_max")) end it "does not error if some of the fields are missing" do diff --git a/spec/models/validations/household_validations_spec.rb b/spec/models/validations/household_validations_spec.rb index 7b467d384..e5b1aacab 100644 --- a/spec/models/validations/household_validations_spec.rb +++ b/spec/models/validations/household_validations_spec.rb @@ -256,7 +256,7 @@ RSpec.describe Validations::HouseholdValidations do context "when the tenant or partner was and is not a member of the armed forces" do it "validates that injured in the armed forces is not yes" do record.armedforces = 2 - record.reservist = 0 + record.reservist = 1 household_validator.validate_armed_forces(record) expect(record.errors["reservist"]) .to include(match I18n.t("validations.household.reservist.injury_not_required")) @@ -266,7 +266,7 @@ RSpec.describe Validations::HouseholdValidations do context "when the tenant prefers not to say if they were or are in the armed forces" do it "validates that injured in the armed forces is not yes" do record.armedforces = 3 - record.reservist = 0 + record.reservist = 1 household_validator.validate_armed_forces(record) expect(record.errors["reservist"]) .to include(match I18n.t("validations.household.reservist.injury_not_required")) @@ -276,7 +276,7 @@ RSpec.describe Validations::HouseholdValidations do context "when the tenant was or is a regular member of the armed forces" do it "expects that injured in the armed forces can be yes" do record.armedforces = 0 - record.reservist = 0 + record.reservist = 1 household_validator.validate_armed_forces(record) expect(record.errors["reservist"]).to be_empty end @@ -285,7 +285,7 @@ RSpec.describe Validations::HouseholdValidations do context "when the tenant was or is a reserve member of the armed forces" do it "expects that injured in the armed forces can be yes" do record.armedforces = 1 - record.reservist = 0 + record.reservist = 1 household_validator.validate_armed_forces(record) expect(record.errors["reservist"]).to be_empty end @@ -294,7 +294,7 @@ RSpec.describe Validations::HouseholdValidations do context "when the tenant’s partner was or is a member of the armed forces" do it "expects that injured in the armed forces can be yes" do record.armedforces = 5 - record.reservist = 0 + record.reservist = 1 household_validator.validate_armed_forces(record) expect(record.errors["reservist"]).to be_empty end @@ -319,7 +319,7 @@ RSpec.describe Validations::HouseholdValidations do it "expects that they served in the armed forces and may have been injured" do record.armedforces = 1 record.leftreg = 0 - record.reservist = 0 + record.reservist = 1 household_validator.validate_armed_forces(record) expect(record.errors["leftreg"]).to be_empty expect(record.errors["reservist"]).to be_empty diff --git a/spec/models/validations/property_validations_spec.rb b/spec/models/validations/property_validations_spec.rb index 86f2b256e..153934ebc 100644 --- a/spec/models/validations/property_validations_spec.rb +++ b/spec/models/validations/property_validations_spec.rb @@ -134,7 +134,7 @@ RSpec.describe Validations::PropertyValidations do it "adds an error" do record.beds = -4 property_validator.validate_shared_housing_rooms(record) - expect(record.errors["beds"]).to include(I18n.t("validations.property.beds.negative")) + expect(record.errors["beds"]).to include(I18n.t("validations.property.beds.non_positive")) end end diff --git a/spec/requests/form_controller_spec.rb b/spec/requests/form_controller_spec.rb index f879985b8..ade87cfde 100644 --- a/spec/requests/form_controller_spec.rb +++ b/spec/requests/form_controller_spec.rb @@ -158,7 +158,7 @@ RSpec.describe FormController, type: :request do before do Timecop.freeze(Time.zone.local(2022, 12, 1)) - get "/lettings-logs/#{lettings_log_2022.id}/setup/check-answers", headers: headers, params: {} + get "/lettings-logs/#{lettings_log_2022.id}/setup/check-answers", headers:, params: {} end after do @@ -267,7 +267,7 @@ RSpec.describe FormController, type: :request do it "logs that validation was triggered" do expect(Rails.logger).to receive(:info).with("User triggered validation(s) on: age1").once - post "/lettings-logs/#{lettings_log.id}/form", params: params + post "/lettings-logs/#{lettings_log.id}/form", params: end context "when the number of days is too high for the month" do diff --git a/spec/requests/lettings_logs_controller_spec.rb b/spec/requests/lettings_logs_controller_spec.rb index 651655139..db4226152 100644 --- a/spec/requests/lettings_logs_controller_spec.rb +++ b/spec/requests/lettings_logs_controller_spec.rb @@ -365,7 +365,7 @@ RSpec.describe LettingsLogsController, type: :request do it "has search results in the title" do get "/lettings-logs?search=#{log_to_search.id}", headers: headers, params: {} - expect(page).to have_title("Logs (1 log matching ‘#{log_to_search.id}’) - Submit social housing lettings and sales data (CORE) - GOV.UK") + expect(page).to have_title("Logs (1 logs matching ‘#{log_to_search.id}’) - Submit social housing lettings and sales data (CORE) - GOV.UK") end it "shows lettings logs matching the id" do diff --git a/spec/requests/locations_controller_spec.rb b/spec/requests/locations_controller_spec.rb index 66bd96c72..96b3d1b21 100644 --- a/spec/requests/locations_controller_spec.rb +++ b/spec/requests/locations_controller_spec.rb @@ -100,7 +100,7 @@ RSpec.describe LocationsController, type: :request do before do sign_in user - post "/schemes/#{scheme.id}/locations", params: params + post "/schemes/#{scheme.id}/locations", params: end it "creates a new location for scheme with valid params and redirects to correct page" do @@ -302,7 +302,7 @@ RSpec.describe LocationsController, type: :request do before do allow(user).to receive(:need_two_factor_authentication?).and_return(false) sign_in user - post "/schemes/#{scheme.id}/locations", params: params + post "/schemes/#{scheme.id}/locations", params: end it "creates a new location for scheme with valid params and redirects to correct page" do @@ -573,7 +573,7 @@ RSpec.describe LocationsController, type: :request do before do sign_in user - patch "/schemes/#{scheme.id}/locations/#{location.id}", params: params + patch "/schemes/#{scheme.id}/locations/#{location.id}", params: end it "updates existing location for scheme with valid params and redirects to correct page" do @@ -714,7 +714,7 @@ RSpec.describe LocationsController, type: :request do before do allow(user).to receive(:need_two_factor_authentication?).and_return(false) sign_in user - patch "/schemes/#{scheme.id}/locations/#{location.id}", params: params + patch "/schemes/#{scheme.id}/locations/#{location.id}", params: end it "updates a location for scheme with valid params and redirects to correct page" do diff --git a/spec/requests/organisation_relationships_controller_spec.rb b/spec/requests/organisation_relationships_controller_spec.rb new file mode 100644 index 000000000..83655156c --- /dev/null +++ b/spec/requests/organisation_relationships_controller_spec.rb @@ -0,0 +1,583 @@ +require "rails_helper" + +RSpec.describe OrganisationRelationshipsController, type: :request do + let(:organisation) { user.organisation } + let!(:unauthorised_organisation) { FactoryBot.create(:organisation) } + let(:headers) { { "Accept" => "text/html" } } + let(:page) { Capybara::Node::Simple.new(response.body) } + + context "when user is signed in" do + let(:user) { FactoryBot.create(:user, :data_coordinator) } + + context "with a data coordinator user" do + before do + sign_in user + end + + context "when accessing the housing providers tab" do + context "with an organisation that the user belongs to" do + let!(:housing_provider) { FactoryBot.create(:organisation) } + let!(:other_org_housing_provider) { FactoryBot.create(:organisation, name: "Foobar LTD") } + let!(:other_organisation) { FactoryBot.create(:organisation, name: "Foobar LTD 2") } + + before do + FactoryBot.create(:organisation_relationship, child_organisation: organisation, parent_organisation: housing_provider, relationship_type: OrganisationRelationship.relationship_types[:owning]) + FactoryBot.create(:organisation_relationship, child_organisation: other_organisation, parent_organisation: other_org_housing_provider, relationship_type: OrganisationRelationship.relationship_types[:owning]) + get "/organisations/#{organisation.id}/housing-providers", headers:, params: {} + end + + it "shows the tab navigation" do + expected_html = "