diff --git a/Gemfile b/Gemfile
index 0a3827cef..f6e7fdac5 100644
--- a/Gemfile
+++ b/Gemfile
@@ -117,3 +117,6 @@ gem "cssbundling-rails"
gem "tzinfo-data", platforms: %i[mingw mswin x64_mingw jruby]
gem "excon", "~> 0.111.0"
+
+# faraday is a transitive dependency, but we need to force the version to 2.14.1 to avoid a vulnerability.
+gem "faraday", ">= 2.14.1"
diff --git a/Gemfile.lock b/Gemfile.lock
index 24d548464..34bfd3067 100644
--- a/Gemfile.lock
+++ b/Gemfile.lock
@@ -203,8 +203,10 @@ GEM
railties (>= 5.0.0)
faker (3.2.3)
i18n (>= 1.8.11, < 2)
- faraday (2.9.0)
- faraday-net_http (>= 2.0, < 3.2)
+ faraday (2.14.1)
+ faraday-net_http (>= 2.0, < 3.5)
+ json
+ logger
faraday-multipart (1.0.4)
multipart-post (~> 2)
faraday-net_http (3.1.0)
@@ -242,6 +244,7 @@ GEM
jmespath (1.6.2)
jsbundling-rails (1.3.0)
railties (>= 6.0.0)
+ json (2.18.1)
json-schema (4.1.1)
addressable (>= 2.8)
jwt (2.8.0)
@@ -568,6 +571,7 @@ DEPENDENCIES
excon (~> 0.111.0)
factory_bot_rails
faker
+ faraday (>= 2.14.1)
govuk-components (~> 5.7)
govuk_design_system_formbuilder (~> 5.7)
govuk_markdown
diff --git a/app/helpers/bulk_upload/lettings_log_to_csv.rb b/app/helpers/bulk_upload/lettings_log_to_csv.rb
index 891331e40..515d44487 100644
--- a/app/helpers/bulk_upload/lettings_log_to_csv.rb
+++ b/app/helpers/bulk_upload/lettings_log_to_csv.rb
@@ -92,13 +92,162 @@ class BulkUpload::LettingsLogToCsv
end
def default_2026_field_numbers
- # TODO: CLDC-4162 Replace with actual field numbers when 2026 format is known
- (1..129).to_a
+ (1..BulkUpload::Lettings::Year2026::CsvParser::FIELDS).to_a
end
def to_2026_row
# TODO: CLDC-4162: Implement when 2026 format is known
- to_2025_row
+ [
+ overrides[:organisation_id] || log.owning_organisation&.old_visible_id, # 1
+ overrides[:managing_organisation_id] || log.managing_organisation&.old_visible_id,
+ log.assigned_to&.email,
+ log.needstype,
+ log.scheme&.id ? "S#{log.scheme&.id}" : "",
+ log.location&.id,
+ renewal,
+ log.startdate&.day,
+ log.startdate&.month,
+ log.startdate&.strftime("%y"), # 10
+
+ rent_type,
+ log.irproduct_other,
+ log.tenancycode,
+ log.propcode,
+ log.declaration,
+ log.rsnvac,
+ log.unitletas,
+ log.uprn,
+ log.address_line1&.tr(",", " "),
+ log.address_line2&.tr(",", " "), # 20
+
+ log.town_or_city&.tr(",", " "),
+ log.county&.tr(",", " "),
+ ((log.postcode_full || "").split(" ") || [""]).first,
+ ((log.postcode_full || "").split(" ") || [""]).last,
+ log.la,
+ log.unittype_gn,
+ log.builtype,
+ log.wchair,
+ log.beds,
+ log.voiddate&.day, # 30
+
+ log.voiddate&.month,
+ log.voiddate&.strftime("%y"),
+ log.mrcdate&.day,
+ log.mrcdate&.month,
+ log.mrcdate&.strftime("%y"),
+ log.sheltered,
+ log.joint,
+ log.startertenancy,
+ log.tenancy,
+ log.tenancyother, # 40
+
+ log.tenancylength,
+ log.age1 || overrides[:age1],
+ log.sex1,
+ log.ethnic,
+ log.nationality_all_group,
+ log.ecstat1,
+ relat_number(log.relat2),
+ log.age2 || overrides[:age2],
+ log.sex2,
+ log.ecstat2, # 50
+
+ relat_number(log.relat3),
+ log.age3 || overrides[:age3],
+ log.sex3,
+ log.ecstat3,
+ relat_number(log.relat4),
+ log.age4 || overrides[:age4],
+ log.sex4,
+ log.ecstat4,
+ relat_number(log.relat5),
+ log.age5 || overrides[:age5], # 60
+
+ log.sex5,
+ log.ecstat5,
+ relat_number(log.relat6),
+ log.age6 || overrides[:age6],
+ log.sex6,
+ log.ecstat6,
+ relat_number(log.relat7),
+ log.age7 || overrides[:age7],
+ log.sex7,
+ log.ecstat7, # 70
+
+ relat_number(log.relat8),
+ log.age8 || overrides[:age8],
+ log.sex8,
+ log.ecstat8,
+ log.armedforces,
+ log.leftreg,
+ log.reservist,
+ log.preg_occ,
+ log.housingneeds_a,
+ log.housingneeds_b, # 80
+
+ log.housingneeds_c,
+ log.housingneeds_f,
+ log.housingneeds_g,
+ log.housingneeds_h,
+ overrides[:illness] || log.illness,
+ log.illness_type_1,
+ log.illness_type_2,
+ log.illness_type_3,
+ log.illness_type_4,
+ log.illness_type_5, # 90
+
+ log.illness_type_6,
+ log.illness_type_7,
+ log.illness_type_8,
+ log.illness_type_9,
+ log.illness_type_10,
+ log.layear,
+ log.waityear,
+ log.reason,
+ log.reasonother,
+ log.prevten, # 100
+
+ homeless,
+ previous_postcode_known,
+ ((log.ppostcode_full || "").split(" ") || [""]).first,
+ ((log.ppostcode_full || "").split(" ") || [""]).last,
+ log.prevloc,
+ log.reasonpref,
+ log.rp_homeless,
+ log.rp_insan_unsat,
+ log.rp_medwel,
+ log.rp_hardship, # 110
+
+ log.rp_dontknow,
+ cbl,
+ chr,
+ cap,
+ accessible_register,
+ log.referral,
+ net_income_known,
+ log.incfreq,
+ log.earnings,
+ log.hb, # 120
+
+ log.benefits,
+ log.household_charge,
+ log.period,
+ log.brent,
+ log.scharge,
+ log.pscharge,
+ log.supcharg,
+ log.hbrentshortfall,
+ log.tshortfall,
+ log.sexrab1, # 130
+ log.sexrab2,
+ log.sexrab3,
+ log.sexrab4,
+ log.sexrab5,
+ log.sexrab6,
+ log.sexrab7,
+ log.sexrab8, # 137
+ ]
end
def to_2025_row
diff --git a/app/helpers/bulk_upload/sales_log_to_csv.rb b/app/helpers/bulk_upload/sales_log_to_csv.rb
index 18e58655b..1171f481f 100644
--- a/app/helpers/bulk_upload/sales_log_to_csv.rb
+++ b/app/helpers/bulk_upload/sales_log_to_csv.rb
@@ -70,8 +70,7 @@ class BulkUpload::SalesLogToCsv
when 2025
(1..121).to_a
when 2026
- # TODO: CLDC-4162: Replace with actual field numbers when 2026 format is known
- (1..121).to_a
+ (1..BulkUpload::Sales::Year2026::CsvParser::FIELDS).to_a
else
raise NotImplementedError "No mapping function implemented for year #{year}"
end
@@ -537,7 +536,144 @@ class BulkUpload::SalesLogToCsv
def to_2026_row
# TODO: CLDC-4162: Implement when 2026 template is available
- to_2025_row
+ [
+ log.saledate&.day,
+ log.saledate&.month,
+ log.saledate&.strftime("%y"),
+ overrides[:organisation_id] || log.owning_organisation&.old_visible_id,
+ overrides[:managing_organisation_id] || log.managing_organisation&.old_visible_id,
+ log.assigned_to&.email,
+ log.purchid,
+ log.ownershipsch,
+ log.ownershipsch == 1 ? log.type : "", # field_9: "What is the type of shared ownership sale?",
+ log.staircase, # 10
+ log.ownershipsch == 2 ? log.type : "", # field_11: "What is the type of discounted ownership sale?",
+ log.jointpur,
+ log.jointmore,
+ log.noint,
+ log.privacynotice,
+
+ log.uprn,
+ log.address_line1&.tr(",", " "), # 20
+ log.address_line2&.tr(",", " "),
+ log.town_or_city&.tr(",", " "),
+ log.county&.tr(",", " "),
+ ((log.postcode_full || "").split(" ") || [""]).first,
+ ((log.postcode_full || "").split(" ") || [""]).last,
+ log.la,
+ log.proptype,
+ log.beds,
+ log.builtype,
+ log.wchair,
+
+ log.age1,
+ log.sex1,
+ log.ethnic, # 30
+ log.nationality_all_group,
+ log.ecstat1,
+ log.buy1livein,
+ { "P" => 1, "X" => 2, "R" => 3 }[log.relat2],
+ log.age2,
+ log.sex2,
+ log.ethnic_group2,
+ log.nationality_all_buyer2_group,
+ log.ecstat2,
+ log.buy2livein, # 40
+ log.hholdcount,
+
+ { "P" => 1, "X" => 2, "R" => 3 }[log.relat3],
+ log.age3,
+ log.sex3,
+ log.ecstat3,
+ { "P" => 1, "X" => 2, "R" => 3 }[log.relat4],
+ log.age4,
+ log.sex4,
+ log.ecstat4,
+ { "P" => 1, "X" => 2, "R" => 3 }[log.relat5], # 50
+ log.age5,
+ log.sex5,
+ log.ecstat5,
+ { "P" => 1, "X" => 2, "R" => 3 }[log.relat6],
+ log.age6,
+ log.sex6,
+ log.ecstat6,
+
+ log.prevten,
+ log.ppcodenk,
+ ((log.ppostcode_full || "").split(" ") || [""]).first, # 60
+ ((log.ppostcode_full || "").split(" ") || [""]).last,
+ log.prevloc,
+ log.buy2living,
+ log.prevtenbuy2,
+
+ log.hhregres,
+ log.hhregresstill,
+ log.armedforcesspouse,
+ log.disabled,
+ log.wheel,
+
+ log.income1, # 70
+ log.inc1mort,
+ log.income2,
+ log.inc2mort,
+ log.hb,
+ log.savings.present? || "R",
+ log.prevown,
+ log.prevshared,
+
+ log.resale,
+ log.proplen,
+ log.hodate&.day, # 80
+ log.hodate&.month,
+ log.hodate&.strftime("%y"),
+ log.frombeds,
+ log.fromprop,
+ log.socprevten,
+ log.value,
+ log.equity,
+ log.mortgageused,
+ log.mortgage,
+ log.mortlen, # 90
+ log.deposit,
+ log.cashdis,
+ log.mrent,
+ log.mscharge,
+ log.management_fee,
+
+ log.stairbought,
+ log.stairowned,
+ log.staircasesale,
+ log.firststair,
+ log.initialpurchase&.day, # 100
+ log.initialpurchase&.month,
+ log.initialpurchase&.strftime("%y"),
+ log.numstair,
+ log.lasttransaction&.day,
+ log.lasttransaction&.month,
+ log.lasttransaction&.strftime("%y"),
+ log.value,
+ log.equity,
+ log.mortgageused,
+ log.mrentprestaircasing, # 110
+ log.mrent,
+
+ log.proplen,
+ log.value,
+ log.grant,
+ log.discount,
+ log.mortgageused,
+ log.mortgage,
+ log.mortlen,
+ log.extrabor,
+ log.deposit, # 120
+ log.mscharge,
+ log.sexrab1,
+ log.sexrab2,
+ log.sexrab3,
+ log.sexrab4,
+ log.sexrab5,
+ log.sexrab6, # 127
+ ]
end
def custom_field_numbers_row(seed: nil, field_numbers: nil)
diff --git a/app/models/form/lettings/pages/lead_tenant_sex_registered_at_birth.rb b/app/models/form/lettings/pages/lead_tenant_sex_registered_at_birth.rb
new file mode 100644
index 000000000..8bb7cb2e3
--- /dev/null
+++ b/app/models/form/lettings/pages/lead_tenant_sex_registered_at_birth.rb
@@ -0,0 +1,13 @@
+class Form::Lettings::Pages::LeadTenantSexRegisteredAtBirth < ::Form::Page
+ def initialize(id, hsh, subsection)
+ super
+ @id = "lead_tenant_sex_registered_at_birth"
+ @depends_on = [{ "declaration" => 1 }]
+ end
+
+ def questions
+ @questions ||= [
+ Form::Lettings::Questions::LeadTenantSexRegisteredAtBirth.new(nil, nil, self),
+ ]
+ end
+end
diff --git a/app/models/form/lettings/pages/person_sex_registered_at_birth.rb b/app/models/form/lettings/pages/person_sex_registered_at_birth.rb
new file mode 100644
index 000000000..d9405a048
--- /dev/null
+++ b/app/models/form/lettings/pages/person_sex_registered_at_birth.rb
@@ -0,0 +1,16 @@
+class Form::Lettings::Pages::PersonSexRegisteredAtBirth < ::Form::Page
+ def initialize(id, hsh, subsection, person_index:)
+ super(id, hsh, subsection)
+ @id = "person_#{person_index}_sex_registered_at_birth"
+ @person_index = person_index
+ @depends_on = [
+ { "details_known_#{person_index}" => 0 },
+ ]
+ end
+
+ def questions
+ @questions ||= [
+ Form::Lettings::Questions::PersonSexRegisteredAtBirth.new("sexrab#{@person_index}", nil, self, person_index: @person_index),
+ ]
+ end
+end
diff --git a/app/models/form/lettings/questions/lead_tenant_sex_registered_at_birth.rb b/app/models/form/lettings/questions/lead_tenant_sex_registered_at_birth.rb
new file mode 100644
index 000000000..2e8523f51
--- /dev/null
+++ b/app/models/form/lettings/questions/lead_tenant_sex_registered_at_birth.rb
@@ -0,0 +1,19 @@
+class Form::Lettings::Questions::LeadTenantSexRegisteredAtBirth < ::Form::Question
+ def initialize(id, hsh, page)
+ super
+ @id = "sexrab1"
+ @type = "radio"
+ @check_answers_card_number = 1
+ @answer_options = ANSWER_OPTIONS
+ @question_number = QUESTION_NUMBER_FROM_YEAR[form.start_date.year]
+ end
+
+ ANSWER_OPTIONS = {
+ "F" => { "value" => "Female" },
+ "M" => { "value" => "Male" },
+ "divider" => { "value" => true },
+ "R" => { "value" => "Lead tenant prefers not to say" },
+ }.freeze
+
+ QUESTION_NUMBER_FROM_YEAR = { 2026 => 31 }.freeze
+end
diff --git a/app/models/form/lettings/questions/person_sex_registered_at_birth.rb b/app/models/form/lettings/questions/person_sex_registered_at_birth.rb
new file mode 100644
index 000000000..b549885b1
--- /dev/null
+++ b/app/models/form/lettings/questions/person_sex_registered_at_birth.rb
@@ -0,0 +1,23 @@
+class Form::Lettings::Questions::PersonSexRegisteredAtBirth < ::Form::Question
+ def initialize(id, hsh, page, person_index:)
+ super(id, hsh, page)
+ @type = "radio"
+ @check_answers_card_number = person_index
+ @answer_options = ANSWER_OPTIONS
+ @person_index = person_index
+ @question_number = question_number
+ end
+
+ ANSWER_OPTIONS = {
+ "F" => { "value" => "Female" },
+ "M" => { "value" => "Male" },
+ "divider" => { "value" => true },
+ "R" => { "value" => "Person prefers not to say" },
+ }.freeze
+
+ def question_number
+ base_question_number = 29
+
+ base_question_number + (5 * @person_index)
+ end
+end
diff --git a/app/models/form/lettings/questions/previous_tenure.rb b/app/models/form/lettings/questions/previous_tenure.rb
index bf21f5b6d..47647b03c 100644
--- a/app/models/form/lettings/questions/previous_tenure.rb
+++ b/app/models/form/lettings/questions/previous_tenure.rb
@@ -5,7 +5,13 @@ class Form::Lettings::Questions::PreviousTenure < ::Form::Question
@copy_key = "lettings.household_situation.prevten.not_renewal"
@type = "radio"
@check_answers_card_number = 0
- @answer_options = form.start_year_2025_or_later? ? ANSWER_OPTIONS_2025 : ANSWER_OPTIONS
+ @answer_options = if form.start_year_2026_or_later?
+ ANSWER_OPTIONS_2026_OR_LATER
+ elsif form.start_date.year == 2025
+ ANSWER_OPTIONS_2025
+ else
+ ANSWER_OPTIONS
+ end
@question_number = QUESTION_NUMBER_FROM_YEAR[form.start_date.year] || QUESTION_NUMBER_FROM_YEAR[QUESTION_NUMBER_FROM_YEAR.keys.max]
end
@@ -67,5 +73,35 @@ class Form::Lettings::Questions::PreviousTenure < ::Form::Question
"25" => { "value" => "Any other accommodation" },
}.freeze
+ ANSWER_OPTIONS_2026_OR_LATER = {
+ "30" => { "value" => "Fixed-term local authority general needs tenancy" },
+ "32" => { "value" => "Fixed-term private registered provider (PRP) general needs tenancy" },
+ "31" => { "value" => "Lifetime local authority general needs tenancy" },
+ "33" => { "value" => "Lifetime private registered provider (PRP) general needs tenancy" },
+ "40" => { "value" => "Other general needs" },
+ "35" => { "value" => "Extra care housing" },
+ "38" => { "value" => "Older people’s housing for tenants with low support needs" },
+ "6" => { "value" => "Other supported housing" },
+ "3" => { "value" => "Private sector tenancy" },
+ "27" => { "value" => "Owner occupation (low-cost home ownership)" },
+ "26" => { "value" => "Owner occupation (private)" },
+ "28" => { "value" => "Living with friends or family (long-term)" },
+ "39" => { "value" => "Sofa surfing (moving regularly between family or friends, no permanent bed)" },
+ "14" => { "value" => "Bed and breakfast" },
+ "7" => { "value" => "Direct access hostel" },
+ "10" => { "value" => "Hospital" },
+ "29" => { "value" => "Prison or approved probation hostel" },
+ "19" => { "value" => "Rough sleeping" },
+ "18" => { "value" => "Any other temporary accommodation" },
+ "13" => { "value" => "Children’s home or foster care" },
+ "24" => { "value" => "Home Office Asylum Support" },
+ "37" => { "value" => "Host family or similar refugee accommodation" },
+ "23" => { "value" => "Mobile home or caravan" },
+ "21" => { "value" => "Refuge" },
+ "9" => { "value" => "Residential care home" },
+ "4" => { "value" => "Tied housing or rented with job" },
+ "25" => { "value" => "Any other accommodation" },
+ }.freeze
+
QUESTION_NUMBER_FROM_YEAR = { 2023 => 78, 2024 => 77 }.freeze
end
diff --git a/app/models/form/lettings/subsections/household_characteristics.rb b/app/models/form/lettings/subsections/household_characteristics.rb
index 074709f8d..cfc53603e 100644
--- a/app/models/form/lettings/subsections/household_characteristics.rb
+++ b/app/models/form/lettings/subsections/household_characteristics.rb
@@ -17,6 +17,7 @@ class Form::Lettings::Subsections::HouseholdCharacteristics < ::Form::Subsection
Form::Lettings::Pages::FemalesInSoftAgeRangeInPregnantHouseholdLeadAgeValueCheck.new(nil, nil, self),
Form::Lettings::Pages::LeadTenantUnderRetirementValueCheck.new("age_lead_tenant_under_retirement_value_check", nil, self),
Form::Lettings::Pages::LeadTenantOverRetirementValueCheck.new("age_lead_tenant_over_retirement_value_check", nil, self),
+ (Form::Lettings::Pages::LeadTenantSexRegisteredAtBirth.new(nil, nil, self) if form.start_year_2026_or_later?),
Form::Lettings::Pages::LeadTenantGenderIdentity.new(nil, nil, self),
Form::Lettings::Pages::NoFemalesPregnantHouseholdLeadValueCheck.new(nil, nil, self),
Form::Lettings::Pages::FemalesInSoftAgeRangeInPregnantHouseholdLeadValueCheck.new(nil, nil, self),
@@ -45,6 +46,7 @@ class Form::Lettings::Subsections::HouseholdCharacteristics < ::Form::Subsection
Form::Lettings::Pages::PersonUnderRetirementValueCheck.new("age_2_under_retirement_value_check", nil, self, person_index: 2),
Form::Lettings::Pages::PersonOverRetirementValueCheck.new("age_2_over_retirement_value_check", nil, self, person_index: 2),
(Form::Lettings::Pages::PartnerUnder16ValueCheck.new("age_2_partner_under_16_value_check", nil, self, person_index: 2) if form.start_year_2024_or_later? && !form.start_year_2026_or_later?),
+ (Form::Lettings::Pages::PersonSexRegisteredAtBirth.new(nil, nil, self, person_index: 2) if form.start_year_2026_or_later?),
Form::Lettings::Pages::PersonGenderIdentity.new(nil, nil, self, person_index: 2),
Form::Lettings::Pages::NoFemalesPregnantHouseholdPersonValueCheck.new(nil, nil, self, person_index: 2),
Form::Lettings::Pages::FemalesInSoftAgeRangeInPregnantHouseholdPersonValueCheck.new(nil, nil, self,
@@ -67,6 +69,7 @@ class Form::Lettings::Subsections::HouseholdCharacteristics < ::Form::Subsection
Form::Lettings::Pages::PersonUnderRetirementValueCheck.new("age_3_under_retirement_value_check", nil, self, person_index: 3),
Form::Lettings::Pages::PersonOverRetirementValueCheck.new("age_3_over_retirement_value_check", nil, self, person_index: 3),
(Form::Lettings::Pages::PartnerUnder16ValueCheck.new("age_3_partner_under_16_value_check", nil, self, person_index: 3) if form.start_year_2024_or_later? && !form.start_year_2026_or_later?),
+ (Form::Lettings::Pages::PersonSexRegisteredAtBirth.new(nil, nil, self, person_index: 3) if form.start_year_2026_or_later?),
Form::Lettings::Pages::PersonGenderIdentity.new(nil, nil, self, person_index: 3),
Form::Lettings::Pages::NoFemalesPregnantHouseholdPersonValueCheck.new(nil, nil, self, person_index: 3),
Form::Lettings::Pages::FemalesInSoftAgeRangeInPregnantHouseholdPersonValueCheck.new(nil, nil, self,
@@ -89,6 +92,7 @@ class Form::Lettings::Subsections::HouseholdCharacteristics < ::Form::Subsection
Form::Lettings::Pages::PersonUnderRetirementValueCheck.new("age_4_under_retirement_value_check", nil, self, person_index: 4),
Form::Lettings::Pages::PersonOverRetirementValueCheck.new("age_4_over_retirement_value_check", nil, self, person_index: 4),
(Form::Lettings::Pages::PartnerUnder16ValueCheck.new("age_4_partner_under_16_value_check", nil, self, person_index: 4) if form.start_year_2024_or_later? && !form.start_year_2026_or_later?),
+ (Form::Lettings::Pages::PersonSexRegisteredAtBirth.new(nil, nil, self, person_index: 4) if form.start_year_2026_or_later?),
Form::Lettings::Pages::PersonGenderIdentity.new(nil, nil, self, person_index: 4),
Form::Lettings::Pages::NoFemalesPregnantHouseholdPersonValueCheck.new(nil, nil, self, person_index: 4),
Form::Lettings::Pages::FemalesInSoftAgeRangeInPregnantHouseholdPersonValueCheck.new(nil, nil, self,
@@ -111,6 +115,7 @@ class Form::Lettings::Subsections::HouseholdCharacteristics < ::Form::Subsection
Form::Lettings::Pages::PersonUnderRetirementValueCheck.new("age_5_under_retirement_value_check", nil, self, person_index: 5),
Form::Lettings::Pages::PersonOverRetirementValueCheck.new("age_5_over_retirement_value_check", nil, self, person_index: 5),
(Form::Lettings::Pages::PartnerUnder16ValueCheck.new("age_5_partner_under_16_value_check", nil, self, person_index: 5) if form.start_year_2024_or_later? && !form.start_year_2026_or_later?),
+ (Form::Lettings::Pages::PersonSexRegisteredAtBirth.new(nil, nil, self, person_index: 5) if form.start_year_2026_or_later?),
Form::Lettings::Pages::PersonGenderIdentity.new(nil, nil, self, person_index: 5),
Form::Lettings::Pages::NoFemalesPregnantHouseholdPersonValueCheck.new(nil, nil, self, person_index: 5),
Form::Lettings::Pages::FemalesInSoftAgeRangeInPregnantHouseholdPersonValueCheck.new(nil, nil, self,
@@ -133,6 +138,7 @@ class Form::Lettings::Subsections::HouseholdCharacteristics < ::Form::Subsection
Form::Lettings::Pages::PersonUnderRetirementValueCheck.new("age_6_under_retirement_value_check", nil, self, person_index: 6),
Form::Lettings::Pages::PersonOverRetirementValueCheck.new("age_6_over_retirement_value_check", nil, self, person_index: 6),
(Form::Lettings::Pages::PartnerUnder16ValueCheck.new("age_6_partner_under_16_value_check", nil, self, person_index: 6) if form.start_year_2024_or_later? && !form.start_year_2026_or_later?),
+ (Form::Lettings::Pages::PersonSexRegisteredAtBirth.new(nil, nil, self, person_index: 6) if form.start_year_2026_or_later?),
Form::Lettings::Pages::PersonGenderIdentity.new(nil, nil, self, person_index: 6),
Form::Lettings::Pages::NoFemalesPregnantHouseholdPersonValueCheck.new(nil, nil, self, person_index: 6),
Form::Lettings::Pages::FemalesInSoftAgeRangeInPregnantHouseholdPersonValueCheck.new(nil, nil, self,
@@ -155,6 +161,7 @@ class Form::Lettings::Subsections::HouseholdCharacteristics < ::Form::Subsection
Form::Lettings::Pages::PersonUnderRetirementValueCheck.new("age_7_under_retirement_value_check", nil, self, person_index: 7),
Form::Lettings::Pages::PersonOverRetirementValueCheck.new("age_7_over_retirement_value_check", nil, self, person_index: 7),
(Form::Lettings::Pages::PartnerUnder16ValueCheck.new("age_7_partner_under_16_value_check", nil, self, person_index: 7) if form.start_year_2024_or_later? && !form.start_year_2026_or_later?),
+ (Form::Lettings::Pages::PersonSexRegisteredAtBirth.new(nil, nil, self, person_index: 7) if form.start_year_2026_or_later?),
Form::Lettings::Pages::PersonGenderIdentity.new(nil, nil, self, person_index: 7),
Form::Lettings::Pages::NoFemalesPregnantHouseholdPersonValueCheck.new(nil, nil, self, person_index: 7),
Form::Lettings::Pages::FemalesInSoftAgeRangeInPregnantHouseholdPersonValueCheck.new(nil, nil, self,
@@ -177,6 +184,7 @@ class Form::Lettings::Subsections::HouseholdCharacteristics < ::Form::Subsection
Form::Lettings::Pages::PersonUnderRetirementValueCheck.new("age_8_under_retirement_value_check", nil, self, person_index: 8),
Form::Lettings::Pages::PersonOverRetirementValueCheck.new("age_8_over_retirement_value_check", nil, self, person_index: 8),
(Form::Lettings::Pages::PartnerUnder16ValueCheck.new("age_8_partner_under_16_value_check", nil, self, person_index: 8) if form.start_year_2024_or_later? && !form.start_year_2026_or_later?),
+ (Form::Lettings::Pages::PersonSexRegisteredAtBirth.new(nil, nil, self, person_index: 8) if form.start_year_2026_or_later?),
Form::Lettings::Pages::PersonGenderIdentity.new(nil, nil, self, person_index: 8),
Form::Lettings::Pages::NoFemalesPregnantHouseholdPersonValueCheck.new(nil, nil, self, person_index: 8),
Form::Lettings::Pages::FemalesInSoftAgeRangeInPregnantHouseholdPersonValueCheck.new(nil, nil, self,
diff --git a/app/models/form/sales/pages/person_sex_registered_at_birth.rb b/app/models/form/sales/pages/person_sex_registered_at_birth.rb
new file mode 100644
index 000000000..b2ea1da20
--- /dev/null
+++ b/app/models/form/sales/pages/person_sex_registered_at_birth.rb
@@ -0,0 +1,16 @@
+class Form::Sales::Pages::PersonSexRegisteredAtBirth < ::Form::Page
+ def initialize(id, hsh, subsection, person_index:)
+ super(id, hsh, subsection)
+ @copy_key = "sales.household_characteristics.sexrab2.person" if person_index == 2
+ @person_index = person_index
+ @depends_on = [
+ { "details_known_#{person_index}" => 1 },
+ ]
+ end
+
+ def questions
+ @questions ||= [
+ Form::Sales::Questions::PersonSexRegisteredAtBirth.new("sexrab#{@person_index}", nil, self, person_index: @person_index),
+ ]
+ end
+end
diff --git a/app/models/form/sales/pages/sex_registered_at_birth1.rb b/app/models/form/sales/pages/sex_registered_at_birth1.rb
new file mode 100644
index 000000000..4e6f012a9
--- /dev/null
+++ b/app/models/form/sales/pages/sex_registered_at_birth1.rb
@@ -0,0 +1,20 @@
+class Form::Sales::Pages::SexRegisteredAtBirth1 < ::Form::Page
+ def initialize(id, hsh, subsection)
+ super
+ @id = "buyer_1_sex_registered_at_birth"
+ @depends_on = [
+ {
+ "buyer_has_seen_privacy_notice?" => true,
+ },
+ {
+ "buyer_not_interviewed?" => true,
+ },
+ ]
+ end
+
+ def questions
+ @questions ||= [
+ Form::Sales::Questions::SexRegisteredAtBirth1.new(nil, nil, self),
+ ]
+ end
+end
diff --git a/app/models/form/sales/pages/sex_registered_at_birth2.rb b/app/models/form/sales/pages/sex_registered_at_birth2.rb
new file mode 100644
index 000000000..49ce339c4
--- /dev/null
+++ b/app/models/form/sales/pages/sex_registered_at_birth2.rb
@@ -0,0 +1,23 @@
+class Form::Sales::Pages::SexRegisteredAtBirth2 < ::Form::Page
+ def initialize(id, hsh, subsection)
+ super
+ @id = "buyer_2_sex_registered_at_birth"
+ @copy_key = "sales.household_characteristics.sexrab2.buyer"
+ @depends_on = [
+ {
+ "joint_purchase?" => true,
+ "buyer_has_seen_privacy_notice?" => true,
+ },
+ {
+ "joint_purchase?" => true,
+ "buyer_not_interviewed?" => true,
+ },
+ ]
+ end
+
+ def questions
+ @questions ||= [
+ Form::Sales::Questions::SexRegisteredAtBirth2.new(nil, nil, self),
+ ]
+ end
+end
diff --git a/app/models/form/sales/questions/person_sex_registered_at_birth.rb b/app/models/form/sales/questions/person_sex_registered_at_birth.rb
new file mode 100644
index 000000000..ff61f3ee0
--- /dev/null
+++ b/app/models/form/sales/questions/person_sex_registered_at_birth.rb
@@ -0,0 +1,19 @@
+class Form::Sales::Questions::PersonSexRegisteredAtBirth < ::Form::Question
+ def initialize(id, hsh, page, person_index:)
+ super(id, hsh, page)
+ @type = "radio"
+ @copy_key = "sales.household_characteristics.sexrab2.person" if person_index == 2
+ @check_answers_card_number = person_index
+ @answer_options = ANSWER_OPTIONS
+ @question_number = QUESTION_NUMBER_FROM_YEAR[form.start_date.year] || QUESTION_NUMBER_FROM_YEAR[QUESTION_NUMBER_FROM_YEAR.keys.max]
+ end
+
+ ANSWER_OPTIONS = {
+ "F" => { "value" => "Female" },
+ "M" => { "value" => "Male" },
+ "divider" => { "value" => true },
+ "R" => { "value" => "Person prefers not to say" },
+ }.freeze
+
+ QUESTION_NUMBER_FROM_YEAR = { 2026 => 0 }.freeze
+end
diff --git a/app/models/form/sales/questions/sex_registered_at_birth1.rb b/app/models/form/sales/questions/sex_registered_at_birth1.rb
new file mode 100644
index 000000000..77a8e3fc3
--- /dev/null
+++ b/app/models/form/sales/questions/sex_registered_at_birth1.rb
@@ -0,0 +1,19 @@
+class Form::Sales::Questions::SexRegisteredAtBirth1 < ::Form::Question
+ def initialize(id, hsh, page)
+ super
+ @id = "sexrab1"
+ @type = "radio"
+ @check_answers_card_number = 1
+ @answer_options = ANSWER_OPTIONS
+ @question_number = QUESTION_NUMBER_FROM_YEAR[form.start_date.year] || QUESTION_NUMBER_FROM_YEAR[QUESTION_NUMBER_FROM_YEAR.keys.max]
+ end
+
+ ANSWER_OPTIONS = {
+ "F" => { "value" => "Female" },
+ "M" => { "value" => "Male" },
+ "divider" => { "value" => true },
+ "R" => { "value" => "Buyer prefers not to say" },
+ }.freeze
+
+ QUESTION_NUMBER_FROM_YEAR = { 2026 => 0 }.freeze
+end
diff --git a/app/models/form/sales/questions/sex_registered_at_birth2.rb b/app/models/form/sales/questions/sex_registered_at_birth2.rb
new file mode 100644
index 000000000..6f9c77eb4
--- /dev/null
+++ b/app/models/form/sales/questions/sex_registered_at_birth2.rb
@@ -0,0 +1,20 @@
+class Form::Sales::Questions::SexRegisteredAtBirth2 < ::Form::Question
+ def initialize(id, hsh, page)
+ super
+ @id = "sexrab2"
+ @type = "radio"
+ @copy_key = "sales.household_characteristics.sexrab2.buyer"
+ @check_answers_card_number = 2
+ @answer_options = ANSWER_OPTIONS
+ @question_number = QUESTION_NUMBER_FROM_YEAR[form.start_date.year] || QUESTION_NUMBER_FROM_YEAR[QUESTION_NUMBER_FROM_YEAR.keys.max]
+ end
+
+ ANSWER_OPTIONS = {
+ "F" => { "value" => "Female" },
+ "M" => { "value" => "Male" },
+ "divider" => { "value" => true },
+ "R" => { "value" => "Buyer prefers not to say" },
+ }.freeze
+
+ QUESTION_NUMBER_FROM_YEAR = { 2026 => 0 }.freeze
+end
diff --git a/app/models/form/sales/subsections/household_characteristics.rb b/app/models/form/sales/subsections/household_characteristics.rb
index a1f21ae8e..47466a492 100644
--- a/app/models/form/sales/subsections/household_characteristics.rb
+++ b/app/models/form/sales/subsections/household_characteristics.rb
@@ -24,6 +24,7 @@ class Form::Sales::Subsections::HouseholdCharacteristics < ::Form::Subsection
(Form::Sales::Pages::NotRetiredValueCheck.new("age_1_not_retired_value_check", nil, self, person_index: 1) if form.start_year_2024_or_later?),
Form::Sales::Pages::OldPersonsSharedOwnershipValueCheck.new("age_1_old_persons_shared_ownership_joint_purchase_value_check", nil, self, joint_purchase: true),
Form::Sales::Pages::OldPersonsSharedOwnershipValueCheck.new("age_1_old_persons_shared_ownership_value_check", nil, self, joint_purchase: false),
+ (Form::Sales::Pages::SexRegisteredAtBirth1.new(nil, nil, self) if form.start_year_2026_or_later?),
Form::Sales::Pages::GenderIdentity1.new(nil, nil, self),
Form::Sales::Pages::Buyer1EthnicGroup.new(nil, nil, self),
Form::Sales::Pages::Buyer1EthnicBackgroundBlack.new(nil, nil, self),
@@ -46,6 +47,7 @@ class Form::Sales::Subsections::HouseholdCharacteristics < ::Form::Subsection
Form::Sales::Pages::RetirementValueCheck.new("age_2_buyer_retirement_value_check", nil, self, person_index: 2),
(Form::Sales::Pages::NotRetiredValueCheck.new("age_2_buyer_not_retired_value_check", nil, self, person_index: 2) if form.start_year_2024_or_later?),
(Form::Sales::Pages::PersonStudentNotChildValueCheck.new("buyer_2_age_student_not_child_value_check", nil, self, person_index: 2) unless form.start_year_2025_or_later?),
+ (Form::Sales::Pages::SexRegisteredAtBirth2.new(nil, nil, self) if form.start_year_2026_or_later?),
Form::Sales::Pages::GenderIdentity2.new(nil, nil, self),
buyer_2_ethnicity_nationality_pages,
Form::Sales::Pages::Buyer2WorkingSituation.new(nil, nil, self),
@@ -67,6 +69,7 @@ class Form::Sales::Subsections::HouseholdCharacteristics < ::Form::Subsection
(Form::Sales::Pages::NotRetiredValueCheck.new("age_2_not_retired_value_check", nil, self, person_index: 2) if form.start_year_2024_or_later?),
(Form::Sales::Pages::PersonStudentNotChildValueCheck.new("age_2_student_not_child_value_check", nil, self, person_index: 2) unless form.start_year_2025_or_later?),
(Form::Sales::Pages::PartnerUnder16ValueCheck.new("age_2_partner_under_16_value_check", nil, self, person_index: 2) if form.start_year_2024_or_later?),
+ (Form::Sales::Pages::PersonSexRegisteredAtBirth.new("person_2_sex_registered_at_birth", nil, self, person_index: 2) if form.start_year_2026_or_later?),
Form::Sales::Pages::PersonGenderIdentity.new("person_2_gender_identity", nil, self, person_index: 2),
Form::Sales::Pages::PersonWorkingSituation.new("person_2_working_situation", nil, self, person_index: 2),
Form::Sales::Pages::RetirementValueCheck.new("working_situation_2_retirement_value_check", nil, self, person_index: 2),
@@ -82,6 +85,7 @@ class Form::Sales::Subsections::HouseholdCharacteristics < ::Form::Subsection
(Form::Sales::Pages::NotRetiredValueCheck.new("age_3_not_retired_value_check", nil, self, person_index: 3) if form.start_year_2024_or_later?),
(Form::Sales::Pages::PersonStudentNotChildValueCheck.new("age_3_student_not_child_value_check", nil, self, person_index: 3) unless form.start_year_2025_or_later?),
(Form::Sales::Pages::PartnerUnder16ValueCheck.new("age_3_partner_under_16_value_check", nil, self, person_index: 3) if form.start_year_2024_or_later?),
+ (Form::Sales::Pages::PersonSexRegisteredAtBirth.new("person_3_sex_registered_at_birth", nil, self, person_index: 3) if form.start_year_2026_or_later?),
Form::Sales::Pages::PersonGenderIdentity.new("person_3_gender_identity", nil, self, person_index: 3),
Form::Sales::Pages::PersonWorkingSituation.new("person_3_working_situation", nil, self, person_index: 3),
Form::Sales::Pages::RetirementValueCheck.new("working_situation_3_retirement_value_check", nil, self, person_index: 3),
@@ -97,6 +101,7 @@ class Form::Sales::Subsections::HouseholdCharacteristics < ::Form::Subsection
(Form::Sales::Pages::NotRetiredValueCheck.new("age_4_not_retired_value_check", nil, self, person_index: 4) if form.start_year_2024_or_later?),
(Form::Sales::Pages::PersonStudentNotChildValueCheck.new("age_4_student_not_child_value_check", nil, self, person_index: 4) unless form.start_year_2025_or_later?),
(Form::Sales::Pages::PartnerUnder16ValueCheck.new("age_4_partner_under_16_value_check", nil, self, person_index: 4) if form.start_year_2024_or_later?),
+ (Form::Sales::Pages::PersonSexRegisteredAtBirth.new("person_4_sex_registered_at_birth", nil, self, person_index: 4) if form.start_year_2026_or_later?),
Form::Sales::Pages::PersonGenderIdentity.new("person_4_gender_identity", nil, self, person_index: 4),
Form::Sales::Pages::PersonWorkingSituation.new("person_4_working_situation", nil, self, person_index: 4),
Form::Sales::Pages::RetirementValueCheck.new("working_situation_4_retirement_value_check", nil, self, person_index: 4),
@@ -112,6 +117,7 @@ class Form::Sales::Subsections::HouseholdCharacteristics < ::Form::Subsection
(Form::Sales::Pages::NotRetiredValueCheck.new("age_5_not_retired_value_check", nil, self, person_index: 5) if form.start_year_2024_or_later?),
(Form::Sales::Pages::PersonStudentNotChildValueCheck.new("age_5_student_not_child_value_check", nil, self, person_index: 5) unless form.start_year_2025_or_later?),
(Form::Sales::Pages::PartnerUnder16ValueCheck.new("age_5_partner_under_16_value_check", nil, self, person_index: 5) if form.start_year_2024_or_later?),
+ (Form::Sales::Pages::PersonSexRegisteredAtBirth.new("person_5_sex_registered_at_birth", nil, self, person_index: 5) if form.start_year_2026_or_later?),
Form::Sales::Pages::PersonGenderIdentity.new("person_5_gender_identity", nil, self, person_index: 5),
Form::Sales::Pages::PersonWorkingSituation.new("person_5_working_situation", nil, self, person_index: 5),
Form::Sales::Pages::RetirementValueCheck.new("working_situation_5_retirement_value_check", nil, self, person_index: 5),
@@ -127,6 +133,7 @@ class Form::Sales::Subsections::HouseholdCharacteristics < ::Form::Subsection
(Form::Sales::Pages::NotRetiredValueCheck.new("age_6_not_retired_value_check", nil, self, person_index: 6) if form.start_year_2024_or_later?),
(Form::Sales::Pages::PersonStudentNotChildValueCheck.new("age_6_student_not_child_value_check", nil, self, person_index: 6) unless form.start_year_2025_or_later?),
(Form::Sales::Pages::PartnerUnder16ValueCheck.new("age_6_partner_under_16_value_check", nil, self, person_index: 6) if form.start_year_2024_or_later?),
+ (Form::Sales::Pages::PersonSexRegisteredAtBirth.new("person_6_sex_registered_at_birth", nil, self, person_index: 6) if form.start_year_2026_or_later?),
Form::Sales::Pages::PersonGenderIdentity.new("person_6_gender_identity", nil, self, person_index: 6),
Form::Sales::Pages::PersonWorkingSituation.new("person_6_working_situation", nil, self, person_index: 6),
Form::Sales::Pages::RetirementValueCheck.new("working_situation_6_retirement_value_check", nil, self, person_index: 6),
diff --git a/app/services/bulk_upload/lettings/year2026/csv_parser.rb b/app/services/bulk_upload/lettings/year2026/csv_parser.rb
index 2484cbc4b..68a0b72ce 100644
--- a/app/services/bulk_upload/lettings/year2026/csv_parser.rb
+++ b/app/services/bulk_upload/lettings/year2026/csv_parser.rb
@@ -4,8 +4,7 @@ class BulkUpload::Lettings::Year2026::CsvParser
include CollectionTimeHelper
# TODO: CLDC-4162: Update when 2026 format is known
- FIELDS = 129
- MAX_COLUMNS = 130
+ FIELDS = 137
FORM_YEAR = 2026
attr_reader :path
@@ -66,7 +65,7 @@ class BulkUpload::Lettings::Year2026::CsvParser
max_columns_count = body_rows.map(&:size).max - col_offset
- max_columns_count > MAX_COLUMNS
+ max_columns_count > FIELDS
end
def wrong_template_for_year?
diff --git a/app/services/bulk_upload/lettings/year2026/row_parser.rb b/app/services/bulk_upload/lettings/year2026/row_parser.rb
index 700084724..34e252920 100644
--- a/app/services/bulk_upload/lettings/year2026/row_parser.rb
+++ b/app/services/bulk_upload/lettings/year2026/row_parser.rb
@@ -134,6 +134,15 @@ class BulkUpload::Lettings::Year2026::RowParser
field_127: "What is the support charge?",
field_128: "After the household has received any housing-related benefits, will they still need to pay for rent and charges?",
field_129: "What do you expect the outstanding amount to be?",
+
+ field_130: "Lead tenant's sex, as registered at birth",
+ field_131: "Person 2's sex, as registered at birth",
+ field_132: "Person 3's sex, as registered at birth",
+ field_133: "Person 4's sex, as registered at birth",
+ field_134: "Person 5's sex, as registered at birth",
+ field_135: "Person 6's sex, as registered at birth",
+ field_136: "Person 7's sex, as registered at birth",
+ field_137: "Person 8's sex, as registered at birth",
}.freeze
RENT_TYPE_BU_MAPPING = {
@@ -283,6 +292,15 @@ class BulkUpload::Lettings::Year2026::RowParser
attribute :field_128, :integer
attribute :field_129, :decimal
+ attribute :field_130, :string
+ attribute :field_131, :string
+ attribute :field_132, :string
+ attribute :field_133, :string
+ attribute :field_134, :string
+ attribute :field_135, :string
+ attribute :field_136, :string
+ attribute :field_137, :string
+
validate :validate_valid_radio_option, on: :before_log
validates :field_11,
@@ -541,6 +559,7 @@ class BulkUpload::Lettings::Year2026::RowParser
!supported_housing? ? "field_24" : nil, # postcode # TODO: CLDC-4119: add postcode to hash for supported housing
"field_42", # age1
"field_43", # sex1
+ "field_130", # sexrab1
"field_46", # ecstat1
)
if [field_124, field_125, field_126, field_127].all?(&:present?)
@@ -689,6 +708,7 @@ private
[
"startdate",
"age1",
+ "sexrab1",
"sex1",
"ecstat1",
"owning_organisation",
@@ -979,6 +999,7 @@ private
errors.add(:field_24, error_message) unless supported_housing? # postcode_full # TODO: CLDC-4119: add postcode to error fields for supported housing
errors.add(:field_25, error_message) unless supported_housing? # la # TODO: CLDC-4119: add LA to error fields for supported housing
errors.add(:field_42, error_message) # age1
+ errors.add(:field_130, error_message) # sexrab1
errors.add(:field_43, error_message) # sex1
errors.add(:field_46, error_message) # ecstat1
errors.add(:field_122, error_message) unless general_needs? # household_charge
@@ -1150,6 +1171,15 @@ private
town_or_city: [:field_21],
county: [:field_22],
uprn_selection: [:field_19],
+
+ sexrab1: %i[field_130],
+ sexrab2: %i[field_131],
+ sexrab3: %i[field_132],
+ sexrab4: %i[field_133],
+ sexrab5: %i[field_134],
+ sexrab6: %i[field_135],
+ sexrab7: %i[field_136],
+ sexrab8: %i[field_137],
}.compact
end
@@ -1356,6 +1386,15 @@ private
attributes["postcode_full_input"] = postcode_full
attributes["select_best_address_match"] = true if field_18.blank?
+ attributes["sexrab1"] = field_130
+ attributes["sexrab2"] = field_131
+ attributes["sexrab3"] = field_132
+ attributes["sexrab4"] = field_133
+ attributes["sexrab5"] = field_134
+ attributes["sexrab6"] = field_135
+ attributes["sexrab7"] = field_136
+ attributes["sexrab8"] = field_137
+
attributes
end
@@ -1462,31 +1501,31 @@ private
end
def person_2_present?
- field_47.present? || field_48.present? || field_49.present?
+ field_47.present? || field_48.present? || field_49.present? || field_131.present?
end
def person_3_present?
- field_51.present? || field_52.present? || field_53.present?
+ field_51.present? || field_52.present? || field_53.present? || field_132.present?
end
def person_4_present?
- field_55.present? || field_56.present? || field_57.present?
+ field_55.present? || field_56.present? || field_57.present? || field_133.present?
end
def person_5_present?
- field_59.present? || field_60.present? || field_61.present?
+ field_59.present? || field_60.present? || field_61.present? || field_134.present?
end
def person_6_present?
- field_63.present? || field_64.present? || field_65.present?
+ field_63.present? || field_64.present? || field_65.present? || field_135.present?
end
def person_7_present?
- field_67.present? || field_68.present? || field_69.present?
+ field_67.present? || field_68.present? || field_69.present? || field_136.present?
end
def person_8_present?
- field_71.present? || field_72.present? || field_73.present?
+ field_71.present? || field_72.present? || field_73.present? || field_137.present?
end
def leftreg
diff --git a/app/services/bulk_upload/sales/validator.rb b/app/services/bulk_upload/sales/validator.rb
index c26d8d1ca..7b1dbd48e 100644
--- a/app/services/bulk_upload/sales/validator.rb
+++ b/app/services/bulk_upload/sales/validator.rb
@@ -167,7 +167,7 @@ private
column_count = rows.map(&:size).max
- errors.add(:base, I18n.t("validations.sales.#{@bulk_upload.year}.bulk_upload.wrong_template.over_max_column_count")) if column_count > csv_parser.class::MAX_COLUMNS
+ errors.add(:base, I18n.t("validations.sales.#{@bulk_upload.year}.bulk_upload.wrong_template.over_max_column_count")) if column_count > csv_parser.class::FIELDS + 1
end
def validate_correct_template
diff --git a/app/services/bulk_upload/sales/year2026/csv_parser.rb b/app/services/bulk_upload/sales/year2026/csv_parser.rb
index a512e2f44..78e467807 100644
--- a/app/services/bulk_upload/sales/year2026/csv_parser.rb
+++ b/app/services/bulk_upload/sales/year2026/csv_parser.rb
@@ -4,8 +4,7 @@ class BulkUpload::Sales::Year2026::CsvParser
include CollectionTimeHelper
# TODO: CLDC-4162: Update when 2026 format is known
- FIELDS = 121
- MAX_COLUMNS = 142
+ FIELDS = 127
FORM_YEAR = 2026
attr_reader :path
diff --git a/app/services/bulk_upload/sales/year2026/row_parser.rb b/app/services/bulk_upload/sales/year2026/row_parser.rb
index 1010296f6..adb7cc6a2 100644
--- a/app/services/bulk_upload/sales/year2026/row_parser.rb
+++ b/app/services/bulk_upload/sales/year2026/row_parser.rb
@@ -135,6 +135,13 @@ class BulkUpload::Sales::Year2026::RowParser
field_119: "Does this include any extra borrowing?",
field_120: "How much was the cash deposit paid on the property?",
field_121: "What are the total monthly leasehold charges for the property?",
+
+ field_122: "Buyer 1's sex, as registered at birth",
+ field_123: "Buyer/Person 2's sex, as registered at birth",
+ field_124: "Person 3's sex, as registered at birth",
+ field_125: "Person 4's sex, as registered at birth",
+ field_126: "Person 5's sex, as registered at birth",
+ field_127: "Person 6's sex, as registered at birth",
}.freeze
ERROR_BASE_KEY = "validations.sales.2026.bulk_upload".freeze
@@ -275,6 +282,13 @@ class BulkUpload::Sales::Year2026::RowParser
attribute :field_120, :decimal
attribute :field_121, :decimal
+ attribute :field_122, :string
+ attribute :field_123, :string
+ attribute :field_124, :string
+ attribute :field_125, :string
+ attribute :field_126, :string
+ attribute :field_127, :string
+
validates :field_1,
presence: {
message: I18n.t("#{ERROR_BASE_KEY}.not_answered", question: "sale completion date (day)."),
@@ -513,6 +527,7 @@ class BulkUpload::Sales::Year2026::RowParser
"field_22", # postcode
"field_28", # age1
"field_29", # sex1
+ "field_122", # sexrab1
"field_32", # ecstat1
)
end
@@ -780,6 +795,12 @@ private
lasttransaction: %i[field_104 field_105 field_106],
initialpurchase: %i[field_100 field_101 field_102],
+ sexrab1: %i[field_122],
+ sexrab2: %i[field_123],
+ sexrab3: %i[field_124],
+ sexrab4: %i[field_125],
+ sexrab5: %i[field_126],
+ sexrab6: %i[field_127],
}
end
@@ -815,6 +836,13 @@ private
attributes["sex5"] = field_52
attributes["sex6"] = field_56
+ attributes["sexrab1"] = field_122
+ attributes["sexrab2"] = field_123
+ attributes["sexrab3"] = field_124
+ attributes["sexrab4"] = field_125
+ attributes["sexrab5"] = field_126
+ attributes["sexrab6"] = field_127
+
attributes["relat2"] = relationship_from_is_partner(field_34)
attributes["relat3"] = relationship_from_is_partner(field_42)
attributes["relat4"] = relationship_from_is_partner(field_46)
@@ -1013,23 +1041,23 @@ private
end
def person_2_present?
- field_35.present? || field_36.present? || field_34.present?
+ field_35.present? || field_36.present? || field_34.present? || field_123.present?
end
def person_3_present?
- field_43.present? || field_44.present? || field_42.present?
+ field_43.present? || field_44.present? || field_42.present? || field_124.present?
end
def person_4_present?
- field_47.present? || field_48.present? || field_46.present?
+ field_47.present? || field_48.present? || field_46.present? || field_125.present?
end
def person_5_present?
- field_51.present? || field_52.present? || field_50.present?
+ field_51.present? || field_52.present? || field_50.present? || field_126.present?
end
def person_6_present?
- field_55.present? || field_56.present? || field_54.present?
+ field_55.present? || field_56.present? || field_54.present? || field_127.present?
end
def relationship_from_is_partner(is_partner)
@@ -1241,6 +1269,7 @@ private
%w[
saledate
age1
+ sexrab1
sex1
ecstat1
owning_organisation
@@ -1419,6 +1448,7 @@ private
errors.add(:field_22, error_message) # Postcode
errors.add(:field_28, error_message) # Buyer 1 age
errors.add(:field_29, error_message) # Buyer 1 gender
+ errors.add(:field_122, error_message) # Buyer 1 sex registered at birth
errors.add(:field_32, error_message) # Buyer 1 working situation
errors.add(:field_7, error_message) # Purchaser code
end
diff --git a/app/services/csv/lettings_log_csv_service.rb b/app/services/csv/lettings_log_csv_service.rb
index 2da392fb0..601d27365 100644
--- a/app/services/csv/lettings_log_csv_service.rb
+++ b/app/services/csv/lettings_log_csv_service.rb
@@ -137,6 +137,7 @@ module Csv
hash["age1"] = { "refused_code" => "-9", "refused_label" => "Not known", "age_known_field" => "age1_known" }
(2..8).each do |i|
hash["age#{i}"] = { "refused_code" => "-9", "refused_label" => "Not known", "details_known_field" => "details_known_#{i}", "age_known_field" => "age#{i}_known" }
+ hash["sexrab#{i}"] = { "refused_code" => "R", "refused_label" => "Prefers not to say", "details_known_field" => "details_known_#{i}" }
hash["sex#{i}"] = { "refused_code" => "R", "refused_label" => "Prefers not to say", "details_known_field" => "details_known_#{i}" }
hash["relat#{i}"] = { "refused_code" => "R", "refused_label" => "Prefers not to say", "details_known_field" => "details_known_#{i}" }
hash["ecstat#{i}"] = { "refused_code" => "10", "refused_label" => "Prefers not to say", "details_known_field" => "details_known_#{i}" }
diff --git a/app/services/csv/sales_log_csv_service.rb b/app/services/csv/sales_log_csv_service.rb
index 0b6612a19..ed16653f1 100644
--- a/app/services/csv/sales_log_csv_service.rb
+++ b/app/services/csv/sales_log_csv_service.rb
@@ -114,6 +114,7 @@ module Csv
hash["age1"] = { "refused_code" => "-9", "refused_label" => "Not known", "age_known_field" => "age1_known" }
(2..6).each do |i|
hash["age#{i}"] = { "refused_code" => "-9", "refused_label" => "Not known", "details_known_field" => "details_known_#{i}", "age_known_field" => "age#{i}_known" }
+ hash["sexrab#{i}"] = { "refused_code" => "R", "refused_label" => "Prefers not to say", "details_known_field" => "details_known_#{i}" }
hash["sex#{i}"] = { "refused_code" => "R", "refused_label" => "Prefers not to say", "details_known_field" => "details_known_#{i}" }
hash["relat#{i}"] = { "refused_code" => "R", "refused_label" => "Prefers not to say", "details_known_field" => "details_known_#{i}" }
hash["ecstat#{i}"] = { "refused_code" => "10", "refused_label" => "Prefers not to say", "details_known_field" => "details_known_#{i}" }
diff --git a/app/services/exports/lettings_log_export_constants.rb b/app/services/exports/lettings_log_export_constants.rb
index 1698fb0a1..ddef610d5 100644
--- a/app/services/exports/lettings_log_export_constants.rb
+++ b/app/services/exports/lettings_log_export_constants.rb
@@ -7,15 +7,13 @@ module Exports::LettingsLogExportConstants
csv: 2,
}.freeze
- EXPORT_FIELDS = Set[
+ ALL_YEAR_EXPORT_FIELDS = Set[
"armedforces",
"beds",
"benefits",
"brent",
- "builtype",
"cap",
"cbl",
- "chcharge",
"chr",
"cligrp1",
"cligrp2",
@@ -53,12 +51,10 @@ module Exports::LettingsLogExportConstants
"mantype",
"mobstand",
"mrcdate",
- "national",
"needstype",
"new_old",
"newprop",
"nocharge",
- "offered",
"owningorgid",
"owningorgname",
"period",
@@ -138,6 +134,49 @@ module Exports::LettingsLogExportConstants
"location_status",
"amended_by",
"duplicate_set_id",
+ "assigned_to",
+ "created_by",
+ ]
+
+ (1..8).each do |index|
+ ALL_YEAR_EXPORT_FIELDS << "age#{index}"
+ ALL_YEAR_EXPORT_FIELDS << "ecstat#{index}"
+ ALL_YEAR_EXPORT_FIELDS << "sex#{index}"
+ end
+ (2..8).each do |index|
+ ALL_YEAR_EXPORT_FIELDS << "relat#{index}"
+ end
+ (1..10).each do |index|
+ ALL_YEAR_EXPORT_FIELDS << "illness_type_#{index}"
+ end
+ %w[a b c d e f g h].each do |letter|
+ ALL_YEAR_EXPORT_FIELDS << "housingneeds_#{letter}"
+ end
+
+ YEAR_2021_EXPORT_FIELDS = Set[
+ "builtype",
+ "chcharge",
+ "national",
+ "offered",
+ ]
+
+ YEAR_2022_EXPORT_FIELDS = Set[
+ "builtype",
+ "chcharge",
+ "national",
+ "offered",
+ ]
+
+ YEAR_2023_EXPORT_FIELDS = Set[
+ "builtype",
+ "chcharge",
+ "national",
+ "offered",
+ ]
+
+ YEAR_2024_EXPORT_FIELDS = Set[
+ "builtype",
+ "chcharge",
"accessible_register",
"nationality_all",
"bulk_upload_id",
@@ -153,26 +192,10 @@ module Exports::LettingsLogExportConstants
"pscharge_value_check",
"supcharg_value_check",
"carehome_charges_value_check",
- "assigned_to",
- "created_by",
]
- (1..8).each do |index|
- EXPORT_FIELDS << "age#{index}"
- EXPORT_FIELDS << "ecstat#{index}"
- EXPORT_FIELDS << "sex#{index}"
- end
- (2..8).each do |index|
- EXPORT_FIELDS << "relat#{index}"
- end
- (1..10).each do |index|
- EXPORT_FIELDS << "illness_type_#{index}"
- end
- %w[a b c d e f g h].each do |letter|
- EXPORT_FIELDS << "housingneeds_#{letter}"
- end
-
- POST_2024_EXPORT_FIELDS = Set[
+ YEAR_2025_EXPORT_FIELDS = Set[
+ "builtype",
"accessible_register",
"nationality_all",
"bulk_upload_id",
@@ -187,20 +210,26 @@ module Exports::LettingsLogExportConstants
"scharge_value_check",
"pscharge_value_check",
"supcharg_value_check",
- "carehome_charges_value_check",
]
- PRE_2024_EXPORT_FIELDS = Set[
- "national",
- "offered"
-]
-
- PRE_2025_EXPORT_FIELDS = Set[
- "carehome_charges_value_check",
- "chcharge"
+ YEAR_2026_EXPORT_FIELDS = Set[
+ "accessible_register",
+ "nationality_all",
+ "bulk_upload_id",
+ "address_line1_as_entered",
+ "address_line2_as_entered",
+ "town_or_city_as_entered",
+ "county_as_entered",
+ "postcode_full_as_entered",
+ "la_as_entered",
+ "net_income_value_check",
+ "rent_value_check",
+ "scharge_value_check",
+ "pscharge_value_check",
+ "supcharg_value_check",
]
- PRE_2026_EXPORT_FIELDS = Set[
- "builtype"
- ]
+ (1..8).each do |index|
+ YEAR_2026_EXPORT_FIELDS << "sexrab#{index}"
+ end
end
diff --git a/app/services/exports/lettings_log_export_service.rb b/app/services/exports/lettings_log_export_service.rb
index 5e67b4854..3b7d8d6c1 100644
--- a/app/services/exports/lettings_log_export_service.rb
+++ b/app/services/exports/lettings_log_export_service.rb
@@ -131,6 +131,7 @@ module Exports
attribute_hash["age#{index}"] = -9
attribute_hash["sex#{index}"] = "R"
+ attribute_hash["sexrab#{index}"] = "R"
attribute_hash["relat#{index}"] = "R"
attribute_hash["ecstat#{index}"] = 10
end
@@ -162,16 +163,34 @@ module Exports
attribute_hash["location_status"] = location.status_at(attribute_hash["startdate"])
end
- def is_omitted_field?(field_name, lettings_log)
- pattern_age = /age\d_known/
- details_known_prefix = "details_known_"
- field_name.starts_with?(details_known_prefix) ||
- pattern_age.match(field_name) ||
- !EXPORT_FIELDS.include?(field_name) ||
- (lettings_log.form.start_year_2024_or_later? && PRE_2024_EXPORT_FIELDS.include?(field_name)) ||
- (!lettings_log.form.start_year_2024_or_later? && POST_2024_EXPORT_FIELDS.include?(field_name)) ||
- (lettings_log.form.start_year_2025_or_later? && PRE_2025_EXPORT_FIELDS.include?(field_name)) ||
- (lettings_log.form.start_year_2026_or_later? && PRE_2026_EXPORT_FIELDS.include?(field_name))
+ def is_included_field?(field_name, included_fields)
+ included_fields.include?(field_name)
+ end
+
+ def get_included_fields(lettings_log)
+ included_fields = Set[]
+ included_fields.merge(ALL_YEAR_EXPORT_FIELDS)
+
+ year_fields = case lettings_log.collection_start_year
+ when 2021
+ YEAR_2021_EXPORT_FIELDS
+ when 2022
+ YEAR_2022_EXPORT_FIELDS
+ when 2023
+ YEAR_2023_EXPORT_FIELDS
+ when 2024
+ YEAR_2024_EXPORT_FIELDS
+ when 2025
+ YEAR_2025_EXPORT_FIELDS
+ when 2026
+ YEAR_2026_EXPORT_FIELDS
+ else
+ Set[]
+ end
+
+ included_fields.merge(year_fields)
+
+ included_fields
end
def build_export_xml(lettings_logs)
@@ -181,11 +200,12 @@ module Exports
attribute_hash = apply_cds_transformation(lettings_log, EXPORT_MODE[:xml])
form = doc.create_element("form")
doc.at("forms") << form
+ included_fields = get_included_fields(lettings_log)
attribute_hash.each do |key, value|
- if is_omitted_field?(key, lettings_log)
- next
- else
+ if is_included_field?(key, included_fields)
form << doc.create_element(key, value)
+ else
+ next
end
end
form << doc.create_element("providertype", lettings_log.owning_organisation&.read_attribute_before_type_cast(:provider_type))
diff --git a/app/services/exports/sales_log_export_constants.rb b/app/services/exports/sales_log_export_constants.rb
index 09a0d5d68..6dfb2b334 100644
--- a/app/services/exports/sales_log_export_constants.rb
+++ b/app/services/exports/sales_log_export_constants.rb
@@ -7,140 +7,148 @@ module Exports::SalesLogExportConstants
csv: 2,
}.freeze
- EXPORT_FIELDS = Set["ID",
- "STATUS",
- "DAY",
- "MONTH",
- "YEAR",
- "DUPLICATESET",
- "CREATEDDATE",
- "UPLOADDATE",
- "OWNINGORGID",
- "OWNINGORGNAME",
- "MANINGORGID",
- "MANINGORGNAME",
- "USERNAME",
- "USERNAMEID",
- "PURCHID",
- "TYPE",
- "OWNERSHIP",
- "COLLECTIONYEAR",
- "JOINTMORE",
- "JOINT",
- "BEDS",
- "ETHNIC",
- "ETHNICGROUP1",
- "LIVEINBUYER1",
- "BUILTYPE",
- "PROPTYPE",
- "NOINT",
- "LIVEINBUYER2",
- "PRIVACYNOTICE",
- "WHEEL",
- "HHOLDCOUNT",
- "LA",
- "INCOME1",
- "INC1NK",
- "INC1MORT",
- "INCOME2",
- "INC2NK",
- "SAVINGSNK",
- "SAVINGS",
- "PREVOWN",
- "AMENDEDBY",
- "AMENDEDBYID",
- "MORTGAGE",
- "INC2MORT",
- "HB",
- "FROMBEDS",
- "STAIRCASE",
- "STAIRBOUGHT",
- "STAIROWNED",
- "MRENT",
- "MRENTPRESTAIRCASING",
- "RESALE",
- "DEPOSIT",
- "CASHDIS",
- "DISABLED",
- "VALUE",
- "EQUITY",
- "DISCOUNT",
- "GRANT",
- "PPCODENK",
- "PPOSTC1",
- "PPOSTC2",
- "PREVLOC",
- "PREVLOCNAME",
- "PREVIOUSLAKNOWN",
- "HHREGRES",
- "HHREGRESSTILL",
- "PROPLEN",
- "HASMSCHARGE",
- "MSCHARGE",
- "PREVTEN",
- "MORTGAGEUSED",
- "WCHAIR",
- "ARMEDFORCESSPOUSE",
- "HODAY",
- "HOMONTH",
- "HOYEAR",
- "FROMPROP",
- "SOCPREVTEN",
- "MORTLEN1",
- "EXTRABOR",
- "HHTYPE",
- "POSTCODE",
- "ISLAINFERRED",
- "BULKUPLOADID",
- "VALUE_VALUE_CHECK",
- "PREVSHARED",
- "STAIRCASETOSALE",
- "ETHNICGROUP2",
- "ETHNIC2",
- "BUY2LIVING",
- "PREVTEN2",
- "UPRN",
- "ADDRESS1",
- "ADDRESS2",
- "TOWNCITY",
- "COUNTY",
- "LANAME",
- "CREATIONMETHOD",
- "NATIONALITYALL1",
- "NATIONALITYALL2",
- "MSCHARGE_VALUE_CHECK",
- "ADDRESS1INPUT",
- "POSTCODEINPUT",
- "ADDRESS_SEARCH_VALUE_CHECK",
- "UPRNSELECTED",
- "BULKADDRESS1",
- "BULKADDRESS2",
- "BULKTOWNCITY",
- "BULKCOUNTY",
- "BULKPOSTCODE",
- "BULKLA",
- "CREATEDBY",
- "CREATEDBYID",
- "HASESTATEFEE",
- "ESTATEFEE",
- "FIRSTSTAIR",
- "NUMSTAIR",
- "STAIRLASTDAY",
- "STAIRLASTMONTH",
- "STAIRLASTYEAR",
- "STAIRINITIALYEAR",
- "STAIRINITIALMONTH",
- "STAIRINITIALDAY",
- "HASSERVICECHARGES",
- "SERVICECHARGES",]
+ ALL_YEAR_EXPORT_FIELDS = Set[
+ "ID",
+ "STATUS",
+ "DAY",
+ "MONTH",
+ "YEAR",
+ "DUPLICATESET",
+ "CREATEDDATE",
+ "UPLOADDATE",
+ "OWNINGORGID",
+ "OWNINGORGNAME",
+ "MANINGORGID",
+ "MANINGORGNAME",
+ "USERNAME",
+ "USERNAMEID",
+ "PURCHID",
+ "TYPE",
+ "OWNERSHIP",
+ "COLLECTIONYEAR",
+ "JOINTMORE",
+ "JOINT",
+ "BEDS",
+ "ETHNIC",
+ "ETHNICGROUP1",
+ "LIVEINBUYER1",
+ "BUILTYPE",
+ "PROPTYPE",
+ "NOINT",
+ "LIVEINBUYER2",
+ "PRIVACYNOTICE",
+ "WHEEL",
+ "HHOLDCOUNT",
+ "LA",
+ "INCOME1",
+ "INC1NK",
+ "INC1MORT",
+ "INCOME2",
+ "INC2NK",
+ "SAVINGSNK",
+ "SAVINGS",
+ "PREVOWN",
+ "AMENDEDBY",
+ "AMENDEDBYID",
+ "MORTGAGE",
+ "INC2MORT",
+ "HB",
+ "FROMBEDS",
+ "STAIRCASE",
+ "STAIRBOUGHT",
+ "STAIROWNED",
+ "MRENT",
+ "MRENTPRESTAIRCASING",
+ "RESALE",
+ "DEPOSIT",
+ "CASHDIS",
+ "DISABLED",
+ "VALUE",
+ "EQUITY",
+ "DISCOUNT",
+ "GRANT",
+ "PPCODENK",
+ "PPOSTC1",
+ "PPOSTC2",
+ "PREVLOC",
+ "PREVLOCNAME",
+ "PREVIOUSLAKNOWN",
+ "HHREGRES",
+ "HHREGRESSTILL",
+ "PROPLEN",
+ "HASMSCHARGE",
+ "MSCHARGE",
+ "PREVTEN",
+ "MORTGAGEUSED",
+ "WCHAIR",
+ "ARMEDFORCESSPOUSE",
+ "HODAY",
+ "HOMONTH",
+ "HOYEAR",
+ "FROMPROP",
+ "SOCPREVTEN",
+ "MORTLEN1",
+ "EXTRABOR",
+ "HHTYPE",
+ "POSTCODE",
+ "ISLAINFERRED",
+ "BULKUPLOADID",
+ "VALUE_VALUE_CHECK",
+ "PREVSHARED",
+ "STAIRCASETOSALE",
+ "ETHNICGROUP2",
+ "ETHNIC2",
+ "BUY2LIVING",
+ "PREVTEN2",
+ "UPRN",
+ "ADDRESS1",
+ "ADDRESS2",
+ "TOWNCITY",
+ "COUNTY",
+ "LANAME",
+ "CREATIONMETHOD",
+ "NATIONALITYALL1",
+ "NATIONALITYALL2",
+ "MSCHARGE_VALUE_CHECK",
+ "ADDRESS1INPUT",
+ "POSTCODEINPUT",
+ "ADDRESS_SEARCH_VALUE_CHECK",
+ "UPRNSELECTED",
+ "BULKADDRESS1",
+ "BULKADDRESS2",
+ "BULKTOWNCITY",
+ "BULKCOUNTY",
+ "BULKPOSTCODE",
+ "BULKLA",
+ "CREATEDBY",
+ "CREATEDBYID",
+ "HASESTATEFEE",
+ "ESTATEFEE",
+ "FIRSTSTAIR",
+ "NUMSTAIR",
+ "STAIRLASTDAY",
+ "STAIRLASTMONTH",
+ "STAIRLASTYEAR",
+ "STAIRINITIALYEAR",
+ "STAIRINITIALMONTH",
+ "STAIRINITIALDAY",
+ "HASSERVICECHARGES",
+ "SERVICECHARGES",
+ ]
(1..6).each do |index|
- EXPORT_FIELDS << "AGE#{index}"
- EXPORT_FIELDS << "ECSTAT#{index}"
- EXPORT_FIELDS << "SEX#{index}"
+ ALL_YEAR_EXPORT_FIELDS << "AGE#{index}"
+ ALL_YEAR_EXPORT_FIELDS << "ECSTAT#{index}"
+ ALL_YEAR_EXPORT_FIELDS << "SEX#{index}"
end
(2..6).each do |index|
- EXPORT_FIELDS << "RELAT#{index}"
+ ALL_YEAR_EXPORT_FIELDS << "RELAT#{index}"
+ end
+
+ YEAR_2026_EXPORT_FIELDS = Set[]
+
+ (1..6).each do |index|
+ YEAR_2026_EXPORT_FIELDS << "SEXRAB#{index}"
end
end
diff --git a/app/services/exports/sales_log_export_service.rb b/app/services/exports/sales_log_export_service.rb
index 7fac8d27e..5b3f719e8 100644
--- a/app/services/exports/sales_log_export_service.rb
+++ b/app/services/exports/sales_log_export_service.rb
@@ -150,8 +150,23 @@ module Exports
attribute_hash
end
- def is_omitted_field?(field_name, _sales_log)
- !EXPORT_FIELDS.include?(field_name)
+ def is_included_field?(field_name, included_fields)
+ included_fields.include?(field_name)
+ end
+
+ def get_included_fields(sales_log)
+ included_fields = Set[]
+ included_fields.merge(ALL_YEAR_EXPORT_FIELDS)
+
+ year_fields = case sales_log.collection_start_year
+ when 2026
+ YEAR_2026_EXPORT_FIELDS
+ else
+ Set[]
+ end
+
+ included_fields.merge(year_fields)
+ included_fields
end
def build_export_xml(sales_logs)
@@ -161,11 +176,12 @@ module Exports
attribute_hash = apply_cds_transformation(sales_log, EXPORT_MODE[:xml])
form = doc.create_element("form")
doc.at("forms") << form
+ included_fields = get_included_fields(sales_log)
attribute_hash.each do |key, value|
- if is_omitted_field?(key, sales_log)
- next
- else
+ if is_included_field?(key, included_fields)
form << doc.create_element(key, value)
+ else
+ next
end
end
end
diff --git a/config/initializers/ostruct.rb b/config/initializers/ostruct.rb
new file mode 100644
index 000000000..d99ee977a
--- /dev/null
+++ b/config/initializers/ostruct.rb
@@ -0,0 +1,2 @@
+# make OpenStruct available globally
+require "ostruct"
diff --git a/config/locales/forms/2026/lettings/household_characteristics.en.yml b/config/locales/forms/2026/lettings/household_characteristics.en.yml
index ceecb6499..780e18600 100644
--- a/config/locales/forms/2026/lettings/household_characteristics.en.yml
+++ b/config/locales/forms/2026/lettings/household_characteristics.en.yml
@@ -23,6 +23,13 @@ en:
hint_text: ""
question_text: "Age"
+ sexrab1:
+ page_header: ""
+ check_answer_label: "Lead tenant’s sex registered at birth"
+ check_answer_prompt: ""
+ hint_text: "This is the sex that was registered at birth. The next question will ask about the lead tenant's gender identity."
+ question_text: "What was the lead tenant's sex at birth?"
+
sex1:
page_header: ""
check_answer_label: "Lead tenant’s gender identity"
@@ -116,6 +123,13 @@ en:
hint_text: "Answer 1 for children aged under 1 year old"
question_text: "Age"
+ sexrab2:
+ page_header: ""
+ check_answer_label: "Person 2’s sex registered at birth"
+ check_answer_prompt: ""
+ hint_text: "This is the sex that was registered at birth. The next question will ask about their gender identity."
+ question_text: "What was person 2's sex at birth?"
+
sex2:
page_header: ""
check_answer_label: "Person 2’s gender identity"
@@ -157,6 +171,13 @@ en:
hint_text: "Answer 1 for children aged under 1 year old"
question_text: "Age"
+ sexrab3:
+ page_header: ""
+ check_answer_label: "Person 3’s sex registered at birth"
+ check_answer_prompt: ""
+ hint_text: "This is the sex that was registered at birth. The next question will ask about their gender identity."
+ question_text: "What was person 3's sex at birth?"
+
sex3:
page_header: ""
check_answer_label: "Person 3’s gender identity"
@@ -198,6 +219,13 @@ en:
hint_text: "Answer 1 for children aged under 1 year old"
question_text: "Age"
+ sexrab4:
+ page_header: ""
+ check_answer_label: "Person 4’s sex registered at birth"
+ check_answer_prompt: ""
+ hint_text: "This is the sex that was registered at birth. The next question will ask about their gender identity."
+ question_text: "What was person 4's sex at birth?"
+
sex4:
page_header: ""
check_answer_label: "Person 4’s gender identity"
@@ -239,6 +267,13 @@ en:
hint_text: "Answer 1 for children aged under 1 year old"
question_text: "Age"
+ sexrab5:
+ page_header: ""
+ check_answer_label: "Person 5’s sex registered at birth"
+ check_answer_prompt: ""
+ hint_text: "This is the sex that was registered at birth. The next question will ask about their gender identity."
+ question_text: "What was person 5's sex at birth?"
+
sex5:
page_header: ""
check_answer_label: "Person 5’s gender identity"
@@ -280,6 +315,13 @@ en:
hint_text: "Answer 1 for children aged under 1 year old"
question_text: "Age"
+ sexrab6:
+ page_header: ""
+ check_answer_label: "Person 6’s sex registered at birth"
+ check_answer_prompt: ""
+ hint_text: "This is the sex that was registered at birth. The next question will ask about their gender identity."
+ question_text: "What was person 6's sex at birth?"
+
sex6:
page_header: ""
check_answer_label: "Person 6’s gender identity"
@@ -321,6 +363,13 @@ en:
hint_text: "Answer 1 for children aged under 1 year old"
question_text: "Age"
+ sexrab7:
+ page_header: ""
+ check_answer_label: "Person 7’s sex registered at birth"
+ check_answer_prompt: ""
+ hint_text: "This is the sex that was registered at birth. The next question will ask about their gender identity."
+ question_text: "What was person 7's sex at birth?"
+
sex7:
page_header: ""
check_answer_label: "Person 7’s gender identity"
@@ -362,6 +411,13 @@ en:
hint_text: "Answer 1 for children aged under 1 year old"
question_text: "Age"
+ sexrab8:
+ page_header: ""
+ check_answer_label: "Person 8’s sex registered at birth"
+ check_answer_prompt: ""
+ hint_text: "This is the sex that was registered at birth. The next question will ask about their gender identity."
+ question_text: "What was person 8's sex at birth?"
+
sex8:
page_header: ""
check_answer_label: "Person 8’s gender identity"
diff --git a/config/locales/forms/2026/lettings/household_situation.en.yml b/config/locales/forms/2026/lettings/household_situation.en.yml
index 1d3e135c7..02438edcc 100644
--- a/config/locales/forms/2026/lettings/household_situation.en.yml
+++ b/config/locales/forms/2026/lettings/household_situation.en.yml
@@ -35,7 +35,7 @@ en:
reason:
check_answer_label: "Reason for leaving last settled home"
check_answer_prompt: ""
- hint_text: "The tenant’s ‘last settled home’ is their last long-standing home. For tenants who were in temporary accommodation, sleeping rough or otherwise homeless, their last settled home is where they were living previously."
+ hint_text: "The tenant’s ‘last settled home’ is their last long-standing home. For tenants who were in temporary accommodation, sleeping rough or otherwise homeless, their last settled home is where they were living immediately before that period."
question_text: "What is the tenant’s main reason for the household leaving their last settled home?"
reasonother:
check_answer_label: ""
diff --git a/config/locales/forms/2026/lettings/income_and_benefits.en.yml b/config/locales/forms/2026/lettings/income_and_benefits.en.yml
index aa9254ab0..9148da77b 100644
--- a/config/locales/forms/2026/lettings/income_and_benefits.en.yml
+++ b/config/locales/forms/2026/lettings/income_and_benefits.en.yml
@@ -48,7 +48,7 @@ en:
page_header: ""
check_answer_label: "Frequency of household rent and charges"
check_answer_prompt: ""
- hint_text: "Select how often the household is charged. This may be different to how often they pay."
+ hint_text: "Select how often the household is charged. This may be different to how often they pay.
Only options relevant to your organisation are shown below. To change these, go to the 'About your organisation' page or contact our helpdesk using the link at the bottom of this page."
question_text: "How often does the household pay rent and other charges?"
care_home:
diff --git a/config/locales/forms/2026/sales/household_characteristics.en.yml b/config/locales/forms/2026/sales/household_characteristics.en.yml
index 3ca9da212..4bdb07670 100644
--- a/config/locales/forms/2026/sales/household_characteristics.en.yml
+++ b/config/locales/forms/2026/sales/household_characteristics.en.yml
@@ -16,6 +16,13 @@ en:
hint_text: ""
question_text: "Age"
+ sexrab1:
+ page_header: ""
+ check_answer_label: "Buyer 1’s sex registered at birth"
+ check_answer_prompt: ""
+ hint_text: "This is the sex that was registered at birth. The next question will ask about the buyer's gender identity."
+ question_text: "What was buyer 1's sex at birth?"
+
sex1:
page_header: ""
check_answer_label: "Buyer 1’s gender identity"
@@ -130,6 +137,20 @@ en:
hint_text: ""
question_text: "Age"
+ sexrab2:
+ buyer:
+ page_header: ""
+ check_answer_label: "Buyer 2’s sex registered at birth"
+ check_answer_prompt: ""
+ hint_text: "This is the sex that was registered at birth. The next question will ask about the buyer's gender identity."
+ question_text: "What was buyer 2's sex at birth?"
+ person:
+ page_header: ""
+ check_answer_label: "Person 2’s sex registered at birth"
+ check_answer_prompt: ""
+ hint_text: "This is the sex that was registered at birth. The next question will ask about the person's gender identity."
+ question_text: "What was person 2's sex at birth?"
+
sex2:
buyer:
page_header: ""
@@ -266,6 +287,13 @@ en:
hint_text: ""
question_text: "Age"
+ sexrab3:
+ page_header: ""
+ check_answer_label: "Person 3’s sex registered at birth"
+ check_answer_prompt: ""
+ hint_text: "This is the sex that was registered at birth. The next question will ask about the person's gender identity."
+ question_text: "What was person 3's sex at birth?"
+
sex3:
page_header: ""
check_answer_label: "Person 3’s gender identity"
@@ -307,6 +335,13 @@ en:
hint_text: ""
question_text: "Age"
+ sexrab4:
+ page_header: ""
+ check_answer_label: "Person 4’s sex registered at birth"
+ check_answer_prompt: ""
+ hint_text: "This is the sex that was registered at birth. The next question will ask about the person's gender identity."
+ question_text: "What was person 4's sex at birth?"
+
sex4:
page_header: ""
check_answer_label: "Person 4’s gender identity"
@@ -348,6 +383,13 @@ en:
hint_text: ""
question_text: "Age"
+ sexrab5:
+ page_header: ""
+ check_answer_label: "Person 5’s sex registered at birth"
+ check_answer_prompt: ""
+ hint_text: "This is the sex that was registered at birth. The next question will ask about the person's gender identity."
+ question_text: "What was person 5's sex at birth?"
+
sex5:
page_header: ""
check_answer_label: "Person 5’s gender identity"
@@ -389,6 +431,13 @@ en:
hint_text: ""
question_text: "Age"
+ sexrab6:
+ page_header: ""
+ check_answer_label: "Person 6’s sex registered at birth"
+ check_answer_prompt: ""
+ hint_text: "This is the sex that was registered at birth. The next question will ask about the person's gender identity."
+ question_text: "What was person 6's sex at birth?"
+
sex6:
page_header: ""
check_answer_label: "Person 6’s gender identity"
diff --git a/config/rent_range_data/2026.csv b/config/rent_range_data/2026.csv
new file mode 100644
index 000000000..4b81b20ad
--- /dev/null
+++ b/config/rent_range_data/2026.csv
@@ -0,0 +1,8881 @@
+ranges_rent_id,lettype,la,beds,soft_min,soft_max,hard_min,hard_max
+1,1,E07000223,1,60.13,139.33,25.84,1000
+327,1,E07000223,2,74.68,165.75,25.84,1000
+653,1,E07000223,3,85.34,182.58,18.64,2000
+979,1,E07000223,4,94.09,201.8,25.84,1000
+2609,2,E07000223,0,65.34,303.51,25.84,1000
+1305,3,E07000223,1,54.32,130.92,25.84,1000
+1631,3,E07000223,2,65.95,146.54,25.84,1000
+1957,3,E07000223,3,71.76,169.36,25.84,1000
+2283,3,E07000223,4,76.62,209,18.64,2000
+2935,4,E07000223,0,51.19,221.24,25.84,1000
+3983,5,E07000223,1,60.13,141.43,25.84,1000
+4598,5,E07000223,2,74.68,196.63,25.84,2000
+5250,5,E07000223,3,85.34,244.9,25.84,1000
+5935,5,E07000223,4,94.09,462.24,25.84,2000
+3261,6,E07000223,0,65.34,533.32,25.84,2000
+4050,7,E07000223,1,54.32,141.43,25.84,1000
+4745,7,E07000223,2,65.95,196.63,25.84,1000
+5350,7,E07000223,3,71.76,244.9,25.84,1000
+6039,7,E07000223,4,76.62,462.24,25.84,1000
+3587,8,E07000223,0,51.19,533.32,25.84,1000
+6521,9,E07000223,1,60.13,203.8,25.84,1000
+6847,9,E07000223,2,74.68,283.35,25.84,1000
+7173,9,E07000223,3,85.34,352.9,18.64,2000
+7499,9,E07000223,4,94.09,666.1,25.84,1000
+7825,10,E07000223,0,65.34,768.51,25.84,1000
+8251,11,E07000223,1,60.13,203.8,25.84,2000
+8252,11,E07000223,2,74.68,283.35,25.84,2000
+8253,11,E07000223,3,85.34,352.9,25.84,2000
+8254,11,E07000223,4,94.09,666.1,25.84,2000
+8255,12,E07000223,0,65.34,768.51,18.64,2000
+3,1,E07000032,1,54.32,392.63,25.84,1000
+329,1,E07000032,2,64.98,392.63,25.84,1000
+655,1,E07000032,3,71.76,186.93,25.84,1000
+981,1,E07000032,4,79.53,186.93,25.84,1000
+2611,2,E07000032,0,54.46,231.91,25.84,1000
+1307,3,E07000032,1,48.48,231.91,18.64,2000
+1633,3,E07000032,2,55.28,278.68,25.84,1000
+1959,3,E07000032,3,61.09,278.68,25.84,1000
+2285,3,E07000032,4,66.92,349.63,25.84,2000
+2937,4,E07000032,0,52.28,349.63,18.64,2000
+4311,5,E07000032,1,54.32,145.83,25.84,2000
+5007,5,E07000032,2,64.98,167.37,18.64,2000
+5650,5,E07000032,3,71.76,187.23,25.84,2000
+6225,5,E07000032,4,79.53,208.77,18.64,2000
+3263,6,E07000032,0,54.46,134.18,25.84,2000
+4411,7,E07000032,1,48.48,147.52,25.84,1000
+5147,7,E07000032,2,55.28,164.05,25.84,1000
+5808,7,E07000032,3,61.09,185.59,25.84,1000
+6469,7,E07000032,4,66.92,374.02,25.84,1000
+3589,8,E07000032,0,52.28,733.15,25.84,1000
+6523,9,E07000032,1,54.32,150.78,25.84,1000
+6849,9,E07000032,2,64.98,177.26,25.84,1000
+7175,9,E07000032,3,71.76,210.44,25.84,1000
+7501,9,E07000032,4,79.53,291.63,25.84,1000
+7827,10,E07000032,0,54.46,327.48,18.64,2000
+8256,11,E07000032,1,54.32,150.78,25.84,2000
+8257,11,E07000032,2,64.98,177.26,25.84,2000
+8258,11,E07000032,3,71.76,210.44,25.84,2000
+8259,11,E07000032,4,79.53,291.63,25.84,2000
+8260,12,E07000032,0,54.46,327.48,18.64,2000
+4,1,E07000224,1,60.13,148.87,25.84,1000
+330,1,E07000224,2,74.68,176.55,18.64,2000
+656,1,E07000224,3,85.34,195.57,25.84,1000
+982,1,E07000224,4,94.09,235.38,25.84,1000
+2612,2,E07000224,0,65.34,133.28,25.84,1000
+1308,3,E07000224,1,54.32,183.45,25.84,2000
+1634,3,E07000224,2,65.95,169.63,25.84,1000
+1960,3,E07000224,3,71.76,197.31,18.64,2000
+2286,3,E07000224,4,76.62,382.91,25.84,2000
+2938,4,E07000224,0,51.19,262.41,25.84,1000
+3984,5,E07000224,1,60.13,651.28,18.64,2000
+4599,5,E07000224,2,74.68,651.28,25.84,2000
+5251,5,E07000224,3,85.34,195.52,25.84,1000
+5936,5,E07000224,4,94.09,195.52,25.84,2000
+3264,6,E07000224,0,65.34,245.2,25.84,2000
+4051,7,E07000224,1,54.32,245.2,25.84,1000
+4746,7,E07000224,2,65.95,299.91,18.64,2000
+5351,7,E07000224,3,71.76,299.91,25.84,1000
+6040,7,E07000224,4,76.62,579.93,25.84,1000
+3590,8,E07000224,0,51.19,579.93,18.64,2000
+6524,9,E07000224,1,60.13,195.52,25.84,1000
+6850,9,E07000224,2,74.68,266.78,18.64,2000
+7176,9,E07000224,3,85.34,326.44,25.84,1000
+7502,9,E07000224,4,94.09,526.89,25.84,1000
+7828,10,E07000224,0,65.34,591.71,25.84,1000
+8261,11,E07000224,1,60.13,195.52,25.84,2000
+8262,11,E07000224,2,74.68,266.78,25.84,2000
+8263,11,E07000224,3,85.34,326.44,25.84,2000
+8264,11,E07000224,4,94.09,526.89,25.84,2000
+8265,12,E07000224,0,65.34,591.71,18.64,2000
+5,1,E07000170,1,54.32,495.68,25.84,1000
+331,1,E07000170,2,64.98,495.68,25.84,2000
+657,1,E07000170,3,71.76,185.18,25.84,1000
+983,1,E07000170,4,79.53,185.18,18.64,2000
+2613,2,E07000170,0,54.46,223.28,18.64,2000
+1309,3,E07000170,1,48.48,223.28,25.84,2000
+1635,3,E07000170,2,55.28,268.29,25.84,1000
+1961,3,E07000170,3,61.09,268.29,25.84,1000
+2287,3,E07000170,4,66.92,405.01,25.84,2000
+2939,4,E07000170,0,52.28,405.01,25.84,1000
+4312,5,E07000170,1,54.32,172.32,25.84,2000
+5008,5,E07000170,2,64.98,198.18,25.84,1000
+5651,5,E07000170,3,71.76,232.63,25.84,2000
+6226,5,E07000170,4,79.53,346.81,25.84,1000
+3265,6,E07000170,0,54.46,389.48,25.84,2000
+4412,7,E07000170,1,48.48,172.32,25.84,1000
+5148,7,E07000170,2,55.28,198.18,25.84,1000
+5809,7,E07000170,3,61.09,232.63,25.84,1000
+6470,7,E07000170,4,66.92,346.81,18.64,2000
+3591,8,E07000170,0,52.28,389.48,25.84,1000
+6525,9,E07000170,1,54.32,135.86,25.84,1000
+6851,9,E07000170,2,64.98,170.65,25.84,1000
+7177,9,E07000170,3,71.76,195.52,25.84,1000
+7503,9,E07000170,4,79.53,278.37,18.64,2000
+7829,10,E07000170,0,54.46,312.61,25.84,1000
+8266,11,E07000170,1,54.32,135.86,25.84,2000
+8267,11,E07000170,2,64.98,170.65,25.84,2000
+8268,11,E07000170,3,71.76,195.52,25.84,2000
+8269,11,E07000170,4,79.53,278.37,25.84,2000
+8270,12,E07000170,0,54.46,312.61,18.64,2000
+6,1,E07000105,1,60.13,312.78,18.64,2000
+332,1,E07000105,2,74.68,384.77,25.84,2000
+658,1,E07000105,3,85.34,443.31,25.84,1000
+984,1,E07000105,4,94.09,715.52,25.84,1000
+2614,2,E07000105,0,65.34,803.54,25.84,1000
+1310,3,E07000105,1,54.32,312.78,25.84,2000
+1636,3,E07000105,2,65.95,384.77,18.64,2000
+1962,3,E07000105,3,71.76,443.31,25.84,1000
+2288,3,E07000105,4,76.62,715.52,25.84,2000
+2940,4,E07000105,0,51.19,803.54,25.84,1000
+3985,5,E07000105,1,60.13,172.32,25.84,1000
+4600,5,E07000105,2,74.68,213.26,25.84,2000
+5252,5,E07000105,3,85.34,254.18,25.84,1000
+5937,5,E07000105,4,94.09,366.19,18.64,2000
+3266,6,E07000105,0,65.34,411.2,18.64,2000
+4052,7,E07000105,1,54.32,172.32,18.64,2000
+4747,7,E07000105,2,65.95,213.26,25.84,1000
+5352,7,E07000105,3,71.76,254.18,18.64,2000
+6041,7,E07000105,4,76.62,366.19,18.64,2000
+3592,8,E07000105,0,51.19,411.2,25.84,1000
+6526,9,E07000105,1,60.13,195.52,18.64,2000
+6852,9,E07000105,2,74.68,240.25,25.84,1000
+7178,9,E07000105,3,85.34,291.63,25.84,1000
+7504,9,E07000105,4,94.09,430.79,25.84,2000
+7830,10,E07000105,0,65.34,483.78,25.84,1000
+8271,11,E07000105,1,60.13,195.52,25.84,2000
+8272,11,E07000105,2,74.68,240.25,25.84,2000
+8273,11,E07000105,3,85.34,291.63,25.84,2000
+8274,11,E07000105,4,94.09,430.79,25.84,2000
+8275,12,E07000105,0,65.34,483.78,18.64,2000
+8,1,E07000200,1,57.22,240.74,25.84,1000
+334,1,E07000200,2,67.88,301.48,25.84,2000
+660,1,E07000200,3,74.68,362.28,18.64,2000
+986,1,E07000200,4,85.34,596.27,25.84,1000
+2616,2,E07000200,0,38.11,669.7,25.84,1000
+1312,3,E07000200,1,52.38,240.74,25.84,2000
+1638,3,E07000200,2,61.09,301.48,25.84,1000
+1964,3,E07000200,3,66.92,362.28,25.84,1000
+2290,3,E07000200,4,74.68,596.27,18.64,2000
+2942,4,E07000200,0,58.82,669.7,25.84,1000
+4117,5,E07000200,1,57.22,318.78,25.84,1000
+4698,5,E07000200,2,67.88,389.87,25.84,1000
+5417,5,E07000200,3,74.68,504.03,25.84,1000
+6127,5,E07000200,4,85.34,684.97,25.84,1000
+3268,6,E07000200,0,38.11,769.23,25.84,1000
+4234,7,E07000200,1,52.38,318.78,25.84,2000
+4960,7,E07000200,2,61.09,389.87,18.64,2000
+5603,7,E07000200,3,66.92,504.03,25.84,1000
+6265,7,E07000200,4,74.68,684.97,18.64,2000
+3594,8,E07000200,0,58.82,769.23,25.84,1000
+6528,9,E07000200,1,57.22,178.94,25.84,2000
+6854,9,E07000200,2,67.88,222,25.84,1000
+7180,9,E07000200,3,74.68,266.78,18.64,2000
+7506,9,E07000200,4,85.34,493.77,25.84,2000
+7832,10,E07000200,0,38.11,554.5,25.84,1000
+8276,11,E07000200,1,57.22,178.94,25.84,2000
+8277,11,E07000200,2,67.88,222,25.84,2000
+8278,11,E07000200,3,74.68,266.78,25.84,2000
+8279,11,E07000200,4,85.34,493.77,25.84,2000
+8280,12,E07000200,0,38.11,554.5,18.64,2000
+9,1,E09000002,1,68.85,231.75,25.84,1000
+335,1,E09000002,2,81.46,265.52,25.84,2000
+661,1,E09000002,3,88.25,317.27,25.84,1000
+987,1,E09000002,4,106.66,429.8,25.84,1000
+2617,2,E09000002,0,74.06,482.67,25.84,1000
+1313,3,E09000002,1,61.09,231.75,18.64,2000
+1639,3,E09000002,2,66.92,265.52,25.84,1000
+1965,3,E09000002,3,74.68,317.27,25.84,1000
+2291,3,E09000002,4,87.29,429.8,25.84,1000
+2943,4,E09000002,0,63.17,482.67,18.64,2000
+3950,5,E09000002,1,68.85,208.95,25.84,1000
+4565,5,E09000002,2,81.46,221.86,25.84,1000
+5217,5,E09000002,3,88.25,264.95,25.84,2000
+5902,5,E09000002,4,106.66,346.81,18.64,2000
+3269,6,E09000002,0,74.06,389.48,25.84,1000
+4164,7,E09000002,1,61.09,208.95,25.84,1000
+4665,7,E09000002,2,66.92,221.86,25.84,1000
+5317,7,E09000002,3,74.68,264.95,18.64,2000
+5869,7,E09000002,4,87.29,346.81,25.84,1000
+3595,8,E09000002,0,63.17,389.48,25.84,1000
+6529,9,E09000002,1,68.85,250.2,25.84,2000
+6855,9,E09000002,2,81.46,318.15,25.84,1000
+7181,9,E09000002,3,88.25,387.71,25.84,1000
+7507,9,E09000002,4,106.66,475.54,25.84,2000
+7833,10,E09000002,0,74.06,534.03,18.64,2000
+8281,11,E09000002,1,68.85,250.2,25.84,2000
+8282,11,E09000002,2,81.46,318.15,25.84,2000
+8283,11,E09000002,3,88.25,387.71,25.84,2000
+8284,11,E09000002,4,106.66,475.54,25.84,2000
+8285,12,E09000002,0,74.06,534.03,18.64,2000
+10,1,E09000003,1,68.85,191.28,25.84,1000
+336,1,E09000003,2,81.46,218.27,18.64,2000
+662,1,E09000003,3,88.25,254.24,25.84,1000
+988,1,E09000003,4,106.66,362.28,25.84,1000
+2618,2,E09000003,0,74.06,406.86,25.84,1000
+1314,3,E09000003,1,61.09,191.28,25.84,1000
+1640,3,E09000003,2,66.92,218.27,25.84,1000
+1966,3,E09000003,3,74.68,254.24,18.64,2000
+2292,3,E09000003,4,87.29,362.28,25.84,1000
+2944,4,E09000003,0,63.17,406.86,25.84,1000
+3951,5,E09000003,1,68.85,187.41,25.84,1000
+4566,5,E09000003,2,81.46,224.02,18.64,2000
+5218,5,E09000003,3,88.25,273.56,25.84,2000
+5903,5,E09000003,4,106.66,389.87,25.84,1000
+3270,6,E09000003,0,74.06,437.85,25.84,1000
+4165,7,E09000003,1,61.09,187.41,25.84,1000
+4666,7,E09000003,2,66.92,224.02,25.84,1000
+5318,7,E09000003,3,74.68,273.56,25.84,2000
+5870,7,E09000003,4,87.29,389.87,25.84,1000
+3596,8,E09000003,0,63.17,437.85,18.64,2000
+6530,9,E09000003,1,68.85,367.84,25.84,2000
+6856,9,E09000003,2,81.46,472.2,18.64,2000
+7182,9,E09000003,3,88.25,647.87,25.84,1000
+7508,9,E09000003,4,106.66,1179.73,25.84,2000
+7834,10,E09000003,0,74.06,1323.06,25.84,1000
+8286,11,E09000003,1,68.85,367.84,25.84,2000
+8287,11,E09000003,2,81.46,472.2,25.84,2000
+8288,11,E09000003,3,88.25,647.87,25.84,2000
+8289,11,E09000003,4,106.66,1179.73,25.84,2000
+8290,12,E09000003,0,74.06,1323.06,18.64,2000
+11,1,E08000038,1,53.35,290.29,25.84,1000
+337,1,E08000038,2,61.09,362.28,25.84,1000
+663,1,E08000038,3,65.95,479.23,25.84,1000
+989,1,E08000038,4,76.62,762.79,18.64,2000
+2619,2,E08000038,0,55.56,856.64,18.64,2000
+1315,3,E08000038,1,48.48,290.29,25.84,1000
+1641,3,E08000038,2,55.28,362.28,25.84,1000
+1967,3,E08000038,3,59.16,479.23,25.84,1000
+2293,3,E08000038,4,66.92,762.79,25.84,1000
+2945,4,E08000038,0,54.46,856.64,25.84,1000
+4390,5,E08000038,1,53.35,318.78,25.84,1000
+4870,5,E08000038,2,61.09,402.83,25.84,1000
+5501,5,E08000038,3,65.95,547.13,25.84,1000
+6106,5,E08000038,4,76.62,1003.76,25.84,1000
+3271,6,E08000038,0,55.56,1127.3,25.84,1000
+4544,7,E08000038,1,48.48,318.78,18.64,2000
+4812,7,E08000038,2,55.28,402.83,25.84,1000
+5848,7,E08000038,3,59.16,547.13,25.84,1000
+6204,7,E08000038,4,66.92,1003.76,25.84,1000
+3597,8,E08000038,0,54.46,1127.3,25.84,2000
+6531,9,E08000038,1,53.35,132.55,25.84,2000
+6857,9,E08000038,2,55.28,152.44,25.84,1000
+7183,9,E08000038,3,65.95,178.94,25.84,1000
+7509,9,E08000038,4,76.62,266.78,18.64,2000
+7835,10,E08000038,0,55.56,299.61,25.84,1000
+8291,11,E08000038,1,53.35,132.55,25.84,2000
+8292,11,E08000038,2,55.28,152.44,25.84,2000
+8293,11,E08000038,3,65.95,178.94,25.84,2000
+8294,11,E08000038,4,76.62,266.78,25.84,2000
+8295,12,E08000038,0,55.56,299.61,18.64,2000
+13,1,E07000066,1,57.22,254.24,18.64,2000
+339,1,E07000066,2,67.88,312.78,25.84,1000
+665,1,E07000066,3,74.68,384.77,25.84,1000
+991,1,E07000066,4,85.34,596.27,25.84,1000
+2621,2,E07000066,0,38.11,669.7,25.84,2000
+1317,3,E07000066,1,52.38,254.24,25.84,1000
+1643,3,E07000066,2,61.09,312.78,18.64,2000
+1969,3,E07000066,3,66.92,384.77,25.84,1000
+2295,3,E07000066,4,74.68,596.27,25.84,1000
+2947,4,E07000066,0,58.82,669.7,25.84,1000
+4118,5,E07000066,1,57.22,204.63,25.84,1000
+4699,5,E07000066,2,67.88,254.18,18.64,2000
+5418,5,E07000066,3,74.68,299.42,25.84,1000
+6128,5,E07000066,4,85.34,482.48,25.84,1000
+3273,6,E07000066,0,38.11,541.84,18.64,2000
+4235,7,E07000066,1,52.38,204.63,25.84,2000
+4961,7,E07000066,2,61.09,254.18,25.84,2000
+5604,7,E07000066,3,66.92,299.42,25.84,1000
+6266,7,E07000066,4,74.68,482.48,25.84,1000
+3599,8,E07000066,0,58.82,541.84,25.84,2000
+6533,9,E07000066,1,57.22,222,18.64,2000
+6859,9,E07000066,2,67.88,281.69,25.84,1000
+7185,9,E07000066,3,74.68,342.99,25.84,1000
+7511,9,E07000066,4,85.34,561.7,25.84,1000
+7837,10,E07000066,0,38.11,630.81,25.84,1000
+8296,11,E07000066,1,57.22,222,25.84,2000
+8297,11,E07000066,2,67.88,281.69,25.84,2000
+8298,11,E07000066,3,74.68,342.99,25.84,2000
+8299,11,E07000066,4,85.34,561.7,25.84,2000
+8300,12,E07000066,0,38.11,630.81,18.64,2000
+14,1,E07000084,1,60.13,382.52,25.84,1000
+340,1,E07000084,2,74.68,474.78,25.84,1000
+666,1,E07000084,3,85.34,670.55,18.64,2000
+992,1,E07000084,4,94.09,1143.06,25.84,1000
+2622,2,E07000084,0,65.34,1283.69,25.84,2000
+1318,3,E07000084,1,54.32,382.52,25.84,1000
+1644,3,E07000084,2,65.95,474.78,25.84,2000
+1970,3,E07000084,3,71.76,670.55,25.84,1000
+2296,3,E07000084,4,76.62,1143.06,18.64,2000
+2948,4,E07000084,0,51.19,1283.69,25.84,1000
+3987,5,E07000084,1,60.13,357.57,25.84,1000
+4602,5,E07000084,2,74.68,504.03,18.64,2000
+5254,5,E07000084,3,85.34,618.21,25.84,1000
+5939,5,E07000084,4,94.09,913.3,25.84,1000
+3274,6,E07000084,0,65.34,1025.68,25.84,1000
+4054,7,E07000084,1,54.32,357.57,25.84,1000
+4749,7,E07000084,2,65.95,504.03,25.84,1000
+5354,7,E07000084,3,71.76,618.21,25.84,1000
+6043,7,E07000084,4,76.62,913.3,25.84,1000
+3600,8,E07000084,0,51.19,1025.68,25.84,2000
+6534,9,E07000084,1,60.13,230.32,25.84,1000
+6860,9,E07000084,2,74.68,283.35,25.84,1000
+7186,9,E07000084,3,85.34,326.44,18.64,2000
+7512,9,E07000084,4,94.09,526.89,25.84,1000
+7838,10,E07000084,0,65.34,591.71,25.84,1000
+8301,11,E07000084,1,60.13,230.32,25.84,2000
+8302,11,E07000084,2,74.68,283.35,25.84,2000
+8303,11,E07000084,3,85.34,326.44,25.84,2000
+8304,11,E07000084,4,94.09,526.89,25.84,2000
+8305,12,E07000084,0,65.34,591.71,18.64,2000
+15,1,E07000171,1,54.32,229.51,25.84,1000
+341,1,E07000171,2,64.98,276.77,25.84,1000
+667,1,E07000171,3,71.76,335.23,25.84,2000
+993,1,E07000171,4,79.53,454.53,25.84,1000
+2623,2,E07000171,0,54.46,510.43,25.84,2000
+1319,3,E07000171,1,48.48,229.51,18.64,2000
+1645,3,E07000171,2,55.28,276.77,25.84,2000
+1971,3,E07000171,3,61.09,335.23,25.84,1000
+2297,3,E07000171,4,66.92,454.53,25.84,1000
+2949,4,E07000171,0,52.28,510.43,18.64,2000
+4313,5,E07000171,1,54.32,368.34,25.84,2000
+5009,5,E07000171,2,64.98,482.48,25.84,1000
+5652,5,E07000171,3,71.76,594.49,25.84,2000
+6227,5,E07000171,4,79.53,913.3,25.84,1000
+3275,6,E07000171,0,54.46,1025.68,25.84,1000
+4413,7,E07000171,1,48.48,368.34,18.64,2000
+5149,7,E07000171,2,55.28,482.48,18.64,2000
+5810,7,E07000171,3,61.09,594.49,18.64,2000
+6471,7,E07000171,4,66.92,913.3,25.84,2000
+3601,8,E07000171,0,52.28,1025.68,25.84,2000
+6535,9,E07000171,1,54.32,132.55,25.84,1000
+6861,9,E07000171,2,64.98,164.05,25.84,1000
+7187,9,E07000171,3,71.76,195.52,25.84,1000
+7513,9,E07000171,4,79.53,281.69,25.84,1000
+7839,10,E07000171,0,54.46,316.32,18.64,2000
+8306,11,E07000171,1,54.32,132.55,25.84,2000
+8307,11,E07000171,2,64.98,164.05,25.84,2000
+8308,11,E07000171,3,71.76,195.52,25.84,2000
+8309,11,E07000171,4,79.53,281.69,25.84,2000
+8310,12,E07000171,0,54.46,316.32,18.64,2000
+16,1,E06000022,1,51.41,326.25,25.84,1000
+342,1,E06000022,2,58.19,407.26,18.64,2000
+668,1,E06000022,3,64.98,551.27,25.84,2000
+994,1,E06000022,4,74.68,879.82,25.84,1000
+2624,2,E06000022,0,57.73,985.5,25.84,2000
+1320,3,E06000022,1,49.46,326.25,25.84,1000
+1646,3,E06000022,2,57.22,407.26,25.84,2000
+1972,3,E06000022,3,64.98,551.27,18.64,2000
+2298,3,E06000022,4,77.58,879.82,25.84,1000
+2950,4,E06000022,0,57.73,985.5,25.84,1000
+4197,5,E06000022,1,51.41,208.95,18.64,2000
+4833,5,E06000022,2,58.19,254.18,25.84,1000
+5464,5,E06000022,3,64.98,277.88,25.84,1000
+6002,5,E06000022,4,74.68,398.51,25.84,1000
+3276,6,E06000022,0,57.73,447.54,25.84,1000
+3913,7,E06000022,1,49.46,208.95,18.64,2000
+5110,7,E06000022,2,57.22,254.18,25.84,1000
+5690,7,E06000022,3,64.98,277.88,25.84,1000
+6402,7,E06000022,4,77.58,398.51,25.84,1000
+3602,8,E06000022,0,57.73,447.54,18.64,2000
+6536,9,E06000022,1,51.41,240.25,25.84,1000
+6862,9,E06000022,2,58.19,299.91,18.64,2000
+7188,9,E06000022,3,64.98,362.87,25.84,1000
+7514,9,E06000022,4,74.68,606.45,25.84,1000
+7840,10,E06000022,0,57.73,681.05,25.84,2000
+8311,11,E06000022,1,51.41,240.25,25.84,2000
+8312,11,E06000022,2,58.19,299.91,25.84,2000
+8313,11,E06000022,3,64.98,362.87,25.84,2000
+8314,11,E06000022,4,74.68,606.45,25.84,2000
+8315,12,E06000022,0,57.73,681.05,18.64,2000
+17,1,E06000055,1,57.22,173.26,25.84,1000
+343,1,E06000055,2,67.88,207.02,25.84,1000
+669,1,E06000055,3,74.68,274.51,25.84,2000
+995,1,E06000055,4,85.34,393.77,18.64,2000
+2625,2,E06000055,0,38.11,439.7,18.64,2000
+1321,3,E06000055,1,52.38,173.26,25.84,1000
+1647,3,E06000055,2,61.09,207.02,25.84,2000
+1973,3,E06000055,3,66.92,274.51,25.84,1000
+2299,3,E06000055,4,74.68,393.77,25.84,1000
+2951,4,E06000055,0,58.82,439.7,25.84,1000
+4119,5,E06000055,1,57.22,198.18,25.84,1000
+4700,5,E06000055,2,67.88,254.18,25.84,2000
+5419,5,E06000055,3,74.68,299.42,25.84,1000
+6129,5,E06000055,4,85.34,413.59,25.84,1000
+3277,6,E06000055,0,38.11,464.46,25.84,1000
+4236,7,E06000055,1,52.38,198.18,25.84,2000
+4962,7,E06000055,2,61.09,254.18,25.84,2000
+5605,7,E06000055,3,66.92,299.42,25.84,1000
+6267,7,E06000055,4,74.68,413.59,25.84,1000
+3603,8,E06000055,0,58.82,464.46,25.84,1000
+6537,9,E06000055,1,57.22,177.26,25.84,1000
+6863,9,E06000055,2,67.88,222,25.84,2000
+7189,9,E06000055,3,74.68,266.78,25.84,1000
+7515,9,E06000055,4,85.34,439.08,18.64,2000
+7841,10,E06000055,0,38.11,493.13,25.84,2000
+8316,11,E06000055,1,57.22,177.26,25.84,2000
+8317,11,E06000055,2,67.88,222,25.84,2000
+8318,11,E06000055,3,74.68,266.78,25.84,2000
+8319,11,E06000055,4,85.34,439.08,25.84,2000
+8320,12,E06000055,0,38.11,493.13,18.64,2000
+18,1,E09000004,1,68.85,398.27,18.64,2000
+344,1,E09000004,2,81.46,474.78,25.84,1000
+670,1,E09000004,3,88.25,551.27,25.84,2000
+996,1,E09000004,4,106.66,787.54,25.84,1000
+2626,2,E09000004,0,74.06,884.44,25.84,1000
+1322,3,E09000004,1,61.09,398.27,25.84,1000
+1648,3,E09000004,2,66.92,474.78,18.64,2000
+1974,3,E09000004,3,74.68,551.27,25.84,1000
+2300,3,E09000004,4,87.29,787.54,25.84,1000
+2952,4,E09000004,0,63.17,884.44,25.84,1000
+3952,5,E09000004,1,68.85,740.99,25.84,1000
+4567,5,E09000004,2,81.46,1008.06,25.84,1000
+5219,5,E09000004,3,88.25,1419.49,18.64,2000
+5904,5,E09000004,4,106.66,1419.49,25.84,1000
+3278,6,E09000004,0,74.06,2764.97,18.64,2000
+4166,7,E09000004,1,61.09,740.99,25.84,1000
+4667,7,E09000004,2,66.92,1008.06,25.84,1000
+5319,7,E09000004,3,74.68,1477.67,25.84,2000
+5871,7,E09000004,4,87.29,2029.87,25.84,1000
+3604,8,E09000004,0,63.17,2764.97,25.84,1000
+6538,9,E09000004,1,68.85,245.2,18.64,2000
+6864,9,E09000004,2,81.46,299.91,25.84,2000
+7190,9,E09000004,3,88.25,387.71,25.84,1000
+7516,9,E09000004,4,106.66,526.89,25.84,1000
+7842,10,E09000004,0,74.06,591.71,25.84,2000
+8321,11,E09000004,1,68.85,245.2,25.84,2000
+8322,11,E09000004,2,81.46,299.91,25.84,2000
+8323,11,E09000004,3,88.25,387.71,25.84,2000
+8324,11,E09000004,4,106.66,526.89,25.84,2000
+8325,12,E09000004,0,74.06,591.71,18.64,2000
+19,1,E08000025,1,55.28,333,25.84,1000
+345,1,E08000025,2,61.09,382.52,25.84,1000
+671,1,E08000025,3,72.73,483.75,18.64,2000
+997,1,E08000025,4,84.37,751.54,25.84,1000
+2627,2,E08000025,0,41.39,844,25.84,1000
+1323,3,E08000025,1,48.48,333,25.84,1000
+1649,3,E08000025,2,52.38,382.52,25.84,1000
+1975,3,E08000025,3,63.04,483.75,25.84,1000
+2301,3,E08000025,4,71.76,751.54,18.64,2000
+2953,4,E08000025,0,49.01,844,25.84,1000
+4281,5,E08000025,1,55.28,288.6,25.84,1000
+4891,5,E08000025,2,61.09,357.57,25.84,1000
+5522,5,E08000025,3,72.73,413.59,25.84,1000
+6174,5,E08000025,4,84.37,570.81,25.84,1000
+3279,6,E08000025,0,41.39,641.09,25.84,1000
+4502,7,E08000025,1,48.48,288.6,25.84,1000
+5187,7,E08000025,2,52.38,357.57,25.84,1000
+5778,7,E08000025,3,63.04,413.59,25.84,1000
+6439,7,E08000025,4,71.76,570.81,25.84,1000
+3605,8,E08000025,0,49.01,641.09,25.84,1000
+6539,9,E08000025,1,55.28,178.94,25.84,1000
+6865,9,E08000025,2,61.09,218.73,25.84,2000
+7191,9,E08000025,3,72.73,230.32,18.64,2000
+7517,9,E08000025,4,84.37,352.9,25.84,1000
+7843,10,E08000025,0,41.39,392.63,25.84,2000
+8326,11,E08000025,1,55.28,178.94,25.84,2000
+8327,11,E08000025,2,61.09,218.73,25.84,2000
+8328,11,E08000025,3,72.73,230.32,25.84,2000
+8329,11,E08000025,4,84.37,352.9,25.84,2000
+8330,12,E08000025,0,41.39,392.63,18.64,2000
+20,1,E07000129,1,54.32,218.27,25.84,1000
+346,1,E07000129,2,64.98,265.52,25.84,1000
+672,1,E07000129,3,71.76,312.78,25.84,1000
+998,1,E07000129,4,79.53,479.23,25.84,1000
+2628,2,E07000129,0,54.46,533.19,25.84,1000
+1324,3,E07000129,1,48.48,218.27,18.64,2000
+1650,3,E07000129,2,55.28,265.52,25.84,1000
+1976,3,E07000129,3,61.09,312.78,25.84,1000
+2302,3,E07000129,4,66.92,479.23,25.84,1000
+2954,4,E07000129,0,52.28,533.19,18.64,2000
+4314,5,E07000129,1,54.32,288.6,25.84,2000
+5010,5,E07000129,2,64.98,366.19,25.84,1000
+5653,5,E07000129,3,71.76,435.11,18.64,2000
+6228,5,E07000129,4,79.53,753.9,25.84,1000
+3280,6,E07000129,0,54.46,846.66,25.84,1000
+4414,7,E07000129,1,48.48,288.6,25.84,1000
+5150,7,E07000129,2,55.28,366.19,25.84,1000
+5811,7,E07000129,3,61.09,435.11,25.84,1000
+6472,7,E07000129,4,66.92,753.9,25.84,2000
+3606,8,E07000129,0,52.28,846.66,25.84,1000
+6540,9,E07000129,1,54.32,170.65,25.84,1000
+6866,9,E07000129,2,64.98,195.52,25.84,2000
+7192,9,E07000129,3,71.76,233.62,25.84,1000
+7518,9,E07000129,4,79.53,316.49,25.84,1000
+7844,10,E07000129,0,54.46,355.43,18.64,2000
+8331,11,E07000129,1,54.32,170.65,25.84,2000
+8332,11,E07000129,2,64.98,195.52,25.84,2000
+8333,11,E07000129,3,71.76,233.62,25.84,2000
+8334,11,E07000129,4,79.53,316.49,25.84,2000
+8335,12,E07000129,0,54.46,355.43,18.64,2000
+21,1,E06000008,1,54.32,285.77,25.84,1000
+347,1,E06000008,2,62.07,362.28,18.64,2000
+673,1,E06000008,3,68.85,443.31,25.84,1000
+999,1,E06000008,4,75.65,715.52,25.84,1000
+2629,2,E06000008,0,58.82,803.54,25.84,1000
+1325,3,E06000008,1,45.57,285.77,25.84,1000
+1651,3,E06000008,2,56.25,362.28,25.84,1000
+1977,3,E06000008,3,61.09,443.31,18.64,2000
+2303,3,E06000008,4,58.19,715.52,25.84,1000
+2955,4,E06000008,0,34.85,803.54,25.84,2000
+4353,5,E06000008,1,54.32,230.45,25.84,1000
+4923,5,E06000008,2,62.07,299.42,25.84,1000
+5566,5,E06000008,3,68.85,389.87,25.84,1000
+6314,5,E06000008,4,75.65,682.78,18.64,2000
+3281,6,E06000008,0,58.82,766.81,25.84,1000
+4465,7,E06000008,1,45.57,230.45,18.64,2000
+5061,7,E06000008,2,56.25,299.42,25.84,1000
+5741,7,E06000008,3,61.09,389.87,18.64,2000
+6365,7,E06000008,4,58.19,682.78,18.64,2000
+3607,8,E06000008,0,34.85,766.81,18.64,2000
+6541,9,E06000008,1,54.32,160.73,25.84,1000
+6867,9,E06000008,2,62.07,170.65,18.64,2000
+7193,9,E06000008,3,68.85,203.8,25.84,1000
+7519,9,E06000008,4,75.65,266.78,25.84,1000
+7845,10,E06000008,0,58.82,299.61,25.84,1000
+8336,11,E06000008,1,54.32,160.73,25.84,2000
+8337,11,E06000008,2,62.07,170.65,25.84,2000
+8338,11,E06000008,3,68.85,203.8,25.84,2000
+8339,11,E06000008,4,75.65,266.78,25.84,2000
+8340,12,E06000008,0,58.82,299.61,18.64,2000
+22,1,E06000009,1,54.32,207.02,25.84,1000
+348,1,E06000009,2,62.07,240.74,25.84,1000
+674,1,E06000009,3,68.85,285.77,25.84,1000
+1000,1,E06000009,4,75.65,396.03,18.64,2000
+2630,2,E06000009,0,58.82,444.73,18.64,2000
+1326,3,E06000009,1,45.57,207.02,25.84,1000
+1652,3,E06000009,2,56.25,240.74,25.84,1000
+1978,3,E06000009,3,61.09,285.77,25.84,2000
+2304,3,E06000009,4,58.19,396.03,25.84,1000
+2956,4,E06000009,0,34.85,444.73,25.84,2000
+4354,5,E06000009,1,54.32,299.42,25.84,1000
+4924,5,E06000009,2,62.07,389.87,25.84,1000
+5567,5,E06000009,3,68.85,504.03,18.64,2000
+6315,5,E06000009,4,75.65,865.93,25.84,1000
+3282,6,E06000009,0,58.82,972.45,25.84,1000
+4466,7,E06000009,1,45.57,299.42,25.84,1000
+5062,7,E06000009,2,56.25,389.87,25.84,1000
+5742,7,E06000009,3,61.09,504.03,25.84,2000
+6366,7,E06000009,4,58.19,865.93,25.84,1000
+3608,8,E06000009,0,34.85,972.45,25.84,1000
+6542,9,E06000009,1,54.32,154.1,25.84,1000
+6868,9,E06000009,2,62.07,195.52,25.84,1000
+7194,9,E06000009,3,68.85,223.68,25.84,1000
+7520,9,E06000009,4,75.65,283.35,18.64,2000
+7846,10,E06000009,0,58.82,318.19,25.84,1000
+8341,11,E06000009,1,54.32,154.1,25.84,2000
+8342,11,E06000009,2,62.07,195.52,25.84,2000
+8343,11,E06000009,3,68.85,223.68,25.84,2000
+8344,11,E06000009,4,75.65,283.35,25.84,2000
+8345,12,E06000009,0,58.82,318.19,18.64,2000
+23,1,E07000033,1,54.32,816.8,18.64,2000
+349,1,E07000033,2,64.98,1041.84,25.84,1000
+675,1,E07000033,3,71.76,1482.82,25.84,1000
+1001,1,E07000033,4,79.53,2120.43,25.84,2000
+2631,2,E07000033,0,54.46,1482.82,25.84,1000
+1327,3,E07000033,1,48.48,816.8,25.84,1000
+1653,3,E07000033,2,55.28,1041.84,18.64,2000
+1979,3,E07000033,3,61.09,1957.6,25.84,2000
+2305,3,E07000033,4,66.92,2120.43,25.84,1000
+2957,4,E07000033,0,52.28,2965.65,25.84,2000
+4315,5,E07000033,1,54.32,249.86,18.64,2000
+5011,5,E07000033,2,64.98,299.42,25.84,1000
+5654,5,E07000033,3,71.76,387.71,25.84,1000
+6229,5,E07000033,4,79.53,570.81,25.84,1000
+3283,6,E07000033,0,54.46,641.09,18.64,2000
+4415,7,E07000033,1,48.48,249.86,25.84,1000
+5151,7,E07000033,2,55.28,299.42,25.84,1000
+5812,7,E07000033,3,61.09,387.71,25.84,1000
+6473,7,E07000033,4,66.92,570.81,25.84,2000
+3609,8,E07000033,0,52.28,641.09,25.84,1000
+6543,9,E07000033,1,54.32,140.86,18.64,2000
+6869,9,E07000033,2,64.98,160.73,25.84,1000
+7195,9,E07000033,3,71.76,187.23,25.84,1000
+7521,9,E07000033,4,79.53,266.78,25.84,1000
+7847,10,E07000033,0,54.46,299.61,25.84,1000
+8346,11,E07000033,1,54.32,140.86,25.84,2000
+8347,11,E07000033,2,64.98,160.73,25.84,2000
+8348,11,E07000033,3,71.76,187.23,25.84,2000
+8349,11,E07000033,4,79.53,266.78,25.84,2000
+8350,12,E07000033,0,54.46,299.61,18.64,2000
+24,1,E08000001,1,54.32,265.52,25.84,2000
+350,1,E08000001,2,62.07,348.75,25.84,1000
+676,1,E08000001,3,68.85,432.05,18.64,2000
+1002,1,E08000001,4,75.65,949.55,25.84,2000
+2632,2,E08000001,0,58.82,1066.39,25.84,1000
+1328,3,E08000001,1,45.57,265.52,25.84,1000
+1654,3,E08000001,2,56.25,348.75,25.84,1000
+1980,3,E08000001,3,61.09,432.05,25.84,2000
+2306,3,E08000001,4,58.19,949.55,18.64,2000
+2958,4,E08000001,0,34.85,1066.39,25.84,2000
+4355,5,E08000001,1,54.32,254.18,25.84,1000
+4925,5,E08000001,2,62.07,208.95,25.84,1000
+5568,5,E08000001,3,68.85,249.86,25.84,2000
+6316,5,E08000001,4,75.65,366.19,25.84,1000
+3284,6,E08000001,0,58.82,411.2,25.84,1000
+4467,7,E08000001,1,45.57,254.18,25.84,1000
+5063,7,E08000001,2,56.25,208.95,25.84,1000
+5743,7,E08000001,3,61.09,249.86,25.84,2000
+6367,7,E08000001,4,58.19,366.19,25.84,1000
+3610,8,E08000001,0,34.85,411.2,25.84,1000
+6544,9,E08000001,1,54.32,144.16,25.84,1000
+6870,9,E08000001,2,62.07,172.32,25.84,1000
+7196,9,E08000001,3,68.85,210.44,18.64,2000
+7522,9,E08000001,4,75.65,299.91,25.84,1000
+7848,10,E08000001,0,58.82,336.8,25.84,1000
+8351,11,E08000001,1,54.32,144.16,25.84,2000
+8352,11,E08000001,2,62.07,172.32,25.84,2000
+8353,11,E08000001,3,68.85,210.44,25.84,2000
+8354,11,E08000001,4,75.65,299.91,25.84,2000
+8355,12,E08000001,0,58.82,336.8,18.64,2000
+25,1,E07000136,1,54.32,326.25,25.84,2000
+351,1,E07000136,2,64.98,407.26,25.84,1000
+677,1,E07000136,3,71.76,481.49,25.84,1000
+1003,1,E07000136,4,79.53,668.29,25.84,2000
+2633,2,E07000136,0,54.46,750.47,25.84,1000
+1329,3,E07000136,1,48.48,326.25,18.64,2000
+1655,3,E07000136,2,55.28,407.26,25.84,1000
+1981,3,E07000136,3,61.09,481.49,25.84,2000
+2307,3,E07000136,4,66.92,668.29,25.84,1000
+2959,4,E07000136,0,52.28,750.47,18.64,2000
+4316,5,E07000136,1,54.32,357.57,25.84,1000
+5012,5,E07000136,2,64.98,435.11,18.64,2000
+5655,5,E07000136,3,71.76,549.29,25.84,1000
+6230,5,E07000136,4,79.53,792.73,18.64,2000
+3285,6,E07000136,0,54.46,887.81,25.84,1000
+4416,7,E07000136,1,48.48,357.57,25.84,1000
+5152,7,E07000136,2,55.28,435.11,25.84,1000
+5813,7,E07000136,3,61.09,549.29,25.84,1000
+6474,7,E07000136,4,66.92,792.73,25.84,2000
+3611,8,E07000136,0,52.28,887.81,25.84,1000
+6545,9,E07000136,1,54.32,152.44,25.84,1000
+6871,9,E07000136,2,64.98,187.23,25.84,1000
+7197,9,E07000136,3,71.76,210.44,25.84,2000
+7523,9,E07000136,4,79.53,276.71,25.84,1000
+7849,10,E07000136,0,54.46,310.77,18.64,2000
+8356,11,E07000136,1,54.32,152.44,25.84,2000
+8357,11,E07000136,2,64.98,187.23,25.84,2000
+8358,11,E07000136,3,71.76,210.44,25.84,2000
+8359,11,E07000136,4,79.53,276.71,25.84,2000
+8360,12,E07000136,0,54.46,310.77,18.64,2000
+59,1,E06000058,1,51.41,312.78,25.84,1000
+385,1,E06000058,2,58.19,407.26,18.64,2000
+711,1,E06000058,3,64.98,573.8,25.84,1000
+1037,1,E06000058,4,74.68,951.8,25.84,1000
+2667,2,E06000058,0,57.73,1068.89,25.84,1000
+1363,3,E06000058,1,49.46,312.78,25.84,2000
+1689,3,E06000058,2,57.22,407.26,25.84,1000
+2015,3,E06000058,3,64.98,573.8,18.64,2000
+2341,3,E06000058,4,77.58,951.8,25.84,2000
+2993,4,E06000058,0,57.73,1068.89,25.84,1000
+4201,5,E06000058,1,51.41,183.12,25.84,2000
+4837,5,E06000058,2,58.19,221.86,18.64,2000
+5468,5,E06000058,3,64.98,264.95,18.64,2000
+6006,5,E06000058,4,74.68,379.12,18.64,2000
+3319,6,E06000058,0,57.73,425.74,25.84,2000
+3917,7,E06000058,1,49.46,183.12,25.84,1000
+5114,7,E06000058,2,57.22,221.86,18.64,2000
+5694,7,E06000058,3,64.98,264.95,18.64,2000
+6406,7,E06000058,4,77.58,379.12,25.84,1000
+3645,8,E06000058,0,57.73,425.74,18.64,2000
+6579,9,E06000058,1,51.41,213.75,25.84,1000
+6905,9,E06000058,2,58.19,266.78,18.64,2000
+7231,9,E06000058,3,64.98,352.9,25.84,1000
+7557,9,E06000058,4,74.68,561.7,25.84,1000
+7883,10,E06000058,0,57.73,630.81,25.84,1000
+8361,11,E06000058,1,51.41,213.75,25.84,2000
+8362,11,E06000058,2,58.19,266.78,25.84,2000
+8363,11,E06000058,3,64.98,352.9,25.84,2000
+8364,11,E06000058,4,74.68,561.7,25.84,2000
+8365,12,E06000058,0,57.73,630.81,18.64,2000
+27,1,E06000036,1,60.13,207.02,25.84,2000
+353,1,E06000036,2,74.68,254.24,18.64,2000
+679,1,E06000036,3,85.34,301.48,25.84,1000
+1005,1,E06000036,4,94.09,479.23,25.84,2000
+2635,2,E06000036,0,65.34,533.19,25.84,1000
+1331,3,E06000036,1,54.32,207.02,25.84,1000
+1657,3,E06000036,2,65.95,254.24,25.84,1000
+1983,3,E06000036,3,71.76,301.48,18.64,2000
+2309,3,E06000036,4,76.62,479.23,25.84,1000
+2961,4,E06000036,0,51.19,533.19,25.84,1000
+3988,5,E06000036,1,60.13,221.86,25.84,1000
+4603,5,E06000036,2,74.68,273.56,25.84,1000
+5255,5,E06000036,3,85.34,320.91,18.64,2000
+5940,5,E06000036,4,94.09,497.56,25.84,1000
+3287,6,E06000036,0,65.34,558.83,25.84,1000
+4055,7,E06000036,1,54.32,221.86,25.84,1000
+4750,7,E06000036,2,65.95,273.56,25.84,1000
+5355,7,E06000036,3,71.76,320.91,25.84,1000
+6044,7,E06000036,4,76.62,497.56,25.84,1000
+3613,8,E06000036,0,51.19,558.83,18.64,2000
+6547,9,E06000036,1,60.13,245.2,25.84,1000
+6873,9,E06000036,2,74.68,309.88,18.64,2000
+7199,9,E06000036,3,85.34,420.86,25.84,2000
+7525,9,E06000036,4,94.09,772.12,25.84,1000
+7851,10,E06000036,0,65.34,867.16,25.84,1000
+8366,11,E06000036,1,60.13,245.2,25.84,2000
+8367,11,E06000036,2,74.68,309.88,25.84,2000
+8368,11,E06000036,3,85.34,420.86,25.84,2000
+8369,11,E06000036,4,94.09,772.12,25.84,2000
+8370,12,E06000036,0,65.34,867.16,18.64,2000
+28,1,E08000032,1,53.35,285.77,25.84,2000
+354,1,E08000032,2,61.09,362.28,25.84,1000
+680,1,E08000032,3,65.95,443.31,25.84,1000
+1006,1,E08000032,4,76.62,760.54,18.64,2000
+2636,2,E08000032,0,55.56,854.11,18.64,2000
+1332,3,E08000032,1,48.48,285.77,25.84,1000
+1658,3,E08000032,2,55.28,362.28,25.84,1000
+1984,3,E08000032,3,59.16,443.31,25.84,1000
+2310,3,E08000032,4,66.92,760.54,25.84,1000
+2962,4,E08000032,0,54.46,854.11,25.84,1000
+4391,5,E08000032,1,53.35,213.26,18.64,2000
+4871,5,E08000032,2,61.09,288.6,25.84,1000
+5502,5,E08000032,3,65.95,346.81,25.84,1000
+6107,5,E08000032,4,76.62,482.48,25.84,1000
+3288,6,E08000032,0,55.56,541.84,25.84,1000
+4545,7,E08000032,1,48.48,213.26,25.84,1000
+4813,7,E08000032,2,55.28,288.6,25.84,1000
+5849,7,E08000032,3,59.16,346.81,25.84,1000
+6205,7,E08000032,4,66.92,482.48,25.84,1000
+3614,8,E08000032,0,54.46,541.84,25.84,1000
+6548,9,E08000032,1,53.35,152.44,25.84,1000
+6874,9,E08000032,2,55.28,178.94,25.84,1000
+7200,9,E08000032,3,65.95,210.44,25.84,2000
+7526,9,E08000032,4,76.62,291.63,18.64,2000
+7852,10,E08000032,0,55.56,327.48,25.84,1000
+8371,11,E08000032,1,53.35,152.44,25.84,2000
+8372,11,E08000032,2,55.28,178.94,25.84,2000
+8373,11,E08000032,3,65.95,210.44,25.84,2000
+8374,11,E08000032,4,76.62,291.63,25.84,2000
+8375,12,E08000032,0,55.56,327.48,18.64,2000
+29,1,E07000067,1,57.22,504.02,18.64,2000
+355,1,E07000067,2,67.88,670.55,25.84,1000
+681,1,E07000067,3,74.68,762.79,25.84,1000
+1007,1,E07000067,4,85.34,1289.35,26.36,1000
+2637,2,E07000067,0,38.11,1445.46,25.84,1000
+1333,3,E07000067,1,52.38,504.02,25.84,1000
+1659,3,E07000067,2,61.09,670.55,18.64,2000
+1985,3,E07000067,3,66.92,762.79,25.84,1000
+2311,3,E07000067,4,74.68,1289.35,25.84,1000
+2963,4,E07000067,0,58.82,1445.46,25.84,1000
+4120,5,E07000067,1,57.22,232.63,18.64,2000
+4701,5,E07000067,2,67.88,288.6,25.84,2000
+5420,5,E07000067,3,74.68,368.34,18.64,2000
+6130,5,E07000067,4,85.34,618.21,25.84,1000
+3289,6,E07000067,0,38.11,694.23,18.64,2000
+4237,7,E07000067,1,52.38,232.63,25.84,2000
+4963,7,E07000067,2,61.09,288.6,25.84,2000
+5606,7,E07000067,3,66.92,368.34,18.64,2000
+6268,7,E07000067,4,74.68,618.21,25.84,1000
+3615,8,E07000067,0,58.82,694.23,25.84,1000
+6549,9,E07000067,1,57.22,187.23,18.64,2000
+6875,9,E07000067,2,67.88,230.32,25.84,1000
+7201,9,E07000067,3,74.68,283.35,25.84,2000
+7527,9,E07000067,4,85.34,439.08,25.84,1000
+7853,10,E07000067,0,38.11,493.13,25.84,1000
+8376,11,E07000067,1,57.22,187.23,25.84,2000
+8377,11,E07000067,2,67.88,230.32,25.84,2000
+8378,11,E07000067,3,74.68,283.35,25.84,2000
+8379,11,E07000067,4,85.34,439.08,25.84,2000
+8380,12,E07000067,0,38.11,493.13,18.64,2000
+30,1,E07000143,1,57.22,290.29,25.84,1000
+356,1,E07000143,2,67.88,382.52,25.84,1000
+682,1,E07000143,3,74.68,479.23,18.64,2000
+1008,1,E07000143,4,85.34,857.3,26.36,1000
+2638,2,E07000143,0,38.11,962.79,25.84,1000
+1334,3,E07000143,1,52.38,290.29,25.84,1000
+1660,3,E07000143,2,61.09,382.52,25.84,1000
+1986,3,E07000143,3,66.92,479.23,25.84,1000
+2312,3,E07000143,4,74.68,857.3,18.64,2000
+2964,4,E07000143,0,58.82,962.79,25.84,1000
+4121,5,E07000143,1,57.22,312.33,25.84,2000
+4702,5,E07000143,2,67.88,389.87,25.84,2000
+5421,5,E07000143,3,74.68,547.13,25.84,2000
+6131,5,E07000143,4,85.34,799.12,18.64,2000
+3290,6,E07000143,0,38.11,897.48,25.84,2000
+4238,7,E07000143,1,52.38,312.33,18.64,2000
+4964,7,E07000143,2,61.09,389.87,25.84,2000
+5607,7,E07000143,3,66.92,547.13,25.84,1000
+6269,7,E07000143,4,74.68,799.12,25.84,1000
+3616,8,E07000143,0,58.82,897.48,25.84,1000
+6550,9,E07000143,1,57.22,157.41,25.84,1000
+6876,9,E07000143,2,67.88,195.52,25.84,1000
+7202,9,E07000143,3,74.68,230.32,18.64,2000
+7528,9,E07000143,4,85.34,371.14,25.84,1000
+7854,10,E07000143,0,38.11,416.81,25.84,1000
+8381,11,E07000143,1,57.22,157.41,25.84,2000
+8382,11,E07000143,2,67.88,195.52,25.84,2000
+8383,11,E07000143,3,74.68,230.32,25.84,2000
+8384,11,E07000143,4,85.34,371.14,25.84,2000
+8385,12,E07000143,0,38.11,416.81,18.64,2000
+31,1,E09000005,1,68.85,189,25.84,1000
+357,1,E09000005,2,81.46,238.48,25.84,1000
+683,1,E09000005,3,88.25,285.77,25.84,1000
+1009,1,E09000005,4,106.66,396.03,26.36,1000
+2639,2,E09000005,0,74.06,444.73,25.84,1000
+1335,3,E09000005,1,61.09,189,18.64,2000
+1661,3,E09000005,2,66.92,238.48,25.84,1000
+1987,3,E09000005,3,74.68,285.77,25.84,1000
+2313,3,E09000005,4,87.29,396.03,25.84,2000
+2965,4,E09000005,0,63.17,444.73,18.64,2000
+3953,5,E09000005,1,68.85,185.27,25.84,1000
+4568,5,E09000005,2,81.46,232.63,25.84,1000
+5220,5,E09000005,3,88.25,299.42,25.84,1000
+5905,5,E09000005,4,106.66,413.59,25.84,1000
+3291,6,E09000005,0,74.06,464.46,25.84,2000
+4167,7,E09000005,1,61.09,185.27,18.64,2000
+4668,7,E09000005,2,66.92,232.63,25.84,1000
+5320,7,E09000005,3,74.68,299.42,25.84,2000
+5872,7,E09000005,4,87.29,413.59,18.64,2000
+3617,8,E09000005,0,63.17,464.46,25.84,1000
+6551,9,E09000005,1,68.85,427.49,25.84,1000
+6877,9,E09000005,2,81.46,555.08,25.84,1000
+7203,9,E09000005,3,88.25,724.09,25.84,1000
+7529,9,E09000005,4,106.66,881.49,25.84,1000
+7855,10,E09000005,0,74.06,989.94,18.64,2000
+8386,11,E09000005,1,68.85,427.49,25.84,2000
+8387,11,E09000005,2,81.46,555.08,25.84,2000
+8388,11,E09000005,3,88.25,724.09,25.84,2000
+8389,11,E09000005,4,106.66,881.49,25.84,2000
+8390,12,E09000005,0,74.06,989.94,18.64,2000
+32,1,E07000068,1,57.22,276.77,25.84,1000
+358,1,E07000068,2,67.88,362.28,18.64,2000
+684,1,E07000068,3,74.68,443.31,25.84,1000
+1010,1,E07000068,4,85.34,1001.29,26.36,1000
+2640,2,E07000068,0,38.11,1124.49,25.84,1000
+1336,3,E07000068,1,52.38,276.77,25.84,2000
+1662,3,E07000068,2,61.09,362.28,25.84,1000
+1988,3,E07000068,3,66.92,443.31,18.64,2000
+2314,3,E07000068,4,74.68,1001.29,25.84,2000
+2966,4,E07000068,0,58.82,1124.49,25.84,1000
+4122,5,E07000068,1,57.22,273.56,25.84,2000
+4703,5,E07000068,2,67.88,333.86,25.84,2000
+5422,5,E07000068,3,74.68,411.43,25.84,2000
+6132,5,E07000068,4,85.34,622.52,25.84,2000
+3292,6,E07000068,0,38.11,696.66,25.84,2000
+4239,7,E07000068,1,52.38,273.56,25.84,1000
+4965,7,E07000068,2,61.09,333.86,18.64,2000
+5608,7,E07000068,3,66.92,411.43,25.84,1000
+6270,7,E07000068,4,74.68,622.52,18.64,2000
+3618,8,E07000068,0,58.82,696.66,18.64,2000
+6552,9,E07000068,1,57.22,281.69,25.84,1000
+6878,9,E07000068,2,67.88,349.6,18.64,2000
+7204,9,E07000068,3,74.68,493.77,25.84,1000
+7530,9,E07000068,4,85.34,841.71,25.84,1000
+7856,10,E07000068,0,38.11,945.28,25.84,1000
+8391,11,E07000068,1,57.22,281.69,25.84,2000
+8392,11,E07000068,2,67.88,349.6,25.84,2000
+8393,11,E07000068,3,74.68,493.77,25.84,2000
+8394,11,E07000068,4,85.34,841.71,25.84,2000
+8395,12,E07000068,0,38.11,945.28,18.64,2000
+33,1,E06000043,1,60.13,396.03,25.84,1000
+359,1,E06000043,2,74.68,551.27,25.84,2000
+685,1,E06000043,3,85.34,645.79,25.84,1000
+1011,1,E06000043,4,94.09,904.56,18.32,2000
+2641,2,E06000043,0,65.34,1015.83,18.64,2000
+1337,3,E06000043,1,54.32,396.03,25.84,2000
+1663,3,E06000043,2,65.95,551.27,25.84,1000
+1989,3,E06000043,3,71.76,645.79,25.84,1000
+2315,3,E06000043,4,76.62,904.56,25.84,2000
+2967,4,E06000043,0,51.19,1015.83,25.84,1000
+3989,5,E06000043,1,60.13,346.81,25.84,1000
+4604,5,E06000043,2,74.68,460.94,25.84,1000
+5256,5,E06000043,3,85.34,594.49,25.84,1000
+5941,5,E06000043,4,94.09,1003.76,25.84,1000
+3293,6,E06000043,0,65.34,1127.3,25.84,2000
+4056,7,E06000043,1,54.32,346.81,25.84,1000
+4751,7,E06000043,2,65.95,460.94,25.84,1000
+5356,7,E06000043,3,71.76,594.49,25.84,1000
+6045,7,E06000043,4,76.62,1003.76,25.84,1000
+3619,8,E06000043,0,51.19,1127.3,25.84,1000
+6553,9,E06000043,1,60.13,275.06,25.84,1000
+6879,9,E06000043,2,74.68,387.71,25.84,1000
+7205,9,E06000043,3,85.34,475.54,25.84,1000
+7531,9,E06000043,4,94.09,702.54,18.64,2000
+7857,10,E06000043,0,65.34,788.98,25.84,1000
+8396,11,E06000043,1,60.13,275.06,25.84,2000
+8397,11,E06000043,2,74.68,387.71,25.84,2000
+8398,11,E06000043,3,85.34,475.54,25.84,2000
+8399,11,E06000043,4,94.09,702.54,25.84,2000
+8400,12,E06000043,0,65.34,788.98,18.64,2000
+34,1,E06000023,1,51.41,193.54,18.64,2000
+360,1,E06000023,2,58.19,240.74,25.84,2000
+686,1,E06000023,3,64.98,276.77,25.84,1000
+1012,1,E06000023,4,74.68,432.05,26.36,1000
+2642,2,E06000023,0,57.73,485.17,25.84,1000
+1338,3,E06000023,1,49.46,193.54,25.84,2000
+1664,3,E06000023,2,57.22,240.74,18.64,2000
+1990,3,E06000023,3,64.98,276.77,25.84,1000
+2316,3,E06000023,4,77.58,432.05,25.84,2000
+2968,4,E06000023,0,57.73,485.17,25.84,1000
+4199,5,E06000023,1,51.41,273.56,25.84,2000
+4835,5,E06000023,2,58.19,333.86,25.84,1000
+5466,5,E06000023,3,64.98,413.59,25.84,1000
+6004,5,E06000023,4,74.68,977.9,25.84,1000
+3294,6,E06000023,0,57.73,1098.24,18.64,2000
+3915,7,E06000023,1,49.46,273.56,25.84,1000
+5112,7,E06000023,2,57.22,333.86,25.84,1000
+5692,7,E06000023,3,64.98,413.59,25.84,1000
+6404,7,E06000023,4,77.58,977.9,25.84,1000
+3620,8,E06000023,0,57.73,1098.24,25.84,1000
+6554,9,E06000023,1,51.41,230.32,18.64,2000
+6880,9,E06000023,2,58.19,283.35,25.84,1000
+7206,9,E06000023,3,64.98,352.9,25.84,1000
+7532,9,E06000023,4,74.68,649.53,25.84,2000
+7858,10,E06000023,0,57.73,729.4,25.84,1000
+8401,11,E06000023,1,51.41,230.32,25.84,2000
+8402,11,E06000023,2,58.19,283.35,25.84,2000
+8403,11,E06000023,3,64.98,352.9,25.84,2000
+8404,11,E06000023,4,74.68,649.53,25.84,2000
+8405,12,E06000023,0,57.73,729.4,18.64,2000
+35,1,E07000144,1,57.22,202.57,25.84,1000
+361,1,E07000144,2,67.88,265.52,25.84,2000
+687,1,E07000144,3,74.68,312.78,18.64,2000
+1013,1,E07000144,4,85.34,407.26,26.36,1000
+2643,2,E07000144,0,38.11,457.37,25.84,1000
+1339,3,E07000144,1,52.38,202.57,25.84,2000
+1665,3,E07000144,2,61.09,265.52,25.84,1000
+1991,3,E07000144,3,66.92,312.78,25.84,1000
+2317,3,E07000144,4,74.68,407.26,18.64,2000
+2969,4,E07000144,0,58.82,457.37,25.84,1000
+4123,5,E07000144,1,57.22,198.18,25.84,2000
+4704,5,E07000144,2,67.88,256.33,18.64,2000
+5423,5,E07000144,3,74.68,299.42,25.84,2000
+6133,5,E07000144,4,85.34,413.59,25.84,2000
+3295,6,E07000144,0,38.11,464.46,25.84,1000
+4240,7,E07000144,1,52.38,198.18,25.84,1000
+4966,7,E07000144,2,61.09,256.33,25.84,1000
+5609,7,E07000144,3,66.92,299.42,25.84,1000
+6271,7,E07000144,4,74.68,413.59,25.84,2000
+3621,8,E07000144,0,58.82,464.46,25.84,1000
+6555,9,E07000144,1,57.22,169.01,25.84,2000
+6881,9,E07000144,2,67.88,203.8,25.84,1000
+7207,9,E07000144,3,74.68,246.86,18.64,2000
+7533,9,E07000144,4,85.34,334.7,25.84,2000
+7859,10,E07000144,0,38.11,375.86,25.84,1000
+8406,11,E07000144,1,57.22,169.01,25.84,2000
+8407,11,E07000144,2,67.88,203.8,25.84,2000
+8408,11,E07000144,3,74.68,246.86,25.84,2000
+8409,11,E07000144,4,85.34,334.7,25.84,2000
+8410,12,E07000144,0,38.11,375.86,18.64,2000
+36,1,E09000006,1,68.85,240.74,25.84,1000
+362,1,E09000006,2,81.46,254.24,25.84,2000
+688,1,E09000006,3,88.25,301.48,25.84,1000
+1014,1,E09000006,4,106.66,407.26,26.36,1000
+2644,2,E09000006,0,74.06,457.37,25.84,1000
+1340,3,E09000006,1,61.09,240.74,18.64,2000
+1666,3,E09000006,2,66.92,254.24,25.84,1000
+1992,3,E09000006,3,74.68,301.48,25.84,1000
+2318,3,E09000006,4,87.29,407.26,25.84,1000
+2970,4,E09000006,0,63.17,457.37,18.64,2000
+3954,5,E09000006,1,68.85,208.95,18.64,2000
+4569,5,E09000006,2,81.46,243.38,25.84,1000
+5221,5,E09000006,3,88.25,297.23,25.84,1000
+5906,5,E09000006,4,106.66,411.43,25.84,1000
+3296,6,E09000006,0,74.06,462.06,25.84,1000
+4168,7,E09000006,1,61.09,208.95,25.84,1000
+4669,7,E09000006,2,66.92,243.38,18.64,2000
+5321,7,E09000006,3,74.68,297.23,25.84,2000
+5873,7,E09000006,4,87.29,411.43,25.84,1000
+3622,8,E09000006,0,63.17,462.06,25.84,1000
+6556,9,E09000006,1,68.85,283.35,25.84,2000
+6882,9,E09000006,2,81.46,371.14,25.84,1000
+7208,9,E09000006,3,88.25,457.3,25.84,1000
+7534,9,E09000006,4,106.66,702.54,25.84,2000
+7860,10,E09000006,0,74.06,788.98,18.64,2000
+8411,11,E09000006,1,68.85,283.35,25.84,2000
+8412,11,E09000006,2,81.46,371.14,25.84,2000
+8413,11,E09000006,3,88.25,457.3,25.84,2000
+8414,11,E09000006,4,106.66,702.54,25.84,2000
+8415,12,E09000006,0,74.06,788.98,18.64,2000
+37,1,E07000234,1,55.28,265.52,25.84,1000
+363,1,E07000234,2,61.09,312.78,18.64,2000
+689,1,E07000234,3,72.73,373.53,25.84,1000
+1015,1,E07000234,4,84.37,596.27,26.36,1000
+2645,2,E07000234,0,41.39,669.7,25.84,1000
+1341,3,E07000234,1,48.48,265.52,25.84,1000
+1667,3,E07000234,2,52.38,312.78,25.84,1000
+1993,3,E07000234,3,63.04,373.53,18.64,2000
+2319,3,E07000234,4,71.76,596.27,25.84,1000
+2971,4,E07000234,0,49.01,669.7,25.84,1000
+4282,5,E07000234,1,55.28,254.18,25.84,1000
+4892,5,E07000234,2,61.09,323.09,25.84,1000
+5523,5,E07000234,3,72.73,379.12,25.84,1000
+6175,5,E07000234,4,84.37,549.29,25.84,1000
+3297,6,E07000234,0,41.39,616.87,25.84,1000
+4503,7,E07000234,1,48.48,254.18,25.84,1000
+5188,7,E07000234,2,52.38,323.09,25.84,1000
+5779,7,E07000234,3,63.04,379.12,25.84,1000
+6440,7,E07000234,4,71.76,549.29,18.64,2000
+3623,8,E07000234,0,49.01,616.87,18.64,2000
+6557,9,E07000234,1,55.28,182.24,25.84,2000
+6883,9,E07000234,2,61.09,210.44,18.64,2000
+7209,9,E07000234,3,72.73,275.06,25.84,1000
+7535,9,E07000234,4,84.37,439.08,25.84,2000
+7861,10,E07000234,0,41.39,493.13,25.84,1000
+8416,11,E07000234,1,55.28,182.24,25.84,2000
+8417,11,E07000234,2,61.09,210.44,25.84,2000
+8418,11,E07000234,3,72.73,275.06,25.84,2000
+8419,11,E07000234,4,84.37,439.08,25.84,2000
+8420,12,E07000234,0,41.39,493.13,18.64,2000
+38,1,E07000095,1,57.22,420.81,25.84,1000
+364,1,E07000095,2,67.88,596.27,25.84,1000
+690,1,E07000095,3,74.68,621,25.84,1000
+1016,1,E07000095,4,85.34,812.3,18.32,2000
+2646,2,E07000095,0,38.11,912.24,18.64,2000
+1342,3,E07000095,1,52.38,420.81,25.84,1000
+1668,3,E07000095,2,61.09,596.27,25.84,1000
+1994,3,E07000095,3,66.92,621,25.84,1000
+2320,3,E07000095,4,74.68,812.3,25.84,1000
+2972,4,E07000095,0,58.82,912.24,25.84,1000
+4124,5,E07000095,1,57.22,389.87,25.84,2000
+4705,5,E07000095,2,67.88,547.13,25.84,1000
+5424,5,E07000095,3,74.68,663.44,25.84,2000
+6134,5,E07000095,4,85.34,1139.48,25.84,2000
+3298,6,E07000095,0,38.11,1279.69,25.84,1000
+4241,7,E07000095,1,52.38,389.87,25.84,1000
+4967,7,E07000095,2,61.09,547.13,25.84,1000
+5610,7,E07000095,3,66.92,663.44,25.84,1000
+6272,7,E07000095,4,74.68,1139.48,25.84,2000
+3624,8,E07000095,0,58.82,1279.69,25.84,2000
+6558,9,E07000095,1,57.22,240.25,25.84,2000
+6884,9,E07000095,2,67.88,299.91,25.84,1000
+7210,9,E07000095,3,74.68,405.94,25.84,1000
+7536,9,E07000095,4,85.34,647.87,18.64,2000
+7862,10,E07000095,0,38.11,725.69,25.84,1000
+8421,11,E07000095,1,57.22,240.25,25.84,2000
+8422,11,E07000095,2,67.88,299.91,25.84,2000
+8423,11,E07000095,3,74.68,405.94,25.84,2000
+8424,11,E07000095,4,85.34,647.87,25.84,2000
+8425,12,E07000095,0,38.11,725.69,18.64,2000
+39,1,E07000172,1,54.32,218.27,18.64,2000
+365,1,E07000172,2,64.98,243,25.84,1000
+691,1,E07000172,3,71.76,285.77,25.84,1000
+1017,1,E07000172,4,79.53,432.05,26.36,1000
+2647,2,E07000172,0,54.46,485.17,25.84,2000
+1343,3,E07000172,1,48.48,218.27,25.84,1000
+1669,3,E07000172,2,55.28,243,18.64,2000
+1995,3,E07000172,3,61.09,285.77,25.84,1000
+2321,3,E07000172,4,66.92,432.05,25.84,1000
+2973,4,E07000172,0,52.28,485.17,25.84,1000
+4317,5,E07000172,1,54.32,644.07,25.84,1000
+5013,5,E07000172,2,64.98,859.47,25.84,2000
+5656,5,E07000172,3,71.76,1234.27,25.84,1000
+6231,5,E07000172,4,79.53,1973.05,25.84,1000
+3299,6,E07000172,0,54.46,1419.49,18.64,2000
+4417,7,E07000172,1,48.48,644.07,25.84,1000
+5153,7,E07000172,2,55.28,859.47,25.84,1000
+5814,7,E07000172,3,61.09,1234.27,25.84,1000
+6475,7,E07000172,4,66.92,1973.05,18.64,2000
+3625,8,E07000172,0,52.28,2213.38,25.84,2000
+6559,9,E07000172,1,54.32,160.73,18.64,2000
+6885,9,E07000172,2,64.98,195.52,25.84,1000
+7211,9,E07000172,3,71.76,213.75,25.84,1000
+7537,9,E07000172,4,79.53,306.53,25.84,1000
+7863,10,E07000172,0,54.46,344.27,25.84,1000
+8426,11,E07000172,1,54.32,160.73,25.84,2000
+8427,11,E07000172,2,64.98,195.52,25.84,2000
+8428,11,E07000172,3,71.76,213.75,25.84,2000
+8429,11,E07000172,4,79.53,306.53,25.84,2000
+8430,12,E07000172,0,54.46,344.27,18.64,2000
+323,1,E06000060,1,61.35,551.27,25.84,1000
+649,1,E06000060,2,76.2,704.29,25.84,1000
+975,1,E06000060,3,87.08,879.82,25.84,2000
+1301,1,E06000060,4,95.99,1341.09,18.64,2000
+2931,2,E06000060,0,64.17,1482.82,18.64,2000
+1627,3,E06000060,1,55.42,551.27,25.84,1000
+1953,3,E06000060,2,67.29,704.29,25.84,2000
+2279,3,E06000060,3,73.22,879.82,25.84,1000
+2605,3,E06000060,4,78.17,1341.09,25.84,1000
+3257,4,E06000060,0,50.28,1503.58,25.84,1000
+4049,5,E06000060,1,61.35,269.23,25.84,1000
+4664,5,E06000060,2,76.2,364.02,18.64,2000
+5316,5,E06000060,3,87.08,435.11,25.84,1000
+6001,5,E06000060,4,95.99,641.91,25.84,1000
+3583,6,E06000060,0,64.17,720.86,25.84,1000
+4116,7,E06000060,1,55.42,269.23,25.84,1000
+4811,7,E06000060,2,67.29,364.02,25.84,1000
+5416,7,E06000060,3,73.22,435.11,25.84,1000
+6105,7,E06000060,4,78.17,641.91,25.84,1000
+3909,8,E06000060,0,50.28,720.86,25.84,1000
+6843,9,E06000060,1,61.35,266.08,25.84,1000
+7169,9,E06000060,2,76.2,360.17,25.84,2000
+7495,9,E06000060,3,87.08,514.53,25.84,1000
+7821,9,E06000060,4,95.99,1086.38,18.64,2000
+8147,10,E06000060,0,64.17,1174.52,25.84,2000
+8431,11,E06000060,1,61.35,266.08,26.36,2000
+8432,11,E06000060,2,76.2,360.17,26.36,2000
+8433,11,E06000060,3,87.08,514.53,26.36,2000
+8434,11,E06000060,4,95.99,1086.38,26.36,2000
+8435,12,E06000060,0,64.17,1174.52,18.64,2000
+40,1,E07000117,1,54.32,348.75,25.84,1000
+366,1,E07000117,2,62.07,420.81,25.84,1000
+692,1,E07000117,3,68.85,573.8,18.64,2000
+1018,1,E07000117,4,75.65,882.05,26.36,1000
+2648,2,E07000117,0,58.82,990.54,25.84,2000
+1344,3,E07000117,1,45.57,348.75,25.84,1000
+1670,3,E07000117,2,56.25,420.81,25.84,2000
+1996,3,E07000117,3,61.09,573.8,25.84,1000
+2322,3,E07000117,4,58.19,882.05,18.64,2000
+2974,4,E07000117,0,34.85,990.54,25.84,1000
+4356,5,E07000117,1,54.32,187.41,25.84,1000
+4926,5,E07000117,2,62.07,211.1,18.64,2000
+5569,5,E07000117,3,68.85,273.56,25.84,2000
+6317,5,E07000117,4,75.65,346.81,25.84,1000
+3300,6,E07000117,0,58.82,389.48,25.84,1000
+4468,7,E07000117,1,45.57,187.41,25.84,1000
+5064,7,E07000117,2,56.25,211.1,18.64,2000
+5744,7,E07000117,3,61.09,273.56,25.84,2000
+6368,7,E07000117,4,58.19,346.81,25.84,1000
+3626,8,E07000117,0,34.85,389.48,25.84,2000
+6560,9,E07000117,1,54.32,127.58,25.84,1000
+6886,9,E07000117,2,62.07,152.44,25.84,1000
+7212,9,E07000117,3,68.85,202.15,18.64,2000
+7538,9,E07000117,4,75.65,289.96,25.84,1000
+7864,10,E07000117,0,58.82,323.78,25.84,1000
+8436,11,E07000117,1,54.32,127.58,25.84,2000
+8437,11,E07000117,2,62.07,152.44,25.84,2000
+8438,11,E07000117,3,68.85,202.15,25.84,2000
+8439,11,E07000117,4,75.65,289.96,25.84,2000
+8440,12,E07000117,0,58.82,323.78,18.64,2000
+41,1,E08000002,1,54.32,276.77,25.84,1000
+367,1,E08000002,2,62.07,337.51,25.84,1000
+693,1,E08000002,3,68.85,407.26,25.84,2000
+1019,1,E08000002,4,75.65,596.27,26.36,1000
+2649,2,E08000002,0,58.82,669.7,25.84,2000
+1345,3,E08000002,1,45.57,276.77,18.64,2000
+1671,3,E08000002,2,56.25,337.51,25.84,2000
+1997,3,E08000002,3,61.09,407.26,25.84,1000
+2323,3,E08000002,4,58.19,596.27,25.84,1000
+2975,4,E08000002,0,34.85,669.7,18.64,2000
+4357,5,E08000002,1,54.32,327.42,18.64,2000
+4927,5,E08000002,2,62.07,413.59,25.84,1000
+5570,5,E08000002,3,68.85,504.03,25.84,2000
+6318,5,E08000002,4,75.65,822.84,25.84,1000
+3301,6,E08000002,0,58.82,924.08,25.84,1000
+4469,7,E08000002,1,45.57,327.42,25.84,1000
+5065,7,E08000002,2,56.25,413.59,25.84,1000
+5745,7,E08000002,3,61.09,504.03,25.84,2000
+6369,7,E08000002,4,58.19,822.84,25.84,1000
+3627,8,E08000002,0,34.85,924.08,25.84,2000
+6561,9,E08000002,1,54.32,152.44,25.84,1000
+6887,9,E08000002,2,62.07,195.52,25.84,1000
+7213,9,E08000002,3,68.85,230.32,25.84,1000
+7539,9,E08000002,4,75.65,318.15,25.84,1000
+7865,10,E08000002,0,58.82,357.27,18.64,2000
+8441,11,E08000002,1,54.32,152.44,25.84,2000
+8442,11,E08000002,2,62.07,195.52,25.84,2000
+8443,11,E08000002,3,68.85,230.32,25.84,2000
+8444,11,E08000002,4,75.65,318.15,25.84,2000
+8445,12,E08000002,0,58.82,357.27,18.64,2000
+42,1,E08000033,1,53.35,373.53,25.84,1000
+368,1,E08000033,2,61.09,481.49,18.64,2000
+694,1,E08000033,3,65.95,670.55,25.84,2000
+1020,1,E08000033,4,76.62,1116.1,26.36,1000
+2650,2,E08000033,0,55.56,1253.38,25.84,2000
+1346,3,E08000033,1,48.48,373.53,25.84,1000
+1672,3,E08000033,2,55.28,481.49,25.84,2000
+1998,3,E08000033,3,59.16,670.55,18.64,2000
+2324,3,E08000033,4,66.92,1116.1,25.84,1000
+2976,4,E08000033,0,54.46,1253.38,25.84,1000
+4392,5,E08000033,1,53.35,208.95,25.84,1000
+4872,5,E08000033,2,61.09,254.18,18.64,2000
+5503,5,E08000033,3,65.95,312.33,18.64,2000
+6108,5,E08000033,4,76.62,389.87,25.84,1000
+3302,6,E08000033,0,55.56,437.85,25.84,1000
+4546,7,E08000033,1,48.48,208.95,25.84,1000
+4814,7,E08000033,2,55.28,254.18,18.64,2000
+5850,7,E08000033,3,59.16,312.33,18.64,2000
+6206,7,E08000033,4,66.92,389.87,25.84,1000
+3628,8,E08000033,0,54.46,437.85,18.64,2000
+6562,9,E08000033,1,53.35,152.44,25.84,1000
+6888,9,E08000033,2,55.28,177.26,18.64,2000
+7214,9,E08000033,3,65.95,213.75,25.84,1000
+7540,9,E08000033,4,76.62,316.49,25.84,1000
+7866,10,E08000033,0,55.56,355.43,25.84,2000
+8446,11,E08000033,1,53.35,152.44,25.84,2000
+8447,11,E08000033,2,55.28,177.26,25.84,2000
+8448,11,E08000033,3,65.95,213.75,25.84,2000
+8449,11,E08000033,4,76.62,316.49,25.84,2000
+8450,12,E08000033,0,55.56,355.43,18.64,2000
+43,1,E07000008,1,57.22,195.78,25.84,1000
+369,1,E07000008,2,67.88,254.24,25.84,1000
+695,1,E07000008,3,74.68,299.26,25.84,2000
+1021,1,E07000008,4,85.34,454.53,18.32,2000
+2651,2,E07000008,0,38.11,510.43,18.64,2000
+1347,3,E07000008,1,52.38,195.78,25.84,1000
+1673,3,E07000008,2,61.09,254.24,25.84,2000
+1999,3,E07000008,3,66.92,299.26,25.84,1000
+2325,3,E07000008,4,74.68,454.53,25.84,1000
+2977,4,E07000008,0,58.82,510.43,25.84,1000
+4125,5,E07000008,1,57.22,299.42,18.64,2000
+4706,5,E07000008,2,67.88,379.12,25.84,1000
+5425,5,E07000008,3,74.68,527.73,18.64,2000
+6135,5,E07000008,4,85.34,865.93,25.84,2000
+3303,6,E07000008,0,38.11,972.45,25.84,1000
+4242,7,E07000008,1,52.38,299.42,25.84,1000
+4968,7,E07000008,2,61.09,379.12,25.84,1000
+5611,7,E07000008,3,66.92,527.73,18.64,2000
+6273,7,E07000008,4,74.68,865.93,25.84,2000
+3629,8,E07000008,0,58.82,972.45,25.84,1000
+6563,9,E07000008,1,57.22,293.27,25.84,1000
+6889,9,E07000008,2,67.88,349.6,25.84,2000
+7215,9,E07000008,3,74.68,405.94,25.84,1000
+7541,9,E07000008,4,85.34,579.93,18.64,2000
+7867,10,E07000008,0,38.11,651.28,25.84,2000
+8451,11,E07000008,1,57.22,293.27,25.84,2000
+8452,11,E07000008,2,67.88,349.6,25.84,2000
+8453,11,E07000008,3,74.68,405.94,25.84,2000
+8454,11,E07000008,4,85.34,579.93,25.84,2000
+8455,12,E07000008,0,38.11,651.28,18.64,2000
+44,1,E09000007,1,68.85,240.74,18.64,2000
+370,1,E09000007,2,81.46,303.75,25.84,1000
+696,1,E09000007,3,88.25,362.28,25.84,2000
+1022,1,E09000007,4,106.66,596.27,26.36,1000
+2652,2,E09000007,0,74.06,669.7,25.84,1000
+1348,3,E09000007,1,61.09,240.74,25.84,1000
+1674,3,E09000007,2,66.92,303.75,18.64,2000
+2000,3,E09000007,3,74.68,362.28,25.84,1000
+2326,3,E09000007,4,87.29,596.27,25.84,1000
+2978,4,E09000007,0,63.17,669.7,25.84,1000
+3955,5,E09000007,1,68.85,183.12,25.84,1000
+4570,5,E09000007,2,81.46,200.33,25.84,1000
+5222,5,E09000007,3,88.25,254.18,25.84,1000
+5907,5,E09000007,4,106.66,346.81,18.64,2000
+3304,6,E09000007,0,74.06,389.48,18.64,2000
+4169,7,E09000007,1,61.09,183.12,25.84,1000
+4670,7,E09000007,2,66.92,200.33,25.84,1000
+5322,7,E09000007,3,74.68,254.18,18.64,2000
+5874,7,E09000007,4,87.29,346.81,25.84,1000
+3630,8,E09000007,0,63.17,389.48,25.84,1000
+6564,9,E09000007,1,68.85,569.99,18.64,2000
+6890,9,E09000007,2,81.46,775.42,25.84,2000
+7216,9,E09000007,3,88.25,1136.68,25.84,1000
+7542,9,E09000007,4,106.66,1561.44,25.84,1000
+7868,10,E09000007,0,74.06,2126.9,25.84,2000
+8456,11,E09000007,1,68.85,569.99,25.84,2000
+8457,11,E09000007,2,81.46,775.42,25.84,2000
+8458,11,E09000007,3,88.25,1136.68,25.84,2000
+8459,11,E09000007,4,106.66,1561.44,25.84,2000
+8460,12,E09000007,0,74.06,2126.9,18.64,2000
+45,1,E07000192,1,55.28,227.3,25.84,1000
+371,1,E07000192,2,61.09,290.29,25.84,1000
+697,1,E07000192,3,72.73,362.28,18.64,2000
+1023,1,E07000192,4,84.37,504.02,26.36,1000
+2653,2,E07000192,0,41.39,566.02,25.84,1000
+1349,3,E07000192,1,48.48,227.3,25.84,1000
+1675,3,E07000192,2,52.38,290.29,25.84,1000
+2001,3,E07000192,3,63.04,362.28,25.84,1000
+2327,3,E07000192,4,71.76,504.02,18.64,2000
+2979,4,E07000192,0,49.01,566.02,25.84,1000
+4283,5,E07000192,1,55.28,262.79,25.84,1000
+4893,5,E07000192,2,61.09,333.86,25.84,1000
+5524,5,E07000192,3,72.73,389.87,25.84,1000
+6176,5,E07000192,4,84.37,594.49,25.84,1000
+3305,6,E07000192,0,41.39,437.85,25.84,1000
+4504,7,E07000192,1,48.48,262.79,18.64,2000
+5189,7,E07000192,2,52.38,333.86,18.64,2000
+5780,7,E07000192,3,63.04,389.87,18.64,2000
+6441,7,E07000192,4,71.76,594.49,25.84,1000
+3631,8,E07000192,0,49.01,437.85,25.84,1000
+6565,9,E07000192,1,55.28,142.52,25.84,1000
+6891,9,E07000192,2,61.09,178.94,25.84,2000
+7217,9,E07000192,3,72.73,210.44,18.64,2000
+7543,9,E07000192,4,84.37,306.53,25.84,1000
+7869,10,E07000192,0,41.39,344.27,25.84,2000
+8461,11,E07000192,1,55.28,142.52,25.84,2000
+8462,11,E07000192,2,61.09,178.94,25.84,2000
+8463,11,E07000192,3,72.73,210.44,25.84,2000
+8464,11,E07000192,4,84.37,306.53,25.84,2000
+8465,12,E07000192,0,41.39,344.27,18.64,2000
+46,1,E07000106,1,60.13,1021.53,25.84,1000
+372,1,E07000106,2,74.68,1482.82,25.84,1000
+698,1,E07000106,3,85.34,1482.82,25.84,1000
+1024,1,E07000106,4,94.09,1482.82,26.36,1000
+2654,2,E07000106,0,65.34,2965.65,25.84,1000
+1350,3,E07000106,1,54.32,1021.53,18.64,2000
+1676,3,E07000106,2,65.95,1543.6,25.84,1000
+2002,3,E07000106,3,71.76,2120.43,25.84,1000
+2328,3,E07000106,4,76.62,2120.43,25.84,1000
+2980,4,E07000106,0,51.19,2965.65,18.64,2000
+3990,5,E07000106,1,60.13,202.49,18.64,2000
+4605,5,E07000106,2,74.68,254.18,25.84,1000
+5257,5,E07000106,3,85.34,299.42,25.84,1000
+5942,5,E07000106,4,94.09,493.3,25.84,1000
+3306,6,E07000106,0,65.34,553.97,25.84,1000
+4057,7,E07000106,1,54.32,202.49,25.84,1000
+4752,7,E07000106,2,65.95,254.18,18.64,2000
+5357,7,E07000106,3,71.76,299.42,25.84,1000
+6046,7,E07000106,4,76.62,493.3,25.84,1000
+3632,8,E07000106,0,51.19,553.97,25.84,1000
+6566,9,E07000106,1,60.13,245.2,25.84,1000
+6892,9,E07000106,2,74.68,281.69,25.84,2000
+7218,9,E07000106,3,85.34,356.22,25.84,1000
+7544,9,E07000106,4,94.09,553.4,25.84,1000
+7870,10,E07000106,0,65.34,621.5,18.64,2000
+8466,11,E07000106,1,60.13,245.2,25.84,2000
+8467,11,E07000106,2,74.68,281.69,25.84,2000
+8468,11,E07000106,3,85.34,356.22,25.84,2000
+8469,11,E07000106,4,94.09,553.4,25.84,2000
+8470,12,E07000106,0,65.34,621.5,18.64,2000
+48,1,E07000069,1,57.22,443.31,25.84,1000
+374,1,E07000069,2,67.88,573.8,18.64,2000
+700,1,E07000069,3,74.68,713.25,25.84,1000
+1026,1,E07000069,4,85.34,1190.32,26.36,1000
+2656,2,E07000069,0,38.11,1336.79,25.84,1000
+1352,3,E07000069,1,52.38,443.31,25.84,1000
+1678,3,E07000069,2,61.09,573.8,25.84,1000
+2004,3,E07000069,3,66.92,713.25,18.64,2000
+2330,3,E07000069,4,74.68,1190.32,25.84,1000
+2982,4,E07000069,0,58.82,1336.79,25.84,2000
+4126,5,E07000069,1,57.22,196,25.84,1000
+4707,5,E07000069,2,67.88,230.45,25.84,1000
+5426,5,E07000069,3,74.68,273.56,25.84,1000
+6136,5,E07000069,4,85.34,389.87,18.64,2000
+3308,6,E07000069,0,38.11,437.85,25.84,1000
+4243,7,E07000069,1,52.38,196,18.64,2000
+4969,7,E07000069,2,61.09,230.45,25.84,1000
+5612,7,E07000069,3,66.92,273.56,25.84,1000
+6274,7,E07000069,4,74.68,389.87,25.84,2000
+3634,8,E07000069,0,58.82,437.85,18.64,2000
+6568,9,E07000069,1,57.22,222,25.84,1000
+6894,9,E07000069,2,67.88,275.06,18.64,2000
+7220,9,E07000069,3,74.68,318.15,25.84,1000
+7546,9,E07000069,4,85.34,439.08,25.84,1000
+7872,10,E07000069,0,38.11,493.13,25.84,1000
+8471,11,E07000069,1,57.22,222,25.84,2000
+8472,11,E07000069,2,67.88,275.06,25.84,2000
+8473,11,E07000069,3,74.68,318.15,25.84,2000
+8474,11,E07000069,4,85.34,439.08,25.84,2000
+8475,12,E07000069,0,38.11,493.13,18.64,2000
+49,1,E06000056,1,57.22,580.53,25.84,1000
+375,1,E06000056,2,67.88,693.04,25.84,1000
+701,1,E06000056,3,74.68,909.05,25.84,1000
+1027,1,E06000056,4,85.34,1300.58,18.32,2000
+2657,2,E06000056,0,38.11,1455.56,18.64,2000
+1353,3,E06000056,1,52.38,580.53,25.84,1000
+1679,3,E06000056,2,61.09,693.04,25.84,1000
+2005,3,E06000056,3,66.92,909.05,25.84,2000
+2331,3,E06000056,4,74.68,1300.58,25.84,1000
+2983,4,E06000056,0,58.82,1455.56,25.84,2000
+4127,5,E06000056,1,57.22,221.86,25.84,1000
+4708,5,E06000056,2,67.88,264.95,25.84,1000
+5427,5,E06000056,3,74.68,299.42,25.84,1000
+6137,5,E06000056,4,85.34,366.19,25.84,1000
+3309,6,E06000056,0,38.11,411.2,25.84,1000
+4244,7,E06000056,1,52.38,221.86,25.84,1000
+4970,7,E06000056,2,61.09,264.95,18.64,2000
+5613,7,E06000056,3,66.92,299.42,25.84,1000
+6275,7,E06000056,4,74.68,366.19,18.64,2000
+3635,8,E06000056,0,58.82,411.2,25.84,1000
+6569,9,E06000056,1,57.22,187.23,25.84,1000
+6895,9,E06000056,2,67.88,230.32,25.84,1000
+7221,9,E06000056,3,74.68,299.91,25.84,1000
+7547,9,E06000056,4,85.34,422.54,18.64,2000
+7873,10,E06000056,0,38.11,474.52,25.84,1000
+8476,11,E06000056,1,57.22,187.23,25.84,2000
+8477,11,E06000056,2,67.88,230.32,25.84,2000
+8478,11,E06000056,3,74.68,299.91,25.84,2000
+8479,11,E06000056,4,85.34,422.54,25.84,2000
+8480,12,E06000056,0,38.11,474.52,18.64,2000
+50,1,E07000130,1,54.32,227.3,18.64,2000
+376,1,E07000130,2,64.98,265.52,25.84,1000
+702,1,E07000130,3,71.76,290.29,25.84,1000
+1028,1,E07000130,4,79.53,418.55,26.36,2000
+2658,2,E07000130,0,54.46,467.51,25.84,1000
+1354,3,E07000130,1,48.48,227.3,25.84,1000
+1680,3,E07000130,2,55.28,265.52,18.64,2000
+2006,3,E07000130,3,61.09,290.29,25.84,2000
+2332,3,E07000130,4,66.92,418.55,25.84,1000
+2984,4,E07000130,0,52.28,467.51,25.84,2000
+4318,5,E07000130,1,54.32,288.6,25.84,1000
+5014,5,E07000130,2,64.98,379.12,25.84,2000
+5657,5,E07000130,3,71.76,458.76,25.84,1000
+6232,5,E07000130,4,79.53,684.97,25.84,1000
+3310,6,E07000130,0,54.46,769.23,18.64,2000
+4418,7,E07000130,1,48.48,288.6,18.64,2000
+5154,7,E07000130,2,55.28,379.12,18.64,2000
+5815,7,E07000130,3,61.09,458.76,18.64,2000
+6476,7,E07000130,4,66.92,684.97,25.84,1000
+3636,8,E07000130,0,52.28,769.23,25.84,1000
+6570,9,E07000130,1,54.32,160.73,18.64,2000
+6896,9,E07000130,2,64.98,195.52,25.84,1000
+7222,9,E07000130,3,71.76,230.32,25.84,1000
+7548,9,E07000130,4,79.53,352.9,25.84,1000
+7874,10,E07000130,0,54.46,392.63,25.84,1000
+8481,11,E07000130,1,54.32,160.73,25.84,2000
+8482,11,E07000130,2,64.98,195.52,25.84,2000
+8483,11,E07000130,3,71.76,230.32,25.84,2000
+8484,11,E07000130,4,79.53,352.9,25.84,2000
+8485,12,E07000130,0,54.46,392.63,18.64,2000
+51,1,E07000070,1,57.22,240.74,25.84,2000
+377,1,E07000070,2,67.88,285.77,25.84,1000
+703,1,E07000070,3,74.68,362.28,18.64,2000
+1029,1,E07000070,4,85.34,571.54,26.36,2000
+2659,2,E07000070,0,38.11,641.86,25.84,1000
+1355,3,E07000070,1,52.38,240.74,25.84,1000
+1681,3,E07000070,2,61.09,285.77,25.84,1000
+2007,3,E07000070,3,66.92,362.28,25.84,2000
+2333,3,E07000070,4,74.68,571.54,18.64,2000
+2985,4,E07000070,0,58.82,641.86,25.84,2000
+4128,5,E07000070,1,57.22,208.95,25.84,1000
+4709,5,E07000070,2,67.88,239.07,18.64,2000
+5428,5,E07000070,3,74.68,273.56,25.84,1000
+6138,5,E07000070,4,85.34,355.42,25.84,1000
+3311,6,E07000070,0,38.11,399.14,25.84,1000
+4245,7,E07000070,1,52.38,208.95,25.84,1000
+4971,7,E07000070,2,61.09,239.07,25.84,1000
+5614,7,E07000070,3,66.92,273.56,25.84,1000
+6276,7,E07000070,4,74.68,355.42,25.84,1000
+3637,8,E07000070,0,58.82,399.14,25.84,1000
+6571,9,E07000070,1,57.22,222,25.84,1000
+6897,9,E07000070,2,67.88,281.69,25.84,1000
+7223,9,E07000070,3,74.68,334.7,18.64,2000
+7549,9,E07000070,4,85.34,579.93,25.84,1000
+7875,10,E07000070,0,38.11,651.28,25.84,1000
+8486,11,E07000070,1,57.22,222,25.84,2000
+8487,11,E07000070,2,67.88,281.69,25.84,2000
+8488,11,E07000070,3,74.68,334.7,25.84,2000
+8489,11,E07000070,4,85.34,579.93,25.84,2000
+8490,12,E07000070,0,38.11,651.28,18.64,2000
+52,1,E07000078,1,51.41,254.24,25.84,2000
+378,1,E07000078,2,58.19,312.78,25.84,1000
+704,1,E07000078,3,64.98,382.52,25.84,1000
+1030,1,E07000078,4,74.68,526.52,26.36,2000
+2660,2,E07000078,0,57.73,591.3,25.84,1000
+1356,3,E07000078,1,49.46,254.24,18.64,2000
+1682,3,E07000078,2,57.22,312.78,25.84,1000
+2008,3,E07000078,3,64.98,382.52,25.84,2000
+2334,3,E07000078,4,77.58,526.52,25.84,1000
+2986,4,E07000078,0,57.73,591.3,18.64,2000
+4200,5,E07000078,1,51.41,273.56,25.84,2000
+4836,5,E07000078,2,58.19,333.86,25.84,1000
+5467,5,E07000078,3,64.98,389.87,25.84,1000
+6005,5,E07000078,4,74.68,570.81,25.84,1000
+3312,6,E07000078,0,57.73,641.09,25.84,1000
+3916,7,E07000078,1,49.46,273.56,25.84,1000
+5113,7,E07000078,2,57.22,333.86,25.84,1000
+5693,7,E07000078,3,64.98,389.87,25.84,1000
+6405,7,E07000078,4,77.58,570.81,18.64,2000
+3638,8,E07000078,0,57.73,641.09,25.84,1000
+6572,9,E07000078,1,51.41,200.49,25.84,1000
+6898,9,E07000078,2,58.19,266.78,25.84,1000
+7224,9,E07000078,3,64.98,334.7,25.84,2000
+7550,9,E07000078,4,74.68,735.68,25.84,1000
+7876,10,E07000078,0,57.73,826.2,18.64,2000
+8491,11,E07000078,1,51.41,200.49,25.84,2000
+8492,11,E07000078,2,58.19,266.78,25.84,2000
+8493,11,E07000078,3,64.98,334.7,25.84,2000
+8494,11,E07000078,4,74.68,735.68,25.84,2000
+8495,12,E07000078,0,57.73,826.2,18.64,2000
+53,1,E07000177,1,60.13,240.74,25.84,2000
+379,1,E07000177,2,74.68,285.77,18.64,2000
+705,1,E07000177,3,85.34,348.75,25.84,1000
+1031,1,E07000177,4,94.09,573.8,26.36,2000
+2661,2,E07000177,0,65.34,644.4,25.84,1000
+1357,3,E07000177,1,54.32,240.74,25.84,1000
+1683,3,E07000177,2,65.95,285.77,25.84,1000
+2009,3,E07000177,3,71.76,348.75,18.64,2000
+2335,3,E07000177,4,76.62,573.8,25.84,1000
+2987,4,E07000177,0,51.19,644.4,25.84,1000
+3991,5,E07000177,1,60.13,254.18,25.84,2000
+4606,5,E07000177,2,74.68,299.42,25.84,1000
+5258,5,E07000177,3,85.34,346.81,25.84,1000
+5943,5,E07000177,4,94.09,549.29,18.64,2000
+3313,6,E07000177,0,65.34,616.87,25.84,1000
+4058,7,E07000177,1,54.32,482.48,18.64,2000
+4753,7,E07000177,2,65.95,618.21,25.84,2000
+5358,7,E07000177,3,71.76,753.9,18.64,2000
+6047,7,E07000177,4,76.62,1184.71,18.64,2000
+3639,8,E07000177,0,51.19,1330.48,18.64,2000
+6573,9,E07000177,1,60.13,210.44,25.84,1000
+6899,9,E07000177,2,74.68,266.78,18.64,2000
+7225,9,E07000177,3,85.34,326.44,25.84,2000
+7551,9,E07000177,4,94.09,526.89,25.84,1000
+7877,10,E07000177,0,65.34,591.71,25.84,1000
+8496,11,E07000177,1,60.13,210.44,25.84,2000
+8497,11,E07000177,2,74.68,266.78,25.84,2000
+8498,11,E07000177,3,85.34,326.44,25.84,2000
+8499,11,E07000177,4,94.09,526.89,25.84,2000
+8500,12,E07000177,0,65.34,591.71,18.64,2000
+83,1,E06000049,1,54.32,348.75,25.84,2000
+409,1,E06000049,2,62.07,504.02,18.64,2000
+735,1,E06000049,3,68.85,693.04,25.84,1000
+1061,1,E06000049,4,75.65,1190.32,25.84,2000
+2691,2,E06000049,0,58.82,1336.79,25.84,1000
+1387,3,E06000049,1,45.57,348.75,25.84,1000
+1713,3,E06000049,2,56.25,504.02,25.84,1000
+2039,3,E06000049,3,61.09,693.04,18.64,2000
+2365,3,E06000049,4,58.19,1190.32,25.84,1000
+3017,4,E06000049,0,34.85,1336.79,25.84,1000
+4363,5,E06000049,1,54.32,273.56,25.84,1000
+4933,5,E06000049,2,62.07,353.24,18.64,2000
+5576,5,E06000049,3,68.85,435.11,25.84,1000
+6324,5,E06000049,4,75.65,684.97,25.84,1000
+3343,6,E06000049,0,58.82,769.23,25.84,1000
+4475,7,E06000049,1,45.57,273.56,25.84,1000
+5071,7,E06000049,2,56.25,353.24,18.64,2000
+5751,7,E06000049,3,61.09,435.11,25.84,1000
+6375,7,E06000049,4,58.19,684.97,25.84,1000
+3669,8,E06000049,0,34.85,769.23,18.64,2000
+6603,9,E06000049,1,54.32,177.26,25.84,1000
+6929,9,E06000049,2,62.07,230.32,18.64,2000
+7255,9,E06000049,3,68.85,299.91,25.84,2000
+7581,9,E06000049,4,75.65,525.23,25.84,1000
+7907,10,E06000049,0,58.82,589.86,25.84,1000
+8501,11,E06000049,1,54.32,177.26,25.84,2000
+8502,11,E06000049,2,62.07,230.32,25.84,2000
+8503,11,E06000049,3,68.85,299.91,25.84,2000
+8504,11,E06000049,4,75.65,525.23,25.84,2000
+8505,12,E06000049,0,58.82,589.86,18.64,2000
+54,1,E06000050,1,54.32,240.74,25.84,2000
+380,1,E06000050,2,62.07,285.77,25.84,1000
+706,1,E06000050,3,68.85,301.48,25.84,1000
+1032,1,E06000050,4,75.65,456.75,18.64,2000
+2662,2,E06000050,0,58.82,512.98,18.64,2000
+1358,3,E06000050,1,45.57,240.74,25.84,1000
+1684,3,E06000050,2,56.25,285.77,25.84,1000
+2010,3,E06000050,3,61.09,301.48,25.84,1000
+2336,3,E06000050,4,58.19,456.75,25.84,1000
+2988,4,E06000050,0,34.85,512.98,25.84,1000
+4359,5,E06000050,1,54.32,198.18,25.84,1000
+4929,5,E06000050,2,62.07,230.45,25.84,1000
+5572,5,E06000050,3,68.85,273.56,25.84,2000
+6320,5,E06000050,4,75.65,402.83,18.64,2000
+3314,6,E06000050,0,58.82,452.33,25.84,1000
+4471,7,E06000050,1,45.57,198.18,18.64,2000
+5067,7,E06000050,2,56.25,230.45,25.84,1000
+5747,7,E06000050,3,61.09,273.56,18.64,2000
+6371,7,E06000050,4,58.19,402.83,18.64,2000
+3640,8,E06000050,0,34.85,452.33,25.84,1000
+6574,9,E06000050,1,54.32,187.23,25.84,1000
+6900,9,E06000050,2,62.07,222,25.84,1000
+7226,9,E06000050,3,68.85,256.83,25.84,2000
+7552,9,E06000050,4,75.65,405.94,18.64,2000
+7878,10,E06000050,0,58.82,455.89,25.84,1000
+8506,11,E06000050,1,54.32,187.23,25.84,2000
+8507,11,E06000050,2,62.07,222,25.84,2000
+8508,11,E06000050,3,68.85,256.83,25.84,2000
+8509,11,E06000050,4,75.65,405.94,25.84,2000
+8510,12,E06000050,0,58.82,455.89,18.64,2000
+55,1,E07000034,1,54.32,218.27,18.64,2000
+381,1,E07000034,2,64.98,285.77,25.84,1000
+707,1,E07000034,3,71.76,337.51,25.84,1000
+1033,1,E07000034,4,79.53,465.79,25.84,1000
+2663,2,E07000034,0,54.46,523.06,25.84,1000
+1359,3,E07000034,1,48.48,218.27,25.84,1000
+1685,3,E07000034,2,55.28,285.77,18.64,2000
+2011,3,E07000034,3,61.09,337.51,25.84,1000
+2337,3,E07000034,4,66.92,465.79,25.84,1000
+2989,4,E07000034,0,52.28,523.06,25.84,1000
+4319,5,E07000034,1,54.32,185.27,25.84,1000
+5015,5,E07000034,2,64.98,232.63,25.84,2000
+5658,5,E07000034,3,71.76,299.42,18.64,2000
+6233,5,E07000034,4,79.53,411.43,25.84,1000
+3315,6,E07000034,0,54.46,462.06,18.64,2000
+4419,7,E07000034,1,48.48,185.27,25.84,1000
+5155,7,E07000034,2,55.28,232.63,25.84,1000
+5816,7,E07000034,3,61.09,299.42,25.84,1000
+6477,7,E07000034,4,66.92,411.43,25.84,1000
+3641,8,E07000034,0,52.28,462.06,25.84,1000
+6575,9,E07000034,1,54.32,152.44,18.64,2000
+6901,9,E07000034,2,64.98,177.26,25.84,1000
+7227,9,E07000034,3,71.76,210.44,25.84,2000
+7553,9,E07000034,4,79.53,291.63,25.84,1000
+7879,10,E07000034,0,54.46,327.48,25.84,1000
+8511,11,E07000034,1,54.32,152.44,25.84,2000
+8512,11,E07000034,2,64.98,177.26,25.84,2000
+8513,11,E07000034,3,71.76,210.44,25.84,2000
+8514,11,E07000034,4,79.53,291.63,25.84,2000
+8515,12,E07000034,0,54.46,327.48,18.64,2000
+56,1,E07000225,1,60.13,276.77,25.84,1000
+382,1,E07000225,2,74.68,360.03,25.84,1000
+708,1,E07000225,3,85.34,461.26,18.64,2000
+1034,1,E07000225,4,94.09,893.3,25.84,1000
+2664,2,E07000225,0,65.34,1003.17,25.84,1000
+1360,3,E07000225,1,54.32,276.77,25.84,1000
+1686,3,E07000225,2,65.95,360.03,25.84,1000
+2012,3,E07000225,3,71.76,461.26,25.84,1000
+2338,3,E07000225,4,76.62,893.3,18.64,2000
+2990,4,E07000225,0,51.19,1003.17,25.84,1000
+3992,5,E07000225,1,60.13,208.95,25.84,2000
+4607,5,E07000225,2,74.68,230.45,18.64,2000
+5259,5,E07000225,3,85.34,277.88,25.84,1000
+5944,5,E07000225,4,94.09,389.87,25.84,1000
+3316,6,E07000225,0,65.34,437.85,25.84,2000
+4059,7,E07000225,1,54.32,208.95,25.84,1000
+4754,7,E07000225,2,65.95,230.45,25.84,2000
+5359,7,E07000225,3,71.76,277.88,25.84,1000
+6048,7,E07000225,4,76.62,389.87,25.84,2000
+3642,8,E07000225,0,51.19,437.85,25.84,1000
+6576,9,E07000225,1,60.13,230.32,25.84,1000
+6902,9,E07000225,2,74.68,299.91,25.84,1000
+7228,9,E07000225,3,85.34,387.71,18.64,2000
+7554,9,E07000225,4,94.09,666.1,25.84,1000
+7880,10,E07000225,0,65.34,748.04,25.84,1000
+8516,11,E07000225,1,60.13,230.32,25.84,2000
+8517,11,E07000225,2,74.68,299.91,25.84,2000
+8518,11,E07000225,3,85.34,387.71,25.84,2000
+8519,11,E07000225,4,94.09,666.1,25.84,2000
+8520,12,E07000225,0,65.34,748.04,18.64,2000
+58,1,E07000118,1,54.32,211.52,25.84,1000
+384,1,E07000118,2,62.07,265.52,25.84,1000
+710,1,E07000118,3,68.85,348.75,25.84,1000
+1036,1,E07000118,4,75.65,573.8,25.84,1000
+2666,2,E07000118,0,58.82,644.4,25.84,1000
+1362,3,E07000118,1,45.57,211.52,18.64,2000
+1688,3,E07000118,2,56.25,265.52,25.84,1000
+2014,3,E07000118,3,61.09,348.75,25.84,1000
+2340,3,E07000118,4,58.19,573.8,25.84,2000
+2992,4,E07000118,0,34.85,644.4,18.64,2000
+4360,5,E07000118,1,54.32,198.18,25.84,1000
+4930,5,E07000118,2,62.07,254.18,25.84,1000
+5573,5,E07000118,3,68.85,299.42,18.64,2000
+6321,5,E07000118,4,75.65,504.03,25.84,1000
+3318,6,E07000118,0,58.82,566.05,25.84,2000
+4472,7,E07000118,1,45.57,198.18,25.84,1000
+5068,7,E07000118,2,56.25,254.18,25.84,1000
+5748,7,E07000118,3,61.09,299.42,25.84,1000
+6372,7,E07000118,4,58.19,504.03,25.84,1000
+3644,8,E07000118,0,34.85,566.05,25.84,1000
+6578,9,E07000118,1,54.32,150.78,25.84,1000
+6904,9,E07000118,2,62.07,195.52,25.84,1000
+7230,9,E07000118,3,68.85,230.32,25.84,1000
+7556,9,E07000118,4,75.65,316.49,25.84,1000
+7882,10,E07000118,0,58.82,355.43,18.64,2000
+8521,11,E07000118,1,54.32,150.78,25.84,2000
+8522,11,E07000118,2,62.07,195.52,25.84,2000
+8523,11,E07000118,3,68.85,230.32,25.84,2000
+8524,11,E07000118,4,75.65,316.49,25.84,2000
+8525,12,E07000118,0,58.82,355.43,18.64,2000
+60,1,E09000001,1,68.85,209.28,25.84,1000
+386,1,E09000001,2,81.46,265.52,25.84,2000
+712,1,E09000001,3,88.25,312.78,25.84,1000
+1038,1,E09000001,4,106.66,481.49,18.64,2000
+2668,2,E09000001,0,74.06,540.76,18.64,2000
+1364,3,E09000001,1,61.09,209.28,25.84,2000
+1690,3,E09000001,2,66.92,265.52,25.84,1000
+2016,3,E09000001,3,74.68,312.78,25.84,1000
+2342,3,E09000001,4,87.29,481.49,25.84,2000
+2994,4,E09000001,0,63.17,540.76,25.84,1000
+3956,5,E09000001,1,68.85,208.95,25.84,1000
+4571,5,E09000001,2,81.46,254.18,18.64,2000
+5223,5,E09000001,3,88.25,299.42,25.84,1000
+5908,5,E09000001,4,106.66,389.87,25.84,2000
+3320,6,E09000001,0,74.06,437.85,25.84,2000
+4170,7,E09000001,1,61.09,208.95,25.84,1000
+4671,7,E09000001,2,66.92,254.18,25.84,1000
+5323,7,E09000001,3,74.68,299.42,25.84,1000
+5875,7,E09000001,4,87.29,389.87,25.84,1000
+3646,8,E09000001,0,63.17,437.85,25.84,1000
+6580,9,E09000001,1,68.85,601.47,25.84,1000
+6906,9,E09000001,2,81.46,767.18,25.84,1000
+7232,9,E09000001,3,88.25,1419.49,25.84,1000
+7558,9,E09000001,4,106.66,1561.44,18.64,2000
+7884,10,E09000001,0,74.06,2838.98,25.84,1000
+8526,11,E09000001,1,68.85,601.47,25.84,2000
+8527,11,E09000001,2,81.46,767.18,25.84,2000
+8528,11,E09000001,3,88.25,1419.49,25.84,2000
+8529,11,E09000001,4,106.66,1561.44,25.84,2000
+8530,12,E09000001,0,74.06,2838.98,18.64,2000
+62,1,E07000071,1,57.22,265.52,25.84,1000
+388,1,E07000071,2,67.88,333,25.84,2000
+714,1,E07000071,3,74.68,407.26,18.64,2000
+1040,1,E07000071,4,85.34,787.54,25.84,1000
+2670,2,E07000071,0,38.11,884.44,25.84,1000
+1366,3,E07000071,1,52.38,265.52,25.84,2000
+1692,3,E07000071,2,61.09,333,25.84,1000
+2018,3,E07000071,3,66.92,407.26,25.84,1000
+2344,3,E07000071,4,74.68,787.54,18.64,2000
+2996,4,E07000071,0,58.82,884.44,25.84,1000
+4129,5,E07000071,1,57.22,185.27,25.84,1000
+4710,5,E07000071,2,67.88,221.86,25.84,1000
+5429,5,E07000071,3,74.68,254.18,25.84,1000
+6139,5,E07000071,4,85.34,411.43,25.84,1000
+3322,6,E07000071,0,38.11,462.06,25.84,1000
+4246,7,E07000071,1,52.38,185.27,25.84,1000
+4972,7,E07000071,2,61.09,221.86,25.84,1000
+5615,7,E07000071,3,66.92,254.18,25.84,1000
+6277,7,E07000071,4,74.68,411.43,25.84,1000
+3648,8,E07000071,0,58.82,462.06,25.84,1000
+6582,9,E07000071,1,57.22,192.2,25.84,2000
+6908,9,E07000071,2,67.88,230.32,25.84,1000
+7234,9,E07000071,3,74.68,298.24,18.64,2000
+7560,9,E07000071,4,85.34,439.08,25.84,2000
+7886,10,E07000071,0,38.11,493.13,25.84,1000
+8531,11,E07000071,1,57.22,192.2,25.84,2000
+8532,11,E07000071,2,67.88,230.32,25.84,2000
+8533,11,E07000071,3,74.68,298.24,25.84,2000
+8534,11,E07000071,4,85.34,439.08,25.84,2000
+8535,12,E07000071,0,38.11,493.13,18.64,2000
+65,1,E06000052,1,51.41,254.24,25.84,1000
+391,1,E06000052,2,58.19,312.78,25.84,2000
+717,1,E06000052,3,64.98,312.78,25.84,1000
+1043,1,E06000052,4,74.68,670.55,25.84,1000
+2673,2,E06000052,0,57.73,753.03,25.84,1000
+1369,3,E06000052,1,49.46,254.24,18.64,2000
+1695,3,E06000052,2,57.22,312.78,25.84,1000
+2021,3,E06000052,3,64.98,312.78,25.84,1000
+2347,3,E06000052,4,77.58,670.55,25.84,1000
+2999,4,E06000052,0,57.73,753.03,18.64,2000
+4202,5,E06000052,1,51.41,198.18,25.84,2000
+4838,5,E06000052,2,58.19,241.26,25.84,2000
+5469,5,E06000052,3,64.98,288.6,25.84,1000
+6007,5,E06000052,4,74.68,402.83,25.84,1000
+3325,6,E06000052,0,57.73,452.33,25.84,1000
+3918,7,E06000052,1,49.46,198.18,25.84,1000
+5115,7,E06000052,2,57.22,241.26,25.84,1000
+5695,7,E06000052,3,64.98,288.6,25.84,1000
+6407,7,E06000052,4,77.58,402.83,25.84,1000
+3651,8,E06000052,0,57.73,452.33,25.84,1000
+6585,9,E06000052,1,51.41,178.94,25.84,2000
+6911,9,E06000052,2,58.19,222,25.84,1000
+7237,9,E06000052,3,64.98,260.14,25.84,1000
+7563,9,E06000052,4,74.68,342.99,25.84,2000
+7889,10,E06000052,0,57.73,385.18,18.64,2000
+8536,11,E06000052,1,51.41,178.94,25.84,2000
+8537,11,E06000052,2,58.19,222,25.84,2000
+8538,11,E06000052,3,64.98,260.14,25.84,2000
+8539,11,E06000052,4,74.68,342.99,25.84,2000
+8540,12,E06000052,0,57.73,385.18,18.64,2000
+66,1,E07000079,1,51.41,218.27,25.84,1000
+392,1,E07000079,2,58.19,240.74,18.64,2000
+718,1,E07000079,3,64.98,290.29,25.84,1000
+1044,1,E07000079,4,74.68,407.26,25.84,1000
+2674,2,E07000079,0,57.73,457.37,25.84,1000
+1370,3,E07000079,1,49.46,218.27,25.84,1000
+1696,3,E07000079,2,57.22,240.74,25.84,1000
+2022,3,E07000079,3,64.98,290.29,18.64,2000
+2348,3,E07000079,4,77.58,407.26,25.84,1000
+3000,4,E07000079,0,57.73,457.37,25.84,1000
+4203,5,E07000079,1,51.41,385.55,18.64,2000
+4839,5,E07000079,2,58.19,482.48,25.84,2000
+5470,5,E07000079,3,64.98,594.49,25.84,1000
+6008,5,E07000079,4,74.68,887.41,25.84,1000
+3326,6,E07000079,0,57.73,996.62,25.84,1000
+3919,7,E07000079,1,49.46,385.55,18.64,2000
+5116,7,E07000079,2,57.22,482.48,25.84,1000
+5696,7,E07000079,3,64.98,594.49,25.84,1000
+6408,7,E07000079,4,77.58,887.41,25.84,1000
+3652,8,E07000079,0,57.73,996.62,18.64,2000
+6586,9,E07000079,1,51.41,195.52,25.84,2000
+6912,9,E07000079,2,58.19,256.83,18.64,2000
+7238,9,E07000079,3,64.98,318.15,25.84,1000
+7564,9,E07000079,4,74.68,699.22,25.84,2000
+7890,10,E07000079,0,57.73,785.27,25.84,1000
+8541,11,E07000079,1,51.41,195.52,25.84,2000
+8542,11,E07000079,2,58.19,256.83,25.84,2000
+8543,11,E07000079,3,64.98,318.15,25.84,2000
+8544,11,E07000079,4,74.68,699.22,25.84,2000
+8545,12,E07000079,0,57.73,785.27,18.64,2000
+80,1,E06000047,1,53.35,218.27,18.64,2000
+406,1,E06000047,2,60.13,265.52,25.84,1000
+732,1,E06000047,3,64.01,312.78,25.84,1000
+1058,1,E06000047,4,73.71,432.05,25.84,2000
+2688,2,E06000047,0,58.82,485.17,25.84,1000
+1384,3,E06000047,1,44.6,218.27,25.84,1000
+1710,3,E06000047,2,52.38,265.52,18.64,2000
+2036,3,E06000047,3,56.25,312.78,25.84,2000
+2362,3,E06000047,4,59.16,432.05,25.84,1000
+3014,4,E06000047,0,50.1,485.17,25.84,2000
+4533,5,E06000047,1,53.35,224.02,25.84,1000
+5048,5,E06000047,2,60.13,277.88,25.84,1000
+5553,5,E06000047,3,64.01,323.09,25.84,1000
+6352,5,E06000047,4,73.71,551.46,25.84,1000
+3340,6,E06000047,0,58.82,619.27,18.64,2000
+4452,7,E06000047,1,44.6,224.02,25.84,1000
+5099,7,E06000047,2,52.38,277.88,25.84,2000
+5728,7,E06000047,3,56.25,323.09,25.84,1000
+6510,7,E06000047,4,59.16,551.46,18.64,2000
+3666,8,E06000047,0,50.1,619.27,25.84,1000
+6600,9,E06000047,1,44.6,160.73,18.64,2000
+6926,9,E06000047,2,60.13,160.73,25.84,1000
+7252,9,E06000047,3,64.01,192.2,25.84,1000
+7578,9,E06000047,4,73.71,281.69,25.84,1000
+7904,10,E06000047,0,58.82,316.32,25.84,1000
+8546,11,E06000047,1,44.6,160.73,25.84,2000
+8547,11,E06000047,2,60.13,160.73,25.84,2000
+8548,11,E06000047,3,64.01,192.2,25.84,2000
+8549,11,E06000047,4,73.71,281.69,25.84,2000
+8550,12,E06000047,0,58.82,316.32,18.64,2000
+67,1,E08000026,1,55.28,218.27,25.84,1000
+393,1,E08000026,2,61.09,276.77,25.84,1000
+719,1,E08000026,3,72.73,312.78,25.84,1000
+1045,1,E08000026,4,84.37,432.05,18.64,2000
+2675,2,E08000026,0,41.39,485.17,18.64,2000
+1371,3,E08000026,1,48.48,218.27,25.84,1000
+1697,3,E08000026,2,52.38,276.77,25.84,1000
+2023,3,E08000026,3,63.04,312.78,25.84,1000
+2349,3,E08000026,4,71.76,432.05,25.84,1000
+3001,4,E08000026,0,49.01,485.17,25.84,1000
+4284,5,E08000026,1,55.28,323.09,25.84,1000
+4894,5,E08000026,2,61.09,411.43,18.64,2000
+5525,5,E08000026,3,72.73,445.9,18.64,2000
+6177,5,E08000026,4,84.37,904.67,25.84,1000
+3327,6,E08000026,0,41.39,1013.57,25.84,1000
+4505,7,E08000026,1,48.48,323.09,25.84,1000
+5190,7,E08000026,2,52.38,411.43,25.84,2000
+5781,7,E08000026,3,63.04,445.9,25.84,1000
+6442,7,E08000026,4,71.76,904.67,25.84,1000
+3653,8,E08000026,0,49.01,1013.57,25.84,2000
+6587,9,E08000026,1,55.28,177.26,25.84,2000
+6913,9,E08000026,2,61.09,203.8,25.84,1000
+7239,9,E08000026,3,72.73,230.32,25.84,1000
+7565,9,E08000026,4,84.37,367.84,18.64,2000
+7891,10,E08000026,0,41.39,413.11,25.84,1000
+8551,11,E08000026,1,55.28,177.26,25.84,2000
+8552,11,E08000026,2,61.09,203.8,25.84,2000
+8553,11,E08000026,3,72.73,230.32,25.84,2000
+8554,11,E08000026,4,84.37,367.84,25.84,2000
+8555,12,E08000026,0,41.39,413.11,18.64,2000
+69,1,E07000226,1,60.13,207.02,18.64,2000
+395,1,E07000226,2,74.68,243,25.84,1000
+721,1,E07000226,3,85.34,281.25,25.84,1000
+1047,1,E07000226,4,94.09,362.28,25.84,1000
+2677,2,E07000226,0,65.34,406.86,25.84,2000
+1373,3,E07000226,1,54.32,207.02,25.84,1000
+1699,3,E07000226,2,65.95,243,18.64,2000
+2025,3,E07000226,3,71.76,281.25,25.84,1000
+2351,3,E07000226,4,76.62,362.28,25.84,1000
+3003,4,E07000226,0,51.19,406.86,25.84,1000
+3994,5,E07000226,1,60.13,221.86,25.84,2000
+4609,5,E07000226,2,74.68,264.95,25.84,1000
+5261,5,E07000226,3,85.34,299.42,18.64,2000
+5946,5,E07000226,4,94.09,389.87,25.84,1000
+3329,6,E07000226,0,65.34,437.85,18.64,2000
+4061,7,E07000226,1,54.32,221.86,25.84,1000
+4756,7,E07000226,2,65.95,264.95,25.84,2000
+5361,7,E07000226,3,71.76,299.42,25.84,1000
+6050,7,E07000226,4,76.62,389.87,25.84,2000
+3655,8,E07000226,0,51.19,437.85,25.84,2000
+6589,9,E07000226,1,60.13,240.25,18.64,2000
+6915,9,E07000226,2,74.68,299.91,25.84,1000
+7241,9,E07000226,3,85.34,354.57,25.84,1000
+7567,9,E07000226,4,94.09,492.12,25.84,1000
+7893,10,E07000226,0,65.34,552.63,25.84,1000
+8556,11,E07000226,1,60.13,240.25,25.84,2000
+8557,11,E07000226,2,74.68,299.91,25.84,2000
+8558,11,E07000226,3,85.34,354.57,25.84,2000
+8559,11,E07000226,4,94.09,492.12,25.84,2000
+8560,12,E07000226,0,65.34,552.63,18.64,2000
+70,1,E09000008,1,68.85,218.27,25.84,1000
+396,1,E09000008,2,81.46,276.77,25.84,1000
+722,1,E09000008,3,88.25,335.23,18.64,2000
+1048,1,E09000008,4,106.66,526.52,25.84,1000
+2678,2,E09000008,0,74.06,591.3,25.84,2000
+1374,3,E09000008,1,61.09,218.27,25.84,1000
+1700,3,E09000008,2,66.92,276.77,25.84,2000
+2026,3,E09000008,3,74.68,335.23,25.84,1000
+2352,3,E09000008,4,87.29,526.52,18.64,2000
+3004,4,E09000008,0,63.17,591.3,25.84,1000
+3957,5,E09000008,1,68.85,504.03,25.84,1000
+4572,5,E09000008,2,81.46,682.78,25.84,2000
+5224,5,E09000008,3,88.25,958.52,18.64,2000
+5909,5,E09000008,4,106.66,1817.96,25.84,2000
+3330,6,E09000008,0,74.06,1419.49,25.84,1000
+4171,7,E09000008,1,61.09,504.03,25.84,1000
+4672,7,E09000008,2,66.92,682.78,25.84,1000
+5324,7,E09000008,3,74.68,958.52,25.84,1000
+5876,7,E09000008,4,87.29,1817.96,25.84,1000
+3656,8,E09000008,0,63.17,2041.64,25.84,2000
+6590,9,E09000008,1,68.85,275.06,25.84,1000
+6916,9,E09000008,2,81.46,334.7,25.84,1000
+7242,9,E09000008,3,88.25,422.54,18.64,2000
+7568,9,E09000008,4,106.66,609.79,25.84,1000
+7894,10,E09000008,0,74.06,682.93,25.84,1000
+8561,11,E09000008,1,68.85,275.06,25.84,2000
+8562,11,E09000008,2,81.46,334.7,25.84,2000
+8563,11,E09000008,3,88.25,422.54,25.84,2000
+8564,11,E09000008,4,106.66,609.79,25.84,2000
+8565,12,E09000008,0,74.06,682.93,18.64,2000
+8176,1,E06000063,1,54.32,285.77,25.84,1000
+8177,1,E06000063,2,62.07,382.52,25.84,1000
+8178,1,E06000063,3,68.85,454.53,25.84,1000
+8179,1,E06000063,4,75.65,621,25.84,1000
+8184,2,E06000063,0,58.82,697.46,25.84,1000
+8180,3,E06000063,1,45.57,285.77,18.44,2000
+8181,3,E06000063,2,56.25,382.52,25.84,1000
+8182,3,E06000063,3,61.09,454.53,25.84,1000
+8183,3,E06000063,4,58.19,621,25.84,1000
+8185,4,E06000063,0,34.85,697.46,18.44,2000
+8188,5,E06000063,1,54.32,185.27,25.84,1000
+8190,5,E06000063,2,62.07,221.86,18.44,2000
+8192,5,E06000063,3,68.85,254.18,25.84,1000
+8194,5,E06000063,4,75.65,368.34,25.84,1000
+8186,6,E06000063,0,58.82,413.63,25.84,1000
+8189,7,E06000063,1,45.57,185.27,25.84,1000
+8191,7,E06000063,2,56.25,221.86,25.84,1000
+8193,7,E06000063,3,61.09,254.18,25.84,1000
+8195,7,E06000063,4,58.19,368.34,18.44,2000
+8187,8,E06000063,0,34.85,413.63,25.84,1000
+8196,9,E06000063,1,54.32,277.88,25.84,2000
+8197,9,E06000063,2,62.07,641.09,25.84,2000
+8198,9,E06000063,3,68.85,641.09,25.84,2000
+8199,9,E06000063,4,75.65,1184.71,25.84,2000
+8200,10,E06000063,0,58.82,198.18,18.44,2000
+8566,11,E06000063,1,54.32,277.88,25.84,2000
+8567,11,E06000063,2,62.07,641.09,25.84,2000
+8568,11,E06000063,3,68.85,641.09,25.84,2000
+8569,11,E06000063,4,75.65,1184.71,25.84,2000
+8570,12,E06000063,0,58.82,198.18,18.64,2000
+71,1,E07000096,1,57.22,184.49,25.84,1000
+397,1,E07000096,2,67.88,240.74,25.84,1000
+723,1,E07000096,3,74.68,265.52,25.84,2000
+1049,1,E07000096,4,85.34,362.28,25.84,1000
+2679,2,E07000096,0,38.11,406.86,25.84,2000
+1375,3,E07000096,1,52.38,184.49,18.64,2000
+1701,3,E07000096,2,61.09,240.74,25.84,2000
+2027,3,E07000096,3,66.92,265.52,25.84,1000
+2353,3,E07000096,4,74.68,362.28,25.84,1000
+3005,4,E07000096,0,58.82,406.86,18.64,2000
+4130,5,E07000096,1,57.22,208.95,18.64,2000
+4711,5,E07000096,2,67.88,254.18,25.84,1000
+5430,5,E07000096,3,74.68,312.33,18.64,2000
+6140,5,E07000096,4,85.34,538.51,25.84,1000
+3331,6,E07000096,0,38.11,604.8,25.84,1000
+4247,7,E07000096,1,52.38,208.95,25.84,1000
+4973,7,E07000096,2,61.09,254.18,25.84,1000
+5616,7,E07000096,3,66.92,312.33,18.64,2000
+6278,7,E07000096,4,74.68,538.51,25.84,1000
+3657,8,E07000096,0,58.82,604.8,25.84,2000
+6591,9,E07000096,1,57.22,230.32,25.84,1000
+6917,9,E07000096,2,67.88,299.91,25.84,1000
+7243,9,E07000096,3,74.68,422.54,25.84,1000
+7569,9,E07000096,4,85.34,700.89,25.84,1000
+7895,10,E07000096,0,38.11,787.11,18.64,2000
+8571,11,E07000096,1,57.22,230.32,25.84,2000
+8572,11,E07000096,2,67.88,299.91,25.84,2000
+8573,11,E07000096,3,74.68,422.54,25.84,2000
+8574,11,E07000096,4,85.34,700.89,25.84,2000
+8575,12,E07000096,0,38.11,787.11,18.64,2000
+72,1,E06000005,1,53.35,231.75,25.84,1000
+398,1,E06000005,2,60.13,285.77,18.64,2000
+724,1,E06000005,3,64.01,362.28,25.84,2000
+1050,1,E06000005,4,73.71,573.8,25.84,1000
+2680,2,E06000005,0,58.82,644.4,25.84,2000
+1376,3,E06000005,1,44.6,231.75,25.84,1000
+1702,3,E06000005,2,52.38,285.77,25.84,2000
+2028,3,E06000005,3,56.25,362.28,18.64,2000
+2354,3,E06000005,4,59.16,573.8,25.84,1000
+3006,4,E06000005,0,50.1,644.4,25.84,1000
+4532,5,E06000005,1,53.35,299.42,25.84,1000
+5047,5,E06000005,2,60.13,368.34,18.64,2000
+5552,5,E06000005,3,64.01,482.48,25.84,1000
+6351,5,E06000005,4,73.71,684.97,25.84,1000
+3332,6,E06000005,0,58.82,769.23,25.84,1000
+4451,7,E06000005,1,44.6,299.42,25.84,1000
+5098,7,E06000005,2,52.38,368.34,18.64,2000
+5727,7,E06000005,3,56.25,482.48,25.84,1000
+6509,7,E06000005,4,59.16,684.97,25.84,1000
+3658,8,E06000005,0,50.1,769.23,18.64,2000
+6592,9,E06000005,1,44.6,140.86,25.84,1000
+6918,9,E06000005,2,60.13,170.65,18.64,2000
+7244,9,E06000005,3,64.01,203.8,25.84,1000
+7570,9,E06000005,4,73.71,291.63,25.84,1000
+7896,10,E06000005,0,58.82,327.48,25.84,2000
+8576,11,E06000005,1,44.6,140.86,25.84,2000
+8577,11,E06000005,2,60.13,170.65,25.84,2000
+8578,11,E06000005,3,64.01,203.8,25.84,2000
+8579,11,E06000005,4,73.71,291.63,25.84,2000
+8580,12,E06000005,0,58.82,327.48,18.64,2000
+73,1,E07000107,1,60.13,240.74,25.84,1000
+399,1,E07000107,2,74.68,276.77,25.84,1000
+725,1,E07000107,3,85.34,312.78,25.84,2000
+1051,1,E07000107,4,94.09,515.31,18.64,2000
+2681,2,E07000107,0,65.34,578.69,18.64,2000
+1377,3,E07000107,1,54.32,240.74,25.84,1000
+1703,3,E07000107,2,65.95,276.77,25.84,2000
+2029,3,E07000107,3,71.76,312.78,25.84,1000
+2355,3,E07000107,4,76.62,515.31,25.84,1000
+3007,4,E07000107,0,51.19,578.69,25.84,1000
+3995,5,E07000107,1,60.13,202.49,25.84,2000
+4610,5,E07000107,2,74.68,243.38,25.84,1000
+5262,5,E07000107,3,85.34,273.56,25.84,1000
+5947,5,E07000107,4,94.09,368.34,25.84,1000
+3333,6,E07000107,0,65.34,413.63,25.84,1000
+4062,7,E07000107,1,54.32,202.49,25.84,1000
+4757,7,E07000107,2,65.95,243.38,25.84,2000
+5362,7,E07000107,3,71.76,273.56,25.84,1000
+6051,7,E07000107,4,76.62,368.34,25.84,2000
+3659,8,E07000107,0,51.19,413.63,25.84,1000
+6593,9,E07000107,1,60.13,213.75,25.84,1000
+6919,9,E07000107,2,74.68,281.69,25.84,2000
+7245,9,E07000107,3,85.34,326.44,25.84,1000
+7571,9,E07000107,4,94.09,510.33,18.64,2000
+7897,10,E07000107,0,65.34,573.11,25.84,2000
+8581,11,E07000107,1,60.13,213.75,25.84,2000
+8582,11,E07000107,2,74.68,281.69,25.84,2000
+8583,11,E07000107,3,85.34,326.44,25.84,2000
+8584,11,E07000107,4,94.09,510.33,25.84,2000
+8585,12,E07000107,0,65.34,573.11,18.64,2000
+75,1,E06000015,1,54.32,337.51,18.64,2000
+401,1,E06000015,2,64.98,454.53,25.84,1000
+727,1,E06000015,3,71.76,668.29,25.84,2000
+1053,1,E06000015,4,79.53,1332.09,25.84,1000
+2683,2,E06000015,0,54.46,1482.82,25.84,1000
+1379,3,E06000015,1,48.48,337.51,25.84,1000
+1705,3,E06000015,2,55.28,454.53,18.64,2000
+2031,3,E06000015,3,61.09,668.29,25.84,1000
+2357,3,E06000015,4,66.92,1332.09,25.84,1000
+3009,4,E06000015,0,52.28,1496.02,25.84,1000
+4322,5,E06000015,1,54.32,232.63,25.84,1000
+5018,5,E06000015,2,64.98,264.95,25.84,2000
+5661,5,E06000015,3,71.76,277.88,25.84,1000
+6236,5,E06000015,4,79.53,424.37,25.84,1000
+3335,6,E06000015,0,54.46,476.52,18.64,2000
+4422,7,E06000015,1,48.48,232.63,25.84,1000
+5158,7,E06000015,2,55.28,264.95,25.84,1000
+5819,7,E06000015,3,61.09,277.88,25.84,1000
+6480,7,E06000015,4,66.92,424.37,25.84,1000
+3661,8,E06000015,0,52.28,476.52,25.84,1000
+6595,9,E06000015,1,54.32,152.44,18.64,2000
+6921,9,E06000015,2,64.98,187.23,25.84,2000
+7247,9,E06000015,3,71.76,222,25.84,1000
+7573,9,E06000015,4,79.53,352.9,25.84,1000
+7899,10,E06000015,0,54.46,392.63,25.84,2000
+8586,11,E06000015,1,54.32,152.44,25.84,2000
+8587,11,E06000015,2,64.98,187.23,25.84,2000
+8588,11,E06000015,3,71.76,222,25.84,2000
+8589,11,E06000015,4,79.53,352.9,25.84,2000
+8590,12,E06000015,0,54.46,392.63,18.64,2000
+76,1,E07000035,1,54.32,218.27,25.84,1000
+402,1,E07000035,2,64.98,265.52,25.84,1000
+728,1,E07000035,3,71.76,312.78,18.64,2000
+1054,1,E07000035,4,79.53,465.79,25.84,1000
+2684,2,E07000035,0,54.46,523.06,25.84,1000
+1380,3,E07000035,1,48.48,218.27,25.84,1000
+1706,3,E07000035,2,55.28,265.52,25.84,1000
+2032,3,E07000035,3,61.09,312.78,25.84,1000
+2358,3,E07000035,4,66.92,465.79,18.64,2000
+3010,4,E07000035,0,52.28,523.06,25.84,1000
+4323,5,E07000035,1,54.32,312.33,25.84,1000
+5019,5,E07000035,2,64.98,389.87,18.64,2000
+5662,5,E07000035,3,71.76,482.48,25.84,1000
+6237,5,E07000035,4,79.53,684.97,18.64,2000
+3336,6,E07000035,0,54.46,769.23,25.84,1000
+4423,7,E07000035,1,48.48,312.33,25.84,1000
+5159,7,E07000035,2,55.28,389.87,25.84,1000
+5820,7,E07000035,3,61.09,482.48,25.84,1000
+6481,7,E07000035,4,66.92,684.97,25.84,1000
+3662,8,E07000035,0,52.28,769.23,25.84,1000
+6596,9,E07000035,1,54.32,170.65,25.84,1000
+6922,9,E07000035,2,64.98,210.44,25.84,2000
+7248,9,E07000035,3,71.76,246.86,18.64,2000
+7574,9,E07000035,4,79.53,382.74,25.84,1000
+7900,10,E07000035,0,54.46,429.87,25.84,2000
+8591,11,E07000035,1,54.32,170.65,25.84,2000
+8592,11,E07000035,2,64.98,210.44,25.84,2000
+8593,11,E07000035,3,71.76,246.86,25.84,2000
+8594,11,E07000035,4,79.53,382.74,25.84,2000
+8595,12,E07000035,0,54.46,429.87,18.64,2000
+77,1,E08000017,1,53.35,240.74,25.84,1000
+403,1,E08000017,2,61.09,290.29,25.84,1000
+729,1,E08000017,3,65.95,348.75,25.84,1000
+1055,1,E08000017,4,76.62,526.52,25.84,1000
+2685,2,E08000017,0,55.56,644.4,25.84,1000
+1381,3,E08000017,1,48.48,240.74,18.64,2000
+1707,3,E08000017,2,55.28,290.29,25.84,1000
+2033,3,E08000017,3,59.16,348.75,25.84,1000
+2359,3,E08000017,4,66.92,526.52,25.84,1000
+3011,4,E08000017,0,54.46,644.4,18.64,2000
+4394,5,E08000017,1,53.35,299.42,25.84,1000
+4874,5,E08000017,2,61.09,346.81,25.84,2000
+5505,5,E08000017,3,65.95,411.43,25.84,1000
+6110,5,E08000017,4,76.62,641.91,18.64,2000
+3337,6,E08000017,0,55.56,720.86,25.84,1000
+4548,7,E08000017,1,48.48,299.42,25.84,1000
+4816,7,E08000017,2,55.28,346.81,25.84,1000
+5852,7,E08000017,3,59.16,411.43,25.84,2000
+6208,7,E08000017,4,66.92,641.91,25.84,1000
+3663,8,E08000017,0,54.46,720.86,25.84,1000
+6597,9,E08000017,1,53.35,142.52,25.84,1000
+6923,9,E08000017,2,55.28,170.65,25.84,2000
+7249,9,E08000017,3,65.95,195.52,25.84,1000
+7575,9,E08000017,4,76.62,266.78,25.84,1000
+7901,10,E08000017,0,55.56,299.61,18.64,2000
+8596,11,E08000017,1,53.35,142.52,25.84,2000
+8597,11,E08000017,2,55.28,170.65,25.84,2000
+8598,11,E08000017,3,65.95,195.52,25.84,2000
+8599,11,E08000017,4,76.62,266.78,25.84,2000
+8600,12,E08000017,0,55.56,299.61,18.64,2000
+85,1,E06000059,1,51.41,265.52,18.64,2000
+411,1,E06000059,2,58.19,319.54,25.84,1000
+737,1,E06000059,3,64.98,396.03,25.84,1000
+1063,1,E06000059,4,74.68,571.54,25.84,1000
+2693,2,E06000059,0,57.73,641.86,25.84,1000
+1389,3,E06000059,1,49.46,265.52,25.84,1000
+1715,3,E06000059,2,57.22,319.54,18.64,2000
+2041,3,E06000059,3,64.98,396.03,25.84,1000
+2367,3,E06000059,4,77.58,571.54,25.84,1000
+3019,4,E06000059,0,57.73,641.86,25.84,1000
+4205,5,E06000059,1,51.41,230.45,25.84,1000
+4841,5,E06000059,2,58.19,288.6,25.84,2000
+5472,5,E06000059,3,64.98,366.19,25.84,1000
+6010,5,E06000059,4,74.68,504.03,25.84,1000
+3345,6,E06000059,0,57.73,566.05,18.64,2000
+3921,7,E06000059,1,49.46,230.45,25.84,1000
+5118,7,E06000059,2,57.22,288.6,25.84,1000
+5698,7,E06000059,3,64.98,366.19,25.84,1000
+6410,7,E06000059,4,77.58,504.03,18.64,2000
+3671,8,E06000059,0,57.73,566.05,25.84,1000
+6605,9,E06000059,1,51.41,210.44,18.64,2000
+6931,9,E06000059,2,58.19,266.78,25.84,1000
+7257,9,E06000059,3,64.98,326.44,25.84,2000
+7583,9,E06000059,4,74.68,560.03,25.84,1000
+7909,10,E06000059,0,57.73,628.94,25.84,1000
+8601,11,E06000059,1,51.41,210.44,25.84,2000
+8602,11,E06000059,2,58.19,266.78,25.84,2000
+8603,11,E06000059,3,64.98,326.44,25.84,2000
+8604,11,E06000059,4,74.68,560.03,25.84,2000
+8605,12,E06000059,0,57.73,628.94,18.64,2000
+78,1,E07000108,1,60.13,207.02,25.84,1000
+404,1,E07000108,2,74.68,265.52,18.64,2000
+730,1,E07000108,3,85.34,312.78,25.84,1000
+1056,1,E07000108,4,94.09,432.05,25.84,1000
+2686,2,E07000108,0,65.34,485.17,25.84,1000
+1382,3,E07000108,1,54.32,207.02,25.84,1000
+1708,3,E07000108,2,65.95,265.52,25.84,1000
+2034,3,E07000108,3,71.76,312.78,18.64,2000
+2360,3,E07000108,4,76.62,432.05,25.84,1000
+3012,4,E07000108,0,51.19,485.17,25.84,2000
+3996,5,E07000108,1,60.13,208.95,18.64,2000
+4611,5,E07000108,2,74.68,254.18,25.84,1000
+5263,5,E07000108,3,85.34,299.42,25.84,1000
+5948,5,E07000108,4,94.09,435.11,25.84,1000
+3338,6,E07000108,0,65.34,488.63,25.84,1000
+4063,7,E07000108,1,54.32,208.95,25.84,1000
+4758,7,E07000108,2,65.95,254.18,18.64,2000
+5363,7,E07000108,3,71.76,299.42,25.84,1000
+6052,7,E07000108,4,76.62,435.11,25.84,2000
+3664,8,E07000108,0,51.19,488.63,18.64,2000
+6598,9,E07000108,1,60.13,164.05,25.84,1000
+6924,9,E07000108,2,74.68,222,18.64,2000
+7250,9,E07000108,3,85.34,266.78,25.84,1000
+7576,9,E07000108,4,94.09,371.14,25.84,1000
+7902,10,E07000108,0,65.34,416.81,25.84,1000
+8606,11,E07000108,1,60.13,164.05,25.84,2000
+8607,11,E07000108,2,74.68,222,25.84,2000
+8608,11,E07000108,3,85.34,266.78,25.84,2000
+8609,11,E07000108,4,94.09,371.14,25.84,2000
+8610,12,E07000108,0,65.34,416.81,18.64,2000
+79,1,E08000027,1,55.28,216.01,25.84,1000
+405,1,E08000027,2,61.09,265.52,25.84,1000
+731,1,E08000027,3,72.73,301.48,25.84,1000
+1057,1,E08000027,4,84.37,429.8,18.64,2000
+2687,2,E08000027,0,41.39,482.67,18.64,2000
+1383,3,E08000027,1,48.48,216.01,25.84,1000
+1709,3,E08000027,2,52.38,265.52,25.84,1000
+2035,3,E08000027,3,63.04,301.48,25.84,2000
+2361,3,E08000027,4,71.76,429.8,25.84,1000
+3013,4,E08000027,0,49.01,482.67,25.84,2000
+4285,5,E08000027,1,55.28,208.95,18.64,2000
+4895,5,E08000027,2,61.09,254.18,25.84,1000
+5526,5,E08000027,3,72.73,299.42,25.84,1000
+6178,5,E08000027,4,84.37,460.94,18.64,2000
+3339,6,E08000027,0,41.39,517.66,25.84,1000
+4506,7,E08000027,1,48.48,208.95,25.84,1000
+5191,7,E08000027,2,52.38,254.18,25.84,2000
+5782,7,E08000027,3,63.04,299.42,25.84,1000
+6443,7,E08000027,4,71.76,460.94,25.84,1000
+3665,8,E08000027,0,49.01,517.66,25.84,1000
+6599,9,E08000027,1,55.28,152.44,25.84,1000
+6925,9,E08000027,2,61.09,187.23,25.84,1000
+7251,9,E08000027,3,72.73,222,25.84,1000
+7577,9,E08000027,4,84.37,299.91,18.64,2000
+7903,10,E08000027,0,41.39,336.8,25.84,1000
+8611,11,E08000027,1,55.28,152.44,25.84,2000
+8612,11,E08000027,2,61.09,187.23,25.84,2000
+8613,11,E08000027,3,72.73,222,25.84,2000
+8614,11,E08000027,4,84.37,299.91,25.84,2000
+8615,12,E08000027,0,41.39,336.8,18.64,2000
+81,1,E09000009,1,68.85,265.52,25.84,2000
+407,1,E09000009,2,81.46,362.28,25.84,1000
+733,1,E09000009,3,88.25,429.8,18.64,2000
+1059,1,E09000009,4,106.66,670.55,25.84,2000
+2689,2,E09000009,0,74.06,753.03,25.84,1000
+1385,3,E09000009,1,61.09,265.52,25.84,1000
+1711,3,E09000009,2,66.92,362.28,25.84,1000
+2037,3,E09000009,3,74.68,429.8,25.84,2000
+2363,3,E09000009,4,87.29,670.55,18.64,2000
+3015,4,E09000009,0,63.17,753.03,25.84,2000
+3958,5,E09000009,1,68.85,254.18,25.84,1000
+4573,5,E09000009,2,81.46,323.09,25.84,2000
+5225,5,E09000009,3,88.25,411.43,25.84,1000
+5910,5,E09000009,4,106.66,549.29,25.84,2000
+3341,6,E09000009,0,74.06,616.87,25.84,1000
+4172,7,E09000009,1,61.09,254.18,18.64,2000
+4673,7,E09000009,2,66.92,323.09,25.84,1000
+5325,7,E09000009,3,74.68,411.43,25.84,1000
+5877,7,E09000009,4,87.29,549.29,18.64,2000
+3667,8,E09000009,0,63.17,616.87,25.84,1000
+6601,9,E09000009,1,68.85,371.14,25.84,1000
+6927,9,E09000009,2,81.46,493.77,25.84,1000
+7253,9,E09000009,3,88.25,561.7,18.64,2000
+7579,9,E09000009,4,106.66,949.44,25.84,1000
+7905,10,E09000009,0,74.06,1064.4,25.84,1000
+8616,11,E09000009,1,68.85,371.14,25.84,2000
+8617,11,E09000009,2,81.46,493.77,25.84,2000
+8618,11,E09000009,3,88.25,561.7,25.84,2000
+8619,11,E09000009,4,106.66,949.44,25.84,2000
+8620,12,E09000009,0,74.06,1064.4,18.64,2000
+82,1,E07000009,1,57.22,382.52,25.84,2000
+408,1,E07000009,2,67.88,454.53,25.84,1000
+734,1,E07000009,3,74.68,596.27,25.84,1000
+1060,1,E07000009,4,85.34,810.02,25.84,2000
+2690,2,E07000009,0,38.11,909.71,25.84,1000
+1386,3,E07000009,1,52.38,382.52,18.64,2000
+1712,3,E07000009,2,61.09,454.53,25.84,1000
+2038,3,E07000009,3,66.92,596.27,25.84,2000
+2364,3,E07000009,4,74.68,810.02,25.84,1000
+3016,4,E07000009,0,58.82,909.71,18.64,2000
+4131,5,E07000009,1,57.22,346.81,25.84,1000
+4712,5,E07000009,2,67.88,527.73,25.84,1000
+5431,5,E07000009,3,74.68,641.91,25.84,1000
+6141,5,E07000009,4,85.34,1184.71,18.64,2000
+3342,6,E07000009,0,38.11,1330.48,25.84,1000
+4248,7,E07000009,1,52.38,346.81,18.64,2000
+4974,7,E07000009,2,61.09,527.73,25.84,1000
+5617,7,E07000009,3,66.92,641.91,25.84,1000
+6279,7,E07000009,4,74.68,1184.71,25.84,1000
+3668,8,E07000009,0,58.82,1330.48,25.84,1000
+6602,9,E07000009,1,57.22,178.94,25.84,1000
+6928,9,E07000009,2,67.88,222,25.84,1000
+7254,9,E07000009,3,74.68,283.35,25.84,2000
+7580,9,E07000009,4,85.34,475.54,25.84,1000
+7906,10,E07000009,0,38.11,534.03,18.44,2000
+8621,11,E07000009,1,57.22,178.94,25.84,2000
+8622,11,E07000009,2,67.88,222,25.84,2000
+8623,11,E07000009,3,74.68,283.35,25.84,2000
+8624,11,E07000009,4,85.34,475.54,25.84,2000
+8625,12,E07000009,0,38.11,534.03,18.64,2000
+84,1,E07000040,1,51.41,218.27,25.84,2000
+410,1,E07000040,2,58.19,265.52,25.84,1000
+736,1,E07000040,3,64.98,312.78,25.84,1000
+1062,1,E07000040,4,74.68,432.05,18.64,2000
+2692,2,E07000040,0,57.73,485.17,18.64,2000
+1388,3,E07000040,1,49.46,218.27,25.84,1000
+1714,3,E07000040,2,57.22,265.52,25.84,1000
+2040,3,E07000040,3,64.98,312.78,25.84,1000
+2366,3,E07000040,4,77.58,432.05,25.84,1000
+3018,4,E07000040,0,57.73,485.17,25.84,1000
+4204,5,E07000040,1,51.41,185.27,25.84,1000
+4840,5,E07000040,2,58.19,221.86,25.84,2000
+5471,5,E07000040,3,64.98,273.56,25.84,1000
+6009,5,E07000040,4,74.68,372.67,25.84,1000
+3344,6,E07000040,0,57.73,418.48,25.84,1000
+3920,7,E07000040,1,49.46,185.27,25.84,1000
+5117,7,E07000040,2,57.22,221.86,25.84,1000
+5697,7,E07000040,3,64.98,273.56,25.84,1000
+6409,7,E07000040,4,77.58,372.67,25.84,1000
+3670,8,E07000040,0,57.73,418.48,25.84,1000
+6604,9,E07000040,1,51.41,178.94,25.84,1000
+6930,9,E07000040,2,58.19,230.32,25.84,1000
+7256,9,E07000040,3,64.98,283.35,25.84,2000
+7582,9,E07000040,4,74.68,439.08,18.64,2000
+7908,10,E07000040,0,57.73,493.13,25.84,1000
+8626,11,E07000040,1,51.41,178.94,25.84,2000
+8627,11,E07000040,2,58.19,230.32,25.84,2000
+8628,11,E07000040,3,64.98,283.35,25.84,2000
+8629,11,E07000040,4,74.68,439.08,25.84,2000
+8630,12,E07000040,0,57.73,493.13,18.64,2000
+86,1,E07000085,1,60.13,240.74,25.84,1000
+412,1,E07000085,2,74.68,285.77,25.84,1000
+738,1,E07000085,3,85.34,337.51,18.64,2000
+1064,1,E07000085,4,94.09,481.49,25.84,1000
+2694,2,E07000085,0,65.34,540.76,25.84,1000
+1390,3,E07000085,1,54.32,240.74,25.84,1000
+1716,3,E07000085,2,65.95,285.77,25.84,1000
+2042,3,E07000085,3,71.76,337.51,25.84,1000
+2368,3,E07000085,4,76.62,481.49,18.64,2000
+3020,4,E07000085,0,51.19,540.76,25.84,1000
+3997,5,E07000085,1,60.13,191.77,25.84,1000
+4612,5,E07000085,2,74.68,254.18,25.84,1000
+5264,5,E07000085,3,85.34,277.88,25.84,1000
+5949,5,E07000085,4,94.09,389.87,18.64,2000
+3346,6,E07000085,0,65.34,437.85,25.84,2000
+4064,7,E07000085,1,54.32,191.77,18.64,2000
+4759,7,E07000085,2,65.95,254.18,25.84,1000
+5364,7,E07000085,3,71.76,277.88,18.64,2000
+6053,7,E07000085,4,76.62,389.87,18.64,2000
+3672,8,E07000085,0,51.19,437.85,25.84,1000
+6606,9,E07000085,1,60.13,213.75,25.84,1000
+6932,9,E07000085,2,74.68,281.69,25.84,1000
+7258,9,E07000085,3,85.34,352.9,18.32,2000
+7584,9,E07000085,4,94.09,631.29,25.84,1000
+7910,10,E07000085,0,65.34,708.97,25.84,1000
+8631,11,E07000085,1,60.13,213.75,25.84,2000
+8632,11,E07000085,2,74.68,281.69,25.84,2000
+8633,11,E07000085,3,85.34,352.9,25.84,2000
+8634,11,E07000085,4,94.09,631.29,25.84,2000
+8635,12,E07000085,0,65.34,708.97,18.64,2000
+87,1,E07000242,1,57.22,270.01,25.84,1000
+413,1,E07000242,2,67.88,333,25.84,1000
+739,1,E07000242,3,74.68,429.8,25.84,1000
+1065,1,E07000242,4,85.34,713.25,25.84,1000
+2695,2,E07000242,0,38.11,801.02,25.84,1000
+1391,3,E07000242,1,52.38,270.01,18.64,2000
+1717,3,E07000242,2,61.09,333,25.84,1000
+2043,3,E07000242,3,66.92,429.8,25.84,1000
+2369,3,E07000242,4,74.68,713.25,25.84,2000
+3021,4,E07000242,0,58.82,801.02,18.64,2000
+4132,5,E07000242,1,57.22,228.3,25.84,1000
+4713,5,E07000242,2,67.88,299.42,25.84,1000
+5432,5,E07000242,3,74.68,368.34,25.84,1000
+6142,5,E07000242,4,85.34,641.91,25.84,1000
+3347,6,E07000242,0,38.11,720.86,25.84,2000
+4249,7,E07000242,1,52.38,228.3,25.84,1000
+4975,7,E07000242,2,61.09,299.42,18.64,2000
+5618,7,E07000242,3,66.92,368.34,25.84,1000
+6280,7,E07000242,4,74.68,641.91,18.64,2000
+3673,8,E07000242,0,58.82,720.86,25.84,1000
+6607,9,E07000242,1,57.22,240.25,25.84,1000
+6933,9,E07000242,2,67.88,299.91,25.84,1000
+7259,9,E07000242,3,74.68,420.86,25.84,1000
+7585,9,E07000242,4,85.34,614.72,25.84,1000
+7911,10,E07000242,0,38.11,690.36,18.44,2000
+8636,11,E07000242,1,57.22,240.25,25.84,2000
+8637,11,E07000242,2,67.88,299.91,25.84,2000
+8638,11,E07000242,3,74.68,420.86,25.84,2000
+8639,11,E07000242,4,85.34,614.72,25.84,2000
+8640,12,E07000242,0,38.11,690.36,18.64,2000
+88,1,E07000137,1,54.32,337.51,25.84,1000
+414,1,E07000137,2,64.98,443.31,18.64,2000
+740,1,E07000137,3,71.76,596.27,25.84,1000
+1066,1,E07000137,4,79.53,976.55,25.84,1000
+2696,2,E07000137,0,54.46,1096.7,25.84,1000
+1392,3,E07000137,1,48.48,337.51,25.84,2000
+1718,3,E07000137,2,55.28,443.31,25.84,1000
+2044,3,E07000137,3,61.09,596.27,18.64,2000
+2370,3,E07000137,4,66.92,976.55,25.84,2000
+3022,4,E07000137,0,52.28,1096.7,25.84,1000
+4324,5,E07000137,1,54.32,346.81,25.84,1000
+5020,5,E07000137,2,64.98,435.11,25.84,1000
+5663,5,E07000137,3,71.76,594.49,25.84,1000
+6238,5,E07000137,4,79.53,958.52,25.84,1000
+3348,6,E07000137,0,54.46,1076.47,25.84,2000
+4424,7,E07000137,1,48.48,346.81,25.84,1000
+5160,7,E07000137,2,55.28,435.11,25.84,1000
+5821,7,E07000137,3,61.09,594.49,25.84,1000
+6482,7,E07000137,4,66.92,958.52,18.64,2000
+3674,8,E07000137,0,52.28,1076.47,18.64,2000
+6608,9,E07000137,1,54.32,135.86,25.84,1000
+6934,9,E07000137,2,64.98,170.65,18.64,2000
+7260,9,E07000137,3,71.76,195.52,25.84,1000
+7586,9,E07000137,4,79.53,248.54,25.84,1000
+7912,10,E07000137,0,54.46,279.15,25.84,1000
+8641,11,E07000137,1,54.32,135.86,25.84,2000
+8642,11,E07000137,2,64.98,170.65,25.84,2000
+8643,11,E07000137,3,71.76,195.52,25.84,2000
+8644,11,E07000137,4,79.53,248.54,25.84,2000
+8645,12,E07000137,0,54.46,279.15,18.64,2000
+90,1,E06000011,1,53.35,240.74,18.64,2000
+416,1,E06000011,2,61.09,285.77,25.84,2000
+742,1,E06000011,3,65.95,362.28,25.84,1000
+1068,1,E06000011,4,76.62,504.02,25.84,1000
+2698,2,E06000011,0,55.56,566.02,25.84,1000
+1394,3,E06000011,1,48.48,240.74,25.84,2000
+1720,3,E06000011,2,55.28,285.77,18.64,2000
+2046,3,E06000011,3,59.16,362.28,25.84,1000
+2372,3,E06000011,4,66.92,504.02,25.84,2000
+3024,4,E06000011,0,54.46,566.02,25.84,1000
+4395,5,E06000011,1,53.35,208.95,25.84,1000
+4875,5,E06000011,2,61.09,230.45,25.84,2000
+5506,5,E06000011,3,65.95,277.88,25.84,1000
+6111,5,E06000011,4,76.62,368.34,25.84,1000
+3350,6,E06000011,0,55.56,413.63,18.64,2000
+4549,7,E06000011,1,48.48,208.95,25.84,1000
+4817,7,E06000011,2,55.28,230.45,25.84,1000
+5853,7,E06000011,3,59.16,277.88,25.84,2000
+6209,7,E06000011,4,66.92,368.34,18.64,2000
+3676,8,E06000011,0,54.46,413.63,25.84,1000
+6610,9,E06000011,1,53.35,139.16,18.64,2000
+6936,9,E06000011,2,55.28,175.61,25.84,1000
+7262,9,E06000011,3,65.95,210.44,25.84,1000
+7588,9,E06000011,4,76.62,291.63,25.84,2000
+7914,10,E06000011,0,55.56,327.48,25.84,1000
+8646,11,E06000011,1,53.35,139.16,25.84,2000
+8647,11,E06000011,2,55.28,175.61,25.84,2000
+8648,11,E06000011,3,65.95,210.44,25.84,2000
+8649,11,E06000011,4,76.62,291.63,25.84,2000
+8650,12,E06000011,0,55.56,327.48,18.64,2000
+91,1,E07000193,1,55.28,348.75,25.84,1000
+417,1,E07000193,2,61.09,443.31,25.84,2000
+743,1,E07000193,3,72.73,645.79,18.64,2000
+1069,1,E07000193,4,84.37,1404.07,25.84,1000
+2699,2,E07000193,0,41.39,1482.82,25.84,1000
+1395,3,E07000193,1,48.48,348.75,25.84,2000
+1721,3,E07000193,2,52.38,443.31,25.84,1000
+2047,3,E07000193,3,63.04,645.79,25.84,1000
+2373,3,E07000193,4,71.76,1404.07,18.64,2000
+3025,4,E07000193,0,49.01,1576.82,25.84,1000
+4286,5,E07000193,1,55.28,230.45,25.84,2000
+4896,5,E07000193,2,61.09,299.42,25.84,1000
+5527,5,E07000193,3,72.73,357.57,25.84,1000
+6179,5,E07000193,4,84.37,504.03,25.84,1000
+3351,6,E07000193,0,41.39,566.05,25.84,1000
+4507,7,E07000193,1,48.48,230.45,25.84,1000
+5192,7,E07000193,2,52.38,299.42,25.84,2000
+5783,7,E07000193,3,63.04,357.57,25.84,1000
+6444,7,E07000193,4,71.76,504.03,25.84,1000
+3677,8,E07000193,0,49.01,566.05,25.84,1000
+6611,9,E07000193,1,55.28,142.52,25.84,2000
+6937,9,E07000193,2,61.09,178.94,25.84,1000
+7263,9,E07000193,3,72.73,230.32,18.64,2000
+7589,9,E07000193,4,84.37,318.15,25.84,2000
+7915,10,E07000193,0,41.39,357.27,25.84,1000
+8651,11,E07000193,1,55.28,142.52,25.84,2000
+8652,11,E07000193,2,61.09,178.94,25.84,2000
+8653,11,E07000193,3,72.73,230.32,25.84,2000
+8654,11,E07000193,4,84.37,318.15,25.84,2000
+8655,12,E07000193,0,41.39,357.27,18.64,2000
+264,1,E07000244,1,57.22,236.23,25.84,1000
+590,1,E07000244,2,67.88,306,25.84,1000
+916,1,E07000244,3,74.68,362.28,18.64,2000
+1242,1,E07000244,4,85.34,479.23,25.84,1000
+2872,2,E07000244,0,38.11,533.19,25.84,2000
+1568,3,E07000244,1,52.38,236.23,25.84,1000
+1894,3,E07000244,2,61.09,306,25.84,2000
+2220,3,E07000244,3,66.92,362.28,25.84,1000
+2546,3,E07000244,4,74.68,479.23,18.64,2000
+3198,4,E07000244,0,58.82,533.19,25.84,1000
+4156,5,E07000244,1,57.22,277.88,18.64,2000
+4737,5,E07000244,2,67.88,366.19,25.84,1000
+5456,5,E07000244,3,74.68,435.11,18.64,2000
+6166,5,E07000244,4,85.34,775.42,25.84,1000
+3524,6,E07000244,0,38.11,870.86,25.84,1000
+4273,7,E07000244,1,52.38,277.88,25.84,1000
+4999,7,E07000244,2,61.09,366.19,25.84,1000
+5642,7,E07000244,3,66.92,435.11,18.64,2000
+6304,7,E07000244,4,74.68,775.42,25.84,1000
+3850,8,E07000244,0,58.82,870.86,25.84,2000
+6784,9,E07000244,1,57.22,164.05,25.84,1000
+7110,9,E07000244,2,67.88,195.52,25.84,1000
+7436,9,E07000244,3,74.68,240.25,18.64,2000
+7762,9,E07000244,4,85.34,354.57,25.84,1000
+8088,10,E07000244,0,38.11,398.19,25.84,1000
+8656,11,E07000244,1,57.22,164.05,25.84,2000
+8657,11,E07000244,2,67.88,195.52,25.84,2000
+8658,11,E07000244,3,74.68,240.25,25.84,2000
+8659,11,E07000244,4,85.34,354.57,25.84,2000
+8660,12,E07000244,0,38.11,398.19,18.64,2000
+92,1,E07000061,1,60.13,207.02,25.84,1000
+418,1,E07000061,2,74.68,279.01,25.84,2000
+744,1,E07000061,3,85.34,348.75,25.84,1000
+1070,1,E07000061,4,94.09,479.23,25.84,1000
+2700,2,E07000061,0,65.34,533.19,25.84,1000
+1396,3,E07000061,1,54.32,207.02,18.64,2000
+1722,3,E07000061,2,65.95,279.01,25.84,1000
+2048,3,E07000061,3,71.76,348.75,25.84,1000
+2374,3,E07000061,4,76.62,479.23,25.84,1000
+3026,4,E07000061,0,51.19,533.19,18.64,2000
+3998,5,E07000061,1,60.13,346.81,25.84,1000
+4613,5,E07000061,2,74.68,527.73,18.64,2000
+5265,5,E07000061,3,85.34,777.6,25.84,1000
+5950,5,E07000061,4,94.09,1139.48,25.84,1000
+3352,6,E07000061,0,65.34,1279.69,25.84,1000
+4065,7,E07000061,1,54.32,346.81,25.84,1000
+4760,7,E07000061,2,65.95,527.73,25.84,1000
+5365,7,E07000061,3,71.76,777.6,25.84,1000
+6054,7,E07000061,4,76.62,1139.48,25.84,1000
+3678,8,E07000061,0,51.19,1279.69,25.84,1000
+6612,9,E07000061,1,60.13,203.8,25.84,2000
+6938,9,E07000061,2,74.68,266.78,25.84,1000
+7264,9,E07000061,3,85.34,326.44,25.84,1000
+7590,9,E07000061,4,94.09,737.32,25.84,2000
+7916,10,E07000061,0,65.34,828.05,18.44,2000
+8661,11,E07000061,1,60.13,203.8,25.84,2000
+8662,11,E07000061,2,74.68,266.78,25.84,2000
+8663,11,E07000061,3,85.34,326.44,25.84,2000
+8664,11,E07000061,4,94.09,737.32,25.84,2000
+8665,12,E07000061,0,65.34,828.05,18.64,2000
+93,1,E07000086,1,60.13,290.29,25.84,1000
+419,1,E07000086,2,74.68,382.52,18.64,2000
+745,1,E07000086,3,85.34,438.8,25.84,1000
+1071,1,E07000086,4,94.09,929.25,25.84,1000
+2701,2,E07000086,0,65.34,1043.62,25.84,1000
+1397,3,E07000086,1,54.32,290.29,25.84,1000
+1723,3,E07000086,2,65.95,382.52,25.84,1000
+2049,3,E07000086,3,71.76,438.8,18.64,2000
+2375,3,E07000086,4,76.62,929.25,25.84,1000
+3027,4,E07000086,0,51.19,1043.62,25.84,1000
+3999,5,E07000086,1,60.13,221.86,25.84,1000
+4614,5,E07000086,2,74.68,284.34,25.84,1000
+5266,5,E07000086,3,85.34,333.86,18.64,2000
+5951,5,E07000086,4,94.09,441.56,25.84,1000
+3353,6,E07000086,0,65.34,495.9,25.84,1000
+4066,7,E07000086,1,54.32,221.86,25.84,1000
+4761,7,E07000086,2,65.95,284.34,25.84,1000
+5366,7,E07000086,3,71.76,333.86,25.84,1000
+6055,7,E07000086,4,76.62,441.56,25.84,1000
+3679,8,E07000086,0,51.19,495.9,18.64,2000
+6613,9,E07000086,1,60.13,210.44,25.84,2000
+6939,9,E07000086,2,74.68,256.83,18.64,2000
+7265,9,E07000086,3,85.34,316.49,25.84,1000
+7591,9,E07000086,4,94.09,478.87,25.84,2000
+7917,10,E07000086,0,65.34,535.88,25.84,1000
+8666,11,E07000086,1,60.13,210.44,25.84,2000
+8667,11,E07000086,2,74.68,256.83,25.84,2000
+8668,11,E07000086,3,85.34,316.49,25.84,2000
+8669,11,E07000086,4,94.09,478.87,25.84,2000
+8670,12,E07000086,0,65.34,535.88,18.64,2000
+95,1,E07000207,1,60.13,672.81,25.84,1000
+421,1,E07000207,2,74.68,825.82,25.84,1000
+747,1,E07000207,3,85.34,1001.29,25.84,1000
+1073,1,E07000207,4,94.09,1136.33,18.64,2000
+2703,2,E07000207,0,65.34,1273.65,18.64,2000
+1399,3,E07000207,1,54.32,672.81,25.84,1000
+1725,3,E07000207,2,65.95,825.82,25.84,1000
+2051,3,E07000207,3,71.76,1001.29,25.84,1000
+2377,3,E07000207,4,76.62,1136.33,25.84,1000
+3029,4,E07000207,0,51.19,1273.65,25.84,1000
+4000,5,E07000207,1,60.13,252.02,25.84,1000
+4615,5,E07000207,2,74.68,318.78,25.84,1000
+5267,5,E07000207,3,85.34,389.87,25.84,2000
+5952,5,E07000207,4,94.09,728.05,25.84,1000
+3355,6,E07000207,0,65.34,817.63,25.84,1000
+4067,7,E07000207,1,54.32,252.02,25.84,1000
+4762,7,E07000207,2,65.95,318.78,25.84,1000
+5367,7,E07000207,3,71.76,389.87,25.84,1000
+6056,7,E07000207,4,76.62,728.05,25.84,1000
+3681,8,E07000207,0,51.19,817.63,25.84,2000
+6615,9,E07000207,1,60.13,291.63,25.84,2000
+6941,9,E07000207,2,74.68,422.54,25.84,1000
+7267,9,E07000207,3,85.34,510.33,25.84,1000
+7593,9,E07000207,4,94.09,1173.11,18.64,2000
+7919,10,E07000207,0,65.34,1317.44,25.84,1000
+8671,11,E07000207,1,60.13,291.63,25.84,2000
+8672,11,E07000207,2,74.68,422.54,25.84,2000
+8673,11,E07000207,3,85.34,510.33,25.84,2000
+8674,11,E07000207,4,94.09,1173.11,25.84,2000
+8675,12,E07000207,0,65.34,1317.44,18.64,2000
+96,1,E09000010,1,68.85,285.77,18.64,2000
+422,1,E09000010,2,81.46,373.53,25.84,1000
+748,1,E09000010,3,88.25,465.79,25.84,1000
+1074,1,E09000010,4,106.66,834.78,25.84,1000
+2704,2,E09000010,0,74.06,937.52,25.84,2000
+1400,3,E09000010,1,61.09,285.77,25.84,1000
+1726,3,E09000010,2,66.92,373.53,18.64,2000
+2052,3,E09000010,3,74.68,465.79,25.84,1000
+2378,3,E09000010,4,87.29,834.78,25.84,1000
+3030,4,E09000010,0,63.17,937.52,25.84,1000
+3959,5,E09000010,1,68.85,323.09,18.64,2000
+4574,5,E09000010,2,81.46,389.87,25.84,2000
+5226,5,E09000010,3,88.25,482.48,25.84,1000
+5911,5,E09000010,4,106.66,799.12,25.84,2000
+3356,6,E09000010,0,74.06,897.48,18.64,2000
+4173,7,E09000010,1,61.09,323.09,25.84,2000
+4674,7,E09000010,2,66.92,389.87,18.64,2000
+5326,7,E09000010,3,74.68,482.48,25.84,1000
+5878,7,E09000010,4,87.29,799.12,25.84,1000
+3682,8,E09000010,0,63.17,897.48,25.84,2000
+6616,9,E09000010,1,68.85,291.63,18.64,2000
+6942,9,E09000010,2,81.46,405.94,25.84,1000
+7268,9,E09000010,3,88.25,475.54,25.84,1000
+7594,9,E09000010,4,106.66,666.1,25.84,1000
+7920,10,E09000010,0,74.06,748.04,25.84,1000
+8676,11,E09000010,1,68.85,291.63,25.84,2000
+8677,11,E09000010,2,81.46,405.94,25.84,2000
+8678,11,E09000010,3,88.25,475.54,25.84,2000
+8679,11,E09000010,4,106.66,666.1,25.84,2000
+8680,12,E09000010,0,74.06,748.04,18.64,2000
+97,1,E07000072,1,57.22,207.02,25.84,1000
+423,1,E07000072,2,67.88,254.24,25.84,1000
+749,1,E07000072,3,74.68,276.77,18.64,2000
+1075,1,E07000072,4,85.34,407.26,25.84,1000
+2705,2,E07000072,0,38.11,457.37,25.84,2000
+1401,3,E07000072,1,52.38,207.02,25.84,1000
+1727,3,E07000072,2,61.09,254.24,25.84,2000
+2053,3,E07000072,3,66.92,276.77,25.84,1000
+2379,3,E07000072,4,74.68,407.26,18.64,2000
+3031,4,E07000072,0,58.82,457.37,25.84,1000
+4133,5,E07000072,1,57.22,379.12,25.84,1000
+4714,5,E07000072,2,67.88,482.48,18.64,2000
+5433,5,E07000072,3,74.68,594.49,25.84,1000
+6143,5,E07000072,4,85.34,723.76,25.84,1000
+3357,6,E07000072,0,38.11,810.37,25.84,1000
+4250,7,E07000072,1,52.38,379.12,25.84,1000
+4976,7,E07000072,2,61.09,482.48,25.84,1000
+5619,7,E07000072,3,66.92,594.49,25.84,1000
+6281,7,E07000072,4,74.68,723.76,25.84,1000
+3683,8,E07000072,0,58.82,810.37,25.84,2000
+6617,9,E07000072,1,57.22,266.78,25.84,1000
+6943,9,E07000072,2,67.88,354.57,25.84,1000
+7269,9,E07000072,3,74.68,457.3,18.64,2000
+7595,9,E07000072,4,85.34,772.12,25.84,1000
+7921,10,E07000072,0,38.11,867.16,25.84,1000
+8681,11,E07000072,1,57.22,266.78,25.84,2000
+8682,11,E07000072,2,67.88,354.57,25.84,2000
+8683,11,E07000072,3,74.68,457.3,25.84,2000
+8684,11,E07000072,4,85.34,772.12,25.84,2000
+8685,12,E07000072,0,38.11,867.16,18.64,2000
+98,1,E07000208,1,60.13,218.27,25.84,1000
+424,1,E07000208,2,74.68,265.52,25.84,1000
+750,1,E07000208,3,85.34,326.25,25.84,2000
+1076,1,E07000208,4,94.09,454.53,25.84,1000
+2706,2,E07000208,0,65.34,510.43,25.84,2000
+1402,3,E07000208,1,54.32,218.27,18.64,2000
+1728,3,E07000208,2,65.95,265.52,25.84,2000
+2054,3,E07000208,3,71.76,326.25,25.84,1000
+2380,3,E07000208,4,76.62,454.53,25.84,1000
+3032,4,E07000208,0,51.19,510.43,18.64,2000
+4001,5,E07000208,1,60.13,264.95,18.64,2000
+4616,5,E07000208,2,74.68,333.86,25.84,1000
+5268,5,E07000208,3,85.34,389.87,25.84,2000
+5953,5,E07000208,4,94.09,684.97,25.84,1000
+3358,6,E07000208,0,65.34,769.23,25.84,1000
+4068,7,E07000208,1,54.32,264.95,25.84,1000
+4763,7,E07000208,2,65.95,333.86,18.64,2000
+5368,7,E07000208,3,71.76,389.87,25.84,1000
+6057,7,E07000208,4,76.62,684.97,25.84,1000
+3684,8,E07000208,0,51.19,769.23,25.84,2000
+6618,9,E07000208,1,60.13,291.63,25.84,1000
+6944,9,E07000208,2,74.68,387.71,25.84,1000
+7270,9,E07000208,3,85.34,526.89,25.84,1000
+7596,9,E07000208,4,94.09,816.89,25.84,1000
+7922,10,E07000208,0,65.34,917.41,18.44,2000
+8686,11,E07000208,1,60.13,291.63,25.84,2000
+8687,11,E07000208,2,74.68,387.71,25.84,2000
+8688,11,E07000208,3,85.34,526.89,25.84,2000
+8689,11,E07000208,4,94.09,816.89,25.84,2000
+8690,12,E07000208,0,65.34,917.41,18.64,2000
+99,1,E07000036,1,54.32,369,25.84,1000
+425,1,E07000036,2,64.98,474.78,18.64,2000
+751,1,E07000036,3,71.76,645.79,25.84,2000
+1077,1,E07000036,4,79.53,1190.32,25.84,1000
+2707,2,E07000036,0,54.46,1336.79,25.84,2000
+1403,3,E07000036,1,48.48,369,25.84,1000
+1729,3,E07000036,2,55.28,474.78,25.84,2000
+2055,3,E07000036,3,61.09,645.79,18.64,2000
+2381,3,E07000036,4,66.92,1190.32,25.84,1000
+3033,4,E07000036,0,52.28,1336.79,25.84,1000
+4326,5,E07000036,1,54.32,273.56,25.84,1000
+5022,5,E07000036,2,64.98,357.57,25.84,1000
+5665,5,E07000036,3,71.76,424.37,18.64,2000
+6240,5,E07000036,4,79.53,766.84,25.84,1000
+3359,6,E07000036,0,54.46,861.18,25.84,1000
+4426,7,E07000036,1,48.48,273.56,25.84,1000
+5162,7,E07000036,2,55.28,357.57,25.84,2000
+5823,7,E07000036,3,61.09,424.37,25.84,2000
+6484,7,E07000036,4,66.92,766.84,25.84,1000
+3685,8,E07000036,0,52.28,861.18,18.64,2000
+6619,9,E07000036,1,54.32,142.52,25.84,1000
+6945,9,E07000036,2,64.98,177.26,18.64,2000
+7271,9,E07000036,3,71.76,203.8,25.84,1000
+7597,9,E07000036,4,79.53,318.15,25.84,1000
+7923,10,E07000036,0,54.46,357.27,25.84,2000
+8691,11,E07000036,1,54.32,142.52,25.84,2000
+8692,11,E07000036,2,64.98,177.26,25.84,2000
+8693,11,E07000036,3,71.76,203.8,25.84,2000
+8694,11,E07000036,4,79.53,318.15,25.84,2000
+8695,12,E07000036,0,54.46,357.27,18.64,2000
+100,1,E07000041,1,51.41,301.48,25.84,1000
+426,1,E07000041,2,58.19,382.52,25.84,1000
+752,1,E07000041,3,64.98,454.53,25.84,2000
+1078,1,E07000041,4,74.68,834.78,18.64,2000
+2708,2,E07000041,0,57.73,937.52,18.64,2000
+1404,3,E07000041,1,49.46,301.48,25.84,1000
+1730,3,E07000041,2,57.22,382.52,25.84,2000
+2056,3,E07000041,3,64.98,454.53,25.84,1000
+2382,3,E07000041,4,77.58,834.78,25.84,1000
+3034,4,E07000041,0,57.73,937.52,25.84,1000
+4206,5,E07000041,1,51.41,208.95,25.84,1000
+4842,5,E07000041,2,58.19,258.47,18.64,2000
+5473,5,E07000041,3,64.98,320.91,18.64,2000
+6011,5,E07000041,4,74.68,445.9,18.64,2000
+3360,6,E07000041,0,57.73,500.73,25.84,1000
+3922,7,E07000041,1,49.46,208.95,25.84,1000
+5119,7,E07000041,2,57.22,258.47,18.64,2000
+5699,7,E07000041,3,64.98,320.91,18.64,2000
+6411,7,E07000041,4,77.58,445.9,25.84,2000
+3686,8,E07000041,0,57.73,500.73,25.84,1000
+6620,9,E07000041,1,51.41,210.44,25.84,1000
+6946,9,E07000041,2,58.19,256.83,25.84,2000
+7272,9,E07000041,3,64.98,318.15,25.84,1000
+7598,9,E07000041,4,74.68,752.23,18.64,2000
+7924,10,E07000041,0,57.73,844.79,25.84,2000
+8696,11,E07000041,1,51.41,210.44,25.84,2000
+8697,11,E07000041,2,58.19,256.83,25.84,2000
+8698,11,E07000041,3,64.98,318.15,25.84,2000
+8699,11,E07000041,4,74.68,752.23,25.84,2000
+8700,12,E07000041,0,57.73,844.79,18.64,2000
+101,1,E07000087,1,60.13,180.02,18.64,2000
+427,1,E07000087,2,74.68,231.75,25.84,1000
+753,1,E07000087,3,85.34,274.51,25.84,2000
+1079,1,E07000087,4,94.09,407.26,25.84,1000
+2709,2,E07000087,0,65.34,457.37,25.84,1000
+1405,3,E07000087,1,54.32,180.02,25.84,1000
+1731,3,E07000087,2,65.95,231.75,18.64,2000
+2057,3,E07000087,3,71.76,274.51,25.84,1000
+2383,3,E07000087,4,76.62,407.26,25.84,1000
+3035,4,E07000087,0,51.19,457.37,25.84,1000
+4002,5,E07000087,1,60.13,254.18,25.84,1000
+4617,5,E07000087,2,74.68,312.33,25.84,1000
+5269,5,E07000087,3,85.34,374.79,25.84,2000
+5954,5,E07000087,4,94.09,594.49,18.64,2000
+3361,6,E07000087,0,65.34,667.67,18.64,2000
+4069,7,E07000087,1,54.32,254.18,18.64,2000
+4764,7,E07000087,2,65.95,312.33,25.84,1000
+5369,7,E07000087,3,71.76,374.79,18.64,2000
+6058,7,E07000087,4,76.62,594.49,18.64,2000
+3687,8,E07000087,0,51.19,667.67,25.84,1000
+6621,9,E07000087,1,60.13,210.44,18.64,2000
+6947,9,E07000087,2,74.68,256.83,25.84,2000
+7273,9,E07000087,3,85.34,316.49,25.84,1000
+7599,9,E07000087,4,94.09,492.12,25.84,1000
+7925,10,E07000087,0,65.34,552.63,25.84,2000
+8701,11,E07000087,1,60.13,210.44,25.84,2000
+8702,11,E07000087,2,74.68,256.83,25.84,2000
+8703,11,E07000087,3,85.34,316.49,25.84,2000
+8704,11,E07000087,4,94.09,492.12,25.84,2000
+8705,12,E07000087,0,65.34,552.63,18.64,2000
+102,1,E07000010,1,57.22,265.52,25.84,1000
+428,1,E07000010,2,67.88,312.78,25.84,1000
+754,1,E07000010,3,74.68,384.77,18.64,2000
+1080,1,E07000010,4,85.34,704.29,25.84,1000
+2710,2,E07000010,0,38.11,790.93,25.84,1000
+1406,3,E07000010,1,52.38,265.52,25.84,1000
+1732,3,E07000010,2,61.09,312.78,25.84,1000
+2058,3,E07000010,3,66.92,384.77,25.84,1000
+2384,3,E07000010,4,74.68,704.29,18.64,2000
+3036,4,E07000010,0,58.82,790.93,25.84,1000
+4134,5,E07000010,1,57.22,889.57,25.84,1000
+4715,5,E07000010,2,67.88,1281.65,25.84,1000
+5434,5,E07000010,3,74.68,1873.99,25.84,1000
+6144,5,E07000010,4,85.34,1419.49,25.84,1000
+3362,6,E07000010,0,38.11,1419.49,25.84,1000
+4251,7,E07000010,1,52.38,889.57,25.84,1000
+4977,7,E07000010,2,61.09,1281.65,25.84,1000
+5620,7,E07000010,3,66.92,1873.99,25.84,1000
+6282,7,E07000010,4,74.68,2029.87,25.84,1000
+3688,8,E07000010,0,58.82,2838.98,25.84,1000
+6622,9,E07000010,1,57.22,149.16,25.84,1000
+6948,9,E07000010,2,67.88,195.52,25.84,2000
+7274,9,E07000010,3,74.68,230.32,18.64,2000
+7600,9,E07000010,4,85.34,299.91,25.84,1000
+7926,10,E07000010,0,38.11,336.8,25.84,2000
+8706,11,E07000010,1,57.22,149.16,25.84,2000
+8707,11,E07000010,2,67.88,195.52,25.84,2000
+8708,11,E07000010,3,74.68,230.32,25.84,2000
+8709,11,E07000010,4,85.34,299.91,25.84,2000
+8710,12,E07000010,0,38.11,336.8,18.64,2000
+104,1,E07000080,1,51.41,195.78,25.84,1000
+430,1,E07000080,2,58.19,231.75,25.84,1000
+756,1,E07000080,3,64.98,276.77,25.84,1000
+1082,1,E07000080,4,74.68,384.77,25.84,1000
+2712,2,E07000080,0,57.73,432.09,25.84,1000
+1408,3,E07000080,1,49.46,195.78,18.64,2000
+1734,3,E07000080,2,57.22,231.75,25.84,1000
+2060,3,E07000080,3,64.98,276.77,25.84,1000
+2386,3,E07000080,4,77.58,384.77,25.84,1000
+3038,4,E07000080,0,57.73,432.09,18.64,2000
+4207,5,E07000080,1,51.41,254.18,25.84,1000
+4843,5,E07000080,2,58.19,314.49,25.84,1000
+5474,5,E07000080,3,64.98,389.87,25.84,2000
+6012,5,E07000080,4,74.68,594.49,25.84,2000
+3364,6,E07000080,0,57.73,660.39,25.84,1000
+3923,7,E07000080,1,49.46,254.18,25.84,1000
+5120,7,E07000080,2,57.22,314.49,25.84,1000
+5700,7,E07000080,3,64.98,389.87,25.84,1000
+6412,7,E07000080,4,77.58,594.49,25.84,2000
+3690,8,E07000080,0,57.73,660.39,25.84,1000
+6624,9,E07000080,1,51.41,152.44,25.84,1000
+6950,9,E07000080,2,58.19,197.18,25.84,2000
+7276,9,E07000080,3,64.98,230.32,25.84,1000
+7602,9,E07000080,4,74.68,318.15,25.84,1000
+7928,10,E07000080,0,57.73,357.27,18.44,2000
+8711,11,E07000080,1,51.41,152.44,25.84,2000
+8712,11,E07000080,2,58.19,197.18,25.84,2000
+8713,11,E07000080,3,64.98,230.32,25.84,2000
+8714,11,E07000080,4,74.68,318.15,25.84,2000
+8715,12,E07000080,0,57.73,357.27,18.64,2000
+105,1,E07000119,1,54.32,420.81,25.84,1000
+431,1,E07000119,2,62.07,596.27,18.64,2000
+757,1,E07000119,3,68.85,726.81,25.84,1000
+1083,1,E07000119,4,75.65,1482.82,25.84,1000
+2713,2,E07000119,0,58.82,1797.15,25.84,1000
+1409,3,E07000119,1,45.57,420.81,25.84,1000
+1735,3,E07000119,2,56.25,596.27,25.84,1000
+2061,3,E07000119,3,61.09,726.81,18.64,2000
+2387,3,E07000119,4,58.19,1617.81,25.84,1000
+3039,4,E07000119,0,34.85,1797.15,25.84,2000
+4365,5,E07000119,1,54.32,208.95,18.64,2000
+4935,5,E07000119,2,62.07,254.18,25.84,2000
+5578,5,E07000119,3,68.85,299.42,25.84,1000
+6326,5,E07000119,4,75.65,389.87,25.84,1000
+3365,6,E07000119,0,58.82,433.09,25.84,1000
+4477,7,E07000119,1,45.57,208.95,25.84,1000
+5073,7,E07000119,2,56.25,254.18,25.84,2000
+5753,7,E07000119,3,61.09,299.42,25.84,1000
+6377,7,E07000119,4,58.19,389.87,25.84,1000
+3691,8,E07000119,0,34.85,433.09,18.64,2000
+6625,9,E07000119,1,54.32,160.73,25.84,1000
+6951,9,E07000119,2,62.07,213.75,18.64,2000
+7277,9,E07000119,3,68.85,266.78,25.84,1000
+7603,9,E07000119,4,75.65,387.71,25.84,1000
+7929,10,E07000119,0,58.82,435.43,25.84,1000
+8716,11,E07000119,1,54.32,160.73,25.84,2000
+8717,11,E07000119,2,62.07,213.75,25.84,2000
+8718,11,E07000119,3,68.85,266.78,25.84,2000
+8719,11,E07000119,4,75.65,387.71,25.84,2000
+8720,12,E07000119,0,58.82,435.43,18.64,2000
+106,1,E08000037,1,53.35,348.75,25.84,1000
+432,1,E08000037,2,60.13,436.54,25.84,1000
+758,1,E08000037,3,64.01,571.54,25.84,1000
+1084,1,E08000037,4,73.71,904.56,18.64,2000
+2714,2,E08000037,0,58.82,1004.79,18.64,2000
+1410,3,E08000037,1,44.6,348.75,25.84,1000
+1736,3,E08000037,2,52.38,436.54,25.84,1000
+2062,3,E08000037,3,56.25,571.54,25.84,2000
+2388,3,E08000037,4,59.16,904.56,25.84,1000
+3040,4,E08000037,0,50.1,1004.79,25.84,2000
+4534,5,E08000037,1,53.35,198.18,18.64,2000
+5049,5,E08000037,2,60.13,243.38,25.84,1000
+5554,5,E08000037,3,64.01,273.56,25.84,1000
+6353,5,E08000037,4,73.71,346.81,18.64,2000
+3366,6,E08000037,0,58.82,385.24,25.84,1000
+4453,7,E08000037,1,44.6,198.18,18.64,2000
+5100,7,E08000037,2,52.38,243.38,25.84,2000
+5729,7,E08000037,3,56.25,273.56,18.64,2000
+6511,7,E08000037,4,59.16,346.81,25.84,1000
+3692,8,E08000037,0,50.1,385.24,25.84,1000
+6626,9,E08000037,1,44.6,177.26,25.84,1000
+6952,9,E08000037,2,60.13,187.23,25.84,1000
+7278,9,E08000037,3,64.01,222,25.84,1000
+7604,9,E08000037,4,73.71,299.91,18.64,2000
+7930,10,E08000037,0,58.82,336.8,25.84,1000
+8721,11,E08000037,1,44.6,177.26,25.84,2000
+8722,11,E08000037,2,60.13,187.23,25.84,2000
+8723,11,E08000037,3,64.01,222,25.84,2000
+8724,11,E08000037,4,73.71,299.91,25.84,2000
+8725,12,E08000037,0,58.82,336.8,18.64,2000
+107,1,E07000173,1,54.32,276.77,18.64,2000
+433,1,E07000173,2,64.98,362.28,25.84,1000
+759,1,E07000173,3,71.76,454.53,25.84,1000
+1085,1,E07000173,4,79.53,618.77,25.84,2000
+2715,2,E07000173,0,54.46,684.88,25.84,1000
+1411,3,E07000173,1,48.48,276.77,25.84,1000
+1737,3,E07000173,2,55.28,362.28,18.64,2000
+2063,3,E07000173,3,61.09,454.53,25.84,2000
+2389,3,E07000173,4,66.92,618.77,25.84,1000
+3041,4,E07000173,0,52.28,684.88,25.84,2000
+4327,5,E07000173,1,54.32,230.45,18.64,2000
+5023,5,E07000173,2,64.98,280.02,25.84,1000
+5666,5,E07000173,3,71.76,346.81,25.84,1000
+6241,5,E07000173,4,79.53,504.03,25.84,1000
+3367,6,E07000173,0,54.46,559.91,18.64,2000
+4427,7,E07000173,1,48.48,230.45,25.84,1000
+5163,7,E07000173,2,55.28,280.02,25.84,2000
+5824,7,E07000173,3,61.09,346.81,25.84,2000
+6485,7,E07000173,4,66.92,504.03,25.84,1000
+3693,8,E07000173,0,52.28,559.91,25.84,1000
+6627,9,E07000173,1,54.32,160.73,18.64,2000
+6953,9,E07000173,2,64.98,187.23,25.84,1000
+7279,9,E07000173,3,71.76,228.63,25.84,1000
+7605,9,E07000173,4,79.53,316.49,25.84,1000
+7931,10,E07000173,0,54.46,355.43,25.84,1000
+8726,11,E07000173,1,54.32,160.73,25.84,2000
+8727,11,E07000173,2,64.98,187.23,25.84,2000
+8728,11,E07000173,3,71.76,228.63,25.84,2000
+8729,11,E07000173,4,79.53,316.49,25.84,2000
+8730,12,E07000173,0,54.46,355.43,18.64,2000
+108,1,E07000081,1,51.41,207.02,25.84,2000
+434,1,E07000081,2,58.19,265.52,25.84,1000
+760,1,E07000081,3,64.98,301.48,18.64,2000
+1086,1,E07000081,4,74.68,407.26,25.84,2000
+2716,2,E07000081,0,57.73,452.41,25.84,1000
+1412,3,E07000081,1,49.46,207.02,25.84,1000
+1738,3,E07000081,2,57.22,265.52,25.84,1000
+2064,3,E07000081,3,64.98,301.48,25.84,2000
+2390,3,E07000081,4,77.58,407.26,18.64,2000
+3042,4,E07000081,0,57.73,452.41,25.84,2000
+4208,5,E07000081,1,51.41,273.56,18.64,2000
+4844,5,E07000081,2,58.19,318.78,25.84,1000
+5475,5,E07000081,3,64.98,411.43,25.84,2000
+6013,5,E07000081,4,74.68,713,25.84,2000
+3368,6,E07000081,0,57.73,791.99,25.84,1000
+3924,7,E07000081,1,49.46,273.56,18.64,2000
+5121,7,E07000081,2,57.22,318.78,25.84,1000
+5701,7,E07000081,3,64.98,411.43,25.84,1000
+6413,7,E07000081,4,77.58,713,25.84,2000
+3694,8,E07000081,0,57.73,791.99,25.84,1000
+6628,9,E07000081,1,51.41,170.65,25.84,1000
+6954,9,E07000081,2,58.19,203.8,25.84,1000
+7280,9,E07000081,3,64.98,256.83,18.64,2000
+7606,9,E07000081,4,74.68,387.71,25.84,1000
+7932,10,E07000081,0,57.73,435.43,25.84,1000
+8731,11,E07000081,1,51.41,170.65,25.84,2000
+8732,11,E07000081,2,58.19,203.8,25.84,2000
+8733,11,E07000081,3,64.98,256.83,25.84,2000
+8734,11,E07000081,4,74.68,387.71,25.84,2000
+8735,12,E07000081,0,57.73,435.43,18.64,2000
+109,1,E07000088,1,60.13,199.04,25.84,2000
+435,1,E07000088,2,74.68,244.5,25.84,1000
+761,1,E07000088,3,85.34,274.78,25.84,1000
+1087,1,E07000088,4,94.09,348.36,25.84,2000
+2717,2,E07000088,0,65.34,386.96,25.84,1000
+1413,3,E07000088,1,54.32,199.04,18.64,2000
+1739,3,E07000088,2,65.95,244.5,25.84,1000
+2065,3,E07000088,3,71.76,274.78,25.84,2000
+2391,3,E07000088,4,76.62,348.36,25.84,1000
+3043,4,E07000088,0,51.19,386.96,18.64,2000
+4003,5,E07000088,1,60.13,223.68,25.84,1000
+4618,5,E07000088,2,74.68,277.52,18.64,2000
+5270,5,E07000088,3,85.34,321.03,25.84,2000
+5955,5,E07000088,4,94.09,418.39,25.84,1000
+3369,6,E07000088,0,65.34,464.74,25.84,1000
+4070,7,E07000088,1,54.32,223.68,25.84,2000
+4765,7,E07000088,2,65.95,277.52,25.84,1000
+5370,7,E07000088,3,71.76,321.03,25.84,2000
+6059,7,E07000088,4,76.62,418.39,25.84,1000
+3695,8,E07000088,0,51.19,464.74,25.84,1000
+6629,9,E07000088,1,60.13,195.52,25.84,1000
+6955,9,E07000088,2,74.68,230.32,25.84,1000
+7281,9,E07000088,3,85.34,275.06,25.84,2000
+7607,9,E07000088,4,94.09,439.08,25.84,1000
+7933,10,E07000088,0,65.34,493.13,18.44,2000
+8736,11,E07000088,1,60.13,195.52,25.84,2000
+8737,11,E07000088,2,74.68,230.32,25.84,2000
+8738,11,E07000088,3,85.34,275.06,25.84,2000
+8739,11,E07000088,4,94.09,439.08,25.84,2000
+8740,12,E07000088,0,65.34,493.13,18.64,2000
+110,1,E07000109,1,60.13,231.51,25.84,2000
+436,1,E07000109,2,74.68,281.25,18.64,2000
+762,1,E07000109,3,85.34,348.36,25.84,1000
+1088,1,E07000109,4,94.09,506.26,25.84,2000
+2718,2,E07000109,0,65.34,408.2,25.84,1000
+1414,3,E07000109,1,54.32,231.51,25.84,1000
+1740,3,E07000109,2,65.95,281.25,25.84,1000
+2066,3,E07000109,3,71.76,348.36,18.64,2000
+2392,3,E07000109,4,76.62,506.26,25.84,1000
+3044,4,E07000109,0,51.19,408.2,25.84,1000
+4004,5,E07000109,1,60.13,200.92,25.84,1000
+4619,5,E07000109,2,74.68,258.9,25.84,1000
+5271,5,E07000109,3,85.34,287.89,18.64,2000
+5956,5,E07000109,4,94.09,374.87,25.84,1000
+3370,6,E07000109,0,65.34,416.42,25.84,1000
+4071,7,E07000109,1,54.32,200.92,25.84,2000
+4766,7,E07000109,2,65.95,258.9,25.84,1000
+5371,7,E07000109,3,71.76,287.89,25.84,2000
+6060,7,E07000109,4,76.62,374.87,25.84,1000
+3696,8,E07000109,0,51.19,416.42,18.64,2000
+6630,9,E07000109,1,60.13,195.52,25.84,1000
+6956,9,E07000109,2,74.68,248.54,18.64,2000
+7282,9,E07000109,3,85.34,291.63,25.84,2000
+7608,9,E07000109,4,94.09,422.54,25.84,1000
+7934,10,E07000109,0,65.34,474.52,25.84,1000
+8741,11,E07000109,1,60.13,195.52,25.84,2000
+8742,11,E07000109,2,74.68,248.54,25.84,2000
+8743,11,E07000109,3,85.34,291.63,25.84,2000
+8744,11,E07000109,4,94.09,422.54,25.84,2000
+8745,12,E07000109,0,65.34,474.52,18.64,2000
+111,1,E07000145,1,57.22,274.78,25.84,2000
+437,1,E07000145,2,67.88,320.21,25.84,1000
+763,1,E07000145,3,74.68,413.26,25.84,1000
+1089,1,E07000145,4,85.34,716.16,18.64,2000
+2719,2,E07000145,0,38.11,795.52,18.64,2000
+1415,3,E07000145,1,52.38,274.78,25.84,1000
+1741,3,E07000145,2,61.09,320.21,25.84,1000
+2067,3,E07000145,3,66.92,413.26,25.84,1000
+2393,3,E07000145,4,74.68,716.16,25.84,1000
+3045,4,E07000145,0,58.82,795.52,25.84,1000
+4136,5,E07000145,1,57.22,106.94,18.64,2000
+4717,5,E07000145,2,67.88,129.92,25.84,1000
+5436,5,E07000145,3,74.68,141.43,18.64,2000
+6146,5,E07000145,4,85.34,186.28,25.84,1000
+3371,6,E07000145,0,38.11,209.19,25.84,1000
+4253,7,E07000145,1,52.38,106.94,25.84,1000
+4979,7,E07000145,2,61.09,129.92,25.84,1000
+5622,7,E07000145,3,66.92,141.43,18.64,2000
+6284,7,E07000145,4,74.68,186.28,25.84,1000
+3697,8,E07000145,0,58.82,209.19,25.84,1000
+6631,9,E07000145,1,57.22,154.1,25.84,1000
+6957,9,E07000145,2,67.88,187.23,25.84,1000
+7283,9,E07000145,3,74.68,203.8,25.84,2000
+7609,9,E07000145,4,85.34,268.43,18.64,2000
+7935,10,E07000145,0,38.11,301.45,25.84,1000
+8746,11,E07000145,1,57.22,154.1,25.84,2000
+8747,11,E07000145,2,67.88,187.23,25.84,2000
+8748,11,E07000145,3,74.68,203.8,25.84,2000
+8749,11,E07000145,4,85.34,268.43,25.84,2000
+8750,12,E07000145,0,38.11,301.45,18.64,2000
+112,1,E09000011,1,68.85,164.54,18.64,2000
+438,1,E09000011,2,81.46,177.76,25.84,1000
+764,1,E09000011,3,88.25,188.59,25.84,1000
+1090,1,E09000011,4,106.66,211.41,25.84,1000
+2720,2,E09000011,0,74.06,358.82,25.84,1000
+1416,3,E09000011,1,61.09,134.53,25.84,1000
+1742,3,E09000011,2,66.92,157.36,18.64,2000
+2068,3,E09000011,3,74.68,180.17,25.84,1000
+2394,3,E09000011,4,87.29,294.28,25.84,1000
+3046,4,E09000011,0,63.17,420.87,25.84,1000
+3960,5,E09000011,1,68.85,215.03,25.84,1000
+4575,5,E09000011,2,81.46,304.71,25.84,2000
+5227,5,E09000011,3,88.25,317.35,25.84,1000
+5912,5,E09000011,4,106.66,415.1,18.64,2000
+3372,6,E09000011,0,74.06,466.17,18.64,2000
+4174,7,E09000011,1,61.09,215.03,25.84,2000
+4675,7,E09000011,2,66.92,304.71,25.84,2000
+5327,7,E09000011,3,74.68,317.35,18.64,2000
+5879,7,E09000011,4,87.29,415.1,25.84,1000
+3698,8,E09000011,0,63.17,466.17,25.84,1000
+6632,9,E09000011,1,68.85,309.88,18.64,2000
+6958,9,E09000011,2,81.46,439.08,25.84,1000
+7284,9,E09000011,3,88.25,457.3,25.84,2000
+7610,9,E09000011,4,106.66,598.16,25.84,1000
+7936,10,E09000011,0,74.06,671.75,25.84,1000
+8751,11,E09000011,1,68.85,309.88,25.84,2000
+8752,11,E09000011,2,81.46,439.08,25.84,2000
+8753,11,E09000011,3,88.25,457.3,25.84,2000
+8754,11,E09000011,4,106.66,598.16,25.84,2000
+8755,12,E09000011,0,74.06,671.75,18.64,2000
+113,1,E07000209,1,60.13,139.33,25.84,1000
+439,1,E07000209,2,74.68,165.75,25.84,1000
+765,1,E07000209,3,85.34,182.58,18.64,2000
+1091,1,E07000209,4,94.09,201.8,25.84,1000
+2721,2,E07000209,0,65.34,303.51,25.84,1000
+1417,3,E07000209,1,54.32,130.92,25.84,1000
+1743,3,E07000209,2,65.95,146.54,25.84,1000
+2069,3,E07000209,3,71.76,169.36,25.84,1000
+2395,3,E07000209,4,76.62,209,18.64,2000
+3047,4,E07000209,0,51.19,221.24,25.84,1000
+4005,5,E07000209,1,60.13,208.12,25.84,1000
+4620,5,E07000209,2,74.68,292.07,25.84,1000
+5272,5,E07000209,3,85.34,354.16,25.84,1000
+5957,5,E07000209,4,94.09,608.27,25.84,1000
+3373,6,E07000209,0,65.34,683.11,25.84,2000
+4072,7,E07000209,1,54.32,208.12,25.84,2000
+4767,7,E07000209,2,65.95,292.07,25.84,1000
+5372,7,E07000209,3,71.76,354.16,25.84,2000
+6061,7,E07000209,4,76.62,608.27,25.84,1000
+3699,8,E07000209,0,51.19,683.11,25.84,1000
+6633,9,E07000209,1,60.13,299.91,25.84,1000
+6959,9,E07000209,2,74.68,420.86,25.84,1000
+7285,9,E07000209,3,85.34,510.33,18.64,2000
+7611,9,E07000209,4,94.09,876.52,25.84,1000
+7937,10,E07000209,0,65.34,984.36,25.84,1000
+8756,11,E07000209,1,60.13,299.91,25.84,2000
+8757,11,E07000209,2,74.68,420.86,25.84,2000
+8758,11,E07000209,3,85.34,510.33,25.84,2000
+8759,11,E07000209,4,94.09,876.52,25.84,2000
+8760,12,E07000209,0,65.34,984.36,18.64,2000
+114,1,E09000012,1,68.85,164.54,25.84,1000
+440,1,E09000012,2,81.46,177.76,25.84,1000
+766,1,E09000012,3,88.25,188.59,25.84,1000
+1092,1,E09000012,4,106.66,211.41,25.84,1000
+2722,2,E09000012,0,74.06,358.82,25.84,1000
+1418,3,E09000012,1,61.09,134.53,18.64,2000
+1744,3,E09000012,2,66.92,157.36,25.84,1000
+2070,3,E09000012,3,74.68,180.17,25.84,1000
+2396,3,E09000012,4,87.29,294.28,25.84,2000
+3048,4,E09000012,0,63.17,420.87,18.64,2000
+3961,5,E09000012,1,68.85,333.46,25.84,1000
+4576,5,E09000012,2,81.46,401.28,18.64,2000
+5228,5,E09000012,3,88.25,474.87,25.84,1000
+5913,5,E09000012,4,106.66,632.42,25.84,1000
+3374,6,E09000012,0,74.06,710.23,25.84,2000
+4175,7,E09000012,1,61.09,333.46,25.84,2000
+4676,7,E09000012,2,66.92,401.28,25.84,2000
+5328,7,E09000012,3,74.68,474.87,25.84,1000
+5880,7,E09000012,4,87.29,632.42,25.84,1000
+3700,8,E09000012,0,63.17,710.23,25.84,1000
+6634,9,E09000012,1,68.85,480.52,25.84,1000
+6960,9,E09000012,2,81.46,578.24,25.84,1000
+7286,9,E09000012,3,88.25,684.29,25.84,1000
+7612,9,E09000012,4,106.66,911.31,25.84,1000
+7938,10,E09000012,0,74.06,1023.45,18.44,2000
+8761,11,E09000012,1,68.85,480.52,25.84,2000
+8762,11,E09000012,2,81.46,578.24,25.84,2000
+8763,11,E09000012,3,88.25,684.29,25.84,2000
+8764,11,E09000012,4,106.66,911.31,25.84,2000
+8765,12,E09000012,0,74.06,1023.45,18.64,2000
+115,1,E06000006,1,54.32,105.71,25.84,1000
+441,1,E06000006,2,62.07,121.33,18.64,2000
+767,1,E06000006,3,68.85,135.72,25.84,1000
+1093,1,E06000006,4,75.65,151.35,25.84,1000
+2723,2,E06000006,0,58.82,271.14,25.84,1000
+1419,3,E06000006,1,45.57,97.28,25.84,2000
+1745,3,E06000006,2,56.25,106.93,25.84,1000
+2071,3,E06000006,3,61.09,118.92,18.64,2000
+2397,3,E06000006,4,58.19,134.53,25.84,2000
+3049,4,E06000006,0,34.85,531.48,25.84,1000
+4366,5,E06000006,1,54.32,111.54,25.84,1000
+4936,5,E06000006,2,62.07,124.18,25.84,2000
+5579,5,E06000006,3,68.85,146.04,25.84,1000
+6327,5,E06000006,4,75.65,220.78,18.64,2000
+3375,6,E06000006,0,58.82,247.93,25.84,2000
+4478,7,E06000006,1,45.57,111.54,18.64,2000
+5074,7,E06000006,2,56.25,124.18,25.84,2000
+5754,7,E06000006,3,61.09,146.04,18.64,2000
+6378,7,E06000006,4,58.19,220.78,18.64,2000
+3701,8,E06000006,0,34.85,247.93,18.64,2000
+6635,9,E06000006,1,54.32,160.73,25.84,1000
+6961,9,E06000006,2,62.07,178.94,18.64,2000
+7287,9,E06000006,3,68.85,210.44,25.84,1000
+7613,9,E06000006,4,75.65,318.15,25.84,1000
+7939,10,E06000006,0,58.82,357.27,25.84,1000
+8766,11,E06000006,1,54.32,160.73,25.84,2000
+8767,11,E06000006,2,62.07,178.94,25.84,2000
+8768,11,E06000006,3,68.85,210.44,25.84,2000
+8769,11,E06000006,4,75.65,318.15,25.84,2000
+8770,12,E06000006,0,58.82,357.27,18.64,2000
+117,1,E09000013,1,68.85,164.54,25.84,1000
+443,1,E09000013,2,81.46,177.76,25.84,2000
+769,1,E09000013,3,88.25,188.59,25.84,1000
+1095,1,E09000013,4,106.66,211.41,18.64,2000
+2725,2,E09000013,0,74.06,358.82,18.64,2000
+1421,3,E09000013,1,61.09,134.53,25.84,2000
+1747,3,E09000013,2,66.92,157.36,25.84,1000
+2073,3,E09000013,3,74.68,180.17,25.84,1000
+2399,3,E09000013,4,87.29,294.28,25.84,2000
+3051,4,E09000013,0,63.17,420.87,25.84,1000
+3962,5,E09000013,1,68.85,343.81,25.84,1000
+4577,5,E09000013,2,81.46,458.8,25.84,1000
+5229,5,E09000013,3,88.25,658.87,18.64,2000
+5914,5,E09000013,4,106.66,1053.25,25.84,1000
+3377,6,E09000013,0,74.06,1181.54,25.84,2000
+4176,7,E09000013,1,61.09,343.81,25.84,2000
+4677,7,E09000013,2,66.92,458.8,25.84,2000
+5329,7,E09000013,3,74.68,658.87,25.84,1000
+5881,7,E09000013,4,87.29,1053.25,25.84,1000
+3703,8,E09000013,0,63.17,1181.54,25.84,1000
+6637,9,E09000013,1,68.85,495.43,25.84,1000
+6963,9,E09000013,2,81.46,661.12,25.84,1000
+7289,9,E09000013,3,88.25,949.44,25.84,1000
+7615,9,E09000013,4,106.66,1419.49,18.64,2000
+7941,10,E09000013,0,74.06,1702.61,25.84,1000
+8771,11,E09000013,1,68.85,495.43,25.84,2000
+8772,11,E09000013,2,81.46,661.12,25.84,2000
+8773,11,E09000013,3,88.25,949.44,25.84,2000
+8774,11,E09000013,4,106.66,1419.49,25.84,2000
+8775,12,E09000013,0,74.06,1702.61,18.64,2000
+118,1,E07000131,1,54.32,112.91,18.64,2000
+444,1,E07000131,2,64.98,129.71,25.84,2000
+770,1,E07000131,3,71.76,142.94,25.84,1000
+1096,1,E07000131,4,79.53,178.95,25.84,1000
+2726,2,E07000131,0,54.46,272.48,25.84,1000
+1422,3,E07000131,1,48.48,102.12,25.84,2000
+1748,3,E07000131,2,55.28,109.3,18.64,2000
+2074,3,E07000131,3,61.09,117.72,25.84,1000
+2400,3,E07000131,4,66.92,138.13,25.84,2000
+3052,4,E07000131,0,52.28,129.48,25.84,1000
+4328,5,E07000131,1,54.32,116.15,25.84,1000
+5024,5,E07000131,2,64.98,135.68,18.64,2000
+5667,5,E07000131,3,71.76,171.31,25.84,1000
+6242,5,E07000131,4,79.53,269.07,18.64,2000
+3378,6,E07000131,0,54.46,302.16,18.64,2000
+4428,7,E07000131,1,48.48,116.15,25.84,1000
+5164,7,E07000131,2,55.28,135.68,25.84,2000
+5825,7,E07000131,3,61.09,171.31,25.84,2000
+6486,7,E07000131,4,66.92,269.07,25.84,1000
+3704,8,E07000131,0,52.28,302.16,25.84,1000
+6638,9,E07000131,1,54.32,167.37,18.64,2000
+6964,9,E07000131,2,64.98,195.52,25.84,1000
+7290,9,E07000131,3,71.76,246.86,25.84,1000
+7616,9,E07000131,4,79.53,387.71,25.84,2000
+7942,10,E07000131,0,54.46,435.43,25.84,1000
+8776,11,E07000131,1,54.32,167.37,25.84,2000
+8777,11,E07000131,2,64.98,195.52,25.84,2000
+8778,11,E07000131,3,71.76,246.86,25.84,2000
+8779,11,E07000131,4,79.53,387.71,25.84,2000
+8780,12,E07000131,0,54.46,435.43,18.64,2000
+119,1,E09000014,1,68.85,164.54,25.84,1000
+445,1,E09000014,2,81.46,177.76,25.84,2000
+771,1,E09000014,3,88.25,188.59,18.64,2000
+1097,1,E09000014,4,106.66,211.41,25.84,1000
+2727,2,E09000014,0,74.06,358.82,25.84,1000
+1423,3,E09000014,1,61.09,134.53,25.84,2000
+1749,3,E09000014,2,66.92,157.36,25.84,1000
+2075,3,E09000014,3,74.68,180.17,25.84,1000
+2401,3,E09000014,4,87.29,294.28,18.64,2000
+3053,4,E09000014,0,63.17,420.87,25.84,1000
+3963,5,E09000014,1,68.85,281.71,25.84,1000
+4578,5,E09000014,2,81.46,359.9,25.84,1000
+5230,5,E09000014,3,88.25,449.6,25.84,1000
+5915,5,E09000014,4,106.66,685.32,25.84,1000
+3379,6,E09000014,0,74.06,768.35,25.84,1000
+4177,7,E09000014,1,61.09,281.71,18.64,2000
+4678,7,E09000014,2,66.92,359.9,25.84,2000
+5330,7,E09000014,3,74.68,449.6,25.84,1000
+5882,7,E09000014,4,87.29,685.32,18.64,2000
+3705,8,E09000014,0,63.17,768.35,25.84,1000
+6639,9,E09000014,1,68.85,405.94,25.84,2000
+6965,9,E09000014,2,81.46,518.62,25.84,1000
+7291,9,E09000014,3,88.25,647.87,18.64,2000
+7617,9,E09000014,4,106.66,987.54,25.84,2000
+7943,10,E09000014,0,74.06,1107.21,25.84,1000
+8781,11,E09000014,1,68.85,405.94,25.84,2000
+8782,11,E09000014,2,81.46,518.62,25.84,2000
+8783,11,E09000014,3,88.25,647.87,25.84,2000
+8784,11,E09000014,4,106.66,987.54,25.84,2000
+8785,12,E09000014,0,74.06,1107.21,18.64,2000
+120,1,E07000073,1,57.22,134.53,25.84,1000
+446,1,E07000073,2,67.88,160.94,25.84,2000
+772,1,E07000073,3,74.68,176.56,25.84,1000
+1098,1,E07000073,4,85.34,193.39,25.84,1000
+2728,2,E07000073,0,38.11,256.29,25.84,1000
+1424,3,E07000073,1,52.38,112.91,18.64,2000
+1750,3,E07000073,2,61.09,133.32,25.84,1000
+2076,3,E07000073,3,66.92,147.74,25.84,1000
+2402,3,E07000073,4,74.68,168.16,25.84,1000
+3054,4,E07000073,0,58.82,153.78,18.64,2000
+4137,5,E07000073,1,57.22,143.72,25.84,1000
+4718,5,E07000073,2,67.88,194.33,25.84,1000
+5437,5,E07000073,3,74.68,232.26,25.84,1000
+6147,5,E07000073,4,85.34,342.66,18.64,2000
+3380,6,E07000073,0,38.11,384.8,25.84,1000
+4254,7,E07000073,1,52.38,143.72,18.64,2000
+4980,7,E07000073,2,61.09,194.33,25.84,1000
+5623,7,E07000073,3,66.92,232.26,25.84,2000
+6285,7,E07000073,4,74.68,342.66,25.84,1000
+3706,8,E07000073,0,58.82,384.8,25.84,1000
+6640,9,E07000073,1,57.22,207.11,25.84,2000
+6966,9,E07000073,2,67.88,280.02,25.84,1000
+7292,9,E07000073,3,74.68,334.7,25.84,1000
+7618,9,E07000073,4,85.34,493.77,25.84,2000
+7944,10,E07000073,0,38.11,554.5,18.44,2000
+8786,11,E07000073,1,57.22,207.11,25.84,2000
+8787,11,E07000073,2,67.88,280.02,25.84,2000
+8788,11,E07000073,3,74.68,334.7,25.84,2000
+8789,11,E07000073,4,85.34,493.77,25.84,2000
+8790,12,E07000073,0,38.11,554.5,18.64,2000
+122,1,E09000015,1,68.85,164.54,25.84,1000
+448,1,E09000015,2,81.46,177.76,18.64,2000
+774,1,E09000015,3,88.25,188.59,25.84,1000
+1100,1,E09000015,4,106.66,211.41,25.84,1000
+2730,2,E09000015,0,74.06,358.82,25.84,1000
+1426,3,E09000015,1,61.09,134.53,25.84,1000
+1752,3,E09000015,2,66.92,157.36,25.84,1000
+2078,3,E09000015,3,74.68,180.17,18.64,2000
+2404,3,E09000015,4,87.29,294.28,25.84,1000
+3056,4,E09000015,0,63.17,420.87,25.84,1000
+3964,5,E09000015,1,68.85,215.03,18.64,2000
+4579,5,E09000015,2,81.46,281.71,25.84,1000
+5231,5,E09000015,3,88.25,342.66,25.84,1000
+5916,5,E09000015,4,106.66,487.54,25.84,1000
+3382,6,E09000015,0,74.06,547.52,25.84,1000
+4178,7,E09000015,1,61.09,215.03,25.84,1000
+4679,7,E09000015,2,66.92,281.71,18.64,2000
+5331,7,E09000015,3,74.68,342.66,25.84,1000
+5883,7,E09000015,4,87.29,487.54,25.84,2000
+3708,8,E09000015,0,63.17,547.52,18.64,2000
+6642,9,E09000015,1,68.85,309.88,25.84,2000
+6968,9,E09000015,2,81.46,405.94,18.64,2000
+7294,9,E09000015,3,88.25,493.77,25.84,1000
+7620,9,E09000015,4,106.66,702.54,25.84,2000
+7946,10,E09000015,0,74.06,788.98,25.84,1000
+8791,11,E09000015,1,68.85,309.88,25.84,2000
+8792,11,E09000015,2,81.46,405.94,25.84,2000
+8793,11,E09000015,3,88.25,493.77,25.84,2000
+8794,11,E09000015,4,106.66,702.54,25.84,2000
+8795,12,E09000015,0,74.06,788.98,18.64,2000
+123,1,E07000089,1,60.13,139.33,25.84,1000
+449,1,E07000089,2,74.68,165.75,25.84,1000
+775,1,E07000089,3,85.34,182.58,25.84,1000
+1101,1,E07000089,4,94.09,201.8,18.64,2000
+2731,2,E07000089,0,65.34,303.51,18.64,2000
+1427,3,E07000089,1,54.32,130.92,25.84,1000
+1753,3,E07000089,2,65.95,146.54,25.84,1000
+2079,3,E07000089,3,71.76,169.36,25.84,1000
+2405,3,E07000089,4,76.62,209,25.84,1000
+3057,4,E07000089,0,51.19,221.24,25.84,1000
+4006,5,E07000089,1,60.13,178.23,18.64,2000
+4621,5,E07000089,2,74.68,215.03,25.84,1000
+5273,5,E07000089,3,85.34,293.23,25.84,1000
+5958,5,E07000089,4,94.09,450.75,25.84,1000
+3383,6,E07000089,0,65.34,506.18,25.84,1000
+4073,7,E07000089,1,54.32,178.23,25.84,2000
+4768,7,E07000089,2,65.95,215.03,18.64,2000
+5373,7,E07000089,3,71.76,293.23,25.84,2000
+6062,7,E07000089,4,76.62,450.75,25.84,1000
+3709,8,E07000089,0,51.19,506.18,25.84,2000
+6643,9,E07000089,1,60.13,256.83,25.84,2000
+6969,9,E07000089,2,74.68,309.88,25.84,1000
+7295,9,E07000089,3,85.34,422.54,25.84,1000
+7621,9,E07000089,4,94.09,649.53,18.64,2000
+7947,10,E07000089,0,65.34,729.4,25.84,1000
+8796,11,E07000089,1,60.13,256.83,25.84,2000
+8797,11,E07000089,2,74.68,309.88,25.84,2000
+8798,11,E07000089,3,85.34,422.54,25.84,2000
+8799,11,E07000089,4,94.09,649.53,25.84,2000
+8800,12,E07000089,0,65.34,729.4,18.64,2000
+124,1,E06000001,1,53.35,99.69,18.64,2000
+450,1,E06000001,2,60.13,115.32,25.84,1000
+776,1,E06000001,3,64.01,128.51,25.84,1000
+1102,1,E06000001,4,73.71,144.14,25.84,1000
+2732,2,E06000001,0,58.82,268.43,25.84,2000
+1428,3,E06000001,1,44.6,112.91,25.84,1000
+1754,3,E06000001,2,52.38,102.12,18.64,2000
+2080,3,E06000001,3,56.25,118.92,25.84,1000
+2406,3,E06000001,4,59.16,130.92,25.84,1000
+3058,4,E06000001,0,50.1,287.33,25.84,1000
+4535,5,E06000001,1,53.35,100.04,25.84,1000
+5050,5,E06000001,2,60.13,112.69,25.84,1000
+5555,5,E06000001,3,64.01,146.04,18.64,2000
+6354,5,E06000001,4,73.71,185.13,25.84,2000
+3384,6,E06000001,0,58.82,207.92,18.64,2000
+4454,7,E06000001,1,44.6,100.04,25.84,1000
+5101,7,E06000001,2,52.38,112.69,25.84,2000
+5730,7,E06000001,3,56.25,146.04,25.84,1000
+6512,7,E06000001,4,59.16,185.13,25.84,1000
+3710,8,E06000001,0,50.1,207.92,25.84,2000
+6644,9,E06000001,1,44.6,144.16,18.64,2000
+6970,9,E06000001,2,60.13,162.39,25.84,1000
+7296,9,E06000001,3,64.01,210.44,25.84,1000
+7622,9,E06000001,4,73.71,266.78,25.84,1000
+7948,10,E06000001,0,58.82,299.61,25.84,1000
+8801,11,E06000001,1,44.6,144.16,25.84,2000
+8802,11,E06000001,2,60.13,162.39,25.84,2000
+8803,11,E06000001,3,64.01,210.44,25.84,2000
+8804,11,E06000001,4,73.71,266.78,25.84,2000
+8805,12,E06000001,0,58.82,299.61,18.64,2000
+125,1,E07000062,1,60.13,139.33,25.84,1000
+451,1,E07000062,2,74.68,165.75,25.84,1000
+777,1,E07000062,3,85.34,182.58,18.64,2000
+1103,1,E07000062,4,94.09,201.8,25.84,1000
+2733,2,E07000062,0,65.34,303.51,25.84,2000
+1429,3,E07000062,1,54.32,130.92,25.84,1000
+1755,3,E07000062,2,65.95,146.54,25.84,2000
+2081,3,E07000062,3,71.76,169.36,25.84,1000
+2407,3,E07000062,4,76.62,209,18.64,2000
+3059,4,E07000062,0,51.19,221.24,25.84,1000
+4007,5,E07000062,1,60.13,108.08,25.84,1000
+4622,5,E07000062,2,74.68,146.04,25.84,1000
+5274,5,E07000062,3,85.34,185.13,25.84,1000
+5959,5,E07000062,4,94.09,269.07,18.64,2000
+3385,6,E07000062,0,65.34,302.16,25.84,1000
+4074,7,E07000062,1,54.32,108.08,18.64,2000
+4769,7,E07000062,2,65.95,146.04,25.84,1000
+5374,7,E07000062,3,71.76,185.13,18.64,2000
+6063,7,E07000062,4,76.62,269.07,18.64,2000
+3711,8,E07000062,0,51.19,302.16,25.84,2000
+6645,9,E07000062,1,60.13,155.77,25.84,1000
+6971,9,E07000062,2,74.68,210.44,25.84,1000
+7297,9,E07000062,3,85.34,266.78,18.64,2000
+7623,9,E07000062,4,94.09,387.71,25.84,1000
+7949,10,E07000062,0,65.34,435.43,25.84,1000
+8806,11,E07000062,1,60.13,155.77,25.84,2000
+8807,11,E07000062,2,74.68,210.44,25.84,2000
+8808,11,E07000062,3,85.34,266.78,25.84,2000
+8809,11,E07000062,4,94.09,387.71,25.84,2000
+8810,12,E07000062,0,65.34,435.43,18.64,2000
+126,1,E07000090,1,60.13,139.33,25.84,1000
+452,1,E07000090,2,74.68,165.75,25.84,1000
+778,1,E07000090,3,85.34,182.58,25.84,2000
+1104,1,E07000090,4,94.09,201.8,25.84,1000
+2734,2,E07000090,0,65.34,303.51,25.84,2000
+1430,3,E07000090,1,54.32,130.92,18.64,2000
+1756,3,E07000090,2,65.95,146.54,25.84,2000
+2082,3,E07000090,3,71.76,169.36,25.84,1000
+2408,3,E07000090,4,76.62,209,25.84,1000
+3060,4,E07000090,0,51.19,221.24,18.64,2000
+4008,5,E07000090,1,60.13,141.43,25.84,1000
+4623,5,E07000090,2,74.68,172.47,18.64,2000
+5275,5,E07000090,3,85.34,208.12,25.84,1000
+5960,5,E07000090,4,94.09,304.71,25.84,2000
+3386,6,E07000090,0,65.34,342.22,25.84,1000
+4075,7,E07000090,1,54.32,141.43,25.84,1000
+4770,7,E07000090,2,65.95,172.47,25.84,1000
+5375,7,E07000090,3,71.76,208.12,25.84,1000
+6064,7,E07000090,4,76.62,304.71,25.84,1000
+3712,8,E07000090,0,51.19,342.22,25.84,2000
+6646,9,E07000090,1,60.13,203.8,25.84,1000
+6972,9,E07000090,2,74.68,248.54,25.84,1000
+7298,9,E07000090,3,85.34,299.91,25.84,1000
+7624,9,E07000090,4,94.09,439.08,25.84,1000
+7950,10,E07000090,0,65.34,493.13,18.44,2000
+8811,11,E07000090,1,60.13,203.8,25.84,2000
+8812,11,E07000090,2,74.68,248.54,25.84,2000
+8813,11,E07000090,3,85.34,299.91,25.84,2000
+8814,11,E07000090,4,94.09,439.08,25.84,2000
+8815,12,E07000090,0,65.34,493.13,18.64,2000
+127,1,E09000016,1,68.85,164.54,25.84,1000
+453,1,E09000016,2,81.46,177.76,18.64,2000
+779,1,E09000016,3,88.25,188.59,25.84,2000
+1105,1,E09000016,4,106.66,211.41,25.84,1000
+2735,2,E09000016,0,74.06,358.82,25.84,2000
+1431,3,E09000016,1,61.09,134.53,25.84,1000
+1757,3,E09000016,2,66.92,157.36,25.84,2000
+2083,3,E09000016,3,74.68,180.17,18.64,2000
+2409,3,E09000016,4,87.29,294.28,25.84,1000
+3061,4,E09000016,0,63.17,420.87,25.84,1000
+3965,5,E09000016,1,68.85,174.78,25.84,2000
+4580,5,E09000016,2,81.46,220.78,25.84,1000
+5232,5,E09000016,3,88.25,269.07,25.84,1000
+5917,5,E09000016,4,106.66,439.24,18.64,2000
+3387,6,E09000016,0,74.06,493.29,25.84,1000
+4179,7,E09000016,1,61.09,174.78,25.84,1000
+4680,7,E09000016,2,66.92,220.78,25.84,1000
+5332,7,E09000016,3,74.68,269.07,18.64,2000
+5884,7,E09000016,4,87.29,439.24,25.84,2000
+3713,8,E09000016,0,63.17,493.29,18.64,2000
+6647,9,E09000016,1,68.85,251.86,25.84,1000
+6973,9,E09000016,2,81.46,318.15,18.64,2000
+7299,9,E09000016,3,88.25,387.71,25.84,1000
+7625,9,E09000016,4,106.66,632.95,25.84,1000
+7951,10,E09000016,0,74.06,710.83,25.84,2000
+8816,11,E09000016,1,68.85,251.86,25.84,2000
+8817,11,E09000016,2,81.46,318.15,25.84,2000
+8818,11,E09000016,3,88.25,387.71,25.84,2000
+8819,11,E09000016,4,106.66,632.95,25.84,2000
+8820,12,E09000016,0,74.06,710.83,18.64,2000
+128,1,E06000019,1,55.28,111.71,25.84,1000
+454,1,E06000019,2,61.09,132.12,25.84,1000
+780,1,E06000019,3,72.73,150.14,25.84,2000
+1106,1,E06000019,4,84.37,182.58,18.64,2000
+2736,2,E06000019,0,41.39,277.87,18.64,2000
+1432,3,E06000019,1,48.48,99.69,25.84,1000
+1758,3,E06000019,2,52.38,106.93,25.84,2000
+2084,3,E06000019,3,63.04,117.72,25.84,1000
+2410,3,E06000019,4,71.76,144.14,25.84,1000
+3062,4,E06000019,0,49.01,121.41,25.84,1000
+4287,5,E06000019,1,55.28,118.43,25.84,2000
+4897,5,E06000019,2,61.09,141.43,25.84,1000
+5528,5,E06000019,3,72.73,171.31,25.84,1000
+6180,5,E06000019,4,84.37,232.26,25.84,1000
+3388,6,E06000019,0,41.39,260.84,25.84,1000
+4508,7,E06000019,1,48.48,118.43,25.84,1000
+5193,7,E06000019,2,52.38,141.43,25.84,2000
+5784,7,E06000019,3,63.04,171.31,25.84,1000
+6445,7,E06000019,4,71.76,232.26,18.64,2000
+3714,8,E06000019,0,49.01,260.84,25.84,1000
+6648,9,E06000019,1,55.28,170.65,25.84,1000
+6974,9,E06000019,2,61.09,203.8,25.84,2000
+7300,9,E06000019,3,72.73,246.86,25.84,1000
+7626,9,E06000019,4,84.37,334.7,18.64,2000
+7952,10,E06000019,0,41.39,375.86,25.84,2000
+8821,11,E06000019,1,55.28,170.65,25.84,2000
+8822,11,E06000019,2,61.09,203.8,25.84,2000
+8823,11,E06000019,3,72.73,246.86,25.84,2000
+8824,11,E06000019,4,84.37,334.7,25.84,2000
+8825,12,E06000019,0,41.39,375.86,18.64,2000
+129,1,E07000098,1,57.22,134.53,18.64,2000
+455,1,E07000098,2,67.88,160.94,25.84,1000
+781,1,E07000098,3,74.68,176.56,25.84,2000
+1107,1,E07000098,4,85.34,193.39,25.84,1000
+2737,2,E07000098,0,38.11,256.29,25.84,1000
+1433,3,E07000098,1,52.38,112.91,25.84,1000
+1759,3,E07000098,2,61.09,133.32,18.64,2000
+2085,3,E07000098,3,66.92,147.74,25.84,1000
+2411,3,E07000098,4,74.68,168.16,25.84,1000
+3063,4,E07000098,0,58.82,153.78,25.84,1000
+4138,5,E07000098,1,57.22,190.87,25.84,1000
+4719,5,E07000098,2,67.88,246.06,25.84,1000
+5438,5,E07000098,3,74.68,342.66,25.84,1000
+6148,5,E07000098,4,85.34,570.35,25.84,1000
+3389,6,E07000098,0,38.11,640.5,18.64,2000
+4255,7,E07000098,1,52.38,190.87,25.84,1000
+4981,7,E07000098,2,61.09,246.06,18.64,2000
+5624,7,E07000098,3,66.92,342.66,25.84,2000
+6286,7,E07000098,4,74.68,570.35,18.64,2000
+3715,8,E07000098,0,58.82,640.5,25.84,1000
+6649,9,E07000098,1,57.22,275.06,18.64,2000
+6975,9,E07000098,2,67.88,354.57,25.84,2000
+7301,9,E07000098,3,74.68,493.77,25.84,1000
+7627,9,E07000098,4,85.34,821.87,25.84,1000
+7953,10,E07000098,0,38.11,922.98,25.84,2000
+8826,11,E07000098,1,57.22,275.06,25.84,2000
+8827,11,E07000098,2,67.88,354.57,25.84,2000
+8828,11,E07000098,3,74.68,493.77,25.84,2000
+8829,11,E07000098,4,85.34,821.87,25.84,2000
+8830,12,E07000098,0,38.11,922.98,18.64,2000
+130,1,E07000037,1,54.32,112.91,25.84,1000
+456,1,E07000037,2,64.98,129.71,25.84,1000
+782,1,E07000037,3,71.76,142.94,18.64,2000
+1108,1,E07000037,4,79.53,178.95,25.84,1000
+2738,2,E07000037,0,54.46,272.48,25.84,1000
+1434,3,E07000037,1,48.48,102.12,25.84,1000
+1760,3,E07000037,2,55.28,109.3,25.84,1000
+2086,3,E07000037,3,61.09,117.72,25.84,1000
+2412,3,E07000037,4,66.92,138.13,18.64,2000
+3064,4,E07000037,0,52.28,129.48,25.84,1000
+4329,5,E07000037,1,54.32,111.54,25.84,1000
+5025,5,E07000037,2,64.98,135.68,25.84,1000
+5668,5,E07000037,3,71.76,166.72,25.84,1000
+6243,5,E07000037,4,79.53,208.12,25.84,2000
+3390,6,E07000037,0,54.46,233.73,25.84,1000
+4429,7,E07000037,1,48.48,111.54,25.84,1000
+5165,7,E07000037,2,55.28,135.68,25.84,2000
+5826,7,E07000037,3,61.09,166.72,25.84,2000
+6487,7,E07000037,4,66.92,208.12,18.64,2000
+3716,8,E07000037,0,52.28,233.73,25.84,1000
+6650,9,E07000037,1,54.32,160.73,25.84,1000
+6976,9,E07000037,2,64.98,195.52,25.84,2000
+7302,9,E07000037,3,71.76,240.25,18.64,2000
+7628,9,E07000037,4,79.53,299.91,25.84,1000
+7954,10,E07000037,0,54.46,336.8,25.84,2000
+8831,11,E07000037,1,54.32,160.73,25.84,2000
+8832,11,E07000037,2,64.98,195.52,25.84,2000
+8833,11,E07000037,3,71.76,240.25,25.84,2000
+8834,11,E07000037,4,79.53,299.91,25.84,2000
+8835,12,E07000037,0,54.46,336.8,18.64,2000
+131,1,E09000017,1,68.85,164.54,25.84,1000
+457,1,E09000017,2,81.46,177.76,25.84,1000
+783,1,E09000017,3,88.25,188.59,25.84,1000
+1109,1,E09000017,4,106.66,211.41,25.84,1000
+2739,2,E09000017,0,74.06,358.82,25.84,1000
+1435,3,E09000017,1,61.09,134.53,18.64,2000
+1761,3,E09000017,2,66.92,157.36,25.84,1000
+2087,3,E09000017,3,74.68,180.17,25.84,1000
+2413,3,E09000017,4,87.29,294.28,25.84,1000
+3065,4,E09000017,0,63.17,420.87,18.64,2000
+3966,5,E09000017,1,68.85,196.63,25.84,2000
+4581,5,E09000017,2,81.46,269.07,18.64,2000
+5233,5,E09000017,3,88.25,317.35,25.84,1000
+5918,5,E09000017,4,106.66,462.24,25.84,1000
+3391,6,E09000017,0,74.06,519.11,25.84,1000
+4180,7,E09000017,1,61.09,196.63,25.84,1000
+4681,7,E09000017,2,66.92,269.07,25.84,1000
+5333,7,E09000017,3,74.68,317.35,25.84,1000
+5885,7,E09000017,4,87.29,462.24,25.84,2000
+3717,8,E09000017,0,63.17,519.11,25.84,1000
+6651,9,E09000017,1,68.85,283.35,25.84,1000
+6977,9,E09000017,2,81.46,387.71,25.84,2000
+7303,9,E09000017,3,88.25,457.3,25.84,1000
+7629,9,E09000017,4,106.66,666.1,25.84,1000
+7955,10,E09000017,0,74.06,748.04,18.64,2000
+8836,11,E09000017,1,68.85,283.35,25.84,2000
+8837,11,E09000017,2,81.46,387.71,25.84,2000
+8838,11,E09000017,3,88.25,457.3,25.84,2000
+8839,11,E09000017,4,106.66,666.1,25.84,2000
+8840,12,E09000017,0,74.06,748.04,18.64,2000
+132,1,E07000132,1,54.32,112.91,25.84,1000
+458,1,E07000132,2,64.98,129.71,18.64,2000
+784,1,E07000132,3,71.76,142.94,25.84,1000
+1110,1,E07000132,4,79.53,178.95,25.84,1000
+2740,2,E07000132,0,54.46,272.48,25.84,1000
+1436,3,E07000132,1,48.48,102.12,25.84,1000
+1762,3,E07000132,2,55.28,109.3,25.84,1000
+2088,3,E07000132,3,61.09,117.72,18.64,2000
+2414,3,E07000132,4,66.92,138.13,25.84,1000
+3066,4,E07000132,0,52.28,129.48,25.84,2000
+4330,5,E07000132,1,54.32,100.04,25.84,1000
+5026,5,E07000132,2,64.98,129.92,25.84,1000
+5669,5,E07000132,3,71.76,152.93,25.84,1000
+6244,5,E07000132,4,79.53,232.26,25.84,2000
+3392,6,E07000132,0,54.46,260.84,25.84,1000
+4430,7,E07000132,1,48.48,100.04,18.64,2000
+5166,7,E07000132,2,55.28,129.92,18.64,2000
+5827,7,E07000132,3,61.09,152.93,18.64,2000
+6488,7,E07000132,4,66.92,232.26,25.84,1000
+3718,8,E07000132,0,52.28,260.84,18.64,2000
+6652,9,E07000132,1,54.32,144.16,25.84,1000
+6978,9,E07000132,2,64.98,187.23,18.64,2000
+7304,9,E07000132,3,71.76,220.35,25.84,1000
+7630,9,E07000132,4,79.53,334.7,25.84,1000
+7956,10,E07000132,0,54.46,375.86,25.84,1000
+8841,11,E07000132,1,54.32,144.16,25.84,2000
+8842,11,E07000132,2,64.98,187.23,25.84,2000
+8843,11,E07000132,3,71.76,220.35,25.84,2000
+8844,11,E07000132,4,79.53,334.7,25.84,2000
+8845,12,E07000132,0,54.46,375.86,18.64,2000
+133,1,E07000227,1,60.13,139.33,25.84,1000
+459,1,E07000227,2,74.68,165.75,25.84,1000
+785,1,E07000227,3,85.34,182.58,25.84,1000
+1111,1,E07000227,4,94.09,201.8,18.64,2000
+2741,2,E07000227,0,65.34,303.51,18.64,2000
+1437,3,E07000227,1,54.32,130.92,25.84,1000
+1763,3,E07000227,2,65.95,146.54,25.84,1000
+2089,3,E07000227,3,71.76,169.36,25.84,2000
+2415,3,E07000227,4,76.62,209,25.84,1000
+3067,4,E07000227,0,51.19,221.24,25.84,2000
+4009,5,E07000227,1,60.13,159.83,25.84,1000
+4624,5,E07000227,2,74.68,202.38,25.84,2000
+5276,5,E07000227,3,85.34,281.71,18.64,2000
+5961,5,E07000227,4,94.09,462.24,25.84,2000
+3393,6,E07000227,0,65.34,519.11,25.84,1000
+4076,7,E07000227,1,54.32,159.83,25.84,1000
+4771,7,E07000227,2,65.95,202.38,25.84,1000
+5376,7,E07000227,3,71.76,281.71,25.84,1000
+6065,7,E07000227,4,76.62,462.24,25.84,1000
+3719,8,E07000227,0,51.19,519.11,25.84,1000
+6653,9,E07000227,1,60.13,230.32,25.84,1000
+6979,9,E07000227,2,74.68,291.63,25.84,1000
+7305,9,E07000227,3,85.34,405.94,25.84,1000
+7631,9,E07000227,4,94.09,666.1,18.64,2000
+7957,10,E07000227,0,65.34,748.04,25.84,1000
+8846,11,E07000227,1,60.13,230.32,25.84,2000
+8847,11,E07000227,2,74.68,291.63,25.84,2000
+8848,11,E07000227,3,85.34,405.94,25.84,2000
+8849,11,E07000227,4,94.09,666.1,25.84,2000
+8850,12,E07000227,0,65.34,748.04,18.64,2000
+134,1,E09000018,1,68.85,164.54,18.64,2000
+460,1,E09000018,2,81.46,177.76,25.84,1000
+786,1,E09000018,3,88.25,188.59,25.84,1000
+1112,1,E09000018,4,106.66,211.41,25.84,2000
+2742,2,E09000018,0,74.06,358.82,25.84,1000
+1438,3,E09000018,1,61.09,134.53,25.84,1000
+1764,3,E09000018,2,66.92,157.36,18.64,2000
+2090,3,E09000018,3,74.68,180.17,25.84,2000
+2416,3,E09000018,4,87.29,294.28,25.84,1000
+3068,4,E09000018,0,63.17,420.87,25.84,2000
+3967,5,E09000018,1,68.85,233.42,25.84,2000
+4582,5,E09000018,2,81.46,317.35,25.84,1000
+5234,5,E09000018,3,88.25,342.66,18.64,2000
+5919,5,E09000018,4,106.66,788.81,25.84,1000
+3394,6,E09000018,0,74.06,885.85,18.64,2000
+4181,7,E09000018,1,61.09,233.42,25.84,1000
+4682,7,E09000018,2,66.92,317.35,25.84,1000
+5334,7,E09000018,3,74.68,342.66,25.84,1000
+5886,7,E09000018,4,87.29,788.81,25.84,2000
+3720,8,E09000018,0,63.17,885.85,25.84,1000
+6654,9,E09000018,1,68.85,336.34,18.64,2000
+6980,9,E09000018,2,81.46,457.3,25.84,1000
+7306,9,E09000018,3,88.25,493.77,25.84,1000
+7632,9,E09000018,4,106.66,1136.68,25.84,1000
+7958,10,E09000018,0,74.06,1276.5,25.84,1000
+8851,11,E09000018,1,68.85,336.34,25.84,2000
+8852,11,E09000018,2,81.46,457.3,25.84,2000
+8853,11,E09000018,3,88.25,493.77,25.84,2000
+8854,11,E09000018,4,106.66,1136.68,25.84,2000
+8855,12,E09000018,0,74.06,1276.5,18.64,2000
+135,1,E07000011,1,57.22,134.53,25.84,2000
+461,1,E07000011,2,67.88,160.94,25.84,1000
+787,1,E07000011,3,74.68,176.56,18.64,2000
+1113,1,E07000011,4,85.34,193.39,25.84,2000
+2743,2,E07000011,0,38.11,256.29,25.84,1000
+1439,3,E07000011,1,52.38,112.91,25.84,1000
+1765,3,E07000011,2,61.09,133.32,25.84,1000
+2091,3,E07000011,3,66.92,147.74,25.84,2000
+2417,3,E07000011,4,74.68,168.16,18.64,2000
+3069,4,E07000011,0,58.82,153.78,25.84,2000
+4139,5,E07000011,1,57.22,123.02,25.84,1000
+4720,5,E07000011,2,67.88,155.22,18.64,2000
+5439,5,E07000011,3,74.68,185.13,25.84,1000
+6149,5,E07000011,4,85.34,304.71,25.84,1000
+3395,6,E07000011,0,38.11,342.22,25.84,1000
+4256,7,E07000011,1,52.38,123.02,25.84,1000
+4982,7,E07000011,2,61.09,155.22,25.84,1000
+5625,7,E07000011,3,66.92,185.13,25.84,2000
+6287,7,E07000011,4,74.68,304.71,25.84,1000
+3721,8,E07000011,0,58.82,342.22,25.84,1000
+6655,9,E07000011,1,57.22,177.26,25.84,1000
+6981,9,E07000011,2,67.88,223.68,25.84,1000
+7307,9,E07000011,3,74.68,266.78,18.64,2000
+7633,9,E07000011,4,85.34,439.08,25.84,1000
+7959,10,E07000011,0,38.11,493.13,25.84,1000
+8856,11,E07000011,1,57.22,177.26,25.84,2000
+8857,11,E07000011,2,67.88,223.68,25.84,2000
+8858,11,E07000011,3,74.68,266.78,25.84,2000
+8859,11,E07000011,4,85.34,439.08,25.84,2000
+8860,12,E07000011,0,38.11,493.13,18.64,2000
+136,1,E07000120,1,54.32,105.71,25.84,2000
+462,1,E07000120,2,62.07,121.33,25.84,1000
+788,1,E07000120,3,68.85,135.72,25.84,1000
+1114,1,E07000120,4,75.65,151.35,25.84,2000
+2744,2,E07000120,0,58.82,271.14,25.84,1000
+1440,3,E07000120,1,45.57,97.28,18.64,2000
+1766,3,E07000120,2,56.25,106.93,25.84,1000
+2092,3,E07000120,3,61.09,118.92,25.84,2000
+2418,3,E07000120,4,58.19,134.53,25.84,1000
+3070,4,E07000120,0,34.85,531.48,18.64,2000
+4367,5,E07000120,1,54.32,97.75,25.84,1000
+4937,5,E07000120,2,62.07,106.94,25.84,2000
+5580,5,E07000120,3,68.85,135.68,18.64,2000
+6328,5,E07000120,4,75.65,185.13,25.84,2000
+3396,6,E07000120,0,58.82,207.92,25.84,1000
+4479,7,E07000120,1,45.57,97.75,25.84,1000
+5075,7,E07000120,2,56.25,106.94,25.84,2000
+5755,7,E07000120,3,61.09,135.68,25.84,1000
+6379,7,E07000120,4,58.19,185.13,25.84,1000
+3722,8,E07000120,0,34.85,207.92,25.84,1000
+6656,9,E07000120,1,54.32,140.86,25.84,1000
+6982,9,E07000120,2,62.07,154.1,25.84,1000
+7308,9,E07000120,3,68.85,195.52,25.84,2000
+7634,9,E07000120,4,75.65,266.78,25.84,1000
+7960,10,E07000120,0,58.82,299.61,18.44,2000
+8861,11,E07000120,1,54.32,140.86,25.84,2000
+8862,11,E07000120,2,62.07,154.1,25.84,2000
+8863,11,E07000120,3,68.85,195.52,25.84,2000
+8864,11,E07000120,4,75.65,266.78,25.84,2000
+8865,12,E07000120,0,58.82,299.61,18.64,2000
+137,1,E07000202,1,57.22,134.53,25.84,2000
+463,1,E07000202,2,67.88,160.94,18.64,2000
+789,1,E07000202,3,74.68,176.56,25.84,1000
+1115,1,E07000202,4,85.34,193.39,25.84,2000
+2745,2,E07000202,0,38.11,256.29,25.84,1000
+1441,3,E07000202,1,52.38,112.91,25.84,1000
+1767,3,E07000202,2,61.09,133.32,25.84,1000
+2093,3,E07000202,3,66.92,147.74,18.64,2000
+2419,3,E07000202,4,74.68,168.16,25.84,1000
+3071,4,E07000202,0,58.82,153.78,25.84,1000
+4140,5,E07000202,1,57.22,111.54,25.84,1000
+4721,5,E07000202,2,67.88,135.68,25.84,1000
+5440,5,E07000202,3,74.68,158.67,25.84,1000
+6150,5,E07000202,4,85.34,265.61,25.84,1000
+3397,6,E07000202,0,38.11,297.02,25.84,1000
+4257,7,E07000202,1,52.38,111.54,25.84,1000
+4983,7,E07000202,2,61.09,135.68,25.84,1000
+5626,7,E07000202,3,66.92,158.67,25.84,2000
+6288,7,E07000202,4,74.68,265.61,25.84,1000
+3723,8,E07000202,0,58.82,297.02,18.64,2000
+6657,9,E07000202,1,57.22,160.73,25.84,1000
+6983,9,E07000202,2,67.88,195.52,18.64,2000
+7309,9,E07000202,3,74.68,228.63,25.84,2000
+7635,9,E07000202,4,85.34,382.74,25.84,1000
+7961,10,E07000202,0,38.11,428,25.84,1000
+8866,11,E07000202,1,57.22,160.73,25.84,2000
+8867,11,E07000202,2,67.88,195.52,25.84,2000
+8868,11,E07000202,3,74.68,228.63,25.84,2000
+8869,11,E07000202,4,85.34,382.74,25.84,2000
+8870,12,E07000202,0,38.11,428,18.64,2000
+138,1,E06000046,1,60.13,139.33,25.84,2000
+464,1,E06000046,2,74.68,165.75,25.84,1000
+790,1,E06000046,3,85.34,182.58,25.84,1000
+1116,1,E06000046,4,94.09,201.8,18.64,2000
+2746,2,E06000046,0,65.34,303.51,18.64,2000
+1442,3,E06000046,1,54.32,130.92,25.84,1000
+1768,3,E06000046,2,65.95,146.54,25.84,1000
+2094,3,E06000046,3,71.76,169.36,25.84,1000
+2420,3,E06000046,4,76.62,209,25.84,1000
+3072,4,E06000046,0,51.19,221.24,25.84,1000
+4010,5,E06000046,1,60.13,116.15,25.84,1000
+4625,5,E06000046,2,74.68,148.33,25.84,2000
+5277,5,E06000046,3,85.34,185.13,25.84,1000
+5962,5,E06000046,4,94.09,257.56,25.84,2000
+3398,6,E06000046,0,65.34,289.26,25.84,1000
+4077,7,E06000046,1,54.32,116.15,25.84,1000
+4772,7,E06000046,2,65.95,148.33,25.84,1000
+5377,7,E06000046,3,71.76,185.13,25.84,1000
+6066,7,E06000046,4,76.62,257.56,25.84,1000
+3724,8,E06000046,0,51.19,289.26,25.84,1000
+6658,9,E06000046,1,60.13,167.37,25.84,1000
+6984,9,E06000046,2,74.68,213.75,25.84,1000
+7310,9,E06000046,3,85.34,266.78,25.84,2000
+7636,9,E06000046,4,94.09,371.14,18.64,2000
+7962,10,E06000046,0,65.34,416.81,25.84,1000
+8871,11,E06000046,1,60.13,167.37,25.84,2000
+8872,11,E06000046,2,74.68,213.75,25.84,2000
+8873,11,E06000046,3,85.34,266.78,25.84,2000
+8874,11,E06000046,4,94.09,371.14,25.84,2000
+8875,12,E06000046,0,65.34,416.81,18.64,2000
+139,1,E06000053,1,51.41,121.33,18.64,2000
+465,1,E06000053,2,58.19,136.92,25.84,1000
+791,1,E06000053,3,64.98,159.75,25.84,1000
+1117,1,E06000053,4,74.68,178.95,25.84,1000
+2747,2,E06000053,0,57.73,261.7,25.84,1000
+1443,3,E06000053,1,49.46,100.89,25.84,1000
+1769,3,E06000053,2,57.22,114.11,18.64,2000
+2095,3,E06000053,3,64.98,123.71,25.84,1000
+2421,3,E06000053,4,77.58,147.74,25.84,1000
+3073,4,E06000053,0,57.73,130.84,25.84,1000
+4209,5,E06000053,1,51.41,140.28,25.84,1000
+4845,5,E06000053,2,58.19,178.23,25.84,1000
+5476,5,E06000053,3,64.98,208.12,25.84,2000
+6014,5,E06000053,4,74.68,317.35,25.84,2000
+3399,6,E06000053,0,57.73,233.73,18.64,2000
+3925,7,E06000053,1,49.46,140.28,25.84,1000
+5122,7,E06000053,2,57.22,178.23,25.84,1000
+5702,7,E06000053,3,64.98,208.12,25.84,1000
+6414,7,E06000053,4,77.58,317.35,25.84,2000
+3725,8,E06000053,0,57.73,233.73,25.84,1000
+6659,9,E06000053,1,51.41,202.15,18.64,2000
+6985,9,E06000053,2,58.19,256.83,25.84,1000
+7311,9,E06000053,3,64.98,299.91,25.84,2000
+7637,9,E06000053,4,74.68,457.3,25.84,1000
+7963,10,E06000053,0,57.73,336.8,25.84,1000
+8876,11,E06000053,1,51.41,202.15,25.84,2000
+8877,11,E06000053,2,58.19,256.83,25.84,2000
+8878,11,E06000053,3,64.98,299.91,25.84,2000
+8879,11,E06000053,4,74.68,457.3,25.84,2000
+8880,12,E06000053,0,57.73,336.8,18.64,2000
+140,1,E09000019,1,68.85,164.54,25.84,1000
+466,1,E09000019,2,81.46,177.76,25.84,1000
+792,1,E09000019,3,88.25,188.59,18.64,2000
+1118,1,E09000019,4,106.66,211.41,25.84,1000
+2748,2,E09000019,0,74.06,358.82,25.84,1000
+1444,3,E09000019,1,61.09,134.53,25.84,1000
+1770,3,E09000019,2,66.92,157.36,25.84,1000
+2096,3,E09000019,3,74.68,180.17,25.84,1000
+2422,3,E09000019,4,87.29,294.28,18.64,2000
+3074,4,E09000019,0,63.17,420.87,25.84,1000
+3968,5,E09000019,1,68.85,359.9,25.84,2000
+4583,5,E09000019,2,81.46,485.24,25.84,1000
+5235,5,E09000019,3,88.25,568.02,25.84,1000
+5920,5,E09000019,4,106.66,706.01,25.84,1000
+3400,6,E09000019,0,74.06,792.87,25.84,2000
+4182,7,E09000019,1,61.09,359.9,18.64,2000
+4683,7,E09000019,2,66.92,485.24,25.84,1000
+5335,7,E09000019,3,74.68,568.02,25.84,1000
+5887,7,E09000019,4,87.29,706.01,18.64,2000
+3726,8,E09000019,0,63.17,792.87,25.84,1000
+6660,9,E09000019,1,68.85,518.62,25.84,1000
+6986,9,E09000019,2,81.46,699.22,25.84,1000
+7312,9,E09000019,3,88.25,818.53,18.64,2000
+7638,9,E09000019,4,106.66,1017.37,25.84,1000
+7964,10,E09000019,0,74.06,1142.54,25.84,1000
+8881,11,E09000019,1,68.85,518.62,25.84,2000
+8882,11,E09000019,2,81.46,699.22,25.84,2000
+8883,11,E09000019,3,88.25,818.53,25.84,2000
+8884,11,E09000019,4,106.66,1017.37,25.84,2000
+8885,12,E09000019,0,74.06,1142.54,18.64,2000
+141,1,E09000020,1,68.85,164.54,25.84,1000
+467,1,E09000020,2,81.46,177.76,25.84,1000
+793,1,E09000020,3,88.25,188.59,25.84,1000
+1119,1,E09000020,4,106.66,211.41,25.84,1000
+2749,2,E09000020,0,74.06,358.82,25.84,1000
+1445,3,E09000020,1,61.09,134.53,18.64,2000
+1771,3,E09000020,2,66.92,157.36,25.84,1000
+2097,3,E09000020,3,74.68,180.17,25.84,1000
+2423,3,E09000020,4,87.29,294.28,25.84,2000
+3075,4,E09000020,0,63.17,420.87,18.64,2000
+3969,5,E09000020,1,68.85,522.01,18.64,2000
+4584,5,E09000020,2,81.46,788.81,25.84,1000
+5236,5,E09000020,3,88.25,1083.58,25.84,1000
+5921,5,E09000020,4,106.66,1083.58,25.84,1000
+3401,6,E09000020,0,74.06,2167.16,25.84,2000
+4183,7,E09000020,1,61.09,522.01,25.84,1000
+4684,7,E09000020,2,66.92,788.81,18.64,2000
+5336,7,E09000020,3,74.68,1083.58,25.84,1000
+5888,7,E09000020,4,87.29,1083.58,25.84,1000
+3727,8,E09000020,0,63.17,2167.16,25.84,1000
+6661,9,E09000020,1,68.85,752.23,25.84,1000
+6987,9,E09000020,2,81.46,1136.68,25.84,1000
+7313,9,E09000020,3,88.25,1419.49,25.84,1000
+7639,9,E09000020,4,106.66,1419.49,25.84,1000
+7965,10,E09000020,0,74.06,2838.98,18.44,2000
+8886,11,E09000020,1,68.85,752.23,25.84,2000
+8887,11,E09000020,2,81.46,1136.68,25.84,2000
+8888,11,E09000020,3,88.25,1419.49,25.84,2000
+8889,11,E09000020,4,106.66,1419.49,25.84,2000
+8890,12,E09000020,0,74.06,2838.98,18.64,2000
+143,1,E07000146,1,57.22,134.53,25.84,1000
+469,1,E07000146,2,67.88,160.94,18.64,2000
+795,1,E07000146,3,74.68,176.56,25.84,1000
+1121,1,E07000146,4,85.34,193.39,25.84,1000
+2751,2,E07000146,0,38.11,256.29,25.84,1000
+1447,3,E07000146,1,52.38,112.91,25.84,2000
+1773,3,E07000146,2,61.09,133.32,25.84,1000
+2099,3,E07000146,3,66.92,147.74,18.64,2000
+2425,3,E07000146,4,74.68,168.16,25.84,2000
+3077,4,E07000146,0,58.82,153.78,25.84,1000
+4141,5,E07000146,1,57.22,108.08,18.64,2000
+4722,5,E07000146,2,67.88,135.68,25.84,1000
+5441,5,E07000146,3,74.68,159.83,18.64,2000
+6151,5,E07000146,4,85.34,263.33,25.84,1000
+3403,6,E07000146,0,38.11,295.72,25.84,2000
+4258,7,E07000146,1,52.38,108.08,25.84,1000
+4984,7,E07000146,2,61.09,135.68,25.84,1000
+5627,7,E07000146,3,66.92,159.83,18.64,2000
+6289,7,E07000146,4,74.68,263.33,25.84,1000
+3729,8,E07000146,0,58.82,295.72,18.64,2000
+6663,9,E07000146,1,57.22,155.77,25.84,1000
+6989,9,E07000146,2,67.88,195.52,18.64,2000
+7315,9,E07000146,3,74.68,230.32,25.84,1000
+7641,9,E07000146,4,85.34,379.46,25.84,1000
+7967,10,E07000146,0,38.11,426.13,25.84,1000
+8891,11,E07000146,1,57.22,155.77,25.84,2000
+8892,11,E07000146,2,67.88,195.52,25.84,2000
+8893,11,E07000146,3,74.68,230.32,25.84,2000
+8894,11,E07000146,4,85.34,379.46,25.84,2000
+8895,12,E07000146,0,38.11,426.13,18.64,2000
+144,1,E06000010,1,53.35,103.31,25.84,1000
+470,1,E06000010,2,61.09,122.52,25.84,2000
+796,1,E06000010,3,65.95,135.72,25.84,1000
+1122,1,E06000010,4,76.62,163.35,18.64,2000
+2752,2,E06000010,0,55.56,265.72,18.64,2000
+1448,3,E06000010,1,48.48,92.49,25.84,2000
+1774,3,E06000010,2,55.28,127.31,25.84,1000
+2100,3,E06000010,3,59.16,117.72,25.84,1000
+2426,3,E06000010,4,66.92,136.92,25.84,2000
+3078,4,E06000010,0,54.46,182.11,25.84,1000
+4398,5,E06000010,1,53.35,88.54,25.84,1000
+4878,5,E06000010,2,61.09,111.54,25.84,2000
+5509,5,E06000010,3,65.95,135.68,25.84,1000
+6114,5,E06000010,4,76.62,185.13,25.84,1000
+3404,6,E06000010,0,55.56,207.92,25.84,2000
+4552,7,E06000010,1,48.48,88.54,18.64,2000
+4820,7,E06000010,2,55.28,111.54,25.84,1000
+5856,7,E06000010,3,59.16,135.68,25.84,2000
+6212,7,E06000010,4,66.92,185.13,25.84,2000
+3730,8,E06000010,0,54.46,207.92,25.84,1000
+6664,9,E06000010,1,53.35,127.58,25.84,1000
+6990,9,E06000010,2,55.28,160.73,25.84,1000
+7316,9,E06000010,3,65.95,195.52,25.84,1000
+7642,9,E06000010,4,76.62,266.78,18.64,2000
+7968,10,E06000010,0,55.56,299.61,25.84,1000
+8896,11,E06000010,1,53.35,127.58,25.84,2000
+8897,11,E06000010,2,55.28,160.73,25.84,2000
+8898,11,E06000010,3,65.95,195.52,25.84,2000
+8899,11,E06000010,4,76.62,266.78,25.84,2000
+8900,12,E06000010,0,55.56,299.61,18.64,2000
+145,1,E09000021,1,68.85,164.54,18.64,2000
+471,1,E09000021,2,81.46,177.76,25.84,2000
+797,1,E09000021,3,88.25,188.59,25.84,1000
+1123,1,E09000021,4,106.66,211.41,25.84,1000
+2753,2,E09000021,0,74.06,358.82,25.84,1000
+1449,3,E09000021,1,61.09,134.53,25.84,2000
+1775,3,E09000021,2,66.92,157.36,18.64,2000
+2101,3,E09000021,3,74.68,180.17,25.84,1000
+2427,3,E09000021,4,87.29,294.28,25.84,2000
+3079,4,E09000021,0,63.17,420.87,25.84,1000
+3970,5,E09000021,1,68.85,226.53,25.84,1000
+4585,5,E09000021,2,81.46,293.23,25.84,1000
+5237,5,E09000021,3,88.25,364.49,25.84,1000
+5922,5,E09000021,4,106.66,608.27,18.64,2000
+3405,6,E09000021,0,74.06,683.11,18.64,2000
+4184,7,E09000021,1,61.09,226.53,25.84,1000
+4685,7,E09000021,2,66.92,293.23,25.84,1000
+5337,7,E09000021,3,74.68,364.49,18.64,2000
+5889,7,E09000021,4,87.29,608.27,25.84,1000
+3731,8,E09000021,0,63.17,683.11,25.84,1000
+6665,9,E09000021,1,68.85,326.44,18.64,2000
+6991,9,E09000021,2,81.46,422.54,25.84,1000
+7317,9,E09000021,3,88.25,525.23,25.84,1000
+7643,9,E09000021,4,106.66,876.52,25.84,2000
+7969,10,E09000021,0,74.06,984.36,25.84,1000
+8901,11,E09000021,1,68.85,326.44,25.84,2000
+8902,11,E09000021,2,81.46,422.54,25.84,2000
+8903,11,E09000021,3,88.25,525.23,25.84,2000
+8904,11,E09000021,4,106.66,876.52,25.84,2000
+8905,12,E09000021,0,74.06,984.36,18.64,2000
+146,1,E08000034,1,53.35,103.31,25.84,1000
+472,1,E08000034,2,61.09,122.52,25.84,2000
+798,1,E08000034,3,65.95,135.72,18.64,2000
+1124,1,E08000034,4,76.62,163.35,25.84,1000
+2754,2,E08000034,0,55.56,265.72,25.84,1000
+1450,3,E08000034,1,48.48,92.49,25.84,2000
+1776,3,E08000034,2,55.28,127.31,25.84,1000
+2102,3,E08000034,3,59.16,117.72,25.84,1000
+2428,3,E08000034,4,66.92,136.92,18.64,2000
+3080,4,E08000034,0,54.46,182.11,25.84,1000
+4399,5,E08000034,1,53.35,104.63,18.64,2000
+4879,5,E08000034,2,61.09,123.02,25.84,2000
+5510,5,E08000034,3,65.95,146.04,25.84,1000
+6115,5,E08000034,4,76.62,208.12,25.84,1000
+3406,6,E08000034,0,55.56,233.73,25.84,1000
+4553,7,E08000034,1,48.48,104.63,25.84,1000
+4821,7,E08000034,2,55.28,123.02,25.84,1000
+5857,7,E08000034,3,59.16,146.04,25.84,2000
+6213,7,E08000034,4,66.92,208.12,25.84,2000
+3732,8,E08000034,0,54.46,233.73,25.84,1000
+6666,9,E08000034,1,53.35,150.78,25.84,2000
+6992,9,E08000034,2,55.28,177.26,25.84,1000
+7318,9,E08000034,3,65.95,210.44,18.64,2000
+7644,9,E08000034,4,76.62,299.91,25.84,2000
+7970,10,E08000034,0,55.56,336.8,25.84,1000
+8906,11,E08000034,1,53.35,150.78,25.84,2000
+8907,11,E08000034,2,55.28,177.26,25.84,2000
+8908,11,E08000034,3,65.95,210.44,25.84,2000
+8909,11,E08000034,4,76.62,299.91,25.84,2000
+8910,12,E08000034,0,55.56,336.8,18.64,2000
+147,1,E08000011,1,54.32,105.71,25.84,1000
+473,1,E08000011,2,62.07,121.33,25.84,2000
+799,1,E08000011,3,68.85,135.72,25.84,1000
+1125,1,E08000011,4,75.65,151.35,25.84,1000
+2755,2,E08000011,0,58.82,271.14,25.84,1000
+1451,3,E08000011,1,45.57,97.28,18.64,2000
+1777,3,E08000011,2,56.25,106.93,25.84,1000
+2103,3,E08000011,3,61.09,118.92,25.84,1000
+2429,3,E08000011,4,58.19,134.53,25.84,1000
+3081,4,E08000011,0,34.85,531.48,18.64,2000
+4368,5,E08000011,1,54.32,118.43,25.84,1000
+4938,5,E08000011,2,62.07,135.68,25.84,2000
+5581,5,E08000011,3,68.85,154.07,25.84,1000
+6329,5,E08000011,4,75.65,220.78,25.84,2000
+3407,6,E08000011,0,58.82,247.93,25.84,1000
+4480,7,E08000011,1,45.57,118.43,25.84,1000
+5076,7,E08000011,2,56.25,135.68,25.84,2000
+5756,7,E08000011,3,61.09,154.07,25.84,1000
+6380,7,E08000011,4,58.19,220.78,25.84,1000
+3733,8,E08000011,0,34.85,247.93,25.84,1000
+6667,9,E08000011,1,54.32,170.65,25.84,2000
+6993,9,E08000011,2,62.07,195.52,25.84,1000
+7319,9,E08000011,3,68.85,222,25.84,1000
+7645,9,E08000011,4,75.65,318.15,25.84,2000
+7971,10,E08000011,0,58.82,357.27,18.44,2000
+8911,11,E08000011,1,54.32,170.65,25.84,2000
+8912,11,E08000011,2,62.07,195.52,25.84,2000
+8913,11,E08000011,3,68.85,222,25.84,2000
+8914,11,E08000011,4,75.65,318.15,25.84,2000
+8915,12,E08000011,0,58.82,357.27,18.64,2000
+148,1,E09000022,1,68.85,164.54,25.84,1000
+474,1,E09000022,2,81.46,177.76,18.64,2000
+800,1,E09000022,3,88.25,188.59,25.84,1000
+1126,1,E09000022,4,106.66,211.41,25.84,1000
+2756,2,E09000022,0,74.06,358.82,25.84,1000
+1452,3,E09000022,1,61.09,134.53,25.84,1000
+1778,3,E09000022,2,66.92,157.36,25.84,1000
+2104,3,E09000022,3,74.68,180.17,18.64,2000
+2430,3,E09000022,4,87.29,294.28,25.84,1000
+3082,4,E09000022,0,63.17,420.87,25.84,1000
+3971,5,E09000022,1,68.85,296.67,25.84,1000
+4586,5,E09000022,2,81.46,354.16,18.64,2000
+5238,5,E09000022,3,88.25,464.54,25.84,1000
+5923,5,E09000022,4,106.66,664.61,25.84,1000
+3408,6,E09000022,0,74.06,743.81,25.84,1000
+4185,7,E09000022,1,61.09,296.67,25.84,1000
+4686,7,E09000022,2,66.92,354.16,25.84,1000
+5338,7,E09000022,3,74.68,464.54,25.84,1000
+5890,7,E09000022,4,87.29,664.61,25.84,1000
+3734,8,E09000022,0,63.17,743.81,18.64,2000
+6668,9,E09000022,1,68.85,427.49,25.84,2000
+6994,9,E09000022,2,81.46,510.33,18.64,2000
+7320,9,E09000022,3,88.25,669.4,25.84,1000
+7646,9,E09000022,4,106.66,957.71,25.84,2000
+7972,10,E09000022,0,74.06,1071.82,25.84,1000
+8916,11,E09000022,1,68.85,427.49,25.84,2000
+8917,11,E09000022,2,81.46,510.33,25.84,2000
+8918,11,E09000022,3,88.25,669.4,25.84,2000
+8919,11,E09000022,4,106.66,957.71,25.84,2000
+8920,12,E09000022,0,74.06,1071.82,18.64,2000
+149,1,E07000121,1,54.32,105.71,25.84,1000
+475,1,E07000121,2,62.07,121.33,25.84,1000
+801,1,E07000121,3,68.85,135.72,25.84,1000
+1127,1,E07000121,4,75.65,151.35,18.64,2000
+2757,2,E07000121,0,58.82,271.14,18.64,2000
+1453,3,E07000121,1,45.57,97.28,25.84,1000
+1779,3,E07000121,2,56.25,106.93,25.84,1000
+2105,3,E07000121,3,61.09,118.92,25.84,1000
+2431,3,E07000121,4,58.19,134.53,25.84,1000
+3083,4,E07000121,0,34.85,531.48,25.84,1000
+4369,5,E07000121,1,54.32,118.43,25.84,1000
+4939,5,E07000121,2,62.07,141.43,18.64,2000
+5582,5,E07000121,3,68.85,159.83,25.84,1000
+6330,5,E07000121,4,75.65,195.48,25.84,2000
+3409,6,E07000121,0,58.82,219.51,25.84,1000
+4481,7,E07000121,1,45.57,118.43,25.84,1000
+5077,7,E07000121,2,56.25,141.43,18.64,2000
+5757,7,E07000121,3,61.09,159.83,25.84,1000
+6381,7,E07000121,4,58.19,195.48,25.84,1000
+3735,8,E07000121,0,34.85,219.51,25.84,2000
+6669,9,E07000121,1,54.32,170.65,25.84,2000
+6995,9,E07000121,2,62.07,203.8,25.84,1000
+7321,9,E07000121,3,68.85,230.32,25.84,1000
+7647,9,E07000121,4,75.65,281.69,18.64,2000
+7973,10,E07000121,0,58.82,316.32,25.84,1000
+8921,11,E07000121,1,54.32,170.65,25.84,2000
+8922,11,E07000121,2,62.07,203.8,25.84,2000
+8923,11,E07000121,3,68.85,230.32,25.84,2000
+8924,11,E07000121,4,75.65,281.69,25.84,2000
+8925,12,E07000121,0,58.82,316.32,18.64,2000
+150,1,E08000035,1,53.35,103.31,18.64,2000
+476,1,E08000035,2,61.09,122.52,25.84,1000
+802,1,E08000035,3,65.95,135.72,25.84,1000
+1128,1,E08000035,4,76.62,163.35,25.84,1000
+2758,2,E08000035,0,55.56,265.72,25.84,2000
+1454,3,E08000035,1,48.48,92.49,25.84,1000
+1780,3,E08000035,2,55.28,127.31,18.64,2000
+2106,3,E08000035,3,59.16,117.72,25.84,1000
+2432,3,E08000035,4,66.92,136.92,25.84,1000
+3084,4,E08000035,0,54.46,182.11,25.84,1000
+4400,5,E08000035,1,53.35,135.68,25.84,2000
+4880,5,E08000035,2,61.09,166.72,18.64,2000
+5511,5,E08000035,3,65.95,204.67,18.64,2000
+6116,5,E08000035,4,76.62,443.84,25.84,1000
+3410,6,E08000035,0,55.56,498.45,18.64,2000
+4554,7,E08000035,1,48.48,135.68,25.84,1000
+4822,7,E08000035,2,55.28,166.72,18.64,2000
+5858,7,E08000035,3,59.16,204.67,18.64,2000
+6214,7,E08000035,4,66.92,443.84,25.84,2000
+3736,8,E08000035,0,54.46,498.45,25.84,2000
+6670,9,E08000035,1,53.35,195.52,18.64,2000
+6996,9,E08000035,2,55.28,240.25,25.84,1000
+7322,9,E08000035,3,65.95,294.93,25.84,1000
+7648,9,E08000035,4,76.62,639.57,25.84,1000
+7974,10,E08000035,0,55.56,718.26,25.84,1000
+8926,11,E08000035,1,53.35,195.52,25.84,2000
+8927,11,E08000035,2,55.28,240.25,25.84,2000
+8928,11,E08000035,3,65.95,294.93,25.84,2000
+8929,11,E08000035,4,76.62,639.57,25.84,2000
+8930,12,E08000035,0,55.56,718.26,18.64,2000
+151,1,E06000016,1,54.32,112.91,25.84,1000
+477,1,E06000016,2,64.98,129.71,25.84,1000
+803,1,E06000016,3,71.76,142.94,18.64,2000
+1129,1,E06000016,4,79.53,178.95,25.84,1000
+2759,2,E06000016,0,54.46,272.48,25.84,2000
+1455,3,E06000016,1,48.48,102.12,25.84,1000
+1781,3,E06000016,2,55.28,109.3,25.84,2000
+2107,3,E06000016,3,61.09,117.72,25.84,1000
+2433,3,E06000016,4,66.92,138.13,18.64,2000
+3085,4,E06000016,0,52.28,129.48,25.84,1000
+4332,5,E06000016,1,54.32,116.15,25.84,1000
+5028,5,E06000016,2,64.98,135.68,25.84,1000
+5671,5,E06000016,3,71.76,148.33,18.64,2000
+6246,5,E06000016,4,79.53,213.89,25.84,2000
+3411,6,E06000016,0,54.46,238.9,25.84,1000
+4432,7,E06000016,1,48.48,116.15,25.84,2000
+5168,7,E06000016,2,55.28,135.68,25.84,1000
+5829,7,E06000016,3,61.09,148.33,25.84,1000
+6490,7,E06000016,4,66.92,213.89,25.84,1000
+3737,8,E06000016,0,52.28,238.9,25.84,2000
+6671,9,E06000016,1,54.32,167.37,25.84,1000
+6997,9,E06000016,2,64.98,195.52,25.84,1000
+7323,9,E06000016,3,71.76,213.75,18.64,2000
+7649,9,E06000016,4,79.53,308.22,25.84,1000
+7975,10,E06000016,0,54.46,344.27,25.84,1000
+8931,11,E06000016,1,54.32,167.37,25.84,2000
+8932,11,E06000016,2,64.98,195.52,25.84,2000
+8933,11,E06000016,3,71.76,213.75,25.84,2000
+8934,11,E06000016,4,79.53,308.22,25.84,2000
+8935,12,E06000016,0,54.46,344.27,18.64,2000
+152,1,E07000063,1,60.13,139.33,25.84,1000
+478,1,E07000063,2,74.68,165.75,25.84,1000
+804,1,E07000063,3,85.34,182.58,25.84,2000
+1130,1,E07000063,4,94.09,201.8,25.84,1000
+2760,2,E07000063,0,65.34,303.51,25.84,2000
+1456,3,E07000063,1,54.32,130.92,18.64,2000
+1782,3,E07000063,2,65.95,146.54,25.84,2000
+2108,3,E07000063,3,71.76,169.36,25.84,1000
+2434,3,E07000063,4,76.62,209,25.84,1000
+3086,4,E07000063,0,51.19,221.24,18.64,2000
+4011,5,E07000063,1,60.13,154.07,18.64,2000
+4626,5,E07000063,2,74.68,202.38,25.84,2000
+5278,5,E07000063,3,85.34,244.9,25.84,1000
+5963,5,E07000063,4,94.09,365.64,25.84,2000
+3412,6,E07000063,0,65.34,410.63,25.84,1000
+4078,7,E07000063,1,54.32,154.07,25.84,1000
+4773,7,E07000063,2,65.95,202.38,18.64,2000
+5378,7,E07000063,3,71.76,244.9,25.84,1000
+6067,7,E07000063,4,76.62,365.64,25.84,1000
+3738,8,E07000063,0,51.19,410.63,25.84,2000
+6672,9,E07000063,1,60.13,222,25.84,1000
+6998,9,E07000063,2,74.68,291.63,25.84,1000
+7324,9,E07000063,3,85.34,352.9,25.84,1000
+7650,9,E07000063,4,94.09,526.89,25.84,1000
+7976,10,E07000063,0,65.34,591.71,18.44,2000
+8936,11,E07000063,1,60.13,222,25.84,2000
+8937,11,E07000063,2,74.68,291.63,25.84,2000
+8938,11,E07000063,3,85.34,352.9,25.84,2000
+8939,11,E07000063,4,94.09,526.89,25.84,2000
+8940,12,E07000063,0,65.34,591.71,18.64,2000
+153,1,E09000023,1,68.85,164.54,25.84,1000
+479,1,E09000023,2,81.46,177.76,18.64,2000
+805,1,E09000023,3,88.25,188.59,25.84,2000
+1131,1,E09000023,4,106.66,211.41,25.84,1000
+2761,2,E09000023,0,74.06,358.82,25.84,2000
+1457,3,E09000023,1,61.09,134.53,25.84,1000
+1783,3,E09000023,2,66.92,157.36,25.84,2000
+2109,3,E09000023,3,74.68,180.17,18.64,2000
+2435,3,E09000023,4,87.29,294.28,25.84,1000
+3087,4,E09000023,0,63.17,420.87,25.84,1000
+3972,5,E09000023,1,68.85,208.12,25.84,1000
+4587,5,E09000023,2,81.46,269.07,25.84,1000
+5239,5,E09000023,3,88.25,342.66,18.64,2000
+5924,5,E09000023,4,106.66,507.09,25.84,1000
+3413,6,E09000023,0,74.06,569.47,25.84,1000
+4186,7,E09000023,1,61.09,208.12,25.84,1000
+4687,7,E09000023,2,66.92,269.07,25.84,1000
+5339,7,E09000023,3,74.68,342.66,25.84,1000
+5891,7,E09000023,4,87.29,507.09,25.84,1000
+3739,8,E09000023,0,63.17,569.47,18.64,2000
+6673,9,E09000023,1,68.85,299.91,25.84,1000
+6999,9,E09000023,2,81.46,387.71,18.64,2000
+7325,9,E09000023,3,88.25,493.77,25.84,1000
+7651,9,E09000023,4,106.66,730.71,25.84,1000
+7977,10,E09000023,0,74.06,820.62,25.84,2000
+8941,11,E09000023,1,68.85,299.91,25.84,2000
+8942,11,E09000023,2,81.46,387.71,25.84,2000
+8943,11,E09000023,3,88.25,493.77,25.84,2000
+8944,11,E09000023,4,106.66,730.71,25.84,2000
+8945,12,E09000023,0,74.06,820.62,18.64,2000
+154,1,E07000194,1,55.28,111.71,25.84,1000
+480,1,E07000194,2,61.09,132.12,25.84,1000
+806,1,E07000194,3,72.73,150.14,25.84,2000
+1132,1,E07000194,4,84.37,182.58,18.64,2000
+2762,2,E07000194,0,41.39,277.87,18.64,2000
+1458,3,E07000194,1,48.48,99.69,25.84,1000
+1784,3,E07000194,2,52.38,106.93,25.84,2000
+2110,3,E07000194,3,63.04,117.72,25.84,1000
+2436,3,E07000194,4,71.76,144.14,25.84,1000
+3088,4,E07000194,0,49.01,121.41,25.84,1000
+4288,5,E07000194,1,55.28,123.02,25.84,2000
+4898,5,E07000194,2,61.09,146.04,25.84,1000
+5529,5,E07000194,3,72.73,185.13,25.84,1000
+6181,5,E07000194,4,84.37,292.07,25.84,1000
+3414,6,E07000194,0,41.39,328,25.84,1000
+4509,7,E07000194,1,48.48,123.02,18.64,2000
+5194,7,E07000194,2,52.38,146.04,18.64,2000
+5785,7,E07000194,3,63.04,185.13,18.64,2000
+6446,7,E07000194,4,71.76,292.07,25.84,2000
+3740,8,E07000194,0,49.01,328,25.84,1000
+6674,9,E07000194,1,55.28,177.26,25.84,1000
+7000,9,E07000194,2,61.09,210.44,25.84,2000
+7326,9,E07000194,3,72.73,266.78,25.84,1000
+7652,9,E07000194,4,84.37,420.86,18.64,2000
+7978,10,E07000194,0,41.39,472.65,25.84,2000
+8946,11,E07000194,1,55.28,177.26,25.84,2000
+8947,11,E07000194,2,61.09,210.44,25.84,2000
+8948,11,E07000194,3,72.73,266.78,25.84,2000
+8949,11,E07000194,4,84.37,420.86,25.84,2000
+8950,12,E07000194,0,41.39,472.65,18.64,2000
+155,1,E07000138,1,54.32,112.91,18.64,2000
+481,1,E07000138,2,64.98,129.71,25.84,1000
+807,1,E07000138,3,71.76,142.94,25.84,2000
+1133,1,E07000138,4,79.53,178.95,25.84,1000
+2763,2,E07000138,0,54.46,272.48,25.84,1000
+1459,3,E07000138,1,48.48,102.12,25.84,1000
+1785,3,E07000138,2,55.28,109.3,18.64,2000
+2111,3,E07000138,3,61.09,117.72,25.84,1000
+2437,3,E07000138,4,66.92,138.13,25.84,1000
+3089,4,E07000138,0,52.28,129.48,25.84,1000
+4333,5,E07000138,1,54.32,111.54,18.64,2000
+5029,5,E07000138,2,64.98,127.62,25.84,1000
+5672,5,E07000138,3,71.76,146.04,25.84,1000
+6247,5,E07000138,4,79.53,189.73,25.84,2000
+3415,6,E07000138,0,54.46,213.07,18.64,2000
+4433,7,E07000138,1,48.48,111.54,25.84,2000
+5169,7,E07000138,2,55.28,127.62,25.84,1000
+5830,7,E07000138,3,61.09,146.04,25.84,1000
+6491,7,E07000138,4,66.92,189.73,25.84,1000
+3741,8,E07000138,0,52.28,213.07,25.84,1000
+6675,9,E07000138,1,54.32,160.73,18.64,2000
+7001,9,E07000138,2,64.98,183.9,25.84,2000
+7327,9,E07000138,3,71.76,210.44,25.84,1000
+7653,9,E07000138,4,79.53,273.4,25.84,1000
+7979,10,E07000138,0,54.46,307.02,25.84,2000
+8951,11,E07000138,1,54.32,160.73,25.84,2000
+8952,11,E07000138,2,64.98,183.9,25.84,2000
+8953,11,E07000138,3,71.76,210.44,25.84,2000
+8954,11,E07000138,4,79.53,273.4,25.84,2000
+8955,12,E07000138,0,54.46,307.02,18.64,2000
+156,1,E08000012,1,54.32,105.71,25.84,1000
+482,1,E08000012,2,62.07,121.33,25.84,1000
+808,1,E08000012,3,68.85,135.72,18.64,2000
+1134,1,E08000012,4,75.65,151.35,25.84,1000
+2764,2,E08000012,0,58.82,271.14,25.84,1000
+1460,3,E08000012,1,45.57,97.28,25.84,1000
+1786,3,E08000012,2,56.25,106.93,25.84,1000
+2112,3,E08000012,3,61.09,118.92,25.84,1000
+2438,3,E08000012,4,58.19,134.53,18.64,2000
+3090,4,E08000012,0,34.85,531.48,25.84,1000
+4370,5,E08000012,1,54.32,123.02,18.64,2000
+4940,5,E08000012,2,62.07,159.83,25.84,1000
+5583,5,E08000012,3,68.85,154.07,25.84,1000
+6331,5,E08000012,4,75.65,246.06,25.84,2000
+3416,6,E08000012,0,58.82,276.34,25.84,1000
+4482,7,E08000012,1,45.57,123.02,25.84,1000
+5078,7,E08000012,2,56.25,159.83,25.84,1000
+5758,7,E08000012,3,61.09,154.07,25.84,1000
+6382,7,E08000012,4,58.19,246.06,25.84,1000
+3742,8,E08000012,0,34.85,276.34,25.84,1000
+6676,9,E08000012,1,54.32,177.26,25.84,1000
+7002,9,E08000012,2,62.07,230.32,25.84,2000
+7328,9,E08000012,3,68.85,230.32,18.64,2000
+7654,9,E08000012,4,75.65,354.57,25.84,1000
+7980,10,E08000012,0,58.82,398.19,25.84,2000
+8956,11,E08000012,1,54.32,177.26,25.84,2000
+8957,11,E08000012,2,62.07,230.32,25.84,2000
+8958,11,E08000012,3,68.85,230.32,25.84,2000
+8959,11,E08000012,4,75.65,354.57,25.84,2000
+8960,12,E08000012,0,58.82,398.19,18.64,2000
+157,1,E06000032,1,57.22,134.53,25.84,1000
+483,1,E06000032,2,67.88,160.94,25.84,1000
+809,1,E06000032,3,74.68,176.56,25.84,1000
+1135,1,E06000032,4,85.34,193.39,25.84,1000
+2765,2,E06000032,0,38.11,256.29,25.84,1000
+1461,3,E06000032,1,52.38,112.91,18.64,2000
+1787,3,E06000032,2,61.09,133.32,25.84,1000
+2113,3,E06000032,3,66.92,147.74,25.84,1000
+2439,3,E06000032,4,74.68,168.16,25.84,1000
+3091,4,E06000032,0,58.82,153.78,18.64,2000
+4142,5,E06000032,1,57.22,129.92,25.84,1000
+4723,5,E06000032,2,67.88,159.83,25.84,1000
+5442,5,E06000032,3,74.68,195.48,25.84,1000
+6152,5,E06000032,4,85.34,269.07,18.64,2000
+3417,6,E06000032,0,38.11,302.16,25.84,1000
+4259,7,E06000032,1,52.38,129.92,18.64,2000
+4985,7,E06000032,2,61.09,159.83,25.84,1000
+5628,7,E06000032,3,66.92,195.48,25.84,1000
+6290,7,E06000032,4,74.68,269.07,25.84,1000
+3743,8,E06000032,0,58.82,302.16,25.84,1000
+6677,9,E06000032,1,57.22,187.23,25.84,1000
+7003,9,E06000032,2,67.88,230.32,25.84,2000
+7329,9,E06000032,3,74.68,281.69,25.84,1000
+7655,9,E06000032,4,85.34,387.71,25.84,1000
+7981,10,E06000032,0,38.11,435.43,18.64,2000
+8961,11,E06000032,1,57.22,187.23,25.84,2000
+8962,11,E06000032,2,67.88,230.32,25.84,2000
+8963,11,E06000032,3,74.68,281.69,25.84,2000
+8964,11,E06000032,4,85.34,387.71,25.84,2000
+8965,12,E06000032,0,38.11,435.43,18.64,2000
+158,1,E07000110,1,60.13,139.33,25.84,1000
+484,1,E07000110,2,74.68,165.75,18.64,2000
+810,1,E07000110,3,85.34,182.58,25.84,1000
+1136,1,E07000110,4,94.09,201.8,25.84,1000
+2766,2,E07000110,0,65.34,303.51,25.84,1000
+1462,3,E07000110,1,54.32,130.92,25.84,1000
+1788,3,E07000110,2,65.95,146.54,25.84,1000
+2114,3,E07000110,3,71.76,169.36,18.64,2000
+2440,3,E07000110,4,76.62,209,25.84,1000
+3092,4,E07000110,0,51.19,221.24,25.84,2000
+4012,5,E07000110,1,60.13,146.04,25.84,1000
+4627,5,E07000110,2,74.68,178.23,25.84,2000
+5279,5,E07000110,3,85.34,208.12,25.84,1000
+5964,5,E07000110,4,94.09,304.71,18.64,2000
+3418,6,E07000110,0,65.34,342.22,25.84,1000
+4079,7,E07000110,1,54.32,146.04,18.64,2000
+4774,7,E07000110,2,65.95,178.23,25.84,1000
+5379,7,E07000110,3,71.76,208.12,18.64,2000
+6068,7,E07000110,4,76.62,304.71,18.64,2000
+3744,8,E07000110,0,51.19,342.22,18.64,2000
+6678,9,E07000110,1,60.13,210.44,25.84,1000
+7004,9,E07000110,2,74.68,256.83,18.64,2000
+7330,9,E07000110,3,85.34,299.91,25.84,1000
+7656,9,E07000110,4,94.09,439.08,25.84,1000
+7982,10,E07000110,0,65.34,493.13,25.84,1000
+8966,11,E07000110,1,60.13,210.44,25.84,2000
+8967,11,E07000110,2,74.68,256.83,25.84,2000
+8968,11,E07000110,3,85.34,299.91,25.84,2000
+8969,11,E07000110,4,94.09,439.08,25.84,2000
+8970,12,E07000110,0,65.34,493.13,18.64,2000
+159,1,E07000074,1,57.22,134.53,25.84,1000
+485,1,E07000074,2,67.88,160.94,25.84,1000
+811,1,E07000074,3,74.68,176.56,25.84,1000
+1137,1,E07000074,4,85.34,193.39,18.64,2000
+2767,2,E07000074,0,38.11,256.29,18.64,2000
+1463,3,E07000074,1,52.38,112.91,25.84,1000
+1789,3,E07000074,2,61.09,133.32,25.84,1000
+2115,3,E07000074,3,66.92,147.74,25.84,2000
+2441,3,E07000074,4,74.68,168.16,25.84,1000
+3093,4,E07000074,0,58.82,153.78,25.84,2000
+4143,5,E07000074,1,57.22,135.68,25.84,1000
+4724,5,E07000074,2,67.88,178.23,25.84,1000
+5443,5,E07000074,3,74.68,208.12,25.84,1000
+6153,5,E07000074,4,85.34,317.35,25.84,1000
+3419,6,E07000074,0,38.11,356.42,25.84,1000
+4260,7,E07000074,1,52.38,135.68,25.84,2000
+4986,7,E07000074,2,61.09,178.23,18.64,2000
+5629,7,E07000074,3,66.92,208.12,25.84,1000
+6291,7,E07000074,4,74.68,317.35,18.64,2000
+3745,8,E07000074,0,58.82,356.42,25.84,1000
+6679,9,E07000074,1,57.22,195.52,25.84,1000
+7005,9,E07000074,2,67.88,256.83,25.84,1000
+7331,9,E07000074,3,74.68,299.91,25.84,1000
+7657,9,E07000074,4,85.34,457.3,18.64,2000
+7983,10,E07000074,0,38.11,513.58,25.84,1000
+8971,11,E07000074,1,57.22,195.52,25.84,2000
+8972,11,E07000074,2,67.88,256.83,25.84,2000
+8973,11,E07000074,3,74.68,299.91,25.84,2000
+8974,11,E07000074,4,85.34,457.3,25.84,2000
+8975,12,E07000074,0,38.11,513.58,18.64,2000
+160,1,E07000235,1,55.28,111.71,18.64,2000
+486,1,E07000235,2,61.09,132.12,25.84,1000
+812,1,E07000235,3,72.73,150.14,25.84,1000
+1138,1,E07000235,4,84.37,182.58,25.84,2000
+2768,2,E07000235,0,41.39,277.87,25.84,1000
+1464,3,E07000235,1,48.48,99.69,25.84,1000
+1790,3,E07000235,2,52.38,106.93,18.64,2000
+2116,3,E07000235,3,63.04,117.72,25.84,2000
+2442,3,E07000235,4,71.76,144.14,25.84,1000
+3094,4,E07000235,0,49.01,121.41,25.84,2000
+4289,5,E07000235,1,55.28,123.02,25.84,2000
+4899,5,E07000235,2,61.09,146.04,18.64,2000
+5530,5,E07000235,3,72.73,178.23,18.64,2000
+6182,5,E07000235,4,84.37,293.23,25.84,1000
+3420,6,E07000235,0,41.39,329.29,18.64,2000
+4510,7,E07000235,1,48.48,123.02,25.84,1000
+5195,7,E07000235,2,52.38,146.04,25.84,1000
+5786,7,E07000235,3,63.04,178.23,25.84,1000
+6447,7,E07000235,4,71.76,293.23,25.84,2000
+3746,8,E07000235,0,49.01,329.29,25.84,1000
+6680,9,E07000235,1,55.28,177.26,18.64,2000
+7006,9,E07000235,2,61.09,210.44,25.84,1000
+7332,9,E07000235,3,72.73,256.83,25.84,1000
+7658,9,E07000235,4,84.37,422.54,25.84,1000
+7984,10,E07000235,0,41.39,474.52,25.84,1000
+8976,11,E07000235,1,55.28,177.26,25.84,2000
+8977,11,E07000235,2,61.09,210.44,25.84,2000
+8978,11,E07000235,3,72.73,256.83,25.84,2000
+8979,11,E07000235,4,84.37,422.54,25.84,2000
+8980,12,E07000235,0,41.39,474.52,18.64,2000
+61,1,E08000003,1,54.32,105.71,18.64,2000
+387,1,E08000003,2,62.07,121.33,25.84,2000
+713,1,E08000003,3,68.85,135.72,25.84,1000
+1039,1,E08000003,4,75.65,151.35,25.84,1000
+2669,2,E08000003,0,58.82,271.14,25.84,1000
+1365,3,E08000003,1,45.57,97.28,25.84,2000
+1691,3,E08000003,2,56.25,106.93,18.64,2000
+2017,3,E08000003,3,61.09,118.92,25.84,1000
+2343,3,E08000003,4,58.19,134.53,25.84,2000
+2995,4,E08000003,0,34.85,531.48,25.84,1000
+4361,5,E08000003,1,54.32,141.43,25.84,1000
+4931,5,E08000003,2,62.07,166.72,25.84,1000
+5574,5,E08000003,3,68.85,188.56,25.84,1000
+6322,5,E08000003,4,75.65,293.23,25.84,1000
+3321,6,E08000003,0,58.82,329.29,18.64,2000
+4473,7,E08000003,1,45.57,141.43,25.84,1000
+5069,7,E08000003,2,56.25,166.72,25.84,1000
+5749,7,E08000003,3,61.09,188.56,25.84,1000
+6373,7,E08000003,4,58.19,293.23,25.84,1000
+3647,8,E08000003,0,34.85,329.29,25.84,1000
+6581,9,E08000003,1,54.32,203.8,18.64,2000
+6907,9,E08000003,2,62.07,240.25,25.84,1000
+7233,9,E08000003,3,68.85,271.72,25.84,1000
+7559,9,E08000003,4,75.65,422.54,25.84,2000
+7885,10,E08000003,0,58.82,474.52,25.84,1000
+8981,11,E08000003,1,54.32,203.8,25.84,2000
+8982,11,E08000003,2,62.07,240.25,25.84,2000
+8983,11,E08000003,3,68.85,271.72,25.84,2000
+8984,11,E08000003,4,75.65,422.54,25.84,2000
+8985,12,E08000003,0,58.82,474.52,18.64,2000
+161,1,E07000174,1,54.32,112.91,25.84,2000
+487,1,E07000174,2,64.98,129.71,25.84,1000
+813,1,E07000174,3,71.76,142.94,18.64,2000
+1139,1,E07000174,4,79.53,178.95,25.84,2000
+2769,2,E07000174,0,54.46,272.48,25.84,1000
+1465,3,E07000174,1,48.48,102.12,25.84,1000
+1791,3,E07000174,2,55.28,109.3,25.84,1000
+2117,3,E07000174,3,61.09,117.72,25.84,2000
+2443,3,E07000174,4,66.92,138.13,18.64,2000
+3095,4,E07000174,0,52.28,129.48,25.84,2000
+4334,5,E07000174,1,54.32,95.43,25.84,1000
+5030,5,E07000174,2,64.98,118.43,18.64,2000
+5673,5,E07000174,3,71.76,135.68,25.84,1000
+6248,5,E07000174,4,79.53,195.48,18.64,2000
+3421,6,E07000174,0,54.46,219.51,25.84,1000
+4434,7,E07000174,1,48.48,95.43,25.84,2000
+5170,7,E07000174,2,55.28,118.43,25.84,1000
+5831,7,E07000174,3,61.09,135.68,25.84,1000
+6492,7,E07000174,4,66.92,195.48,25.84,1000
+3747,8,E07000174,0,52.28,219.51,25.84,1000
+6681,9,E07000174,1,54.32,137.51,25.84,1000
+7007,9,E07000174,2,64.98,170.65,25.84,1000
+7333,9,E07000174,3,71.76,195.52,18.64,2000
+7659,9,E07000174,4,79.53,281.69,25.84,1000
+7985,10,E07000174,0,54.46,316.32,25.84,1000
+8986,11,E07000174,1,54.32,137.51,25.84,2000
+8987,11,E07000174,2,64.98,170.65,25.84,2000
+8988,11,E07000174,3,71.76,195.52,25.84,2000
+8989,11,E07000174,4,79.53,281.69,25.84,2000
+8990,12,E07000174,0,54.46,316.32,18.64,2000
+280,1,E06000035,1,60.13,139.33,25.84,1000
+606,1,E06000035,2,74.68,165.75,25.84,1000
+932,1,E06000035,3,85.34,182.58,18.64,2000
+1258,1,E06000035,4,94.09,201.8,25.84,1000
+2888,2,E06000035,0,65.34,303.51,25.84,1000
+1584,3,E06000035,1,54.32,130.92,25.84,1000
+1910,3,E06000035,2,65.95,146.54,25.84,1000
+2236,3,E06000035,3,71.76,169.36,25.84,1000
+2562,3,E06000035,4,76.62,209,18.64,2000
+3214,4,E06000035,0,51.19,221.24,25.84,1000
+4036,5,E06000035,1,60.13,135.68,25.84,1000
+4651,5,E06000035,2,74.68,159.83,25.84,2000
+5303,5,E06000035,3,85.34,185.13,25.84,1000
+5988,5,E06000035,4,94.09,293.23,25.84,2000
+3540,6,E06000035,0,65.34,329.29,25.84,2000
+4103,7,E06000035,1,54.32,135.68,25.84,1000
+4798,7,E06000035,2,65.95,159.83,25.84,1000
+5403,7,E06000035,3,71.76,185.13,25.84,1000
+6092,7,E06000035,4,76.62,293.23,25.84,1000
+3866,8,E06000035,0,51.19,329.29,25.84,1000
+6800,9,E06000035,1,60.13,195.52,25.84,1000
+7126,9,E06000035,2,74.68,230.32,25.84,1000
+7452,9,E06000035,3,85.34,266.78,18.64,2000
+7778,9,E06000035,4,94.09,422.54,25.84,1000
+8104,10,E06000035,0,65.34,474.52,25.84,1000
+8991,11,E06000035,1,60.13,195.52,25.84,2000
+8992,11,E06000035,2,74.68,230.32,25.84,2000
+8993,11,E06000035,3,85.34,266.78,25.84,2000
+8994,11,E06000035,4,94.09,422.54,25.84,2000
+8995,12,E06000035,0,65.34,474.52,18.64,2000
+162,1,E07000133,1,54.32,112.91,25.84,2000
+488,1,E07000133,2,64.98,129.71,25.84,1000
+814,1,E07000133,3,71.76,142.94,25.84,1000
+1140,1,E07000133,4,79.53,178.95,25.84,2000
+2770,2,E07000133,0,54.46,272.48,25.84,1000
+1466,3,E07000133,1,48.48,102.12,18.64,2000
+1792,3,E07000133,2,55.28,109.3,25.84,1000
+2118,3,E07000133,3,61.09,117.72,25.84,2000
+2444,3,E07000133,4,66.92,138.13,25.84,1000
+3096,4,E07000133,0,52.28,129.48,18.64,2000
+4335,5,E07000133,1,54.32,105.79,25.84,1000
+5031,5,E07000133,2,64.98,129.92,25.84,1000
+5674,5,E07000133,3,71.76,148.33,25.84,1000
+6249,5,E07000133,4,79.53,304.71,25.84,1000
+3422,6,E07000133,0,54.46,342.22,25.84,1000
+4435,7,E07000133,1,48.48,105.79,25.84,2000
+5171,7,E07000133,2,55.28,129.92,25.84,1000
+5832,7,E07000133,3,61.09,148.33,25.84,1000
+6493,7,E07000133,4,66.92,304.71,18.64,2000
+3748,8,E07000133,0,52.28,342.22,25.84,1000
+6682,9,E07000133,1,54.32,152.44,25.84,1000
+7008,9,E07000133,2,64.98,187.23,25.84,1000
+7334,9,E07000133,3,71.76,213.75,25.84,2000
+7660,9,E07000133,4,79.53,439.08,25.84,1000
+7986,10,E07000133,0,54.46,493.13,18.44,2000
+8996,11,E07000133,1,54.32,152.44,25.84,2000
+8997,11,E07000133,2,64.98,187.23,25.84,2000
+8998,11,E07000133,3,71.76,213.75,25.84,2000
+8999,11,E07000133,4,79.53,439.08,25.84,2000
+9000,12,E07000133,0,54.46,493.13,18.64,2000
+164,1,E09000024,1,68.85,164.54,25.84,2000
+490,1,E09000024,2,81.46,177.76,18.64,2000
+816,1,E09000024,3,88.25,188.59,25.84,1000
+1142,1,E09000024,4,106.66,211.41,25.84,2000
+2772,2,E09000024,0,74.06,358.82,25.84,1000
+1468,3,E09000024,1,61.09,134.53,25.84,1000
+1794,3,E09000024,2,66.92,157.36,25.84,1000
+2120,3,E09000024,3,74.68,180.17,18.64,2000
+2446,3,E09000024,4,87.29,294.28,25.84,1000
+3098,4,E09000024,0,63.17,420.87,25.84,1000
+3973,5,E09000024,1,68.85,257.56,25.84,1000
+4588,5,E09000024,2,81.46,330,25.84,1000
+5240,5,E09000024,3,88.25,402.45,25.84,2000
+5925,5,E09000024,4,106.66,632.42,25.84,1000
+3424,6,E09000024,0,74.06,710.23,25.84,1000
+4187,7,E09000024,1,61.09,257.56,18.64,2000
+4688,7,E09000024,2,66.92,330,25.84,1000
+5340,7,E09000024,3,74.68,402.45,25.84,1000
+5892,7,E09000024,4,87.29,632.42,18.64,2000
+3750,8,E09000024,0,63.17,710.23,18.64,2000
+6684,9,E09000024,1,68.85,371.14,25.84,1000
+7010,9,E09000024,2,81.46,475.54,18.64,2000
+7336,9,E09000024,3,88.25,579.93,25.84,2000
+7662,9,E09000024,4,106.66,911.31,25.84,1000
+7988,10,E09000024,0,74.06,1023.45,25.84,1000
+9001,11,E09000024,1,68.85,371.14,25.84,2000
+9002,11,E09000024,2,81.46,475.54,25.84,2000
+9003,11,E09000024,3,88.25,579.93,25.84,2000
+9004,11,E09000024,4,106.66,911.31,25.84,2000
+9005,12,E09000024,0,74.06,1023.45,18.64,2000
+165,1,E07000042,1,51.41,121.33,25.84,2000
+491,1,E07000042,2,58.19,136.92,25.84,1000
+817,1,E07000042,3,64.98,159.75,25.84,1000
+1143,1,E07000042,4,74.68,178.95,18.64,2000
+2773,2,E07000042,0,57.73,261.7,18.64,2000
+1469,3,E07000042,1,49.46,100.89,25.84,1000
+1795,3,E07000042,2,57.22,114.11,25.84,1000
+2121,3,E07000042,3,64.98,123.71,25.84,1000
+2447,3,E07000042,4,77.58,147.74,25.84,1000
+3099,4,E07000042,0,57.73,130.84,25.84,1000
+4211,5,E07000042,1,51.41,111.54,25.84,1000
+4847,5,E07000042,2,58.19,141.43,25.84,1000
+5478,5,E07000042,3,64.98,178.23,25.84,2000
+6016,5,E07000042,4,74.68,269.07,25.84,2000
+3425,6,E07000042,0,57.73,302.16,25.84,1000
+3927,7,E07000042,1,49.46,111.54,25.84,1000
+5124,7,E07000042,2,57.22,141.43,25.84,1000
+5704,7,E07000042,3,64.98,178.23,25.84,1000
+6416,7,E07000042,4,77.58,269.07,18.64,2000
+3751,8,E07000042,0,57.73,302.16,25.84,1000
+6685,9,E07000042,1,51.41,160.73,25.84,1000
+7011,9,E07000042,2,58.19,203.8,25.84,1000
+7337,9,E07000042,3,64.98,256.83,25.84,2000
+7663,9,E07000042,4,74.68,387.71,18.64,2000
+7989,10,E07000042,0,57.73,435.43,25.84,1000
+9006,11,E07000042,1,51.41,160.73,25.84,2000
+9007,11,E07000042,2,58.19,203.8,25.84,2000
+9008,11,E07000042,3,64.98,256.83,25.84,2000
+9009,11,E07000042,4,74.68,387.71,25.84,2000
+9010,12,E07000042,0,57.73,435.43,18.64,2000
+166,1,E07000203,1,57.22,134.53,18.64,2000
+492,1,E07000203,2,67.88,160.94,25.84,1000
+818,1,E07000203,3,74.68,176.56,25.84,1000
+1144,1,E07000203,4,85.34,193.39,25.84,1000
+2774,2,E07000203,0,38.11,256.29,25.84,1000
+1470,3,E07000203,1,52.38,112.91,25.84,1000
+1796,3,E07000203,2,61.09,133.32,18.64,2000
+2122,3,E07000203,3,66.92,147.74,25.84,1000
+2448,3,E07000203,4,74.68,168.16,25.84,1000
+3100,4,E07000203,0,58.82,153.78,25.84,1000
+4144,5,E07000203,1,57.22,109.24,25.84,1000
+4725,5,E07000203,2,67.88,135.68,18.64,2000
+5444,5,E07000203,3,74.68,172.47,25.84,1000
+6154,5,E07000203,4,85.34,311.63,25.84,1000
+3426,6,E07000203,0,38.11,349.94,18.64,2000
+4261,7,E07000203,1,52.38,109.24,25.84,2000
+4987,7,E07000203,2,61.09,135.68,25.84,2000
+5630,7,E07000203,3,66.92,172.47,25.84,1000
+6292,7,E07000203,4,74.68,311.63,25.84,1000
+3752,8,E07000203,0,58.82,349.94,25.84,1000
+6686,9,E07000203,1,57.22,157.41,18.64,2000
+7012,9,E07000203,2,67.88,195.52,25.84,1000
+7338,9,E07000203,3,74.68,248.54,25.84,2000
+7664,9,E07000203,4,85.34,449.06,25.84,1000
+7990,10,E07000203,0,38.11,504.28,25.84,1000
+9011,11,E07000203,1,57.22,157.41,25.84,2000
+9012,11,E07000203,2,67.88,195.52,25.84,2000
+9013,11,E07000203,3,74.68,248.54,25.84,2000
+9014,11,E07000203,4,85.34,449.06,25.84,2000
+9015,12,E07000203,0,38.11,504.28,18.64,2000
+167,1,E07000228,1,60.13,139.33,25.84,1000
+493,1,E07000228,2,74.68,165.75,25.84,1000
+819,1,E07000228,3,85.34,182.58,18.64,2000
+1145,1,E07000228,4,94.09,201.8,25.84,1000
+2775,2,E07000228,0,65.34,303.51,25.84,1000
+1471,3,E07000228,1,54.32,130.92,25.84,1000
+1797,3,E07000228,2,65.95,146.54,25.84,1000
+2123,3,E07000228,3,71.76,169.36,25.84,1000
+2449,3,E07000228,4,76.62,209,18.64,2000
+3101,4,E07000228,0,51.19,221.24,25.84,1000
+4013,5,E07000228,1,60.13,166.72,25.84,1000
+4628,5,E07000228,2,74.68,208.12,18.64,2000
+5280,5,E07000228,3,85.34,290.92,25.84,1000
+5965,5,E07000228,4,94.09,486.38,25.84,1000
+3427,6,E07000228,0,65.34,544.94,25.84,2000
+4080,7,E07000228,1,54.32,166.72,25.84,1000
+4775,7,E07000228,2,65.95,208.12,25.84,1000
+5380,7,E07000228,3,71.76,290.92,25.84,1000
+6069,7,E07000228,4,76.62,486.38,25.84,1000
+3753,8,E07000228,0,51.19,544.94,25.84,1000
+6687,9,E07000228,1,60.13,240.25,25.84,1000
+7013,9,E07000228,2,74.68,299.91,25.84,1000
+7339,9,E07000228,3,85.34,419.21,18.64,2000
+7665,9,E07000228,4,94.09,700.89,25.84,1000
+7991,10,E07000228,0,65.34,785.27,25.84,1000
+9016,11,E07000228,1,60.13,240.25,25.84,2000
+9017,11,E07000228,2,74.68,299.91,25.84,2000
+9018,11,E07000228,3,85.34,419.21,25.84,2000
+9019,11,E07000228,4,94.09,700.89,25.84,2000
+9020,12,E07000228,0,65.34,785.27,18.64,2000
+168,1,E06000002,1,53.35,99.69,25.84,1000
+494,1,E06000002,2,60.13,115.32,25.84,1000
+820,1,E06000002,3,64.01,128.51,25.84,1000
+1146,1,E06000002,4,73.71,144.14,25.84,1000
+2776,2,E06000002,0,58.82,268.43,25.84,1000
+1472,3,E06000002,1,44.6,112.91,18.64,2000
+1798,3,E06000002,2,52.38,102.12,25.84,1000
+2124,3,E06000002,3,56.25,118.92,25.84,1000
+2450,3,E06000002,4,59.16,130.92,25.84,2000
+3102,4,E06000002,0,50.1,287.33,18.64,2000
+4536,5,E06000002,1,53.35,105.79,25.84,1000
+5051,5,E06000002,2,60.13,124.18,25.84,1000
+5556,5,E06000002,3,64.01,143.72,25.84,1000
+6355,5,E06000002,4,73.71,208.12,25.84,2000
+3428,6,E06000002,0,58.82,233.73,25.84,2000
+4455,7,E06000002,1,44.6,105.79,25.84,1000
+5102,7,E06000002,2,52.38,124.18,25.84,2000
+5731,7,E06000002,3,56.25,143.72,25.84,1000
+6513,7,E06000002,4,59.16,208.12,25.84,1000
+3754,8,E06000002,0,50.1,233.73,25.84,1000
+6688,9,E06000002,1,44.6,152.44,25.84,1000
+7014,9,E06000002,2,60.13,178.94,25.84,1000
+7340,9,E06000002,3,64.01,207.11,25.84,1000
+7666,9,E06000002,4,73.71,299.91,25.84,1000
+7992,10,E06000002,0,58.82,336.8,18.44,2000
+9021,11,E06000002,1,44.6,152.44,25.84,2000
+9022,11,E06000002,2,60.13,178.94,25.84,2000
+9023,11,E06000002,3,64.01,207.11,25.84,2000
+9024,11,E06000002,4,73.71,299.91,25.84,2000
+9025,12,E06000002,0,58.82,336.8,18.64,2000
+169,1,E06000042,1,60.13,139.33,25.84,1000
+495,1,E06000042,2,74.68,165.75,18.64,2000
+821,1,E06000042,3,85.34,182.58,25.84,1000
+1147,1,E06000042,4,94.09,201.8,25.84,1000
+2777,2,E06000042,0,65.34,303.51,25.84,1000
+1473,3,E06000042,1,54.32,130.92,25.84,2000
+1799,3,E06000042,2,65.95,146.54,25.84,1000
+2125,3,E06000042,3,71.76,169.36,18.64,2000
+2451,3,E06000042,4,76.62,209,25.84,2000
+3103,4,E06000042,0,51.19,221.24,25.84,1000
+4014,5,E06000042,1,60.13,146.04,25.84,1000
+4629,5,E06000042,2,74.68,178.23,25.84,1000
+5281,5,E06000042,3,85.34,202.38,18.64,2000
+5966,5,E06000042,4,94.09,354.16,25.84,1000
+3429,6,E06000042,0,65.34,397.72,25.84,2000
+4081,7,E06000042,1,54.32,146.04,25.84,1000
+4776,7,E06000042,2,65.95,178.23,25.84,1000
+5381,7,E06000042,3,71.76,202.38,25.84,1000
+6070,7,E06000042,4,76.62,354.16,25.84,1000
+3755,8,E06000042,0,51.19,397.72,18.64,2000
+6689,9,E06000042,1,60.13,210.44,25.84,1000
+7015,9,E06000042,2,74.68,256.83,18.64,2000
+7341,9,E06000042,3,85.34,291.63,25.84,1000
+7667,9,E06000042,4,94.09,510.33,25.84,1000
+7993,10,E06000042,0,65.34,573.11,25.84,1000
+9026,11,E06000042,1,60.13,210.44,25.84,2000
+9027,11,E06000042,2,74.68,256.83,25.84,2000
+9028,11,E06000042,3,85.34,291.63,25.84,2000
+9029,11,E06000042,4,94.09,510.33,25.84,2000
+9030,12,E06000042,0,65.34,573.11,18.64,2000
+170,1,E07000210,1,60.13,139.33,25.84,1000
+496,1,E07000210,2,74.68,165.75,25.84,2000
+822,1,E07000210,3,85.34,182.58,25.84,1000
+1148,1,E07000210,4,94.09,201.8,18.64,2000
+2778,2,E07000210,0,65.34,303.51,18.64,2000
+1474,3,E07000210,1,54.32,130.92,25.84,2000
+1800,3,E07000210,2,65.95,146.54,25.84,1000
+2126,3,E07000210,3,71.76,169.36,25.84,1000
+2452,3,E07000210,4,76.62,209,25.84,2000
+3104,4,E07000210,0,51.19,221.24,25.84,1000
+4015,5,E07000210,1,60.13,178.23,25.84,1000
+4630,5,E07000210,2,74.68,257.56,25.84,1000
+5282,5,E07000210,3,85.34,354.16,25.84,1000
+5967,5,E07000210,4,94.09,608.27,25.84,1000
+3430,6,E07000210,0,65.34,683.11,25.84,2000
+4082,7,E07000210,1,54.32,178.23,25.84,1000
+4777,7,E07000210,2,65.95,257.56,25.84,1000
+5382,7,E07000210,3,71.76,354.16,25.84,1000
+6071,7,E07000210,4,76.62,608.27,25.84,1000
+3756,8,E07000210,0,51.19,683.11,25.84,1000
+6690,9,E07000210,1,60.13,256.83,25.84,1000
+7016,9,E07000210,2,74.68,371.14,25.84,1000
+7342,9,E07000210,3,85.34,510.33,25.84,1000
+7668,9,E07000210,4,94.09,876.52,18.64,2000
+7994,10,E07000210,0,65.34,984.36,25.84,1000
+9031,11,E07000210,1,60.13,256.83,25.84,2000
+9032,11,E07000210,2,74.68,371.14,25.84,2000
+9033,11,E07000210,3,85.34,510.33,25.84,2000
+9034,11,E07000210,4,94.09,876.52,25.84,2000
+9035,12,E07000210,0,65.34,984.36,18.64,2000
+171,1,E07000091,1,60.13,139.33,18.64,2000
+497,1,E07000091,2,74.68,165.75,25.84,2000
+823,1,E07000091,3,85.34,182.58,25.84,1000
+1149,1,E07000091,4,94.09,201.8,25.84,1000
+2779,2,E07000091,0,65.34,303.51,25.84,1000
+1475,3,E07000091,1,54.32,130.92,25.84,2000
+1801,3,E07000091,2,65.95,146.54,18.64,2000
+2127,3,E07000091,3,71.76,169.36,25.84,1000
+2453,3,E07000091,4,76.62,209,25.84,2000
+3105,4,E07000091,0,51.19,221.24,25.84,1000
+4016,5,E07000091,1,60.13,146.04,18.64,2000
+4631,5,E07000091,2,74.68,188.56,25.84,1000
+5283,5,E07000091,3,85.34,232.26,25.84,1000
+5968,5,E07000091,4,94.09,365.64,25.84,1000
+3431,6,E07000091,0,65.34,410.63,18.64,2000
+4083,7,E07000091,1,54.32,146.04,25.84,1000
+4778,7,E07000091,2,65.95,188.56,18.64,2000
+5383,7,E07000091,3,71.76,232.26,25.84,1000
+6072,7,E07000091,4,76.62,365.64,25.84,1000
+3757,8,E07000091,0,51.19,410.63,25.84,1000
+6691,9,E07000091,1,60.13,210.44,18.64,2000
+7017,9,E07000091,2,74.68,271.72,25.84,1000
+7343,9,E07000091,3,85.34,334.7,25.84,1000
+7669,9,E07000091,4,94.09,526.89,25.84,2000
+7995,10,E07000091,0,65.34,591.71,25.84,1000
+9036,11,E07000091,1,60.13,210.44,25.84,2000
+9037,11,E07000091,2,74.68,271.72,25.84,2000
+9038,11,E07000091,3,85.34,334.7,25.84,2000
+9039,11,E07000091,4,94.09,526.89,25.84,2000
+9040,12,E07000091,0,65.34,591.71,18.64,2000
+172,1,E07000175,1,54.32,112.91,25.84,1000
+498,1,E07000175,2,64.98,129.71,25.84,2000
+824,1,E07000175,3,71.76,142.94,18.64,2000
+1150,1,E07000175,4,79.53,178.95,25.84,1000
+2780,2,E07000175,0,54.46,272.48,25.84,1000
+1476,3,E07000175,1,48.48,102.12,25.84,2000
+1802,3,E07000175,2,55.28,109.3,25.84,1000
+2128,3,E07000175,3,61.09,117.72,25.84,1000
+2454,3,E07000175,4,66.92,138.13,18.64,2000
+3106,4,E07000175,0,52.28,129.48,25.84,1000
+4336,5,E07000175,1,54.32,100.04,25.84,1000
+5032,5,E07000175,2,64.98,123.02,25.84,1000
+5675,5,E07000175,3,71.76,143.72,25.84,1000
+6250,5,E07000175,4,79.53,219.63,25.84,1000
+3432,6,E07000175,0,54.46,246.66,25.84,1000
+4436,7,E07000175,1,48.48,100.04,18.64,2000
+5172,7,E07000175,2,55.28,123.02,18.64,2000
+5833,7,E07000175,3,61.09,143.72,18.64,2000
+6494,7,E07000175,4,66.92,219.63,25.84,1000
+3758,8,E07000175,0,52.28,246.66,25.84,1000
+6692,9,E07000175,1,54.32,144.16,25.84,2000
+7018,9,E07000175,2,64.98,177.26,25.84,1000
+7344,9,E07000175,3,71.76,207.11,18.64,2000
+7670,9,E07000175,4,79.53,316.49,25.84,2000
+7996,10,E07000175,0,54.46,355.43,25.84,1000
+9041,11,E07000175,1,54.32,144.16,25.84,2000
+9042,11,E07000175,2,64.98,177.26,25.84,2000
+9043,11,E07000175,3,71.76,207.11,25.84,2000
+9044,11,E07000175,4,79.53,316.49,25.84,2000
+9045,12,E07000175,0,54.46,355.43,18.64,2000
+174,1,E08000021,1,53.35,99.69,25.84,1000
+500,1,E08000021,2,60.13,115.32,18.64,2000
+826,1,E08000021,3,64.01,128.51,25.84,1000
+1152,1,E08000021,4,73.71,144.14,25.84,1000
+2782,2,E08000021,0,58.82,268.43,25.84,1000
+1478,3,E08000021,1,44.6,112.91,25.84,1000
+1804,3,E08000021,2,52.38,102.12,25.84,1000
+2130,3,E08000021,3,56.25,118.92,18.64,2000
+2456,3,E08000021,4,59.16,130.92,25.84,1000
+3108,4,E08000021,0,50.1,287.33,25.84,1000
+4537,5,E08000021,1,53.35,123.02,25.84,1000
+5052,5,E08000021,2,60.13,146.04,18.64,2000
+5557,5,E08000021,3,64.01,154.07,25.84,1000
+6356,5,E08000021,4,73.71,233.42,25.84,2000
+3434,6,E08000021,0,58.82,262.14,25.84,1000
+4456,7,E08000021,1,44.6,123.02,25.84,1000
+5103,7,E08000021,2,52.38,146.04,18.64,2000
+5732,7,E08000021,3,56.25,154.07,25.84,1000
+6514,7,E08000021,4,59.16,233.42,25.84,1000
+3760,8,E08000021,0,50.1,262.14,18.64,2000
+6694,9,E08000021,1,44.6,177.26,25.84,2000
+7020,9,E08000021,2,60.13,210.44,18.64,2000
+7346,9,E08000021,3,64.01,222,25.84,1000
+7672,9,E08000021,4,73.71,336.34,25.84,2000
+7998,10,E08000021,0,58.82,377.74,25.84,1000
+9046,11,E08000021,1,44.6,177.26,25.84,2000
+9047,11,E08000021,2,60.13,210.44,25.84,2000
+9048,11,E08000021,3,64.01,222,25.84,2000
+9049,11,E08000021,4,73.71,336.34,25.84,2000
+9050,12,E08000021,0,58.82,377.74,18.64,2000
+173,1,E07000195,1,55.28,111.71,25.84,1000
+499,1,E07000195,2,61.09,132.12,25.84,2000
+825,1,E07000195,3,72.73,150.14,25.84,1000
+1151,1,E07000195,4,84.37,182.58,25.84,1000
+2781,2,E07000195,0,41.39,277.87,25.84,1000
+1477,3,E07000195,1,48.48,99.69,18.64,2000
+1803,3,E07000195,2,52.38,106.93,25.84,1000
+2129,3,E07000195,3,63.04,117.72,25.84,1000
+2455,3,E07000195,4,71.76,144.14,25.84,1000
+3107,4,E07000195,0,49.01,121.41,18.64,2000
+4290,5,E07000195,1,55.28,105.79,18.64,2000
+4900,5,E07000195,2,61.09,123.02,25.84,1000
+5531,5,E07000195,3,72.73,146.04,25.84,1000
+6183,5,E07000195,4,84.37,215.03,18.64,2000
+3433,6,E07000195,0,41.39,241.47,25.84,1000
+4511,7,E07000195,1,48.48,105.79,25.84,1000
+5196,7,E07000195,2,52.38,123.02,25.84,1000
+5787,7,E07000195,3,63.04,146.04,25.84,1000
+6448,7,E07000195,4,71.76,215.03,25.84,2000
+3759,8,E07000195,0,49.01,241.47,25.84,1000
+6693,9,E07000195,1,55.28,152.44,25.84,2000
+7019,9,E07000195,2,61.09,177.26,25.84,1000
+7345,9,E07000195,3,72.73,210.44,25.84,1000
+7671,9,E07000195,4,84.37,309.88,25.84,2000
+7997,10,E07000195,0,41.39,347.94,18.44,2000
+9051,11,E07000195,1,55.28,152.44,25.84,2000
+9052,11,E07000195,2,61.09,177.26,25.84,2000
+9053,11,E07000195,3,72.73,210.44,25.84,2000
+9054,11,E07000195,4,84.37,309.88,25.84,2000
+9055,12,E07000195,0,41.39,347.94,18.64,2000
+175,1,E09000025,1,68.85,164.54,25.84,1000
+501,1,E09000025,2,81.46,177.76,25.84,1000
+827,1,E09000025,3,88.25,188.59,25.84,1000
+1153,1,E09000025,4,106.66,211.41,18.64,2000
+2783,2,E09000025,0,74.06,358.82,18.64,2000
+1479,3,E09000025,1,61.09,134.53,25.84,1000
+1805,3,E09000025,2,66.92,157.36,25.84,1000
+2131,3,E09000025,3,74.68,180.17,25.84,1000
+2457,3,E09000025,4,87.29,294.28,25.84,1000
+3109,4,E09000025,0,63.17,420.87,25.84,1000
+3974,5,E09000025,1,68.85,225.39,18.64,2000
+4589,5,E09000025,2,81.46,274.8,25.84,1000
+5241,5,E09000025,3,88.25,317.35,25.84,2000
+5926,5,E09000025,4,106.66,398.99,25.84,1000
+3435,6,E09000025,0,74.06,448.09,25.84,1000
+4188,7,E09000025,1,61.09,225.39,25.84,1000
+4689,7,E09000025,2,66.92,274.8,18.64,2000
+5341,7,E09000025,3,74.68,317.35,25.84,1000
+5893,7,E09000025,4,87.29,398.99,25.84,1000
+3761,8,E09000025,0,63.17,448.09,25.84,2000
+6695,9,E09000025,1,68.85,324.78,25.84,2000
+7021,9,E09000025,2,81.46,396,25.84,1000
+7347,9,E09000025,3,88.25,457.3,25.84,1000
+7673,9,E09000025,4,106.66,574.95,18.64,2000
+7999,10,E09000025,0,74.06,645.69,25.84,1000
+9056,11,E09000025,1,68.85,324.78,25.84,2000
+9057,11,E09000025,2,81.46,396,25.84,2000
+9058,11,E09000025,3,88.25,457.3,25.84,2000
+9059,11,E09000025,4,106.66,574.95,25.84,2000
+9060,12,E09000025,0,74.06,645.69,18.64,2000
+176,1,E07000043,1,51.41,121.33,18.64,2000
+502,1,E07000043,2,58.19,136.92,25.84,1000
+828,1,E07000043,3,64.98,159.75,25.84,1000
+1154,1,E07000043,4,74.68,178.95,25.84,1000
+2784,2,E07000043,0,57.73,261.7,25.84,2000
+1480,3,E07000043,1,49.46,100.89,25.84,1000
+1806,3,E07000043,2,57.22,114.11,18.64,2000
+2132,3,E07000043,3,64.98,123.71,25.84,1000
+2458,3,E07000043,4,77.58,147.74,25.84,1000
+3110,4,E07000043,0,57.73,130.84,25.84,1000
+4212,5,E07000043,1,51.41,111.54,25.84,1000
+4848,5,E07000043,2,58.19,146.04,18.64,2000
+5479,5,E07000043,3,64.98,172.47,18.64,2000
+6017,5,E07000043,4,74.68,238.02,18.64,2000
+3436,6,E07000043,0,57.73,267.3,18.64,2000
+3928,7,E07000043,1,49.46,111.54,25.84,1000
+5125,7,E07000043,2,57.22,146.04,18.64,2000
+5705,7,E07000043,3,64.98,172.47,18.64,2000
+6417,7,E07000043,4,77.58,238.02,25.84,1000
+3762,8,E07000043,0,57.73,267.3,25.84,2000
+6696,9,E07000043,1,51.41,160.73,18.64,2000
+7022,9,E07000043,2,58.19,210.44,25.84,1000
+7348,9,E07000043,3,64.98,248.54,25.84,1000
+7674,9,E07000043,4,74.68,342.99,25.84,1000
+8000,10,E07000043,0,57.73,385.18,25.84,1000
+9061,11,E07000043,1,51.41,160.73,25.84,2000
+9062,11,E07000043,2,58.19,210.44,25.84,2000
+9063,11,E07000043,3,64.98,248.54,25.84,2000
+9064,11,E07000043,4,74.68,342.99,25.84,2000
+9065,12,E07000043,0,57.73,385.18,18.64,2000
+178,1,E07000038,1,54.32,112.91,25.84,1000
+504,1,E07000038,2,64.98,129.71,25.84,1000
+830,1,E07000038,3,71.76,142.94,18.64,2000
+1156,1,E07000038,4,79.53,178.95,25.84,1000
+2786,2,E07000038,0,54.46,272.48,25.84,2000
+1482,3,E07000038,1,48.48,102.12,25.84,1000
+1808,3,E07000038,2,55.28,109.3,25.84,2000
+2134,3,E07000038,3,61.09,117.72,25.84,1000
+2460,3,E07000038,4,66.92,138.13,18.64,2000
+3112,4,E07000038,0,52.28,129.48,25.84,1000
+4337,5,E07000038,1,54.32,98.9,25.84,1000
+5033,5,E07000038,2,64.98,124.18,25.84,1000
+5676,5,E07000038,3,71.76,159.83,18.64,2000
+6251,5,E07000038,4,79.53,219.63,25.84,1000
+3438,6,E07000038,0,54.46,246.66,25.84,1000
+4437,7,E07000038,1,48.48,98.9,25.84,1000
+5173,7,E07000038,2,55.28,124.18,25.84,1000
+5834,7,E07000038,3,61.09,159.83,25.84,1000
+6495,7,E07000038,4,66.92,219.63,25.84,1000
+3764,8,E07000038,0,52.28,246.66,25.84,2000
+6698,9,E07000038,1,54.32,142.52,25.84,1000
+7024,9,E07000038,2,64.98,178.94,25.84,1000
+7350,9,E07000038,3,71.76,230.32,18.64,2000
+7676,9,E07000038,4,79.53,316.49,25.84,1000
+8002,10,E07000038,0,54.46,355.43,25.84,1000
+9066,11,E07000038,1,54.32,142.52,25.84,2000
+9067,11,E07000038,2,64.98,178.94,25.84,2000
+9068,11,E07000038,3,71.76,230.32,25.84,2000
+9069,11,E07000038,4,79.53,316.49,25.84,2000
+9070,12,E07000038,0,54.46,355.43,18.64,2000
+179,1,E06000012,1,53.35,103.31,25.84,1000
+505,1,E06000012,2,61.09,122.52,25.84,1000
+831,1,E06000012,3,65.95,135.72,25.84,2000
+1157,1,E06000012,4,76.62,163.35,25.84,1000
+2787,2,E06000012,0,55.56,265.72,25.84,2000
+1483,3,E06000012,1,48.48,92.49,18.64,2000
+1809,3,E06000012,2,55.28,127.31,25.84,2000
+2135,3,E06000012,3,59.16,117.72,25.84,1000
+2461,3,E06000012,4,66.92,136.92,25.84,1000
+3113,4,E06000012,0,54.46,182.11,18.64,2000
+4401,5,E06000012,1,53.35,91.98,25.84,2000
+4881,5,E06000012,2,61.09,116.15,25.84,1000
+5512,5,E06000012,3,65.95,123.02,25.84,2000
+6117,5,E06000012,4,76.62,172.47,18.64,2000
+3439,6,E06000012,0,55.56,193.71,25.84,1000
+4555,7,E06000012,1,48.48,91.98,25.84,1000
+4823,7,E06000012,2,55.28,116.15,25.84,1000
+5859,7,E06000012,3,59.16,123.02,25.84,1000
+6215,7,E06000012,4,66.92,172.47,25.84,2000
+3765,8,E06000012,0,54.46,193.71,25.84,2000
+6699,9,E06000012,1,53.35,132.55,25.84,1000
+7025,9,E06000012,2,55.28,167.37,25.84,1000
+7351,9,E06000012,3,65.95,177.26,25.84,1000
+7677,9,E06000012,4,76.62,248.54,25.84,1000
+8003,10,E06000012,0,55.56,279.15,18.44,2000
+9071,11,E06000012,1,53.35,132.55,25.84,2000
+9072,11,E06000012,2,55.28,167.37,25.84,2000
+9073,11,E06000012,3,65.95,177.26,25.84,2000
+9074,11,E06000012,4,76.62,248.54,25.84,2000
+9075,12,E06000012,0,55.56,279.15,18.64,2000
+180,1,E07000099,1,57.22,134.53,25.84,1000
+506,1,E07000099,2,67.88,160.94,18.64,2000
+832,1,E07000099,3,74.68,176.56,25.84,2000
+1158,1,E07000099,4,85.34,193.39,25.84,1000
+2788,2,E07000099,0,38.11,256.29,25.84,2000
+1484,3,E07000099,1,52.38,112.91,25.84,1000
+1810,3,E07000099,2,61.09,133.32,25.84,2000
+2136,3,E07000099,3,66.92,147.74,18.64,2000
+2462,3,E07000099,4,74.68,168.16,25.84,1000
+3114,4,E07000099,0,58.82,153.78,25.84,1000
+4145,5,E07000099,1,57.22,141.43,25.84,1000
+4726,5,E07000099,2,67.88,183.98,25.84,2000
+5445,5,E07000099,3,74.68,235.71,25.84,1000
+6155,5,E07000099,4,85.34,456.49,25.84,1000
+3440,6,E07000099,0,38.11,512.65,25.84,1000
+4262,7,E07000099,1,52.38,141.43,25.84,2000
+4988,7,E07000099,2,61.09,183.98,25.84,2000
+5631,7,E07000099,3,66.92,235.71,25.84,1000
+6293,7,E07000099,4,74.68,456.49,25.84,1000
+3766,8,E07000099,0,58.82,512.65,18.64,2000
+6700,9,E07000099,1,57.22,203.8,25.84,1000
+7026,9,E07000099,2,67.88,265.11,18.64,2000
+7352,9,E07000099,3,74.68,339.66,25.84,1000
+7678,9,E07000099,4,85.34,657.81,25.84,1000
+8004,10,E07000099,0,38.11,738.72,25.84,2000
+9076,11,E07000099,1,57.22,203.8,25.84,2000
+9077,11,E07000099,2,67.88,265.11,25.84,2000
+9078,11,E07000099,3,74.68,339.66,25.84,2000
+9079,11,E07000099,4,85.34,657.81,25.84,2000
+9080,12,E07000099,0,38.11,738.72,18.64,2000
+181,1,E07000139,1,54.32,112.91,25.84,1000
+507,1,E07000139,2,64.98,129.71,25.84,1000
+833,1,E07000139,3,71.76,142.94,25.84,2000
+1159,1,E07000139,4,79.53,178.95,18.64,2000
+2789,2,E07000139,0,54.46,272.48,18.64,2000
+1485,3,E07000139,1,48.48,102.12,25.84,1000
+1811,3,E07000139,2,55.28,109.3,25.84,2000
+2137,3,E07000139,3,61.09,117.72,25.84,1000
+2463,3,E07000139,4,66.92,138.13,25.84,1000
+3115,4,E07000139,0,52.28,129.48,25.84,1000
+4338,5,E07000139,1,54.32,111.54,18.64,2000
+5034,5,E07000139,2,64.98,123.02,25.84,1000
+5677,5,E07000139,3,71.76,148.33,25.84,2000
+6252,5,E07000139,4,79.53,208.12,25.84,1000
+3441,6,E07000139,0,54.46,233.73,25.84,1000
+4438,7,E07000139,1,48.48,111.54,25.84,1000
+5174,7,E07000139,2,55.28,123.02,25.84,1000
+5835,7,E07000139,3,61.09,148.33,25.84,1000
+6496,7,E07000139,4,66.92,208.12,25.84,1000
+3767,8,E07000139,0,52.28,233.73,25.84,1000
+6701,9,E07000139,1,54.32,160.73,25.84,1000
+7027,9,E07000139,2,64.98,177.26,25.84,2000
+7353,9,E07000139,3,71.76,213.75,25.84,1000
+7679,9,E07000139,4,79.53,299.91,18.64,2000
+8005,10,E07000139,0,54.46,336.8,25.84,2000
+9081,11,E07000139,1,54.32,160.73,25.84,2000
+9082,11,E07000139,2,64.98,177.26,25.84,2000
+9083,11,E07000139,3,71.76,213.75,25.84,2000
+9084,11,E07000139,4,79.53,299.91,25.84,2000
+9085,12,E07000139,0,54.46,336.8,18.64,2000
+182,1,E06000013,1,53.35,103.31,18.64,2000
+508,1,E06000013,2,61.09,122.52,25.84,1000
+834,1,E06000013,3,65.95,135.72,25.84,2000
+1160,1,E06000013,4,76.62,163.35,25.84,1000
+2790,2,E06000013,0,55.56,265.72,25.84,1000
+1486,3,E06000013,1,48.48,92.49,25.84,1000
+1812,3,E06000013,2,55.28,127.31,18.64,2000
+2138,3,E06000013,3,59.16,117.72,25.84,1000
+2464,3,E06000013,4,66.92,136.92,25.84,1000
+3116,4,E06000013,0,54.46,182.11,25.84,1000
+4402,5,E06000013,1,53.35,88.54,25.84,2000
+4882,5,E06000013,2,61.09,111.54,25.84,1000
+5513,5,E06000013,3,65.95,124.18,25.84,2000
+6118,5,E06000013,4,76.62,195.48,25.84,1000
+3442,6,E06000013,0,55.56,219.51,18.64,2000
+4556,7,E06000013,1,48.48,88.54,25.84,1000
+4824,7,E06000013,2,55.28,111.54,25.84,1000
+5860,7,E06000013,3,59.16,124.18,25.84,1000
+6216,7,E06000013,4,66.92,195.48,18.64,2000
+3768,8,E06000013,0,54.46,219.51,25.84,1000
+6702,9,E06000013,1,53.35,127.58,18.64,2000
+7028,9,E06000013,2,55.28,160.73,25.84,2000
+7354,9,E06000013,3,65.95,178.94,25.84,1000
+7680,9,E06000013,4,76.62,281.69,25.84,1000
+8006,10,E06000013,0,55.56,316.32,25.84,2000
+9086,11,E06000013,1,53.35,127.58,25.84,2000
+9087,11,E06000013,2,55.28,160.73,25.84,2000
+9088,11,E06000013,3,65.95,178.94,25.84,2000
+9089,11,E06000013,4,76.62,281.69,25.84,2000
+9090,12,E06000013,0,55.56,316.32,18.64,2000
+183,1,E07000147,1,57.22,134.53,25.84,1000
+509,1,E07000147,2,67.88,160.94,25.84,1000
+835,1,E07000147,3,74.68,176.56,18.64,2000
+1161,1,E07000147,4,85.34,193.39,25.84,1000
+2791,2,E07000147,0,38.11,256.29,25.84,1000
+1487,3,E07000147,1,52.38,112.91,25.84,1000
+1813,3,E07000147,2,61.09,133.32,25.84,1000
+2139,3,E07000147,3,66.92,147.74,25.84,1000
+2465,3,E07000147,4,74.68,168.16,18.64,2000
+3117,4,E07000147,0,58.82,153.78,25.84,1000
+4146,5,E07000147,1,57.22,108.08,18.64,2000
+4727,5,E07000147,2,67.88,135.68,25.84,2000
+5446,5,E07000147,3,74.68,178.23,18.64,2000
+6156,5,E07000147,4,85.34,293.23,25.84,1000
+3443,6,E07000147,0,38.11,329.29,25.84,1000
+4263,7,E07000147,1,52.38,108.08,25.84,2000
+4989,7,E07000147,2,61.09,135.68,25.84,2000
+5632,7,E07000147,3,66.92,178.23,18.64,2000
+6294,7,E07000147,4,74.68,293.23,25.84,1000
+3769,8,E07000147,0,58.82,329.29,25.84,1000
+6703,9,E07000147,1,57.22,155.77,25.84,1000
+7029,9,E07000147,2,67.88,195.52,25.84,2000
+7355,9,E07000147,3,74.68,256.83,18.64,2000
+7681,9,E07000147,4,85.34,422.54,25.84,1000
+8007,10,E07000147,0,38.11,474.52,25.84,2000
+9091,11,E07000147,1,57.22,155.77,25.84,2000
+9092,11,E07000147,2,67.88,195.52,25.84,2000
+9093,11,E07000147,3,74.68,256.83,25.84,2000
+9094,11,E07000147,4,85.34,422.54,25.84,2000
+9095,12,E07000147,0,38.11,474.52,18.64,2000
+89,1,E06000061,1,54.32,112.91,25.84,1000
+415,1,E06000061,2,64.98,129.71,25.84,2000
+741,1,E06000061,3,71.76,142.94,25.84,1000
+1067,1,E06000061,4,79.53,178.95,18.64,2000
+2697,2,E06000061,0,54.46,272.48,18.64,2000
+1393,3,E06000061,1,48.48,102.12,25.84,2000
+1719,3,E06000061,2,55.28,109.3,25.84,1000
+2045,3,E06000061,3,61.09,117.72,25.84,1000
+2371,3,E06000061,4,66.92,138.13,25.84,2000
+3023,4,E06000061,0,52.28,129.48,25.84,1000
+4320,5,E06000061,1,54.32,105.79,18.64,2000
+5021,5,E06000061,2,64.98,135.68,25.84,1000
+5664,5,E06000061,3,71.76,159.83,25.84,1000
+6239,5,E06000061,4,79.53,269.07,25.84,1000
+3349,6,E06000061,0,54.46,302.16,25.84,2000
+4425,7,E06000061,1,48.48,105.79,18.64,2000
+5161,7,E06000061,2,55.28,135.68,18.64,2000
+5822,7,E06000061,3,61.09,159.83,18.64,2000
+6483,7,E06000061,4,66.92,269.07,25.84,1000
+3675,8,E06000061,0,52.28,302.16,25.84,1000
+6609,9,E06000061,1,54.32,152.44,25.84,1000
+6935,9,E06000061,2,64.98,195.52,25.84,1000
+7261,9,E06000061,3,71.76,230.32,25.84,1000
+7587,9,E06000061,4,79.53,387.71,18.64,2000
+7913,10,E06000061,0,54.46,435.43,25.84,1000
+9096,11,E06000061,1,54.32,152.44,25.84,2000
+9097,11,E06000061,2,64.98,195.52,25.84,2000
+9098,11,E06000061,3,71.76,230.32,25.84,2000
+9099,11,E06000061,4,79.53,387.71,25.84,2000
+9100,12,E06000061,0,54.46,435.43,18.64,2000
+184,1,E06000024,1,51.41,121.33,25.84,1000
+510,1,E06000024,2,58.19,136.92,25.84,1000
+836,1,E06000024,3,64.98,159.75,25.84,1000
+1162,1,E06000024,4,74.68,178.95,25.84,1000
+2792,2,E06000024,0,57.73,261.7,25.84,1000
+1488,3,E06000024,1,49.46,100.89,18.64,2000
+1814,3,E06000024,2,57.22,114.11,25.84,1000
+2140,3,E06000024,3,64.98,123.71,25.84,1000
+2466,3,E06000024,4,77.58,147.74,25.84,1000
+3118,4,E06000024,0,57.73,130.84,18.64,2000
+4214,5,E06000024,1,51.41,123.02,25.84,1000
+4850,5,E06000024,2,58.19,148.33,25.84,1000
+5481,5,E06000024,3,64.98,178.23,25.84,1000
+6019,5,E06000024,4,74.68,269.07,25.84,1000
+3444,6,E06000024,0,57.73,302.16,25.84,1000
+3930,7,E06000024,1,49.46,123.02,25.84,1000
+5127,7,E06000024,2,57.22,148.33,25.84,2000
+5707,7,E06000024,3,64.98,178.23,25.84,2000
+6419,7,E06000024,4,77.58,269.07,25.84,1000
+3770,8,E06000024,0,57.73,302.16,25.84,1000
+6704,9,E06000024,1,51.41,177.26,25.84,1000
+7030,9,E06000024,2,58.19,213.75,25.84,2000
+7356,9,E06000024,3,64.98,256.83,25.84,1000
+7682,9,E06000024,4,74.68,387.71,25.84,1000
+8008,10,E06000024,0,57.73,435.43,18.44,2000
+9101,11,E06000024,1,51.41,177.26,25.84,2000
+9102,11,E06000024,2,58.19,213.75,25.84,2000
+9103,11,E06000024,3,64.98,256.83,25.84,2000
+9104,11,E06000024,4,74.68,387.71,25.84,2000
+9105,12,E06000024,0,57.73,435.43,18.64,2000
+185,1,E08000022,1,53.35,99.69,25.84,1000
+511,1,E08000022,2,60.13,115.32,18.64,2000
+837,1,E08000022,3,64.01,128.51,25.84,1000
+1163,1,E08000022,4,73.71,144.14,25.84,1000
+2793,2,E08000022,0,58.82,268.43,25.84,1000
+1489,3,E08000022,1,44.6,112.91,25.84,1000
+1815,3,E08000022,2,52.38,102.12,25.84,1000
+2141,3,E08000022,3,56.25,118.92,18.64,2000
+2467,3,E08000022,4,59.16,130.92,25.84,1000
+3119,4,E08000022,0,50.1,287.33,25.84,2000
+4538,5,E08000022,1,53.35,106.94,25.84,1000
+5053,5,E08000022,2,60.13,135.68,25.84,1000
+5558,5,E08000022,3,64.01,159.83,25.84,1000
+6357,5,E08000022,4,73.71,246.06,25.84,2000
+3445,6,E08000022,0,58.82,276.34,25.84,1000
+4457,7,E08000022,1,44.6,106.94,25.84,1000
+5104,7,E08000022,2,52.38,135.68,25.84,1000
+5733,7,E08000022,3,56.25,159.83,25.84,1000
+6515,7,E08000022,4,59.16,246.06,18.64,2000
+3771,8,E08000022,0,50.1,276.34,18.64,2000
+6705,9,E08000022,1,44.6,154.1,25.84,1000
+7031,9,E08000022,2,60.13,195.52,18.64,2000
+7357,9,E08000022,3,64.01,230.32,25.84,1000
+7683,9,E08000022,4,73.71,354.57,25.84,1000
+8009,10,E08000022,0,58.82,398.19,25.84,1000
+9106,11,E08000022,1,44.6,154.1,25.84,2000
+9107,11,E08000022,2,60.13,195.52,25.84,2000
+9108,11,E08000022,3,64.01,230.32,25.84,2000
+9109,11,E08000022,4,73.71,354.57,25.84,2000
+9110,12,E08000022,0,58.82,398.19,18.64,2000
+186,1,E07000218,1,55.28,111.71,25.84,1000
+512,1,E07000218,2,61.09,132.12,25.84,1000
+838,1,E07000218,3,72.73,150.14,25.84,1000
+1164,1,E07000218,4,84.37,182.58,18.64,2000
+2794,2,E07000218,0,41.39,277.87,18.64,2000
+1490,3,E07000218,1,48.48,99.69,25.84,1000
+1816,3,E07000218,2,52.38,106.93,25.84,1000
+2142,3,E07000218,3,63.04,117.72,25.84,2000
+2468,3,E07000218,4,71.76,144.14,25.84,1000
+3120,4,E07000218,0,49.01,121.41,25.84,2000
+4291,5,E07000218,1,55.28,111.54,25.84,1000
+4901,5,E07000218,2,61.09,135.68,25.84,1000
+5532,5,E07000218,3,72.73,159.83,25.84,1000
+6184,5,E07000218,4,84.37,208.12,25.84,2000
+3446,6,E07000218,0,41.39,233.73,25.84,1000
+4512,7,E07000218,1,48.48,111.54,25.84,1000
+5197,7,E07000218,2,52.38,135.68,25.84,1000
+5788,7,E07000218,3,63.04,159.83,25.84,1000
+6449,7,E07000218,4,71.76,208.12,25.84,2000
+3772,8,E07000218,0,49.01,233.73,25.84,1000
+6706,9,E07000218,1,55.28,160.73,25.84,1000
+7032,9,E07000218,2,61.09,195.52,25.84,1000
+7358,9,E07000218,3,72.73,230.32,25.84,1000
+7684,9,E07000218,4,84.37,299.91,18.64,2000
+8010,10,E07000218,0,41.39,336.8,25.84,1000
+9111,11,E07000218,1,55.28,160.73,25.84,2000
+9112,11,E07000218,2,61.09,195.52,25.84,2000
+9113,11,E07000218,3,72.73,230.32,25.84,2000
+9114,11,E07000218,4,84.37,299.91,25.84,2000
+9115,12,E07000218,0,41.39,336.8,18.64,2000
+187,1,E07000134,1,54.32,112.91,18.64,2000
+513,1,E07000134,2,64.98,129.71,25.84,1000
+839,1,E07000134,3,71.76,142.94,25.84,1000
+1165,1,E07000134,4,79.53,178.95,25.84,2000
+2795,2,E07000134,0,54.46,272.48,25.84,1000
+1491,3,E07000134,1,48.48,102.12,25.84,1000
+1817,3,E07000134,2,55.28,109.3,18.64,2000
+2143,3,E07000134,3,61.09,117.72,25.84,2000
+2469,3,E07000134,4,66.92,138.13,25.84,1000
+3121,4,E07000134,0,52.28,129.48,25.84,2000
+4339,5,E07000134,1,54.32,105.79,25.84,2000
+5035,5,E07000134,2,64.98,129.92,18.64,2000
+5678,5,E07000134,3,71.76,148.33,25.84,2000
+6253,5,E07000134,4,79.53,219.63,18.64,2000
+3447,6,E07000134,0,54.46,246.66,18.64,2000
+4439,7,E07000134,1,48.48,105.79,25.84,1000
+5175,7,E07000134,2,55.28,129.92,25.84,1000
+5836,7,E07000134,3,61.09,148.33,25.84,1000
+6497,7,E07000134,4,66.92,219.63,25.84,1000
+3773,8,E07000134,0,52.28,246.66,25.84,1000
+6707,9,E07000134,1,54.32,152.44,18.64,2000
+7033,9,E07000134,2,64.98,187.23,25.84,1000
+7359,9,E07000134,3,71.76,213.75,25.84,1000
+7685,9,E07000134,4,79.53,316.49,25.84,1000
+8011,10,E07000134,0,54.46,355.43,25.84,1000
+9116,11,E07000134,1,54.32,152.44,25.84,2000
+9117,11,E07000134,2,64.98,187.23,25.84,2000
+9118,11,E07000134,3,71.76,213.75,25.84,2000
+9119,11,E07000134,4,79.53,316.49,25.84,2000
+9120,12,E07000134,0,54.46,355.43,18.64,2000
+8201,1,E06000065,1,53.35,151.47,25.84,1000
+8202,1,E06000065,2,61.09,192.07,25.84,1000
+8203,1,E06000065,3,65.95,242.02,25.84,1000
+8204,1,E06000065,4,76.62,365.39,25.84,1000
+8209,2,E06000065,0,55.56,365.39,25.84,1000
+8205,3,E06000065,1,48.48,410.34,18.44,2000
+8206,3,E06000065,2,55.28,151.47,25.84,1000
+8207,3,E06000065,3,59.16,192.07,25.84,1000
+8208,3,E06000065,4,66.92,242.02,25.84,1000
+8210,4,E06000065,0,54.46,410.34,18.44,2000
+8213,5,E06000065,1,53.35,224.21,25.84,1000
+8216,5,E06000065,2,61.09,142,25.84,1000
+8217,5,E06000065,3,65.95,176.4,25.84,1000
+8219,5,E06000065,4,76.62,405.12,25.84,1000
+8211,6,E06000065,0,55.56,142,25.84,1000
+8214,7,E06000065,1,48.48,405.12,25.84,1000
+8215,7,E06000065,2,55.28,454.94,18.44,2000
+8218,7,E06000065,3,59.16,224.21,25.84,1000
+8220,7,E06000065,4,66.92,454.94,18.44,2000
+8212,8,E06000065,0,54.46,176.4,25.84,1000
+8221,9,E06000065,1,53.35,204.63,25.84,2000
+8222,9,E06000065,2,55.28,204.63,25.84,2000
+8223,9,E06000065,3,65.95,254.18,25.84,2000
+8224,9,E06000065,4,76.62,583.78,25.84,2000
+8225,10,E06000065,0,55.56,204.63,18.64,2000
+9121,11,E06000065,1,53.35,204.63,25.84,2000
+9122,11,E06000065,2,55.28,204.63,25.84,2000
+9123,11,E06000065,3,65.95,254.18,25.84,2000
+9124,11,E06000065,4,76.62,583.78,25.84,2000
+9125,12,E06000065,0,55.56,204.63,18.64,2000
+189,1,E06000057,1,53.35,99.69,25.84,2000
+515,1,E06000057,2,60.13,115.32,25.84,1000
+841,1,E06000057,3,64.01,128.51,18.64,2000
+1167,1,E06000057,4,73.71,144.14,25.84,2000
+2797,2,E06000057,0,58.82,268.43,25.84,1000
+1493,3,E06000057,1,44.6,112.91,25.84,1000
+1819,3,E06000057,2,52.38,102.12,25.84,1000
+2145,3,E06000057,3,56.25,118.92,25.84,2000
+2471,3,E06000057,4,59.16,130.92,18.64,2000
+3123,4,E06000057,0,50.1,287.33,25.84,2000
+4539,5,E06000057,1,53.35,98.9,18.64,2000
+5054,5,E06000057,2,60.13,118.43,25.84,1000
+5559,5,E06000057,3,64.01,135.68,25.84,1000
+6358,5,E06000057,4,73.71,219.63,18.64,2000
+3449,6,E06000057,0,58.82,246.66,25.84,1000
+4458,7,E06000057,1,44.6,98.9,18.64,2000
+5105,7,E06000057,2,52.38,118.43,25.84,1000
+5734,7,E06000057,3,56.25,135.68,18.64,2000
+6516,7,E06000057,4,59.16,219.63,25.84,1000
+3775,8,E06000057,0,50.1,246.66,25.84,1000
+6709,9,E06000057,1,44.6,142.52,25.84,1000
+7035,9,E06000057,2,60.13,170.65,25.84,1000
+7361,9,E06000057,3,64.01,195.52,18.64,2000
+7687,9,E06000057,4,73.71,316.49,25.84,1000
+8013,10,E06000057,0,58.82,355.43,25.84,1000
+9126,11,E06000057,1,44.6,142.52,25.84,2000
+9127,11,E06000057,2,60.13,170.65,25.84,2000
+9128,11,E06000057,3,64.01,195.52,25.84,2000
+9129,11,E06000057,4,73.71,316.49,25.84,2000
+9130,12,E06000057,0,58.82,355.43,18.64,2000
+190,1,E07000148,1,57.22,134.53,25.84,2000
+516,1,E07000148,2,67.88,160.94,25.84,1000
+842,1,E07000148,3,74.68,176.56,25.84,1000
+1168,1,E07000148,4,85.34,193.39,25.84,2000
+2798,2,E07000148,0,38.11,256.29,25.84,1000
+1494,3,E07000148,1,52.38,112.91,18.64,2000
+1820,3,E07000148,2,61.09,133.32,25.84,1000
+2146,3,E07000148,3,66.92,147.74,25.84,2000
+2472,3,E07000148,4,74.68,168.16,25.84,1000
+3124,4,E07000148,0,58.82,153.78,18.64,2000
+4147,5,E07000148,1,57.22,123.02,25.84,2000
+4728,5,E07000148,2,67.88,146.04,25.84,2000
+5447,5,E07000148,3,74.68,185.13,25.84,2000
+6157,5,E07000148,4,85.34,264.46,18.64,2000
+3450,6,E07000148,0,38.11,297.02,25.84,1000
+4264,7,E07000148,1,52.38,123.02,18.64,2000
+4990,7,E07000148,2,61.09,146.04,25.84,2000
+5633,7,E07000148,3,66.92,185.13,25.84,1000
+6295,7,E07000148,4,74.68,264.46,25.84,1000
+3776,8,E07000148,0,58.82,297.02,25.84,1000
+6710,9,E07000148,1,57.22,177.26,25.84,1000
+7036,9,E07000148,2,67.88,210.44,25.84,1000
+7362,9,E07000148,3,74.68,266.78,25.84,2000
+7688,9,E07000148,4,85.34,381.09,25.84,1000
+8014,10,E07000148,0,38.11,428,18.44,2000
+9131,11,E07000148,1,57.22,177.26,25.84,2000
+9132,11,E07000148,2,67.88,210.44,25.84,2000
+9133,11,E07000148,3,74.68,266.78,25.84,2000
+9134,11,E07000148,4,85.34,381.09,25.84,2000
+9135,12,E07000148,0,38.11,428,18.64,2000
+191,1,E06000018,1,54.32,112.91,25.84,2000
+517,1,E06000018,2,64.98,129.71,18.64,2000
+843,1,E06000018,3,71.76,142.94,25.84,1000
+1169,1,E06000018,4,79.53,178.95,25.84,2000
+2799,2,E06000018,0,54.46,272.48,25.84,1000
+1495,3,E06000018,1,48.48,102.12,25.84,1000
+1821,3,E06000018,2,55.28,109.3,25.84,1000
+2147,3,E06000018,3,61.09,117.72,18.64,2000
+2473,3,E06000018,4,66.92,138.13,25.84,1000
+3125,4,E06000018,0,52.28,129.48,25.84,1000
+4341,5,E06000018,1,54.32,129.92,25.84,2000
+5037,5,E06000018,2,64.98,159.83,25.84,1000
+5680,5,E06000018,3,71.76,159.83,25.84,2000
+6255,5,E06000018,4,79.53,342.66,25.84,1000
+3451,6,E06000018,0,54.46,384.8,25.84,1000
+4441,7,E06000018,1,48.48,129.92,25.84,1000
+5177,7,E06000018,2,55.28,159.83,25.84,1000
+5838,7,E06000018,3,61.09,159.83,25.84,1000
+6499,7,E06000018,4,66.92,342.66,18.64,2000
+3777,8,E06000018,0,52.28,384.8,18.64,2000
+6711,9,E06000018,1,54.32,187.23,25.84,1000
+7037,9,E06000018,2,64.98,230.32,18.64,2000
+7363,9,E06000018,3,71.76,230.32,25.84,2000
+7689,9,E06000018,4,79.53,493.77,25.84,1000
+8015,10,E06000018,0,54.46,554.5,25.84,1000
+9136,11,E06000018,1,54.32,187.23,25.84,2000
+9137,11,E06000018,2,64.98,230.32,25.84,2000
+9138,11,E06000018,3,71.76,230.32,25.84,2000
+9139,11,E06000018,4,79.53,493.77,25.84,2000
+9140,12,E06000018,0,54.46,554.5,18.64,2000
+192,1,E07000219,1,55.28,111.71,25.84,2000
+518,1,E07000219,2,61.09,132.12,25.84,1000
+844,1,E07000219,3,72.73,150.14,25.84,1000
+1170,1,E07000219,4,84.37,182.58,18.64,2000
+2800,2,E07000219,0,41.39,277.87,18.64,2000
+1496,3,E07000219,1,48.48,99.69,25.84,1000
+1822,3,E07000219,2,52.38,106.93,25.84,1000
+2148,3,E07000219,3,63.04,117.72,25.84,1000
+2474,3,E07000219,4,71.76,144.14,25.84,1000
+3126,4,E07000219,0,49.01,121.41,25.84,1000
+4292,5,E07000219,1,55.28,105.79,25.84,1000
+4902,5,E07000219,2,61.09,128.78,25.84,1000
+5533,5,E07000219,3,72.73,154.07,25.84,1000
+6185,5,E07000219,4,84.37,215.03,25.84,2000
+3452,6,E07000219,0,41.39,241.47,25.84,1000
+4513,7,E07000219,1,48.48,105.79,25.84,1000
+5198,7,E07000219,2,52.38,128.78,25.84,1000
+5789,7,E07000219,3,63.04,154.07,25.84,1000
+6450,7,E07000219,4,71.76,215.03,18.64,2000
+3778,8,E07000219,0,49.01,241.47,25.84,1000
+6712,9,E07000219,1,55.28,152.44,25.84,1000
+7038,9,E07000219,2,61.09,185.59,25.84,1000
+7364,9,E07000219,3,72.73,222,25.84,2000
+7690,9,E07000219,4,84.37,309.88,18.64,2000
+8016,10,E07000219,0,41.39,347.94,25.84,1000
+9141,11,E07000219,1,55.28,152.44,25.84,2000
+9142,11,E07000219,2,61.09,185.59,25.84,2000
+9143,11,E07000219,3,72.73,222,25.84,2000
+9144,11,E07000219,4,84.37,309.88,25.84,2000
+9145,12,E07000219,0,41.39,347.94,18.64,2000
+193,1,E07000135,1,54.32,112.91,18.64,2000
+519,1,E07000135,2,64.98,129.71,25.84,1000
+845,1,E07000135,3,71.76,142.94,25.84,1000
+1171,1,E07000135,4,79.53,178.95,25.84,1000
+2801,2,E07000135,0,54.46,272.48,25.84,1000
+1497,3,E07000135,1,48.48,102.12,25.84,1000
+1823,3,E07000135,2,55.28,109.3,18.64,2000
+2149,3,E07000135,3,61.09,117.72,25.84,1000
+2475,3,E07000135,4,66.92,138.13,25.84,1000
+3127,4,E07000135,0,52.28,129.48,25.84,1000
+4342,5,E07000135,1,54.32,111.54,25.84,2000
+5038,5,E07000135,2,64.98,135.68,25.84,1000
+5681,5,E07000135,3,71.76,159.83,25.84,2000
+6256,5,E07000135,4,79.53,246.06,25.84,1000
+3453,6,E07000135,0,54.46,276.34,18.64,2000
+4442,7,E07000135,1,48.48,111.54,18.64,2000
+5178,7,E07000135,2,55.28,135.68,18.64,2000
+5839,7,E07000135,3,61.09,159.83,18.64,2000
+6500,7,E07000135,4,66.92,246.06,25.84,2000
+3779,8,E07000135,0,52.28,276.34,25.84,1000
+6713,9,E07000135,1,54.32,160.73,18.64,2000
+7039,9,E07000135,2,64.98,195.52,25.84,1000
+7365,9,E07000135,3,71.76,230.32,25.84,2000
+7691,9,E07000135,4,79.53,354.57,25.84,1000
+8017,10,E07000135,0,54.46,398.19,25.84,1000
+9146,11,E07000135,1,54.32,160.73,25.84,2000
+9147,11,E07000135,2,64.98,195.52,25.84,2000
+9148,11,E07000135,3,71.76,230.32,25.84,2000
+9149,11,E07000135,4,79.53,354.57,25.84,2000
+9150,12,E07000135,0,54.46,398.19,18.64,2000
+194,1,E08000004,1,54.32,105.71,25.84,1000
+520,1,E08000004,2,62.07,121.33,25.84,1000
+846,1,E08000004,3,68.85,135.72,18.64,2000
+1172,1,E08000004,4,75.65,151.35,25.84,1000
+2802,2,E08000004,0,58.82,271.14,25.84,1000
+1498,3,E08000004,1,45.57,97.28,25.84,1000
+1824,3,E08000004,2,56.25,106.93,25.84,1000
+2150,3,E08000004,3,61.09,118.92,25.84,1000
+2476,3,E08000004,4,58.19,134.53,18.64,2000
+3128,4,E08000004,0,34.85,531.48,25.84,1000
+4371,5,E08000004,1,54.32,111.54,25.84,2000
+4941,5,E08000004,2,62.07,123.02,25.84,1000
+5584,5,E08000004,3,68.85,148.33,25.84,1000
+6332,5,E08000004,4,75.65,208.12,18.64,2000
+3454,6,E08000004,0,58.82,233.73,25.84,2000
+4483,7,E08000004,1,45.57,111.54,18.64,2000
+5079,7,E08000004,2,56.25,123.02,25.84,1000
+5759,7,E08000004,3,61.09,148.33,18.64,2000
+6383,7,E08000004,4,58.19,208.12,18.64,2000
+3780,8,E08000004,0,34.85,233.73,25.84,1000
+6714,9,E08000004,1,54.32,160.73,25.84,1000
+7040,9,E08000004,2,62.07,177.26,25.84,1000
+7366,9,E08000004,3,68.85,213.75,18.64,2000
+7692,9,E08000004,4,75.65,299.91,25.84,1000
+8018,10,E08000004,0,58.82,336.8,25.84,1000
+9151,11,E08000004,1,54.32,160.73,25.84,2000
+9152,11,E08000004,2,62.07,177.26,25.84,2000
+9153,11,E08000004,3,68.85,213.75,25.84,2000
+9154,11,E08000004,4,75.65,299.91,25.84,2000
+9155,12,E08000004,0,58.82,336.8,18.64,2000
+195,1,E07000178,1,60.13,139.33,25.84,1000
+521,1,E07000178,2,74.68,165.75,25.84,1000
+847,1,E07000178,3,85.34,182.58,25.84,1000
+1173,1,E07000178,4,94.09,201.8,25.84,1000
+2803,2,E07000178,0,65.34,303.51,25.84,1000
+1499,3,E07000178,1,54.32,130.92,18.64,2000
+1825,3,E07000178,2,65.95,146.54,25.84,1000
+2151,3,E07000178,3,71.76,169.36,25.84,1000
+2477,3,E07000178,4,76.62,209,25.84,2000
+3129,4,E07000178,0,51.19,221.24,18.64,2000
+4017,5,E07000178,1,60.13,205.82,25.84,2000
+4632,5,E07000178,2,74.68,257.56,25.84,1000
+5284,5,E07000178,3,85.34,317.35,25.84,1000
+5969,5,E07000178,4,94.09,473.72,18.64,2000
+3455,6,E07000178,0,65.34,532.02,25.84,2000
+4084,7,E07000178,1,54.32,205.82,18.64,2000
+4779,7,E07000178,2,65.95,257.56,25.84,2000
+5384,7,E07000178,3,71.76,317.35,18.64,2000
+6073,7,E07000178,4,76.62,473.72,18.64,2000
+3781,8,E07000178,0,51.19,532.02,25.84,1000
+6715,9,E07000178,1,60.13,296.57,25.84,1000
+7041,9,E07000178,2,74.68,371.14,25.84,1000
+7367,9,E07000178,3,85.34,457.3,25.84,1000
+7693,9,E07000178,4,94.09,682.64,25.84,1000
+8019,10,E07000178,0,65.34,766.63,18.44,2000
+9156,11,E07000178,1,60.13,296.57,25.84,2000
+9157,11,E07000178,2,74.68,371.14,25.84,2000
+9158,11,E07000178,3,85.34,457.3,25.84,2000
+9159,11,E07000178,4,94.09,682.64,25.84,2000
+9160,12,E07000178,0,65.34,766.63,18.64,2000
+196,1,E07000122,1,54.32,105.71,25.84,1000
+522,1,E07000122,2,62.07,121.33,18.64,2000
+848,1,E07000122,3,68.85,135.72,25.84,1000
+1174,1,E07000122,4,75.65,151.35,25.84,1000
+2804,2,E07000122,0,58.82,271.14,25.84,1000
+1500,3,E07000122,1,45.57,97.28,25.84,2000
+1826,3,E07000122,2,56.25,106.93,25.84,1000
+2152,3,E07000122,3,61.09,118.92,18.64,2000
+2478,3,E07000122,4,58.19,134.53,25.84,2000
+3130,4,E07000122,0,34.85,531.48,25.84,1000
+4372,5,E07000122,1,54.32,97.75,25.84,2000
+4942,5,E07000122,2,62.07,105.79,25.84,1000
+5585,5,E07000122,3,68.85,135.68,18.64,2000
+6333,5,E07000122,4,75.65,195.48,25.84,1000
+3456,6,E07000122,0,58.82,219.51,25.84,2000
+4484,7,E07000122,1,45.57,97.75,25.84,1000
+5080,7,E07000122,2,56.25,105.79,25.84,1000
+5760,7,E07000122,3,61.09,135.68,25.84,1000
+6384,7,E07000122,4,58.19,195.48,25.84,2000
+3782,8,E07000122,0,34.85,219.51,18.64,2000
+6716,9,E07000122,1,54.32,140.86,25.84,1000
+7042,9,E07000122,2,62.07,152.44,18.64,2000
+7368,9,E07000122,3,68.85,195.52,25.84,1000
+7694,9,E07000122,4,75.65,281.69,25.84,1000
+8020,10,E07000122,0,58.82,316.32,25.84,1000
+9161,11,E07000122,1,54.32,140.86,25.84,2000
+9162,11,E07000122,2,62.07,152.44,25.84,2000
+9163,11,E07000122,3,68.85,195.52,25.84,2000
+9164,11,E07000122,4,75.65,281.69,25.84,2000
+9165,12,E07000122,0,58.82,316.32,18.64,2000
+197,1,E06000031,1,57.22,134.53,25.84,1000
+523,1,E06000031,2,67.88,160.94,25.84,2000
+849,1,E06000031,3,74.68,176.56,25.84,1000
+1175,1,E06000031,4,85.34,193.39,18.64,2000
+2805,2,E06000031,0,38.11,256.29,18.64,2000
+1501,3,E06000031,1,52.38,112.91,25.84,2000
+1827,3,E06000031,2,61.09,133.32,25.84,1000
+2153,3,E06000031,3,66.92,147.74,25.84,1000
+2479,3,E06000031,4,74.68,168.16,25.84,2000
+3131,4,E06000031,0,58.82,153.78,25.84,1000
+4148,5,E06000031,1,57.22,111.54,25.84,2000
+4729,5,E06000031,2,67.88,135.68,25.84,2000
+5448,5,E06000031,3,74.68,159.83,25.84,2000
+6158,5,E06000031,4,85.34,220.78,25.84,2000
+3457,6,E06000031,0,38.11,247.93,25.84,2000
+4265,7,E06000031,1,52.38,111.54,25.84,1000
+4991,7,E06000031,2,61.09,135.68,18.64,2000
+5634,7,E06000031,3,66.92,159.83,25.84,1000
+6296,7,E06000031,4,74.68,220.78,18.64,2000
+3783,8,E06000031,0,58.82,247.93,25.84,1000
+6717,9,E06000031,1,57.22,160.73,25.84,1000
+7043,9,E06000031,2,67.88,195.52,25.84,1000
+7369,9,E06000031,3,74.68,230.32,25.84,1000
+7695,9,E06000031,4,85.34,318.15,18.64,2000
+8021,10,E06000031,0,38.11,357.27,25.84,1000
+9166,11,E06000031,1,57.22,160.73,25.84,2000
+9167,11,E06000031,2,67.88,195.52,25.84,2000
+9168,11,E06000031,3,74.68,230.32,25.84,2000
+9169,11,E06000031,4,85.34,318.15,25.84,2000
+9170,12,E06000031,0,38.11,357.27,18.64,2000
+198,1,E06000026,1,51.41,121.33,18.64,2000
+524,1,E06000026,2,58.19,136.92,25.84,2000
+850,1,E06000026,3,64.98,159.75,25.84,1000
+1176,1,E06000026,4,74.68,178.95,25.84,1000
+2806,2,E06000026,0,57.73,261.7,25.84,1000
+1502,3,E06000026,1,49.46,100.89,25.84,2000
+1828,3,E06000026,2,57.22,114.11,18.64,2000
+2154,3,E06000026,3,64.98,123.71,25.84,1000
+2480,3,E06000026,4,77.58,147.74,25.84,2000
+3132,4,E06000026,0,57.73,130.84,25.84,1000
+4215,5,E06000026,1,51.41,119.58,18.64,2000
+4851,5,E06000026,2,58.19,148.33,25.84,1000
+5482,5,E06000026,3,64.98,172.47,25.84,1000
+6020,5,E06000026,4,74.68,294.37,25.84,1000
+3458,6,E06000026,0,57.73,330.58,18.64,2000
+3931,7,E06000026,1,49.46,119.58,18.64,2000
+5128,7,E06000026,2,57.22,148.33,25.84,2000
+5708,7,E06000026,3,64.98,172.47,25.84,2000
+6420,7,E06000026,4,77.58,294.37,25.84,1000
+3784,8,E06000026,0,57.73,330.58,25.84,1000
+6718,9,E06000026,1,51.41,172.32,18.64,2000
+7044,9,E06000026,2,58.19,213.75,25.84,1000
+7370,9,E06000026,3,64.98,248.54,25.84,1000
+7696,9,E06000026,4,74.68,424.2,25.84,2000
+8022,10,E06000026,0,57.73,476.37,25.84,1000
+9171,11,E06000026,1,51.41,172.32,25.84,2000
+9172,11,E06000026,2,58.19,213.75,25.84,2000
+9173,11,E06000026,3,64.98,248.54,25.84,2000
+9174,11,E06000026,4,74.68,424.2,25.84,2000
+9175,12,E06000026,0,57.73,476.37,18.64,2000
+200,1,E06000044,1,60.13,139.33,25.84,1000
+526,1,E06000044,2,74.68,165.75,25.84,2000
+852,1,E06000044,3,85.34,182.58,18.64,2000
+1178,1,E06000044,4,94.09,201.8,25.84,1000
+2808,2,E06000044,0,65.34,303.51,25.84,1000
+1504,3,E06000044,1,54.32,130.92,25.84,2000
+1830,3,E06000044,2,65.95,146.54,25.84,1000
+2156,3,E06000044,3,71.76,169.36,25.84,1000
+2482,3,E06000044,4,76.62,209,18.64,2000
+3134,4,E06000044,0,51.19,221.24,25.84,1000
+4018,5,E06000044,1,60.13,135.68,25.84,2000
+4633,5,E06000044,2,74.68,166.72,18.64,2000
+5285,5,E06000044,3,85.34,208.12,25.84,1000
+5970,5,E06000044,4,94.09,342.66,25.84,1000
+3460,6,E06000044,0,65.34,384.8,25.84,1000
+4085,7,E06000044,1,54.32,135.68,25.84,1000
+4780,7,E06000044,2,65.95,166.72,25.84,2000
+5385,7,E06000044,3,71.76,208.12,25.84,1000
+6074,7,E06000044,4,76.62,342.66,25.84,2000
+3786,8,E06000044,0,51.19,384.8,25.84,1000
+6720,9,E06000044,1,60.13,195.52,25.84,2000
+7046,9,E06000044,2,74.68,240.25,25.84,1000
+7372,9,E06000044,3,85.34,299.91,18.64,2000
+7698,9,E06000044,4,94.09,493.77,25.84,2000
+8024,10,E06000044,0,65.34,554.5,25.84,1000
+9176,11,E06000044,1,60.13,195.52,25.84,2000
+9177,11,E06000044,2,74.68,240.25,25.84,2000
+9178,11,E06000044,3,85.34,299.91,25.84,2000
+9179,11,E06000044,4,94.09,493.77,25.84,2000
+9180,12,E06000044,0,65.34,554.5,18.64,2000
+201,1,E07000123,1,54.32,105.71,25.84,1000
+527,1,E07000123,2,62.07,121.33,25.84,2000
+853,1,E07000123,3,68.85,135.72,25.84,1000
+1179,1,E07000123,4,75.65,151.35,25.84,1000
+2809,2,E07000123,0,58.82,271.14,25.84,1000
+1505,3,E07000123,1,45.57,97.28,18.64,2000
+1831,3,E07000123,2,56.25,106.93,25.84,1000
+2157,3,E07000123,3,61.09,118.92,25.84,1000
+2483,3,E07000123,4,58.19,134.53,25.84,1000
+3135,4,E07000123,0,34.85,531.48,18.64,2000
+4373,5,E07000123,1,54.32,111.54,25.84,2000
+4943,5,E07000123,2,62.07,141.43,25.84,1000
+5586,5,E07000123,3,68.85,159.83,25.84,1000
+6334,5,E07000123,4,75.65,220.78,25.84,1000
+3461,6,E07000123,0,58.82,247.93,25.84,1000
+4485,7,E07000123,1,45.57,111.54,25.84,1000
+5081,7,E07000123,2,56.25,141.43,25.84,1000
+5761,7,E07000123,3,61.09,159.83,25.84,1000
+6385,7,E07000123,4,58.19,220.78,25.84,2000
+3787,8,E07000123,0,34.85,247.93,25.84,1000
+6721,9,E07000123,1,54.32,160.73,25.84,2000
+7047,9,E07000123,2,62.07,203.8,25.84,1000
+7373,9,E07000123,3,68.85,230.32,25.84,1000
+7699,9,E07000123,4,75.65,318.15,25.84,2000
+8025,10,E07000123,0,58.82,357.27,18.44,2000
+9181,11,E07000123,1,54.32,160.73,25.84,2000
+9182,11,E07000123,2,62.07,203.8,25.84,2000
+9183,11,E07000123,3,68.85,230.32,25.84,2000
+9184,11,E07000123,4,75.65,318.15,25.84,2000
+9185,12,E07000123,0,58.82,357.27,18.64,2000
+203,1,E06000038,1,60.13,139.33,25.84,1000
+529,1,E06000038,2,74.68,165.75,18.64,2000
+855,1,E06000038,3,85.34,182.58,25.84,1000
+1181,1,E06000038,4,94.09,201.8,25.84,1000
+2811,2,E06000038,0,65.34,303.51,25.84,1000
+1507,3,E06000038,1,54.32,130.92,25.84,1000
+1833,3,E06000038,2,65.95,146.54,25.84,1000
+2159,3,E06000038,3,71.76,169.36,18.64,2000
+2485,3,E06000038,4,76.62,209,25.84,1000
+3137,4,E06000038,0,51.19,221.24,25.84,1000
+4019,5,E06000038,1,60.13,172.47,25.84,2000
+4634,5,E06000038,2,74.68,219.63,25.84,1000
+5286,5,E06000038,3,85.34,238.02,18.64,2000
+5971,5,E06000038,4,94.09,482.93,25.84,1000
+3463,6,E06000038,0,65.34,541.07,25.84,1000
+4086,7,E06000038,1,54.32,172.47,25.84,1000
+4781,7,E06000038,2,65.95,219.63,25.84,2000
+5386,7,E06000038,3,71.76,238.02,25.84,1000
+6075,7,E06000038,4,76.62,482.93,25.84,2000
+3789,8,E06000038,0,51.19,541.07,18.64,2000
+6723,9,E06000038,1,60.13,248.54,25.84,2000
+7049,9,E06000038,2,74.68,316.49,18.64,2000
+7375,9,E06000038,3,85.34,342.99,25.84,1000
+7701,9,E06000038,4,94.09,695.91,25.84,2000
+8027,10,E06000038,0,65.34,779.67,25.84,1000
+9186,11,E06000038,1,60.13,248.54,25.84,2000
+9187,11,E06000038,2,74.68,316.49,25.84,2000
+9188,11,E06000038,3,85.34,342.99,25.84,2000
+9189,11,E06000038,4,94.09,695.91,25.84,2000
+9190,12,E06000038,0,65.34,779.67,18.64,2000
+204,1,E09000026,1,68.85,164.54,25.84,1000
+530,1,E09000026,2,81.46,177.76,25.84,1000
+856,1,E09000026,3,88.25,188.59,25.84,1000
+1182,1,E09000026,4,106.66,211.41,18.64,2000
+2812,2,E09000026,0,74.06,358.82,18.64,2000
+1508,3,E09000026,1,61.09,134.53,25.84,1000
+1834,3,E09000026,2,66.92,157.36,25.84,1000
+2160,3,E09000026,3,74.68,180.17,25.84,1000
+2486,3,E09000026,4,87.29,294.28,25.84,1000
+3138,4,E09000026,0,63.17,420.87,25.84,1000
+3975,5,E09000026,1,68.85,196.63,25.84,1000
+4590,5,E09000026,2,81.46,257.56,25.84,1000
+5242,5,E09000026,3,88.25,317.35,25.84,2000
+5927,5,E09000026,4,106.66,402.45,18.64,2000
+3464,6,E09000026,0,74.06,451.97,25.84,1000
+4189,7,E09000026,1,61.09,196.63,25.84,1000
+4690,7,E09000026,2,66.92,257.56,25.84,1000
+5342,7,E09000026,3,74.68,317.35,18.64,2000
+5894,7,E09000026,4,87.29,402.45,25.84,1000
+3790,8,E09000026,0,63.17,451.97,25.84,2000
+6724,9,E09000026,1,68.85,283.35,25.84,2000
+7050,9,E09000026,2,81.46,371.14,25.84,1000
+7376,9,E09000026,3,88.25,457.3,25.84,1000
+7702,9,E09000026,4,106.66,579.93,18.64,2000
+8028,10,E09000026,0,74.06,651.28,25.84,1000
+9191,11,E09000026,1,68.85,283.35,25.84,2000
+9192,11,E09000026,2,81.46,371.14,25.84,2000
+9193,11,E09000026,3,88.25,457.3,25.84,2000
+9194,11,E09000026,4,106.66,579.93,25.84,2000
+9195,12,E09000026,0,74.06,651.28,18.64,2000
+205,1,E06000003,1,53.35,99.69,18.64,2000
+531,1,E06000003,2,60.13,115.32,25.84,1000
+857,1,E06000003,3,64.01,128.51,25.84,1000
+1183,1,E06000003,4,73.71,144.14,25.84,1000
+2813,2,E06000003,0,58.82,268.43,25.84,2000
+1509,3,E06000003,1,44.6,112.91,25.84,1000
+1835,3,E06000003,2,52.38,102.12,18.64,2000
+2161,3,E06000003,3,56.25,118.92,25.84,1000
+2487,3,E06000003,4,59.16,130.92,25.84,1000
+3139,4,E06000003,0,50.1,287.33,25.84,1000
+4540,5,E06000003,1,53.35,105.79,25.84,2000
+5055,5,E06000003,2,60.13,124.18,25.84,1000
+5560,5,E06000003,3,64.01,143.72,18.64,2000
+6359,5,E06000003,4,73.71,185.13,25.84,1000
+3465,6,E06000003,0,58.82,207.92,18.64,2000
+4459,7,E06000003,1,44.6,105.79,25.84,2000
+5106,7,E06000003,2,52.38,124.18,25.84,1000
+5735,7,E06000003,3,56.25,143.72,25.84,1000
+6517,7,E06000003,4,59.16,185.13,25.84,1000
+3791,8,E06000003,0,50.1,207.92,25.84,2000
+6725,9,E06000003,1,44.6,152.44,18.64,2000
+7051,9,E06000003,2,60.13,178.94,25.84,1000
+7377,9,E06000003,3,64.01,207.11,25.84,1000
+7703,9,E06000003,4,73.71,266.78,25.84,1000
+8029,10,E06000003,0,58.82,299.61,25.84,1000
+9196,11,E06000003,1,44.6,152.44,25.84,2000
+9197,11,E06000003,2,60.13,178.94,25.84,2000
+9198,11,E06000003,3,64.01,207.11,25.84,2000
+9199,11,E06000003,4,73.71,266.78,25.84,2000
+9200,12,E06000003,0,58.82,299.61,18.64,2000
+206,1,E07000236,1,55.28,111.71,25.84,1000
+532,1,E07000236,2,61.09,132.12,25.84,1000
+858,1,E07000236,3,72.73,150.14,18.64,2000
+1184,1,E07000236,4,84.37,182.58,25.84,1000
+2814,2,E07000236,0,41.39,277.87,25.84,2000
+1510,3,E07000236,1,48.48,99.69,25.84,1000
+1836,3,E07000236,2,52.38,106.93,25.84,2000
+2162,3,E07000236,3,63.04,117.72,25.84,1000
+2488,3,E07000236,4,71.76,144.14,18.64,2000
+3140,4,E07000236,0,49.01,121.41,25.84,1000
+4293,5,E07000236,1,55.28,118.43,25.84,1000
+4903,5,E07000236,2,61.09,141.43,25.84,1000
+5534,5,E07000236,3,72.73,159.83,25.84,1000
+6186,5,E07000236,4,84.37,208.12,25.84,2000
+3466,6,E07000236,0,41.39,233.73,25.84,1000
+4514,7,E07000236,1,48.48,118.43,18.64,2000
+5199,7,E07000236,2,52.38,141.43,18.64,2000
+5790,7,E07000236,3,63.04,159.83,18.64,2000
+6451,7,E07000236,4,71.76,208.12,25.84,1000
+3792,8,E07000236,0,49.01,233.73,25.84,2000
+6726,9,E07000236,1,55.28,170.65,25.84,1000
+7052,9,E07000236,2,61.09,203.8,25.84,1000
+7378,9,E07000236,3,72.73,230.32,18.64,2000
+7704,9,E07000236,4,84.37,299.91,25.84,1000
+8030,10,E07000236,0,41.39,336.8,25.84,1000
+9201,11,E07000236,1,55.28,170.65,25.84,2000
+9202,11,E07000236,2,61.09,203.8,25.84,2000
+9203,11,E07000236,3,72.73,230.32,25.84,2000
+9204,11,E07000236,4,84.37,299.91,25.84,2000
+9205,12,E07000236,0,41.39,336.8,18.64,2000
+207,1,E07000211,1,60.13,139.33,25.84,1000
+533,1,E07000211,2,74.68,165.75,25.84,1000
+859,1,E07000211,3,85.34,182.58,25.84,2000
+1185,1,E07000211,4,94.09,201.8,25.84,1000
+2815,2,E07000211,0,65.34,303.51,25.84,2000
+1511,3,E07000211,1,54.32,130.92,18.64,2000
+1837,3,E07000211,2,65.95,146.54,25.84,2000
+2163,3,E07000211,3,71.76,169.36,25.84,1000
+2489,3,E07000211,4,76.62,209,25.84,1000
+3141,4,E07000211,0,51.19,221.24,18.64,2000
+4020,5,E07000211,1,60.13,172.47,25.84,2000
+4635,5,E07000211,2,74.68,226.53,25.84,1000
+5287,5,E07000211,3,85.34,292.07,25.84,1000
+5972,5,E07000211,4,94.09,474.87,25.84,1000
+3467,6,E07000211,0,65.34,533.32,25.84,1000
+4087,7,E07000211,1,54.32,172.47,25.84,1000
+4782,7,E07000211,2,65.95,226.53,25.84,2000
+5387,7,E07000211,3,71.76,292.07,25.84,1000
+6076,7,E07000211,4,76.62,474.87,25.84,2000
+3793,8,E07000211,0,51.19,533.32,25.84,2000
+6727,9,E07000211,1,60.13,248.54,25.84,1000
+7053,9,E07000211,2,74.68,326.44,25.84,1000
+7379,9,E07000211,3,85.34,420.86,25.84,1000
+7705,9,E07000211,4,94.09,684.29,25.84,1000
+8031,10,E07000211,0,65.34,768.51,18.44,2000
+9206,11,E07000211,1,60.13,248.54,25.84,2000
+9207,11,E07000211,2,74.68,326.44,25.84,2000
+9208,11,E07000211,3,85.34,420.86,25.84,2000
+9209,11,E07000211,4,94.09,684.29,25.84,2000
+9210,12,E07000211,0,65.34,768.51,18.64,2000
+208,1,E07000124,1,54.32,105.71,25.84,1000
+534,1,E07000124,2,62.07,121.33,18.64,2000
+860,1,E07000124,3,68.85,135.72,25.84,2000
+1186,1,E07000124,4,75.65,151.35,25.84,1000
+2816,2,E07000124,0,58.82,271.14,25.84,2000
+1512,3,E07000124,1,45.57,97.28,25.84,1000
+1838,3,E07000124,2,56.25,106.93,25.84,2000
+2164,3,E07000124,3,61.09,118.92,18.64,2000
+2490,3,E07000124,4,58.19,134.53,25.84,1000
+3142,4,E07000124,0,34.85,531.48,25.84,1000
+4374,5,E07000124,1,54.32,111.54,25.84,2000
+4944,5,E07000124,2,62.07,141.43,18.64,2000
+5587,5,E07000124,3,68.85,171.31,25.84,1000
+6335,5,E07000124,4,75.65,269.07,25.84,1000
+3468,6,E07000124,0,58.82,302.16,25.84,1000
+4486,7,E07000124,1,45.57,111.54,25.84,1000
+5082,7,E07000124,2,56.25,141.43,18.64,2000
+5762,7,E07000124,3,61.09,171.31,25.84,1000
+6386,7,E07000124,4,58.19,269.07,25.84,2000
+3794,8,E07000124,0,34.85,302.16,18.64,2000
+6728,9,E07000124,1,54.32,160.73,25.84,1000
+7054,9,E07000124,2,62.07,203.8,18.64,2000
+7380,9,E07000124,3,68.85,246.86,25.84,1000
+7706,9,E07000124,4,75.65,387.71,25.84,1000
+8032,10,E07000124,0,58.82,435.43,25.84,2000
+9211,11,E07000124,1,54.32,160.73,25.84,2000
+9212,11,E07000124,2,62.07,203.8,25.84,2000
+9213,11,E07000124,3,68.85,246.86,25.84,2000
+9214,11,E07000124,4,75.65,387.71,25.84,2000
+9215,12,E07000124,0,58.82,435.43,18.64,2000
+210,1,E09000027,1,68.85,164.54,25.84,1000
+536,1,E09000027,2,81.46,177.76,25.84,1000
+862,1,E09000027,3,88.25,188.59,25.84,2000
+1188,1,E09000027,4,106.66,211.41,18.64,2000
+2818,2,E09000027,0,74.06,358.82,18.64,2000
+1514,3,E09000027,1,61.09,134.53,25.84,1000
+1840,3,E09000027,2,66.92,157.36,25.84,2000
+2166,3,E09000027,3,74.68,180.17,25.84,1000
+2492,3,E09000027,4,87.29,294.28,25.84,1000
+3144,4,E09000027,0,63.17,420.87,25.84,1000
+3976,5,E09000027,1,68.85,269.07,25.84,1000
+4591,5,E09000027,2,81.46,364.49,18.64,2000
+5243,5,E09000027,3,88.25,511.68,25.84,2000
+5928,5,E09000027,4,106.66,970.45,25.84,1000
+3470,6,E09000027,0,74.06,1089.87,25.84,1000
+4190,7,E09000027,1,61.09,269.07,25.84,1000
+4691,7,E09000027,2,66.92,364.49,25.84,1000
+5343,7,E09000027,3,74.68,511.68,25.84,2000
+5895,7,E09000027,4,87.29,970.45,25.84,1000
+3796,8,E09000027,0,63.17,1089.87,25.84,1000
+6730,9,E09000027,1,68.85,387.71,25.84,1000
+7056,9,E09000027,2,81.46,525.23,25.84,2000
+7382,9,E09000027,3,88.25,737.32,25.84,1000
+7708,9,E09000027,4,106.66,1398.43,18.64,2000
+8034,10,E09000027,0,74.06,1419.49,25.84,2000
+9216,11,E09000027,1,68.85,387.71,25.84,2000
+9217,11,E09000027,2,81.46,525.23,25.84,2000
+9218,11,E09000027,3,88.25,737.32,25.84,2000
+9219,11,E09000027,4,106.66,1398.43,25.84,2000
+9220,12,E09000027,0,74.06,1419.49,18.64,2000
+211,1,E08000005,1,54.32,105.71,18.64,2000
+537,1,E08000005,2,62.07,121.33,25.84,1000
+863,1,E08000005,3,68.85,135.72,25.84,2000
+1189,1,E08000005,4,75.65,151.35,25.84,1000
+2819,2,E08000005,0,58.82,271.14,25.84,1000
+1515,3,E08000005,1,45.57,97.28,25.84,1000
+1841,3,E08000005,2,56.25,106.93,18.64,2000
+2167,3,E08000005,3,61.09,118.92,25.84,1000
+2493,3,E08000005,4,58.19,134.53,25.84,1000
+3145,4,E08000005,0,34.85,531.48,25.84,1000
+4375,5,E08000005,1,54.32,103.51,18.64,2000
+4945,5,E08000005,2,62.07,118.43,25.84,1000
+5588,5,E08000005,3,68.85,141.43,25.84,1000
+6336,5,E08000005,4,75.65,208.12,25.84,1000
+3471,6,E08000005,0,58.82,233.73,18.64,2000
+4487,7,E08000005,1,45.57,103.51,25.84,1000
+5083,7,E08000005,2,56.25,118.43,25.84,1000
+5763,7,E08000005,3,61.09,141.43,25.84,1000
+6387,7,E08000005,4,58.19,208.12,25.84,2000
+3797,8,E08000005,0,34.85,233.73,25.84,1000
+6731,9,E08000005,1,54.32,149.16,18.64,2000
+7057,9,E08000005,2,62.07,170.65,25.84,2000
+7383,9,E08000005,3,68.85,203.8,25.84,1000
+7709,9,E08000005,4,75.65,299.91,25.84,1000
+8035,10,E08000005,0,58.82,336.8,25.84,2000
+9221,11,E08000005,1,54.32,149.16,25.84,2000
+9222,11,E08000005,2,62.07,170.65,25.84,2000
+9223,11,E08000005,3,68.85,203.8,25.84,2000
+9224,11,E08000005,4,75.65,299.91,25.84,2000
+9225,12,E08000005,0,58.82,336.8,18.64,2000
+212,1,E07000075,1,57.22,134.53,25.84,1000
+538,1,E07000075,2,67.88,160.94,25.84,1000
+864,1,E07000075,3,74.68,176.56,18.64,2000
+1190,1,E07000075,4,85.34,193.39,25.84,1000
+2820,2,E07000075,0,38.11,256.29,25.84,1000
+1516,3,E07000075,1,52.38,112.91,25.84,1000
+1842,3,E07000075,2,61.09,133.32,25.84,1000
+2168,3,E07000075,3,66.92,147.74,25.84,1000
+2494,3,E07000075,4,74.68,168.16,18.64,2000
+3146,4,E07000075,0,58.82,153.78,25.84,1000
+4149,5,E07000075,1,57.22,146.04,25.84,2000
+4730,5,E07000075,2,67.88,195.48,18.64,2000
+5449,5,E07000075,3,74.68,232.26,25.84,2000
+6159,5,E07000075,4,85.34,317.35,25.84,2000
+3472,6,E07000075,0,38.11,356.42,25.84,1000
+4266,7,E07000075,1,52.38,146.04,25.84,1000
+4992,7,E07000075,2,61.09,195.48,25.84,1000
+5635,7,E07000075,3,66.92,232.26,25.84,1000
+6297,7,E07000075,4,74.68,317.35,25.84,2000
+3798,8,E07000075,0,58.82,356.42,25.84,1000
+6732,9,E07000075,1,57.22,210.44,25.84,1000
+7058,9,E07000075,2,67.88,281.69,25.84,2000
+7384,9,E07000075,3,74.68,334.7,18.64,2000
+7710,9,E07000075,4,85.34,457.3,25.84,1000
+8036,10,E07000075,0,38.11,513.58,25.84,2000
+9226,11,E07000075,1,57.22,210.44,25.84,2000
+9227,11,E07000075,2,67.88,281.69,25.84,2000
+9228,11,E07000075,3,74.68,334.7,25.84,2000
+9229,11,E07000075,4,85.34,457.3,25.84,2000
+9230,12,E07000075,0,38.11,513.58,18.64,2000
+213,1,E07000125,1,54.32,105.71,25.84,1000
+539,1,E07000125,2,62.07,121.33,25.84,1000
+865,1,E07000125,3,68.85,135.72,25.84,1000
+1191,1,E07000125,4,75.65,151.35,25.84,1000
+2821,2,E07000125,0,58.82,271.14,25.84,1000
+1517,3,E07000125,1,45.57,97.28,18.64,2000
+1843,3,E07000125,2,56.25,106.93,25.84,1000
+2169,3,E07000125,3,61.09,118.92,25.84,1000
+2495,3,E07000125,4,58.19,134.53,25.84,1000
+3147,4,E07000125,0,34.85,531.48,18.64,2000
+4376,5,E07000125,1,54.32,98.9,25.84,1000
+4946,5,E07000125,2,62.07,118.43,25.84,1000
+5589,5,E07000125,3,68.85,135.68,25.84,1000
+6337,5,E07000125,4,75.65,196.63,18.64,2000
+3473,6,E07000125,0,58.82,220.82,25.84,1000
+4488,7,E07000125,1,45.57,98.9,18.64,2000
+5084,7,E07000125,2,56.25,118.43,25.84,1000
+5764,7,E07000125,3,61.09,135.68,18.64,2000
+6388,7,E07000125,4,58.19,196.63,18.64,2000
+3799,8,E07000125,0,34.85,220.82,25.84,1000
+6733,9,E07000125,1,54.32,142.52,25.84,1000
+7059,9,E07000125,2,62.07,170.65,25.84,2000
+7385,9,E07000125,3,68.85,195.52,25.84,1000
+7711,9,E07000125,4,75.65,283.35,25.84,1000
+8037,10,E07000125,0,58.82,318.19,18.64,2000
+9231,11,E07000125,1,54.32,142.52,25.84,2000
+9232,11,E07000125,2,62.07,170.65,25.84,2000
+9233,11,E07000125,3,68.85,195.52,25.84,2000
+9234,11,E07000125,4,75.65,283.35,25.84,2000
+9235,12,E07000125,0,58.82,318.19,18.64,2000
+214,1,E07000064,1,60.13,139.33,25.84,1000
+540,1,E07000064,2,74.68,165.75,18.64,2000
+866,1,E07000064,3,85.34,182.58,25.84,1000
+1192,1,E07000064,4,94.09,201.8,25.84,1000
+2822,2,E07000064,0,65.34,303.51,25.84,1000
+1518,3,E07000064,1,54.32,130.92,25.84,1000
+1844,3,E07000064,2,65.95,146.54,25.84,1000
+2170,3,E07000064,3,71.76,169.36,18.64,2000
+2496,3,E07000064,4,76.62,209,25.84,1000
+3148,4,E07000064,0,51.19,221.24,25.84,2000
+4021,5,E07000064,1,60.13,126.48,18.64,2000
+4636,5,E07000064,2,74.68,159.83,25.84,1000
+5288,5,E07000064,3,85.34,215.03,25.84,1000
+5973,5,E07000064,4,94.09,304.71,25.84,1000
+3474,6,E07000064,0,65.34,342.22,25.84,1000
+4088,7,E07000064,1,54.32,126.48,25.84,1000
+4783,7,E07000064,2,65.95,159.83,18.64,2000
+5388,7,E07000064,3,71.76,215.03,25.84,1000
+6077,7,E07000064,4,76.62,304.71,25.84,2000
+3800,8,E07000064,0,51.19,342.22,18.64,2000
+6734,9,E07000064,1,60.13,182.24,25.84,1000
+7060,9,E07000064,2,74.68,230.32,18.64,2000
+7386,9,E07000064,3,85.34,309.88,25.84,1000
+7712,9,E07000064,4,94.09,439.08,25.84,1000
+8038,10,E07000064,0,65.34,493.13,25.84,1000
+9236,11,E07000064,1,60.13,182.24,25.84,2000
+9237,11,E07000064,2,74.68,230.32,25.84,2000
+9238,11,E07000064,3,85.34,309.88,25.84,2000
+9239,11,E07000064,4,94.09,439.08,25.84,2000
+9240,12,E07000064,0,65.34,493.13,18.64,2000
+215,1,E08000018,1,53.35,103.31,25.84,1000
+541,1,E08000018,2,61.09,122.52,25.84,1000
+867,1,E08000018,3,65.95,135.72,25.84,1000
+1193,1,E08000018,4,76.62,163.35,18.64,2000
+2823,2,E08000018,0,55.56,265.72,18.64,2000
+1519,3,E08000018,1,48.48,92.49,25.84,1000
+1845,3,E08000018,2,55.28,127.31,25.84,1000
+2171,3,E08000018,3,59.16,117.72,25.84,2000
+2497,3,E08000018,4,66.92,136.92,25.84,1000
+3149,4,E08000018,0,54.46,182.11,25.84,2000
+4404,5,E08000018,1,53.35,94.29,25.84,2000
+4884,5,E08000018,2,61.09,123.02,25.84,1000
+5515,5,E08000018,3,65.95,135.68,25.84,2000
+6120,5,E08000018,4,76.62,185.13,25.84,1000
+3475,6,E08000018,0,55.56,207.92,25.84,1000
+4558,7,E08000018,1,48.48,94.29,18.64,2000
+4826,7,E08000018,2,55.28,123.02,25.84,1000
+5862,7,E08000018,3,59.16,135.68,25.84,1000
+6218,7,E08000018,4,66.92,185.13,25.84,1000
+3801,8,E08000018,0,54.46,207.92,25.84,1000
+6735,9,E08000018,1,53.35,135.86,25.84,1000
+7061,9,E08000018,2,55.28,177.26,25.84,1000
+7387,9,E08000018,3,65.95,195.52,25.84,1000
+7713,9,E08000018,4,76.62,266.78,18.64,2000
+8039,10,E08000018,0,55.56,299.61,25.84,1000
+9241,11,E08000018,1,53.35,135.86,25.84,2000
+9242,11,E08000018,2,55.28,177.26,25.84,2000
+9243,11,E08000018,3,65.95,195.52,25.84,2000
+9244,11,E08000018,4,76.62,266.78,25.84,2000
+9245,12,E08000018,0,55.56,299.61,18.64,2000
+216,1,E07000220,1,55.28,111.71,18.64,2000
+542,1,E07000220,2,61.09,132.12,25.84,1000
+868,1,E07000220,3,72.73,150.14,25.84,1000
+1194,1,E07000220,4,84.37,182.58,25.84,2000
+2824,2,E07000220,0,41.39,277.87,25.84,1000
+1520,3,E07000220,1,48.48,99.69,25.84,1000
+1846,3,E07000220,2,52.38,106.93,18.64,2000
+2172,3,E07000220,3,63.04,117.72,25.84,2000
+2498,3,E07000220,4,71.76,144.14,25.84,1000
+3150,4,E07000220,0,49.01,121.41,25.84,2000
+4294,5,E07000220,1,55.28,111.54,25.84,1000
+4904,5,E07000220,2,61.09,135.68,18.64,2000
+5535,5,E07000220,3,72.73,166.72,18.64,2000
+6187,5,E07000220,4,84.37,287.46,25.84,2000
+3476,6,E07000220,0,41.39,322.86,18.64,2000
+4515,7,E07000220,1,48.48,111.54,25.84,2000
+5200,7,E07000220,2,52.38,135.68,25.84,1000
+5791,7,E07000220,3,63.04,166.72,25.84,1000
+6452,7,E07000220,4,71.76,287.46,25.84,1000
+3802,8,E07000220,0,49.01,322.86,25.84,1000
+6736,9,E07000220,1,55.28,160.73,18.64,2000
+7062,9,E07000220,2,61.09,195.52,25.84,1000
+7388,9,E07000220,3,72.73,240.25,25.84,1000
+7714,9,E07000220,4,84.37,414.23,25.84,1000
+8040,10,E07000220,0,41.39,465.24,25.84,1000
+9246,11,E07000220,1,55.28,160.73,25.84,2000
+9247,11,E07000220,2,61.09,195.52,25.84,2000
+9248,11,E07000220,3,72.73,240.25,25.84,2000
+9249,11,E07000220,4,84.37,414.23,25.84,2000
+9250,12,E07000220,0,41.39,465.24,18.64,2000
+217,1,E07000212,1,60.13,139.33,25.84,2000
+543,1,E07000212,2,74.68,165.75,25.84,1000
+869,1,E07000212,3,85.34,182.58,18.64,2000
+1195,1,E07000212,4,94.09,201.8,25.84,2000
+2825,2,E07000212,0,65.34,303.51,25.84,1000
+1521,3,E07000212,1,54.32,130.92,25.84,1000
+1847,3,E07000212,2,65.95,146.54,25.84,1000
+2173,3,E07000212,3,71.76,169.36,25.84,2000
+2499,3,E07000212,4,76.62,209,18.64,2000
+3151,4,E07000212,0,51.19,221.24,25.84,2000
+4022,5,E07000212,1,60.13,196.63,25.84,1000
+4637,5,E07000212,2,74.68,269.07,25.84,1000
+5289,5,E07000212,3,85.34,330,25.84,1000
+5974,5,E07000212,4,94.09,584.11,18.64,2000
+3477,6,E07000212,0,65.34,655.99,25.84,1000
+4089,7,E07000212,1,54.32,196.63,18.64,2000
+4784,7,E07000212,2,65.95,269.07,25.84,1000
+5389,7,E07000212,3,71.76,330,18.64,2000
+6078,7,E07000212,4,76.62,584.11,18.64,2000
+3803,8,E07000212,0,51.19,655.99,25.84,1000
+6737,9,E07000212,1,60.13,283.35,25.84,1000
+7063,9,E07000212,2,74.68,387.71,25.84,1000
+7389,9,E07000212,3,85.34,475.54,18.64,2000
+7715,9,E07000212,4,94.09,841.71,25.84,1000
+8041,10,E07000212,0,65.34,945.28,25.84,1000
+9251,11,E07000212,1,60.13,283.35,25.84,2000
+9252,11,E07000212,2,74.68,387.71,25.84,2000
+9253,11,E07000212,3,85.34,475.54,25.84,2000
+9254,11,E07000212,4,94.09,841.71,25.84,2000
+9255,12,E07000212,0,65.34,945.28,18.64,2000
+218,1,E07000176,1,54.32,112.91,25.84,2000
+544,1,E07000176,2,64.98,129.71,25.84,1000
+870,1,E07000176,3,71.76,142.94,25.84,1000
+1196,1,E07000176,4,79.53,178.95,25.84,2000
+2826,2,E07000176,0,54.46,272.48,25.84,1000
+1522,3,E07000176,1,48.48,102.12,18.64,2000
+1848,3,E07000176,2,55.28,109.3,25.84,1000
+2174,3,E07000176,3,61.09,117.72,25.84,2000
+2500,3,E07000176,4,66.92,138.13,25.84,1000
+3152,4,E07000176,0,52.28,129.48,18.64,2000
+4343,5,E07000176,1,54.32,118.43,25.84,2000
+5039,5,E07000176,2,64.98,146.04,25.84,1000
+5682,5,E07000176,3,71.76,185.13,18.64,2000
+6257,5,E07000176,4,79.53,293.23,25.84,1000
+3478,6,E07000176,0,54.46,329.29,25.84,1000
+4443,7,E07000176,1,48.48,118.43,25.84,1000
+5179,7,E07000176,2,55.28,146.04,25.84,1000
+5840,7,E07000176,3,61.09,185.13,25.84,1000
+6501,7,E07000176,4,66.92,293.23,25.84,2000
+3804,8,E07000176,0,52.28,329.29,25.84,1000
+6738,9,E07000176,1,54.32,170.65,25.84,1000
+7064,9,E07000176,2,64.98,210.44,25.84,1000
+7390,9,E07000176,3,71.76,266.78,25.84,2000
+7716,9,E07000176,4,79.53,422.54,25.84,1000
+8042,10,E07000176,0,54.46,474.52,18.44,2000
+9256,11,E07000176,1,54.32,170.65,25.84,2000
+9257,11,E07000176,2,64.98,210.44,25.84,2000
+9258,11,E07000176,3,71.76,266.78,25.84,2000
+9259,11,E07000176,4,79.53,422.54,25.84,2000
+9260,12,E07000176,0,54.46,474.52,18.64,2000
+219,1,E07000092,1,60.13,139.33,25.84,2000
+545,1,E07000092,2,74.68,165.75,18.64,2000
+871,1,E07000092,3,85.34,182.58,25.84,1000
+1197,1,E07000092,4,94.09,201.8,25.84,2000
+2827,2,E07000092,0,65.34,303.51,25.84,1000
+1523,3,E07000092,1,54.32,130.92,25.84,1000
+1849,3,E07000092,2,65.95,146.54,25.84,1000
+2175,3,E07000092,3,71.76,169.36,18.64,2000
+2501,3,E07000092,4,76.62,209,25.84,1000
+3153,4,E07000092,0,51.19,221.24,25.84,1000
+4023,5,E07000092,1,60.13,159.83,25.84,1000
+4638,5,E07000092,2,74.68,196.63,18.64,2000
+5290,5,E07000092,3,85.34,257.56,25.84,1000
+5975,5,E07000092,4,94.09,365.64,25.84,1000
+3479,6,E07000092,0,65.34,410.63,25.84,1000
+4090,7,E07000092,1,54.32,159.83,25.84,1000
+4785,7,E07000092,2,65.95,196.63,25.84,1000
+5390,7,E07000092,3,71.76,257.56,25.84,1000
+6079,7,E07000092,4,76.62,365.64,25.84,1000
+3805,8,E07000092,0,51.19,410.63,18.64,2000
+6739,9,E07000092,1,60.13,230.32,25.84,1000
+7065,9,E07000092,2,74.68,283.35,18.64,2000
+7391,9,E07000092,3,85.34,371.14,25.84,2000
+7717,9,E07000092,4,94.09,526.89,25.84,1000
+8043,10,E07000092,0,65.34,591.71,25.84,1000
+9261,11,E07000092,1,60.13,230.32,25.84,2000
+9262,11,E07000092,2,74.68,283.35,25.84,2000
+9263,11,E07000092,3,85.34,371.14,25.84,2000
+9264,11,E07000092,4,94.09,526.89,25.84,2000
+9265,12,E07000092,0,65.34,591.71,18.64,2000
+220,1,E06000017,1,54.32,112.91,25.84,2000
+546,1,E06000017,2,64.98,129.71,25.84,1000
+872,1,E06000017,3,71.76,142.94,25.84,1000
+1198,1,E06000017,4,79.53,178.95,18.64,2000
+2828,2,E06000017,0,54.46,272.48,18.64,2000
+1524,3,E06000017,1,48.48,102.12,25.84,1000
+1850,3,E06000017,2,55.28,109.3,25.84,1000
+2176,3,E06000017,3,61.09,117.72,25.84,1000
+2502,3,E06000017,4,66.92,138.13,25.84,1000
+3154,4,E06000017,0,52.28,129.48,25.84,1000
+4344,5,E06000017,1,54.32,118.43,18.64,2000
+5040,5,E06000017,2,64.98,141.43,25.84,1000
+5683,5,E06000017,3,71.76,178.23,25.84,1000
+6258,5,E06000017,4,79.53,311.63,25.84,1000
+3480,6,E06000017,0,54.46,349.94,25.84,1000
+4444,7,E06000017,1,48.48,118.43,25.84,1000
+5180,7,E06000017,2,55.28,141.43,25.84,1000
+5841,7,E06000017,3,61.09,178.23,25.84,1000
+6502,7,E06000017,4,66.92,311.63,25.84,2000
+3806,8,E06000017,0,52.28,349.94,25.84,1000
+6740,9,E06000017,1,54.32,170.65,25.84,1000
+7066,9,E06000017,2,64.98,203.8,25.84,1000
+7392,9,E06000017,3,71.76,256.83,25.84,2000
+7718,9,E06000017,4,79.53,449.06,18.64,2000
+8044,10,E06000017,0,54.46,504.28,25.84,1000
+9266,11,E06000017,1,54.32,170.65,25.84,2000
+9267,11,E06000017,2,64.98,203.8,25.84,2000
+9268,11,E06000017,3,71.76,256.83,25.84,2000
+9269,11,E06000017,4,79.53,449.06,25.84,2000
+9270,12,E06000017,0,54.46,504.28,18.64,2000
+222,1,E08000006,1,54.32,105.71,18.64,2000
+548,1,E08000006,2,62.07,121.33,25.84,1000
+874,1,E08000006,3,68.85,135.72,25.84,1000
+1200,1,E08000006,4,75.65,151.35,25.84,1000
+2830,2,E08000006,0,58.82,271.14,25.84,1000
+1526,3,E08000006,1,45.57,97.28,25.84,1000
+1852,3,E08000006,2,56.25,106.93,18.64,2000
+2178,3,E08000006,3,61.09,118.92,25.84,1000
+2504,3,E08000006,4,58.19,134.53,25.84,1000
+3156,4,E08000006,0,34.85,531.48,25.84,1000
+4377,5,E08000006,1,54.32,123.02,25.84,1000
+4947,5,E08000006,2,62.07,141.43,25.84,1000
+5590,5,E08000006,3,68.85,159.83,18.64,2000
+6338,5,E08000006,4,75.65,263.33,25.84,1000
+3482,6,E08000006,0,58.82,295.72,18.64,2000
+4489,7,E08000006,1,45.57,123.02,25.84,2000
+5085,7,E08000006,2,56.25,141.43,25.84,1000
+5765,7,E08000006,3,61.09,159.83,25.84,1000
+6389,7,E08000006,4,58.19,263.33,25.84,1000
+3808,8,E08000006,0,34.85,295.72,25.84,1000
+6742,9,E08000006,1,54.32,177.26,18.64,2000
+7068,9,E08000006,2,62.07,203.8,25.84,1000
+7394,9,E08000006,3,68.85,230.32,25.84,2000
+7720,9,E08000006,4,75.65,379.46,25.84,1000
+8046,10,E08000006,0,58.82,426.13,25.84,1000
+9271,11,E08000006,1,54.32,177.26,25.84,2000
+9272,11,E08000006,2,62.07,203.8,25.84,2000
+9273,11,E08000006,3,68.85,230.32,25.84,2000
+9274,11,E08000006,4,75.65,379.46,25.84,2000
+9275,12,E08000006,0,58.82,426.13,18.64,2000
+223,1,E08000028,1,55.28,111.71,25.84,1000
+549,1,E08000028,2,61.09,132.12,25.84,1000
+875,1,E08000028,3,72.73,150.14,18.64,2000
+1201,1,E08000028,4,84.37,182.58,25.84,1000
+2831,2,E08000028,0,41.39,277.87,25.84,1000
+1527,3,E08000028,1,48.48,99.69,25.84,1000
+1853,3,E08000028,2,52.38,106.93,25.84,1000
+2179,3,E08000028,3,63.04,117.72,25.84,1000
+2505,3,E08000028,4,71.76,144.14,18.64,2000
+3157,4,E08000028,0,49.01,121.41,25.84,1000
+4295,5,E08000028,1,55.28,108.08,18.64,2000
+4905,5,E08000028,2,61.09,129.92,25.84,2000
+5536,5,E08000028,3,72.73,146.04,25.84,1000
+6188,5,E08000028,4,84.37,196.63,18.64,2000
+3483,6,E08000028,0,41.39,220.82,25.84,2000
+4516,7,E08000028,1,48.48,108.08,25.84,2000
+5201,7,E08000028,2,52.38,129.92,25.84,1000
+5792,7,E08000028,3,63.04,146.04,25.84,1000
+6453,7,E08000028,4,71.76,196.63,25.84,1000
+3809,8,E08000028,0,49.01,220.82,25.84,1000
+6743,9,E08000028,1,55.28,155.77,25.84,1000
+7069,9,E08000028,2,61.09,187.23,25.84,1000
+7395,9,E08000028,3,72.73,210.44,18.64,2000
+7721,9,E08000028,4,84.37,283.35,25.84,1000
+8047,10,E08000028,0,41.39,318.19,25.84,1000
+9276,11,E08000028,1,55.28,155.77,25.84,2000
+9277,11,E08000028,2,61.09,187.23,25.84,2000
+9278,11,E08000028,3,72.73,210.44,25.84,2000
+9279,11,E08000028,4,84.37,283.35,25.84,2000
+9280,12,E08000028,0,41.39,318.19,18.64,2000
+226,1,E08000014,1,54.32,105.71,25.84,1000
+552,1,E08000014,2,62.07,121.33,25.84,1000
+878,1,E08000014,3,68.85,135.72,25.84,1000
+1204,1,E08000014,4,75.65,151.35,25.84,1000
+2834,2,E08000014,0,58.82,271.14,25.84,1000
+1530,3,E08000014,1,45.57,97.28,18.64,2000
+1856,3,E08000014,2,56.25,106.93,25.84,1000
+2182,3,E08000014,3,61.09,118.92,25.84,1000
+2508,3,E08000014,4,58.19,134.53,25.84,2000
+3160,4,E08000014,0,34.85,531.48,18.64,2000
+4378,5,E08000014,1,54.32,111.54,25.84,1000
+4948,5,E08000014,2,62.07,142.58,25.84,1000
+5591,5,E08000014,3,68.85,166.72,25.84,1000
+6339,5,E08000014,4,75.65,238.02,25.84,1000
+3486,6,E08000014,0,58.82,267.3,25.84,2000
+4490,7,E08000014,1,45.57,111.54,25.84,2000
+5086,7,E08000014,2,56.25,142.58,25.84,1000
+5766,7,E08000014,3,61.09,166.72,25.84,1000
+6390,7,E08000014,4,58.19,238.02,25.84,1000
+3812,8,E08000014,0,34.85,267.3,25.84,1000
+6746,9,E08000014,1,54.32,160.73,25.84,1000
+7072,9,E08000014,2,62.07,205.46,25.84,1000
+7398,9,E08000014,3,68.85,240.25,25.84,1000
+7724,9,E08000014,4,75.65,342.99,25.84,1000
+8050,10,E08000014,0,58.82,385.18,18.44,2000
+9281,11,E08000014,1,54.32,160.73,25.84,2000
+9282,11,E08000014,2,62.07,205.46,25.84,2000
+9283,11,E08000014,3,68.85,240.25,25.84,2000
+9284,11,E08000014,4,75.65,342.99,25.84,2000
+9285,12,E08000014,0,58.82,385.18,18.64,2000
+228,1,E07000111,1,60.13,139.33,25.84,1000
+554,1,E07000111,2,74.68,165.75,18.64,2000
+880,1,E07000111,3,85.34,182.58,25.84,1000
+1206,1,E07000111,4,94.09,201.8,25.84,1000
+2836,2,E07000111,0,65.34,303.51,25.84,1000
+1532,3,E07000111,1,54.32,130.92,25.84,2000
+1858,3,E07000111,2,65.95,146.54,25.84,1000
+2184,3,E07000111,3,71.76,169.36,18.64,2000
+2510,3,E07000111,4,76.62,209,25.84,2000
+3162,4,E07000111,0,51.19,221.24,25.84,1000
+4024,5,E07000111,1,60.13,172.47,25.84,1000
+4639,5,E07000111,2,74.68,232.26,25.84,1000
+5291,5,E07000111,3,85.34,341.51,18.64,2000
+5976,5,E07000111,4,94.09,680.71,25.84,1000
+3488,6,E07000111,0,65.34,764.49,25.84,2000
+4091,7,E07000111,1,54.32,172.47,25.84,1000
+4786,7,E07000111,2,65.95,232.26,25.84,1000
+5391,7,E07000111,3,71.76,341.51,25.84,1000
+6080,7,E07000111,4,76.62,680.71,25.84,1000
+3814,8,E07000111,0,51.19,764.49,18.64,2000
+6748,9,E07000111,1,60.13,248.54,25.84,1000
+7074,9,E07000111,2,74.68,334.7,18.64,2000
+7400,9,E07000111,3,85.34,492.12,25.84,1000
+7726,9,E07000111,4,94.09,980.91,25.84,1000
+8052,10,E07000111,0,65.34,1101.63,25.84,1000
+9286,11,E07000111,1,60.13,248.54,25.84,2000
+9287,11,E07000111,2,74.68,334.7,25.84,2000
+9288,11,E07000111,3,85.34,492.12,25.84,2000
+9289,11,E07000111,4,94.09,980.91,25.84,2000
+9290,12,E07000111,0,65.34,1101.63,18.64,2000
+229,1,E08000039,1,53.35,103.31,25.84,1000
+555,1,E08000039,2,61.09,122.52,25.84,2000
+881,1,E08000039,3,65.95,135.72,25.84,1000
+1207,1,E08000039,4,76.62,163.35,18.64,2000
+2837,2,E08000039,0,55.56,265.72,18.64,2000
+1533,3,E08000039,1,48.48,92.49,25.84,2000
+1859,3,E08000039,2,55.28,127.31,25.84,1000
+2185,3,E08000039,3,59.16,117.72,25.84,1000
+2511,3,E08000039,4,66.92,136.92,25.84,2000
+3163,4,E08000039,0,54.46,182.11,25.84,1000
+4408,5,E08000039,1,53.35,124.18,18.64,2000
+4888,5,E08000039,2,61.09,141.43,25.84,1000
+5519,5,E08000039,3,65.95,148.33,25.84,2000
+6124,5,E08000039,4,76.62,226.53,25.84,1000
+3489,6,E08000039,0,55.56,254.37,25.84,2000
+4562,7,E08000039,1,48.48,124.18,25.84,1000
+4830,7,E08000039,2,55.28,141.43,25.84,1000
+5866,7,E08000039,3,59.16,148.33,25.84,1000
+6222,7,E08000039,4,66.92,226.53,25.84,1000
+3815,8,E08000039,0,54.46,254.37,25.84,1000
+6749,9,E08000039,1,53.35,178.94,25.84,1000
+7075,9,E08000039,2,55.28,203.8,25.84,1000
+7401,9,E08000039,3,65.95,213.75,25.84,1000
+7727,9,E08000039,4,76.62,326.44,18.64,2000
+8053,10,E08000039,0,55.56,366.56,25.84,1000
+9291,11,E08000039,1,53.35,178.94,25.84,2000
+9292,11,E08000039,2,55.28,203.8,25.84,2000
+9293,11,E08000039,3,65.95,213.75,25.84,2000
+9294,11,E08000039,4,76.62,326.44,25.84,2000
+9295,12,E08000039,0,55.56,366.56,18.64,2000
+230,1,E07000112,1,60.13,139.33,18.64,2000
+556,1,E07000112,2,74.68,165.75,25.84,2000
+882,1,E07000112,3,85.34,182.58,25.84,1000
+1208,1,E07000112,4,94.09,201.8,25.84,1000
+2838,2,E07000112,0,65.34,303.51,25.84,1000
+1534,3,E07000112,1,54.32,130.92,25.84,2000
+1860,3,E07000112,2,65.95,146.54,18.64,2000
+2186,3,E07000112,3,71.76,169.36,25.84,1000
+2512,3,E07000112,4,76.62,209,25.84,2000
+3164,4,E07000112,0,51.19,221.24,25.84,1000
+4025,5,E07000112,1,60.13,111.54,25.84,1000
+4640,5,E07000112,2,74.68,152.93,25.84,1000
+5292,5,E07000112,3,85.34,185.13,25.84,2000
+5977,5,E07000112,4,94.09,287.46,25.84,1000
+3490,6,E07000112,0,65.34,322.86,18.64,2000
+4092,7,E07000112,1,54.32,111.54,25.84,1000
+4787,7,E07000112,2,65.95,152.93,25.84,1000
+5392,7,E07000112,3,71.76,185.13,25.84,1000
+6081,7,E07000112,4,76.62,287.46,25.84,1000
+3816,8,E07000112,0,51.19,322.86,25.84,1000
+6750,9,E07000112,1,60.13,160.73,18.64,2000
+7076,9,E07000112,2,74.68,220.35,25.84,1000
+7402,9,E07000112,3,85.34,266.78,25.84,1000
+7728,9,E07000112,4,94.09,414.23,25.84,2000
+8054,10,E07000112,0,65.34,465.24,25.84,1000
+9296,11,E07000112,1,60.13,160.73,25.84,2000
+9297,11,E07000112,2,74.68,220.35,25.84,2000
+9298,11,E07000112,3,85.34,266.78,25.84,2000
+9299,11,E07000112,4,94.09,414.23,25.84,2000
+9300,12,E07000112,0,65.34,465.24,18.64,2000
+231,1,E06000051,1,55.28,111.71,25.84,1000
+557,1,E06000051,2,61.09,132.12,25.84,2000
+883,1,E06000051,3,72.73,150.14,18.64,2000
+1209,1,E06000051,4,84.37,182.58,25.84,1000
+2839,2,E06000051,0,41.39,277.87,25.84,1000
+1535,3,E06000051,1,48.48,99.69,25.84,2000
+1861,3,E06000051,2,52.38,106.93,25.84,1000
+2187,3,E06000051,3,63.04,117.72,25.84,1000
+2513,3,E06000051,4,71.76,144.14,18.64,2000
+3165,4,E06000051,0,49.01,121.41,25.84,1000
+4296,5,E06000051,1,55.28,111.54,25.84,1000
+4906,5,E06000051,2,61.09,135.68,25.84,2000
+5537,5,E06000051,3,72.73,159.83,25.84,1000
+6189,5,E06000051,4,84.37,238.02,25.84,1000
+3491,6,E06000051,0,41.39,267.3,25.84,1000
+4517,7,E06000051,1,48.48,111.54,25.84,2000
+5202,7,E06000051,2,52.38,135.68,25.84,1000
+5793,7,E06000051,3,63.04,159.83,25.84,1000
+6454,7,E06000051,4,71.76,238.02,25.84,1000
+3817,8,E06000051,0,49.01,267.3,25.84,1000
+6751,9,E06000051,1,55.28,160.73,25.84,2000
+7077,9,E06000051,2,61.09,195.52,25.84,1000
+7403,9,E06000051,3,72.73,230.32,18.64,2000
+7729,9,E06000051,4,84.37,342.99,25.84,2000
+8055,10,E06000051,0,41.39,385.18,25.84,1000
+9301,11,E06000051,1,55.28,160.73,25.84,2000
+9302,11,E06000051,2,61.09,195.52,25.84,2000
+9303,11,E06000051,3,72.73,230.32,25.84,2000
+9304,11,E06000051,4,84.37,342.99,25.84,2000
+9305,12,E06000051,0,41.39,385.18,18.64,2000
+232,1,E06000039,1,60.13,139.33,25.84,1000
+558,1,E06000039,2,74.68,165.75,25.84,2000
+884,1,E06000039,3,85.34,182.58,25.84,1000
+1210,1,E06000039,4,94.09,201.8,25.84,1000
+2840,2,E06000039,0,65.34,303.51,25.84,1000
+1536,3,E06000039,1,54.32,130.92,18.64,2000
+1862,3,E06000039,2,65.95,146.54,25.84,1000
+2188,3,E06000039,3,71.76,169.36,25.84,1000
+2514,3,E06000039,4,76.62,209,25.84,1000
+3166,4,E06000039,0,51.19,221.24,18.64,2000
+4026,5,E06000039,1,60.13,166.72,18.64,2000
+4641,5,E06000039,2,74.68,208.12,25.84,1000
+5293,5,E06000039,3,85.34,257.56,25.84,2000
+5978,5,E06000039,4,94.09,365.64,25.84,1000
+3492,6,E06000039,0,65.34,410.63,25.84,1000
+4093,7,E06000039,1,54.32,166.72,25.84,1000
+4788,7,E06000039,2,65.95,208.12,18.64,2000
+5393,7,E06000039,3,71.76,257.56,25.84,1000
+6082,7,E06000039,4,76.62,365.64,25.84,1000
+3818,8,E06000039,0,51.19,410.63,25.84,1000
+6752,9,E06000039,1,60.13,240.25,25.84,2000
+7078,9,E06000039,2,74.68,299.91,25.84,1000
+7404,9,E06000039,3,85.34,371.14,25.84,1000
+7730,9,E06000039,4,94.09,526.89,25.84,2000
+8056,10,E06000039,0,65.34,591.71,18.44,2000
+9306,11,E06000039,1,60.13,240.25,25.84,2000
+9307,11,E06000039,2,74.68,299.91,25.84,2000
+9308,11,E06000039,3,85.34,371.14,25.84,2000
+9309,11,E06000039,4,94.09,526.89,25.84,2000
+9310,12,E06000039,0,65.34,591.71,18.64,2000
+233,1,E08000029,1,55.28,111.71,25.84,1000
+559,1,E08000029,2,61.09,132.12,18.64,2000
+885,1,E08000029,3,72.73,150.14,25.84,1000
+1211,1,E08000029,4,84.37,182.58,25.84,1000
+2841,2,E08000029,0,41.39,277.87,25.84,1000
+1537,3,E08000029,1,48.48,99.69,25.84,1000
+1863,3,E08000029,2,52.38,106.93,25.84,1000
+2189,3,E08000029,3,63.04,117.72,18.64,2000
+2515,3,E08000029,4,71.76,144.14,25.84,1000
+3167,4,E08000029,0,49.01,121.41,25.84,1000
+4297,5,E08000029,1,55.28,135.68,25.84,1000
+4907,5,E08000029,2,61.09,172.47,25.84,2000
+5538,5,E08000029,3,72.73,208.12,25.84,1000
+6190,5,E08000029,4,84.37,388.64,25.84,1000
+3493,6,E08000029,0,41.39,436.47,25.84,1000
+4518,7,E08000029,1,48.48,135.68,25.84,2000
+5203,7,E08000029,2,52.38,172.47,25.84,1000
+5794,7,E08000029,3,63.04,208.12,25.84,1000
+6455,7,E08000029,4,71.76,388.64,18.64,2000
+3819,8,E08000029,0,49.01,436.47,18.64,2000
+6753,9,E08000029,1,55.28,195.52,25.84,2000
+7079,9,E08000029,2,61.09,248.54,18.64,2000
+7405,9,E08000029,3,72.73,299.91,25.84,1000
+7731,9,E08000029,4,84.37,560.03,25.84,2000
+8057,10,E08000029,0,41.39,628.94,25.84,1000
+9311,11,E08000029,1,55.28,195.52,25.84,2000
+9312,11,E08000029,2,61.09,248.54,25.84,2000
+9313,11,E08000029,3,72.73,299.91,25.84,2000
+9314,11,E08000029,4,84.37,560.03,25.84,2000
+9315,12,E08000029,0,41.39,628.94,18.64,2000
+8226,1,E06000066,1,51.41,226.41,25.84,1000
+8227,1,E06000066,2,58.19,282.63,25.84,1000
+8228,1,E06000066,3,64.98,395.06,25.84,1000
+8229,1,E06000066,4,74.68,660.51,25.84,1000
+8234,2,E06000066,0,57.73,282.63,25.84,1000
+8230,3,E06000066,1,49.46,740.03,18.44,2000
+8231,3,E06000066,2,57.22,143.66,25.84,1000
+8232,3,E06000066,3,64.98,168.63,25.84,1000
+8233,3,E06000066,4,77.58,195.18,25.84,1000
+8235,4,E06000066,0,57.73,317.4,18.44,2000
+8239,5,E06000066,1,51.41,270.56,25.84,1000
+8240,5,E06000066,2,58.19,303.84,18.44,2000
+8242,5,E06000066,3,64.98,231.69,25.84,1000
+8244,5,E06000066,4,74.68,460.4,25.84,1000
+8236,6,E06000066,0,57.73,137.52,25.84,1000
+8238,7,E06000066,1,49.46,186.85,25.84,1000
+8241,7,E06000066,2,57.22,189.84,25.84,1000
+8243,7,E06000066,3,64.98,263.1,25.84,1000
+8245,7,E06000066,4,77.58,517.03,18.44,2000
+8237,8,E06000066,0,57.73,161.43,25.84,1000
+8246,9,E06000066,1,51.41,389.87,25.84,2000
+8247,9,E06000066,2,58.19,437.85,25.84,2000
+8248,9,E06000066,3,64.98,437.85,25.84,2000
+8249,9,E06000066,4,74.68,663.44,25.84,2000
+8250,10,E06000066,0,57.73,198.18,18.44,2000
+9316,11,E06000066,1,51.41,389.87,25.84,2000
+9317,11,E06000066,2,58.19,437.85,25.84,2000
+9318,11,E06000066,3,64.98,437.85,25.84,2000
+9319,11,E06000066,4,74.68,663.44,25.84,2000
+9320,12,E06000066,0,57.73,198.18,18.64,2000
+235,1,E07000012,1,57.22,134.53,25.84,1000
+561,1,E07000012,2,67.88,160.94,25.84,1000
+887,1,E07000012,3,74.68,176.56,25.84,1000
+1213,1,E07000012,4,85.34,193.39,18.64,2000
+2843,2,E07000012,0,38.11,256.29,18.64,2000
+1539,3,E07000012,1,52.38,112.91,25.84,1000
+1865,3,E07000012,2,61.09,133.32,25.84,1000
+2191,3,E07000012,3,66.92,147.74,25.84,1000
+2517,3,E07000012,4,74.68,168.16,25.84,1000
+3169,4,E07000012,0,58.82,153.78,25.84,1000
+4150,5,E07000012,1,57.22,159.83,25.84,2000
+4731,5,E07000012,2,67.88,185.13,25.84,1000
+5450,5,E07000012,3,74.68,219.63,25.84,2000
+6160,5,E07000012,4,85.34,342.66,25.84,2000
+3495,6,E07000012,0,38.11,384.8,25.84,1000
+4267,7,E07000012,1,52.38,159.83,25.84,1000
+4993,7,E07000012,2,61.09,185.13,25.84,1000
+5636,7,E07000012,3,66.92,219.63,25.84,1000
+6298,7,E07000012,4,74.68,342.66,25.84,2000
+3821,8,E07000012,0,58.82,384.8,25.84,2000
+6755,9,E07000012,1,57.22,230.32,25.84,2000
+7081,9,E07000012,2,67.88,266.78,25.84,1000
+7407,9,E07000012,3,74.68,316.49,25.84,1000
+7733,9,E07000012,4,85.34,493.77,18.64,2000
+8059,10,E07000012,0,38.11,554.5,25.84,1000
+9321,11,E07000012,1,57.22,230.32,25.84,2000
+9322,11,E07000012,2,67.88,266.78,25.84,2000
+9323,11,E07000012,3,74.68,316.49,25.84,2000
+9324,11,E07000012,4,85.34,493.77,25.84,2000
+9325,12,E07000012,0,38.11,554.5,18.64,2000
+236,1,E07000039,1,54.32,112.91,18.64,2000
+562,1,E07000039,2,64.98,129.71,25.84,1000
+888,1,E07000039,3,71.76,142.94,25.84,1000
+1214,1,E07000039,4,79.53,178.95,25.84,1000
+2844,2,E07000039,0,54.46,272.48,25.84,2000
+1540,3,E07000039,1,48.48,102.12,25.84,1000
+1866,3,E07000039,2,55.28,109.3,18.64,2000
+2192,3,E07000039,3,61.09,117.72,25.84,1000
+2518,3,E07000039,4,66.92,138.13,25.84,1000
+3170,4,E07000039,0,52.28,129.48,25.84,1000
+4345,5,E07000039,1,54.32,111.54,25.84,1000
+5041,5,E07000039,2,64.98,135.68,18.64,2000
+5684,5,E07000039,3,71.76,159.83,25.84,1000
+6259,5,E07000039,4,79.53,267.91,18.64,2000
+3496,6,E07000039,0,54.46,300.88,18.64,2000
+4445,7,E07000039,1,48.48,111.54,25.84,1000
+5181,7,E07000039,2,55.28,135.68,25.84,1000
+5842,7,E07000039,3,61.09,159.83,25.84,1000
+6503,7,E07000039,4,66.92,267.91,25.84,2000
+3822,8,E07000039,0,52.28,300.88,25.84,2000
+6756,9,E07000039,1,54.32,160.73,18.64,2000
+7082,9,E07000039,2,64.98,195.52,25.84,1000
+7408,9,E07000039,3,71.76,230.32,25.84,1000
+7734,9,E07000039,4,79.53,386.06,25.84,1000
+8060,10,E07000039,0,54.46,433.57,25.84,1000
+9326,11,E07000039,1,54.32,160.73,25.84,2000
+9327,11,E07000039,2,64.98,195.52,25.84,2000
+9328,11,E07000039,3,71.76,230.32,25.84,2000
+9329,11,E07000039,4,79.53,386.06,25.84,2000
+9330,12,E07000039,0,54.46,433.57,18.64,2000
+237,1,E06000025,1,51.41,121.33,25.84,1000
+563,1,E06000025,2,58.19,136.92,25.84,1000
+889,1,E06000025,3,64.98,159.75,18.64,2000
+1215,1,E06000025,4,74.68,178.95,25.84,1000
+2845,2,E06000025,0,57.73,261.7,25.84,2000
+1541,3,E06000025,1,49.46,100.89,25.84,1000
+1867,3,E06000025,2,57.22,114.11,25.84,2000
+2193,3,E06000025,3,64.98,123.71,25.84,1000
+2519,3,E06000025,4,77.58,147.74,18.64,2000
+3171,4,E06000025,0,57.73,130.84,25.84,1000
+4219,5,E06000025,1,51.41,135.68,25.84,1000
+4855,5,E06000025,2,58.19,163.28,25.84,1000
+5486,5,E06000025,3,64.98,202.38,25.84,1000
+6024,5,E06000025,4,74.68,292.07,25.84,1000
+3497,6,E06000025,0,57.73,328,25.84,1000
+3935,7,E06000025,1,49.46,135.68,25.84,2000
+5132,7,E06000025,2,57.22,163.28,25.84,2000
+5712,7,E06000025,3,64.98,202.38,25.84,2000
+6424,7,E06000025,4,77.58,292.07,25.84,1000
+3823,8,E06000025,0,57.73,328,25.84,2000
+6757,9,E06000025,1,51.41,195.52,25.84,1000
+7083,9,E06000025,2,58.19,235.3,25.84,1000
+7409,9,E06000025,3,64.98,291.63,18.64,2000
+7735,9,E06000025,4,74.68,420.86,25.84,1000
+8061,10,E06000025,0,57.73,472.65,25.84,1000
+9331,11,E06000025,1,51.41,195.52,25.84,2000
+9332,11,E06000025,2,58.19,235.3,25.84,2000
+9333,11,E06000025,3,64.98,291.63,25.84,2000
+9334,11,E06000025,4,74.68,420.86,25.84,2000
+9335,12,E06000025,0,57.73,472.65,18.64,2000
+238,1,E07000044,1,51.41,121.33,25.84,1000
+564,1,E07000044,2,58.19,136.92,25.84,1000
+890,1,E07000044,3,64.98,159.75,25.84,2000
+1216,1,E07000044,4,74.68,178.95,25.84,1000
+2846,2,E07000044,0,57.73,261.7,25.84,2000
+1542,3,E07000044,1,49.46,100.89,18.64,2000
+1868,3,E07000044,2,57.22,114.11,25.84,2000
+2194,3,E07000044,3,64.98,123.71,25.84,1000
+2520,3,E07000044,4,77.58,147.74,25.84,1000
+3172,4,E07000044,0,57.73,130.84,18.64,2000
+4220,5,E07000044,1,51.41,123.02,25.84,1000
+4856,5,E07000044,2,58.19,154.07,25.84,1000
+5487,5,E07000044,3,64.98,195.48,25.84,1000
+6025,5,E07000044,4,74.68,269.07,25.84,1000
+3498,6,E07000044,0,57.73,302.16,25.84,1000
+3936,7,E07000044,1,49.46,123.02,25.84,2000
+5133,7,E07000044,2,57.22,154.07,25.84,2000
+5713,7,E07000044,3,64.98,195.48,25.84,2000
+6425,7,E07000044,4,77.58,269.07,18.64,2000
+3824,8,E07000044,0,57.73,302.16,25.84,2000
+6758,9,E07000044,1,51.41,177.26,25.84,1000
+7084,9,E07000044,2,58.19,222,25.84,1000
+7410,9,E07000044,3,64.98,281.69,25.84,1000
+7736,9,E07000044,4,74.68,387.71,25.84,1000
+8062,10,E07000044,0,57.73,435.43,18.44,2000
+9336,11,E07000044,1,51.41,177.26,25.84,2000
+9337,11,E07000044,2,58.19,222,25.84,2000
+9338,11,E07000044,3,64.98,281.69,25.84,2000
+9339,11,E07000044,4,74.68,387.71,25.84,2000
+9340,12,E07000044,0,57.73,435.43,18.64,2000
+239,1,E07000140,1,54.32,112.91,25.84,1000
+565,1,E07000140,2,64.98,129.71,18.64,2000
+891,1,E07000140,3,71.76,142.94,25.84,2000
+1217,1,E07000140,4,79.53,178.95,25.84,1000
+2847,2,E07000140,0,54.46,272.48,25.84,2000
+1543,3,E07000140,1,48.48,102.12,25.84,1000
+1869,3,E07000140,2,55.28,109.3,25.84,2000
+2195,3,E07000140,3,61.09,117.72,18.64,2000
+2521,3,E07000140,4,66.92,138.13,25.84,1000
+3173,4,E07000140,0,52.28,129.48,25.84,1000
+4346,5,E07000140,1,54.32,108.08,25.84,1000
+5042,5,E07000140,2,64.98,129.92,25.84,2000
+5685,5,E07000140,3,71.76,148.33,25.84,1000
+6260,5,E07000140,4,79.53,195.48,25.84,1000
+3499,6,E07000140,0,54.46,219.51,25.84,1000
+4446,7,E07000140,1,48.48,108.08,25.84,1000
+5182,7,E07000140,2,55.28,129.92,25.84,1000
+5843,7,E07000140,3,61.09,148.33,25.84,1000
+6504,7,E07000140,4,66.92,195.48,18.64,2000
+3825,8,E07000140,0,52.28,219.51,18.64,2000
+6759,9,E07000140,1,54.32,155.77,25.84,1000
+7085,9,E07000140,2,64.98,187.23,18.64,2000
+7411,9,E07000140,3,71.76,213.75,25.84,1000
+7737,9,E07000140,4,79.53,281.69,25.84,1000
+8063,10,E07000140,0,54.46,316.32,25.84,2000
+9341,11,E07000140,1,54.32,155.77,25.84,2000
+9342,11,E07000140,2,64.98,187.23,25.84,2000
+9343,11,E07000140,3,71.76,213.75,25.84,2000
+9344,11,E07000140,4,79.53,281.69,25.84,2000
+9345,12,E07000140,0,54.46,316.32,18.64,2000
+240,1,E07000141,1,54.32,112.91,25.84,1000
+566,1,E07000141,2,64.98,129.71,25.84,1000
+892,1,E07000141,3,71.76,142.94,25.84,2000
+1218,1,E07000141,4,79.53,178.95,18.64,2000
+2848,2,E07000141,0,54.46,272.48,18.64,2000
+1544,3,E07000141,1,48.48,102.12,25.84,1000
+1870,3,E07000141,2,55.28,109.3,25.84,2000
+2196,3,E07000141,3,61.09,117.72,25.84,1000
+2522,3,E07000141,4,66.92,138.13,25.84,1000
+3174,4,E07000141,0,52.28,129.48,25.84,1000
+4347,5,E07000141,1,54.32,105.79,25.84,1000
+5043,5,E07000141,2,64.98,135.68,25.84,2000
+5686,5,E07000141,3,71.76,159.83,25.84,1000
+6261,5,E07000141,4,79.53,220.78,25.84,1000
+3500,6,E07000141,0,54.46,247.93,25.84,1000
+4447,7,E07000141,1,48.48,105.79,18.64,2000
+5183,7,E07000141,2,55.28,135.68,18.64,2000
+5844,7,E07000141,3,61.09,159.83,18.64,2000
+6505,7,E07000141,4,66.92,220.78,25.84,1000
+3826,8,E07000141,0,52.28,247.93,25.84,1000
+6760,9,E07000141,1,54.32,152.44,25.84,1000
+7086,9,E07000141,2,64.98,195.52,25.84,2000
+7412,9,E07000141,3,71.76,230.32,25.84,1000
+7738,9,E07000141,4,79.53,318.15,18.64,2000
+8064,10,E07000141,0,54.46,357.27,25.84,2000
+9346,11,E07000141,1,54.32,152.44,25.84,2000
+9347,11,E07000141,2,64.98,195.52,25.84,2000
+9348,11,E07000141,3,71.76,230.32,25.84,2000
+9349,11,E07000141,4,79.53,318.15,25.84,2000
+9350,12,E07000141,0,54.46,357.27,18.64,2000
+242,1,E07000149,1,57.22,134.53,18.64,2000
+568,1,E07000149,2,67.88,160.94,25.84,1000
+894,1,E07000149,3,74.68,176.56,25.84,2000
+1220,1,E07000149,4,85.34,193.39,25.84,1000
+2850,2,E07000149,0,38.11,256.29,25.84,1000
+1546,3,E07000149,1,52.38,112.91,25.84,1000
+1872,3,E07000149,2,61.09,133.32,18.64,2000
+2198,3,E07000149,3,66.92,147.74,25.84,1000
+2524,3,E07000149,4,74.68,168.16,25.84,1000
+3176,4,E07000149,0,58.82,153.78,25.84,1000
+4151,5,E07000149,1,57.22,111.54,18.64,2000
+4732,5,E07000149,2,67.88,135.68,25.84,1000
+5451,5,E07000149,3,74.68,159.83,18.64,2000
+6161,5,E07000149,4,85.34,232.26,25.84,2000
+3502,6,E07000149,0,38.11,260.84,18.64,2000
+4268,7,E07000149,1,52.38,111.54,25.84,1000
+4994,7,E07000149,2,61.09,135.68,25.84,1000
+5637,7,E07000149,3,66.92,159.83,18.64,2000
+6299,7,E07000149,4,74.68,232.26,25.84,2000
+3828,8,E07000149,0,58.82,260.84,25.84,1000
+6762,9,E07000149,1,57.22,160.73,18.64,2000
+7088,9,E07000149,2,67.88,195.52,25.84,2000
+7414,9,E07000149,3,74.68,230.32,25.84,1000
+7740,9,E07000149,4,85.34,334.7,25.84,1000
+8066,10,E07000149,0,38.11,375.86,25.84,2000
+9351,11,E07000149,1,57.22,160.73,25.84,2000
+9352,11,E07000149,2,67.88,195.52,25.84,2000
+9353,11,E07000149,3,74.68,230.32,25.84,2000
+9354,11,E07000149,4,85.34,334.7,25.84,2000
+9355,12,E07000149,0,38.11,375.86,18.64,2000
+244,1,E07000179,1,60.13,139.33,25.84,1000
+570,1,E07000179,2,74.68,165.75,25.84,1000
+896,1,E07000179,3,85.34,182.58,25.84,1000
+1222,1,E07000179,4,94.09,201.8,25.84,1000
+2852,2,E07000179,0,65.34,303.51,25.84,1000
+1548,3,E07000179,1,54.32,130.92,18.64,2000
+1874,3,E07000179,2,65.95,146.54,25.84,1000
+2200,3,E07000179,3,71.76,169.36,25.84,1000
+2526,3,E07000179,4,76.62,209,25.84,1000
+3178,4,E07000179,0,51.19,221.24,18.64,2000
+4028,5,E07000179,1,60.13,170.17,25.84,1000
+4643,5,E07000179,2,74.68,208.12,25.84,1000
+5295,5,E07000179,3,85.34,304.71,25.84,2000
+5980,5,E07000179,4,94.09,487.54,18.64,2000
+3504,6,E07000179,0,65.34,547.52,25.84,1000
+4095,7,E07000179,1,54.32,170.17,18.64,2000
+4790,7,E07000179,2,65.95,208.12,25.84,1000
+5395,7,E07000179,3,71.76,304.71,18.64,2000
+6084,7,E07000179,4,76.62,487.54,18.64,2000
+3830,8,E07000179,0,51.19,547.52,25.84,1000
+6764,9,E07000179,1,60.13,245.2,25.84,1000
+7090,9,E07000179,2,74.68,299.91,25.84,2000
+7416,9,E07000179,3,85.34,439.08,25.84,1000
+7742,9,E07000179,4,94.09,702.54,25.84,1000
+8068,10,E07000179,0,65.34,788.98,18.44,2000
+9356,11,E07000179,1,60.13,245.2,25.84,2000
+9357,11,E07000179,2,74.68,299.91,25.84,2000
+9358,11,E07000179,3,85.34,439.08,25.84,2000
+9359,11,E07000179,4,94.09,702.54,25.84,2000
+9360,12,E07000179,0,65.34,788.98,18.64,2000
+245,1,E07000126,1,54.32,105.71,25.84,1000
+571,1,E07000126,2,62.07,121.33,18.64,2000
+897,1,E07000126,3,68.85,135.72,25.84,1000
+1223,1,E07000126,4,75.65,151.35,25.84,1000
+2853,2,E07000126,0,58.82,271.14,25.84,1000
+1549,3,E07000126,1,45.57,97.28,25.84,1000
+1875,3,E07000126,2,56.25,106.93,25.84,1000
+2201,3,E07000126,3,61.09,118.92,18.64,2000
+2527,3,E07000126,4,58.19,134.53,25.84,1000
+3179,4,E07000126,0,34.85,531.48,25.84,2000
+4380,5,E07000126,1,54.32,110.4,25.84,1000
+4950,5,E07000126,2,62.07,135.68,18.64,2000
+5593,5,E07000126,3,68.85,154.07,25.84,1000
+6341,5,E07000126,4,75.65,219.63,25.84,1000
+3505,6,E07000126,0,58.82,246.66,25.84,1000
+4492,7,E07000126,1,45.57,110.4,25.84,2000
+5088,7,E07000126,2,56.25,135.68,18.64,2000
+5768,7,E07000126,3,61.09,154.07,25.84,1000
+6392,7,E07000126,4,58.19,219.63,25.84,1000
+3831,8,E07000126,0,34.85,246.66,18.64,2000
+6765,9,E07000126,1,54.32,159.08,25.84,1000
+7091,9,E07000126,2,62.07,195.52,18.64,2000
+7417,9,E07000126,3,68.85,222,25.84,1000
+7743,9,E07000126,4,75.65,316.49,25.84,1000
+8069,10,E07000126,0,58.82,355.43,25.84,1000
+9361,11,E07000126,1,54.32,159.08,25.84,2000
+9362,11,E07000126,2,62.07,195.52,25.84,2000
+9363,11,E07000126,3,68.85,222,25.84,2000
+9364,11,E07000126,4,75.65,316.49,25.84,2000
+9365,12,E07000126,0,58.82,355.43,18.64,2000
+247,1,E07000196,1,55.28,111.71,25.84,1000
+573,1,E07000196,2,61.09,132.12,25.84,1000
+899,1,E07000196,3,72.73,150.14,25.84,1000
+1225,1,E07000196,4,84.37,182.58,18.64,2000
+2855,2,E07000196,0,41.39,277.87,18.64,2000
+1551,3,E07000196,1,48.48,99.69,25.84,1000
+1877,3,E07000196,2,52.38,106.93,25.84,1000
+2203,3,E07000196,3,63.04,117.72,25.84,2000
+2529,3,E07000196,4,71.76,144.14,25.84,1000
+3181,4,E07000196,0,49.01,121.41,25.84,2000
+4298,5,E07000196,1,55.28,111.54,25.84,1000
+4908,5,E07000196,2,61.09,135.68,25.84,2000
+5539,5,E07000196,3,72.73,159.83,25.84,1000
+6191,5,E07000196,4,84.37,246.06,25.84,1000
+3507,6,E07000196,0,41.39,276.34,25.84,1000
+4519,7,E07000196,1,48.48,111.54,18.64,2000
+5204,7,E07000196,2,52.38,135.68,18.64,2000
+5795,7,E07000196,3,63.04,159.83,18.64,2000
+6456,7,E07000196,4,71.76,246.06,25.84,1000
+3833,8,E07000196,0,49.01,276.34,25.84,1000
+6767,9,E07000196,1,55.28,160.73,25.84,1000
+7093,9,E07000196,2,61.09,195.52,25.84,1000
+7419,9,E07000196,3,72.73,230.32,25.84,1000
+7745,9,E07000196,4,84.37,354.57,18.64,2000
+8071,10,E07000196,0,41.39,398.19,25.84,1000
+9366,11,E07000196,1,55.28,160.73,25.84,2000
+9367,11,E07000196,2,61.09,195.52,25.84,2000
+9368,11,E07000196,3,72.73,230.32,25.84,2000
+9369,11,E07000196,4,84.37,354.57,25.84,2000
+9370,12,E07000196,0,41.39,398.19,18.64,2000
+248,1,E08000023,1,53.35,99.69,18.64,2000
+574,1,E08000023,2,60.13,115.32,25.84,1000
+900,1,E08000023,3,64.01,128.51,25.84,1000
+1226,1,E08000023,4,73.71,144.14,25.84,2000
+2856,2,E08000023,0,58.82,268.43,25.84,1000
+1552,3,E08000023,1,44.6,112.91,25.84,1000
+1878,3,E08000023,2,52.38,102.12,18.64,2000
+2204,3,E08000023,3,56.25,118.92,25.84,2000
+2530,3,E08000023,4,59.16,130.92,25.84,1000
+3182,4,E08000023,0,50.1,287.33,25.84,2000
+4541,5,E08000023,1,53.35,100.04,25.84,2000
+5056,5,E08000023,2,60.13,124.18,25.84,1000
+5561,5,E08000023,3,64.01,141.43,25.84,1000
+6360,5,E08000023,4,73.71,185.13,25.84,1000
+3508,6,E08000023,0,58.82,207.92,18.64,2000
+4460,7,E08000023,1,44.6,100.04,25.84,2000
+5107,7,E08000023,2,52.38,124.18,25.84,1000
+5736,7,E08000023,3,56.25,141.43,25.84,1000
+6518,7,E08000023,4,59.16,185.13,25.84,1000
+3834,8,E08000023,0,50.1,207.92,25.84,1000
+6768,9,E08000023,1,44.6,144.16,18.64,2000
+7094,9,E08000023,2,60.13,178.94,25.84,1000
+7420,9,E08000023,3,64.01,203.8,25.84,1000
+7746,9,E08000023,4,73.71,266.78,25.84,1000
+8072,10,E08000023,0,58.82,299.61,25.84,1000
+9371,11,E08000023,1,44.6,144.16,25.84,2000
+9372,11,E08000023,2,60.13,178.94,25.84,2000
+9373,11,E08000023,3,64.01,203.8,25.84,2000
+9374,11,E08000023,4,73.71,266.78,25.84,2000
+9375,12,E08000023,0,58.82,299.61,18.64,2000
+249,1,E06000045,1,60.13,139.33,25.84,2000
+575,1,E06000045,2,74.68,165.75,25.84,1000
+901,1,E06000045,3,85.34,182.58,18.64,2000
+1227,1,E06000045,4,94.09,201.8,25.84,2000
+2857,2,E06000045,0,65.34,303.51,25.84,1000
+1553,3,E06000045,1,54.32,130.92,25.84,1000
+1879,3,E06000045,2,65.95,146.54,25.84,1000
+2205,3,E06000045,3,71.76,169.36,25.84,2000
+2531,3,E06000045,4,76.62,209,18.64,2000
+3183,4,E06000045,0,51.19,221.24,25.84,2000
+4029,5,E06000045,1,60.13,135.68,25.84,1000
+4644,5,E06000045,2,74.68,185.13,18.64,2000
+5296,5,E06000045,3,85.34,219.63,25.84,2000
+5981,5,E06000045,4,94.09,342.66,25.84,1000
+3509,6,E06000045,0,65.34,384.8,25.84,1000
+4096,7,E06000045,1,54.32,135.68,25.84,2000
+4791,7,E06000045,2,65.95,185.13,25.84,1000
+5396,7,E06000045,3,71.76,219.63,25.84,2000
+6085,7,E06000045,4,76.62,342.66,25.84,1000
+3835,8,E06000045,0,51.19,384.8,25.84,1000
+6769,9,E06000045,1,60.13,195.52,25.84,1000
+7095,9,E06000045,2,74.68,266.78,25.84,1000
+7421,9,E06000045,3,85.34,316.49,18.64,2000
+7747,9,E06000045,4,94.09,493.77,25.84,1000
+8073,10,E06000045,0,65.34,554.5,25.84,1000
+9376,11,E06000045,1,60.13,195.52,25.84,2000
+9377,11,E06000045,2,74.68,266.78,25.84,2000
+9378,11,E06000045,3,85.34,316.49,25.84,2000
+9379,11,E06000045,4,94.09,493.77,25.84,2000
+9380,12,E06000045,0,65.34,554.5,18.64,2000
+250,1,E06000033,1,57.22,134.53,25.84,2000
+576,1,E06000033,2,67.88,160.94,25.84,1000
+902,1,E06000033,3,74.68,176.56,25.84,1000
+1228,1,E06000033,4,85.34,193.39,25.84,2000
+2858,2,E06000033,0,38.11,256.29,25.84,1000
+1554,3,E06000033,1,52.38,112.91,18.64,2000
+1880,3,E06000033,2,61.09,133.32,25.84,1000
+2206,3,E06000033,3,66.92,147.74,25.84,2000
+2532,3,E06000033,4,74.68,168.16,25.84,1000
+3184,4,E06000033,0,58.82,153.78,18.64,2000
+4152,5,E06000033,1,57.22,135.68,25.84,1000
+4733,5,E06000033,2,67.88,172.47,25.84,1000
+5452,5,E06000033,3,74.68,219.63,25.84,1000
+6162,5,E06000033,4,85.34,293.23,18.64,2000
+3510,6,E06000033,0,38.11,329.29,25.84,1000
+4269,7,E06000033,1,52.38,135.68,18.64,2000
+4995,7,E06000033,2,61.09,172.47,25.84,1000
+5638,7,E06000033,3,66.92,219.63,25.84,1000
+6300,7,E06000033,4,74.68,293.23,25.84,2000
+3836,8,E06000033,0,58.82,329.29,25.84,1000
+6770,9,E06000033,1,57.22,195.52,25.84,1000
+7096,9,E06000033,2,67.88,248.54,25.84,1000
+7422,9,E06000033,3,74.68,316.49,25.84,2000
+7748,9,E06000033,4,85.34,422.54,25.84,1000
+8074,10,E06000033,0,38.11,474.52,18.44,2000
+9381,11,E06000033,1,57.22,195.52,25.84,2000
+9382,11,E06000033,2,67.88,248.54,25.84,2000
+9383,11,E06000033,3,74.68,316.49,25.84,2000
+9384,11,E06000033,4,85.34,422.54,25.84,2000
+9385,12,E06000033,0,38.11,474.52,18.64,2000
+251,1,E09000028,1,68.85,164.54,25.84,2000
+577,1,E09000028,2,81.46,177.76,18.64,2000
+903,1,E09000028,3,88.25,188.59,25.84,1000
+1229,1,E09000028,4,106.66,211.41,25.84,2000
+2859,2,E09000028,0,74.06,358.82,25.84,1000
+1555,3,E09000028,1,61.09,134.53,25.84,1000
+1881,3,E09000028,2,66.92,157.36,25.84,1000
+2207,3,E09000028,3,74.68,180.17,18.64,2000
+2533,3,E09000028,4,87.29,294.28,25.84,1000
+3185,4,E09000028,0,63.17,420.87,25.84,1000
+3977,5,E09000028,1,68.85,317.35,25.84,1000
+4592,5,E09000028,2,81.46,417.39,25.84,1000
+5244,5,E09000028,3,88.25,426.58,18.64,2000
+5929,5,E09000028,4,106.66,580.68,25.84,1000
+3511,6,E09000028,0,74.06,650.85,25.84,1000
+4191,7,E09000028,1,61.09,317.35,25.84,1000
+4692,7,E09000028,2,66.92,417.39,25.84,1000
+5344,7,E09000028,3,74.68,426.58,25.84,2000
+5896,7,E09000028,4,87.29,580.68,25.84,1000
+3837,8,E09000028,0,63.17,650.85,18.64,2000
+6771,9,E09000028,1,68.85,457.3,25.84,1000
+7097,9,E09000028,2,81.46,601.47,18.64,2000
+7423,9,E09000028,3,88.25,614.72,25.84,2000
+7749,9,E09000028,4,106.66,836.76,25.84,1000
+8075,10,E09000028,0,74.06,937.88,25.84,1000
+9386,11,E09000028,1,68.85,457.3,25.84,2000
+9387,11,E09000028,2,81.46,601.47,25.84,2000
+9388,11,E09000028,3,88.25,614.72,25.84,2000
+9389,11,E09000028,4,106.66,836.76,25.84,2000
+9390,12,E09000028,0,74.06,937.88,18.64,2000
+252,1,E07000213,1,60.13,139.33,25.84,2000
+578,1,E07000213,2,74.68,165.75,25.84,1000
+904,1,E07000213,3,85.34,182.58,25.84,1000
+1230,1,E07000213,4,94.09,201.8,18.64,2000
+2860,2,E07000213,0,65.34,303.51,18.64,2000
+1556,3,E07000213,1,54.32,130.92,25.84,1000
+1882,3,E07000213,2,65.95,146.54,25.84,1000
+2208,3,E07000213,3,71.76,169.36,25.84,1000
+2534,3,E07000213,4,76.62,209,25.84,1000
+3186,4,E07000213,0,51.19,221.24,25.84,1000
+4030,5,E07000213,1,60.13,195.48,25.84,1000
+4645,5,E07000213,2,74.68,232.26,25.84,1000
+5297,5,E07000213,3,85.34,304.71,18.64,2000
+5982,5,E07000213,4,94.09,413.94,25.84,1000
+3512,6,E07000213,0,65.34,464.88,25.84,1000
+4097,7,E07000213,1,54.32,195.48,25.84,2000
+4792,7,E07000213,2,65.95,232.26,25.84,1000
+5397,7,E07000213,3,71.76,304.71,25.84,2000
+6086,7,E07000213,4,76.62,413.94,25.84,1000
+3838,8,E07000213,0,51.19,464.88,25.84,1000
+6772,9,E07000213,1,60.13,281.69,25.84,1000
+7098,9,E07000213,2,74.68,334.7,25.84,1000
+7424,9,E07000213,3,85.34,439.08,25.84,2000
+7750,9,E07000213,4,94.09,596.48,18.64,2000
+8076,10,E07000213,0,65.34,669.89,25.84,1000
+9391,11,E07000213,1,60.13,281.69,25.84,2000
+9392,11,E07000213,2,74.68,334.7,25.84,2000
+9393,11,E07000213,3,85.34,439.08,25.84,2000
+9394,11,E07000213,4,94.09,596.48,25.84,2000
+9395,12,E07000213,0,65.34,669.89,18.64,2000
+253,1,E07000240,1,57.22,134.53,18.64,2000
+579,1,E07000240,2,67.88,160.94,25.84,1000
+905,1,E07000240,3,74.68,176.56,25.84,1000
+1231,1,E07000240,4,85.34,193.39,25.84,1000
+2861,2,E07000240,0,38.11,256.29,25.84,1000
+1557,3,E07000240,1,52.38,112.91,25.84,1000
+1883,3,E07000240,2,61.09,133.32,18.64,2000
+2209,3,E07000240,3,66.92,147.74,25.84,1000
+2535,3,E07000240,4,74.68,168.16,25.84,1000
+3187,4,E07000240,0,58.82,153.78,25.84,1000
+4153,5,E07000240,1,57.22,185.13,25.84,1000
+4734,5,E07000240,2,67.88,281.71,25.84,1000
+5453,5,E07000240,3,74.68,342.66,25.84,1000
+6163,5,E07000240,4,85.34,632.42,25.84,1000
+3513,6,E07000240,0,38.11,710.23,18.64,2000
+4270,7,E07000240,1,52.38,185.13,25.84,1000
+4996,7,E07000240,2,61.09,281.71,18.64,2000
+5639,7,E07000240,3,66.92,342.66,25.84,1000
+6301,7,E07000240,4,74.68,632.42,18.64,2000
+3839,8,E07000240,0,58.82,710.23,25.84,1000
+6773,9,E07000240,1,57.22,266.78,18.64,2000
+7099,9,E07000240,2,67.88,405.94,25.84,1000
+7425,9,E07000240,3,74.68,493.77,25.84,2000
+7751,9,E07000240,4,85.34,911.31,25.84,1000
+8077,10,E07000240,0,38.11,1023.45,25.84,1000
+9396,11,E07000240,1,57.22,266.78,25.84,2000
+9397,11,E07000240,2,67.88,405.94,25.84,2000
+9398,11,E07000240,3,74.68,493.77,25.84,2000
+9399,11,E07000240,4,85.34,911.31,25.84,2000
+9400,12,E07000240,0,38.11,1023.45,18.64,2000
+255,1,E08000013,1,54.32,105.71,25.84,1000
+581,1,E08000013,2,62.07,121.33,25.84,1000
+907,1,E08000013,3,68.85,135.72,25.84,1000
+1233,1,E08000013,4,75.65,151.35,25.84,1000
+2863,2,E08000013,0,58.82,271.14,25.84,1000
+1559,3,E08000013,1,45.57,97.28,18.64,2000
+1885,3,E08000013,2,56.25,106.93,25.84,1000
+2211,3,E08000013,3,61.09,118.92,25.84,1000
+2537,3,E08000013,4,58.19,134.53,25.84,2000
+3189,4,E08000013,0,34.85,531.48,18.64,2000
+4381,5,E08000013,1,54.32,105.79,18.64,2000
+4951,5,E08000013,2,62.07,120.72,25.84,1000
+5594,5,E08000013,3,68.85,146.04,25.84,1000
+6342,5,E08000013,4,75.65,208.12,25.84,1000
+3515,6,E08000013,0,58.82,233.73,25.84,2000
+4493,7,E08000013,1,45.57,105.79,25.84,2000
+5089,7,E08000013,2,56.25,120.72,25.84,1000
+5769,7,E08000013,3,61.09,146.04,25.84,1000
+6393,7,E08000013,4,58.19,208.12,25.84,1000
+3841,8,E08000013,0,34.85,233.73,25.84,1000
+6775,9,E08000013,1,54.32,152.44,25.84,1000
+7101,9,E08000013,2,62.07,173.96,25.84,1000
+7427,9,E08000013,3,68.85,210.44,25.84,1000
+7753,9,E08000013,4,75.65,299.91,25.84,1000
+8079,10,E08000013,0,58.82,336.8,18.44,2000
+9401,11,E08000013,1,54.32,152.44,25.84,2000
+9402,11,E08000013,2,62.07,173.96,25.84,2000
+9403,11,E08000013,3,68.85,210.44,25.84,2000
+9404,11,E08000013,4,75.65,299.91,25.84,2000
+9405,12,E08000013,0,58.82,336.8,18.64,2000
+256,1,E07000197,1,55.28,111.71,25.84,1000
+582,1,E07000197,2,61.09,132.12,18.64,2000
+908,1,E07000197,3,72.73,150.14,25.84,1000
+1234,1,E07000197,4,84.37,182.58,25.84,1000
+2864,2,E07000197,0,41.39,277.87,25.84,1000
+1560,3,E07000197,1,48.48,99.69,25.84,2000
+1886,3,E07000197,2,52.38,106.93,25.84,1000
+2212,3,E07000197,3,63.04,117.72,18.64,2000
+2538,3,E07000197,4,71.76,144.14,25.84,2000
+3190,4,E07000197,0,49.01,121.41,25.84,1000
+4299,5,E07000197,1,55.28,111.54,25.84,1000
+4909,5,E07000197,2,61.09,135.68,18.64,2000
+5540,5,E07000197,3,72.73,159.83,18.64,2000
+6192,5,E07000197,4,84.37,220.78,25.84,1000
+3516,6,E07000197,0,41.39,247.93,25.84,2000
+4520,7,E07000197,1,48.48,111.54,25.84,1000
+5205,7,E07000197,2,52.38,135.68,25.84,1000
+5796,7,E07000197,3,63.04,159.83,25.84,2000
+6457,7,E07000197,4,71.76,220.78,25.84,1000
+3842,8,E07000197,0,49.01,247.93,18.64,2000
+6776,9,E07000197,1,55.28,160.73,25.84,1000
+7102,9,E07000197,2,61.09,195.52,18.64,2000
+7428,9,E07000197,3,72.73,230.32,25.84,1000
+7754,9,E07000197,4,84.37,318.15,25.84,1000
+8080,10,E07000197,0,41.39,357.27,25.84,1000
+9406,11,E07000197,1,55.28,160.73,25.84,2000
+9407,11,E07000197,2,61.09,195.52,25.84,2000
+9408,11,E07000197,3,72.73,230.32,25.84,2000
+9409,11,E07000197,4,84.37,318.15,25.84,2000
+9410,12,E07000197,0,41.39,357.27,18.64,2000
+257,1,E07000198,1,55.28,111.71,25.84,1000
+583,1,E07000198,2,61.09,132.12,25.84,2000
+909,1,E07000198,3,72.73,150.14,25.84,1000
+1235,1,E07000198,4,84.37,182.58,18.64,2000
+2865,2,E07000198,0,41.39,277.87,18.64,2000
+1561,3,E07000198,1,48.48,99.69,25.84,2000
+1887,3,E07000198,2,52.38,106.93,25.84,1000
+2213,3,E07000198,3,63.04,117.72,25.84,1000
+2539,3,E07000198,4,71.76,144.14,25.84,2000
+3191,4,E07000198,0,49.01,121.41,25.84,1000
+4300,5,E07000198,1,55.28,98.9,18.64,2000
+4910,5,E07000198,2,61.09,118.43,25.84,1000
+5541,5,E07000198,3,72.73,146.04,25.84,2000
+6193,5,E07000198,4,84.37,198.93,18.64,2000
+3517,6,E07000198,0,41.39,223.39,25.84,2000
+4521,7,E07000198,1,48.48,98.9,25.84,1000
+5206,7,E07000198,2,52.38,118.43,25.84,1000
+5797,7,E07000198,3,63.04,146.04,25.84,2000
+6458,7,E07000198,4,71.76,198.93,25.84,1000
+3843,8,E07000198,0,49.01,223.39,25.84,1000
+6777,9,E07000198,1,55.28,142.52,25.84,1000
+7103,9,E07000198,2,61.09,170.65,25.84,1000
+7429,9,E07000198,3,72.73,210.44,25.84,1000
+7755,9,E07000198,4,84.37,286.66,18.64,2000
+8081,10,E07000198,0,41.39,321.91,25.84,1000
+9411,11,E07000198,1,55.28,142.52,25.84,2000
+9412,11,E07000198,2,61.09,170.65,25.84,2000
+9413,11,E07000198,3,72.73,210.44,25.84,2000
+9414,11,E07000198,4,84.37,286.66,25.84,2000
+9415,12,E07000198,0,41.39,321.91,18.64,2000
+258,1,E07000243,1,57.22,134.53,18.64,2000
+584,1,E07000243,2,67.88,160.94,25.84,2000
+910,1,E07000243,3,74.68,176.56,25.84,1000
+1236,1,E07000243,4,85.34,193.39,25.84,1000
+2866,2,E07000243,0,38.11,256.29,25.84,1000
+1562,3,E07000243,1,52.38,112.91,25.84,2000
+1888,3,E07000243,2,61.09,133.32,18.64,2000
+2214,3,E07000243,3,66.92,147.74,25.84,1000
+2540,3,E07000243,4,74.68,168.16,25.84,2000
+3192,4,E07000243,0,58.82,153.78,25.84,1000
+4155,5,E07000243,1,57.22,142.58,25.84,1000
+4736,5,E07000243,2,67.88,185.13,25.84,1000
+5455,5,E07000243,3,74.68,196.63,25.84,1000
+6165,5,E07000243,4,85.34,317.35,25.84,1000
+3518,6,E07000243,0,38.11,356.42,18.64,2000
+4272,7,E07000243,1,52.38,142.58,25.84,1000
+4998,7,E07000243,2,61.09,185.13,25.84,1000
+5641,7,E07000243,3,66.92,196.63,25.84,1000
+6303,7,E07000243,4,74.68,317.35,25.84,1000
+3844,8,E07000243,0,58.82,356.42,25.84,1000
+6778,9,E07000243,1,57.22,205.46,18.64,2000
+7104,9,E07000243,2,67.88,266.78,25.84,1000
+7430,9,E07000243,3,74.68,283.35,25.84,1000
+7756,9,E07000243,4,85.34,457.3,25.84,2000
+8082,10,E07000243,0,38.11,513.58,25.84,1000
+9416,11,E07000243,1,57.22,205.46,25.84,2000
+9417,11,E07000243,2,67.88,266.78,25.84,2000
+9418,11,E07000243,3,74.68,283.35,25.84,2000
+9419,11,E07000243,4,85.34,457.3,25.84,2000
+9420,12,E07000243,0,38.11,513.58,18.64,2000
+259,1,E08000007,1,54.32,105.71,25.84,1000
+585,1,E08000007,2,62.07,121.33,25.84,2000
+911,1,E08000007,3,68.85,135.72,18.64,2000
+1237,1,E08000007,4,75.65,151.35,25.84,1000
+2867,2,E08000007,0,58.82,271.14,25.84,1000
+1563,3,E08000007,1,45.57,97.28,25.84,2000
+1889,3,E08000007,2,56.25,106.93,25.84,1000
+2215,3,E08000007,3,61.09,118.92,25.84,1000
+2541,3,E08000007,4,58.19,134.53,18.64,2000
+3193,4,E08000007,0,34.85,531.48,25.84,1000
+4382,5,E08000007,1,54.32,123.02,25.84,1000
+4952,5,E08000007,2,62.07,146.04,25.84,1000
+5595,5,E08000007,3,68.85,172.47,25.84,1000
+6343,5,E08000007,4,75.65,246.06,18.64,2000
+3519,6,E08000007,0,58.82,276.34,25.84,1000
+4494,7,E08000007,1,45.57,123.02,18.64,2000
+5090,7,E08000007,2,56.25,146.04,25.84,1000
+5770,7,E08000007,3,61.09,172.47,18.64,2000
+6394,7,E08000007,4,58.19,246.06,18.64,2000
+3845,8,E08000007,0,34.85,276.34,25.84,1000
+6779,9,E08000007,1,54.32,177.26,25.84,2000
+7105,9,E08000007,2,62.07,210.44,25.84,1000
+7431,9,E08000007,3,68.85,248.54,18.64,2000
+7757,9,E08000007,4,75.65,354.57,25.84,2000
+8083,10,E08000007,0,58.82,398.19,25.84,1000
+9421,11,E08000007,1,54.32,177.26,25.84,2000
+9422,11,E08000007,2,62.07,210.44,25.84,2000
+9423,11,E08000007,3,68.85,248.54,25.84,2000
+9424,11,E08000007,4,75.65,354.57,25.84,2000
+9425,12,E08000007,0,58.82,398.19,18.64,2000
+260,1,E06000004,1,53.35,99.69,25.84,1000
+586,1,E06000004,2,60.13,115.32,25.84,2000
+912,1,E06000004,3,64.01,128.51,25.84,1000
+1238,1,E06000004,4,73.71,144.14,25.84,1000
+2868,2,E06000004,0,58.82,268.43,25.84,1000
+1564,3,E06000004,1,44.6,112.91,18.64,2000
+1890,3,E06000004,2,52.38,102.12,25.84,1000
+2216,3,E06000004,3,56.25,118.92,25.84,1000
+2542,3,E06000004,4,59.16,130.92,25.84,1000
+3194,4,E06000004,0,50.1,287.33,18.64,2000
+4542,5,E06000004,1,53.35,102.37,25.84,2000
+5057,5,E06000004,2,60.13,135.68,18.64,2000
+5562,5,E06000004,3,64.01,148.33,25.84,1000
+6361,5,E06000004,4,73.71,208.12,25.84,1000
+3520,6,E06000004,0,58.82,233.73,25.84,1000
+4461,7,E06000004,1,44.6,102.37,25.84,2000
+5108,7,E06000004,2,52.38,135.68,18.64,2000
+5737,7,E06000004,3,56.25,148.33,25.84,1000
+6519,7,E06000004,4,59.16,208.12,25.84,1000
+3846,8,E06000004,0,50.1,233.73,25.84,1000
+6780,9,E06000004,1,44.6,147.52,25.84,2000
+7106,9,E06000004,2,60.13,195.52,25.84,1000
+7432,9,E06000004,3,64.01,213.75,25.84,1000
+7758,9,E06000004,4,73.71,299.91,25.84,2000
+8084,10,E06000004,0,58.82,336.8,18.44,2000
+9426,11,E06000004,1,44.6,147.52,25.84,2000
+9427,11,E06000004,2,60.13,195.52,25.84,2000
+9428,11,E06000004,3,64.01,213.75,25.84,2000
+9429,11,E06000004,4,73.71,299.91,25.84,2000
+9430,12,E06000004,0,58.82,336.8,18.64,2000
+261,1,E06000021,1,55.28,111.71,25.84,1000
+587,1,E06000021,2,61.09,132.12,18.64,2000
+913,1,E06000021,3,72.73,150.14,25.84,1000
+1239,1,E06000021,4,84.37,182.58,25.84,1000
+2869,2,E06000021,0,41.39,277.87,25.84,1000
+1565,3,E06000021,1,48.48,99.69,25.84,1000
+1891,3,E06000021,2,52.38,106.93,25.84,1000
+2217,3,E06000021,3,63.04,117.72,18.64,2000
+2543,3,E06000021,4,71.76,144.14,25.84,1000
+3195,4,E06000021,0,49.01,121.41,25.84,1000
+4301,5,E06000021,1,55.28,98.9,25.84,1000
+4911,5,E06000021,2,61.09,111.54,25.84,1000
+5542,5,E06000021,3,72.73,141.43,25.84,2000
+6194,5,E06000021,4,84.37,195.48,25.84,1000
+3521,6,E06000021,0,41.39,218.22,25.84,1000
+4522,7,E06000021,1,48.48,98.9,25.84,1000
+5207,7,E06000021,2,52.38,111.54,25.84,1000
+5798,7,E06000021,3,63.04,141.43,25.84,2000
+6459,7,E06000021,4,71.76,195.48,25.84,1000
+3847,8,E06000021,0,49.01,218.22,18.64,2000
+6781,9,E06000021,1,55.28,142.52,25.84,2000
+7107,9,E06000021,2,61.09,160.73,18.64,2000
+7433,9,E06000021,3,72.73,203.8,25.84,1000
+7759,9,E06000021,4,84.37,281.69,25.84,2000
+8085,10,E06000021,0,41.39,314.46,25.84,1000
+9431,11,E06000021,1,55.28,142.52,25.84,2000
+9432,11,E06000021,2,61.09,160.73,25.84,2000
+9433,11,E06000021,3,72.73,203.8,25.84,2000
+9434,11,E06000021,4,84.37,281.69,25.84,2000
+9435,12,E06000021,0,41.39,314.46,18.64,2000
+262,1,E07000221,1,55.28,111.71,25.84,1000
+588,1,E07000221,2,61.09,132.12,25.84,1000
+914,1,E07000221,3,72.73,150.14,25.84,1000
+1240,1,E07000221,4,84.37,182.58,18.64,2000
+2870,2,E07000221,0,41.39,277.87,18.64,2000
+1566,3,E07000221,1,48.48,99.69,25.84,1000
+1892,3,E07000221,2,52.38,106.93,25.84,1000
+2218,3,E07000221,3,63.04,117.72,25.84,1000
+2544,3,E07000221,4,71.76,144.14,25.84,1000
+3196,4,E07000221,0,49.01,121.41,25.84,1000
+4302,5,E07000221,1,55.28,137.99,25.84,1000
+4912,5,E07000221,2,61.09,170.17,25.84,1000
+5543,5,E07000221,3,72.73,219.63,25.84,2000
+6195,5,E07000221,4,84.37,364.49,25.84,1000
+3522,6,E07000221,0,41.39,409.33,25.84,1000
+4523,7,E07000221,1,48.48,137.99,25.84,1000
+5208,7,E07000221,2,52.38,170.17,25.84,1000
+5799,7,E07000221,3,63.04,219.63,25.84,2000
+6460,7,E07000221,4,71.76,364.49,18.64,2000
+3848,8,E07000221,0,49.01,409.33,25.84,2000
+6782,9,E07000221,1,55.28,198.83,25.84,2000
+7108,9,E07000221,2,61.09,245.2,25.84,1000
+7434,9,E07000221,3,72.73,316.49,25.84,1000
+7760,9,E07000221,4,84.37,525.23,18.64,2000
+8086,10,E07000221,0,41.39,589.86,25.84,1000
+9436,11,E07000221,1,55.28,198.83,25.84,2000
+9437,11,E07000221,2,61.09,245.2,25.84,2000
+9438,11,E07000221,3,72.73,316.49,25.84,2000
+9439,11,E07000221,4,84.37,525.23,25.84,2000
+9440,12,E07000221,0,41.39,589.86,18.64,2000
+263,1,E07000082,1,51.41,121.33,18.64,2000
+589,1,E07000082,2,58.19,136.92,25.84,1000
+915,1,E07000082,3,64.98,159.75,25.84,1000
+1241,1,E07000082,4,74.68,178.95,25.84,1000
+2871,2,E07000082,0,57.73,261.7,25.84,2000
+1567,3,E07000082,1,49.46,100.89,25.84,1000
+1893,3,E07000082,2,57.22,114.11,18.64,2000
+2219,3,E07000082,3,64.98,123.71,25.84,1000
+2545,3,E07000082,4,77.58,147.74,25.84,1000
+3197,4,E07000082,0,57.73,130.84,25.84,1000
+4222,5,E07000082,1,51.41,121.87,25.84,1000
+4858,5,E07000082,2,58.19,159.83,18.64,2000
+5489,5,E07000082,3,64.98,196.63,18.64,2000
+6027,5,E07000082,4,74.68,342.66,18.64,2000
+3523,6,E07000082,0,57.73,384.8,18.64,2000
+3938,7,E07000082,1,49.46,121.87,25.84,2000
+5135,7,E07000082,2,57.22,159.83,18.64,2000
+5715,7,E07000082,3,64.98,196.63,18.64,2000
+6427,7,E07000082,4,77.58,342.66,25.84,1000
+3849,8,E07000082,0,57.73,384.8,25.84,2000
+6783,9,E07000082,1,51.41,175.61,18.64,2000
+7109,9,E07000082,2,58.19,230.32,25.84,1000
+7435,9,E07000082,3,64.98,283.35,25.84,1000
+7761,9,E07000082,4,74.68,493.77,25.84,1000
+8087,10,E07000082,0,57.73,554.5,25.84,1000
+9441,11,E07000082,1,51.41,175.61,25.84,2000
+9442,11,E07000082,2,58.19,230.32,25.84,2000
+9443,11,E07000082,3,64.98,283.35,25.84,2000
+9444,11,E07000082,4,74.68,493.77,25.84,2000
+9445,12,E07000082,0,57.73,554.5,18.64,2000
+265,1,E08000024,1,53.35,99.69,25.84,1000
+591,1,E08000024,2,60.13,115.32,25.84,1000
+917,1,E08000024,3,64.01,128.51,25.84,2000
+1243,1,E08000024,4,73.71,144.14,25.84,1000
+2873,2,E08000024,0,58.82,268.43,25.84,2000
+1569,3,E08000024,1,44.6,112.91,18.64,2000
+1895,3,E08000024,2,52.38,102.12,25.84,2000
+2221,3,E08000024,3,56.25,118.92,25.84,1000
+2547,3,E08000024,4,59.16,130.92,25.84,1000
+3199,4,E08000024,0,50.1,287.33,18.64,2000
+4543,5,E08000024,1,53.35,111.54,25.84,2000
+5058,5,E08000024,2,60.13,135.68,25.84,1000
+5563,5,E08000024,3,64.01,146.04,25.84,1000
+6362,5,E08000024,4,73.71,195.48,25.84,1000
+3525,6,E08000024,0,58.82,219.51,25.84,1000
+4462,7,E08000024,1,44.6,111.54,25.84,2000
+5109,7,E08000024,2,52.38,135.68,25.84,1000
+5738,7,E08000024,3,56.25,146.04,25.84,1000
+6520,7,E08000024,4,59.16,195.48,18.64,2000
+3851,8,E08000024,0,50.1,219.51,25.84,2000
+6785,9,E08000024,1,44.6,160.73,25.84,1000
+7111,9,E08000024,2,60.13,195.52,25.84,1000
+7437,9,E08000024,3,64.01,210.44,25.84,1000
+7763,9,E08000024,4,73.71,281.69,25.84,1000
+8089,10,E08000024,0,58.82,316.32,18.44,2000
+9446,11,E08000024,1,44.6,160.73,25.84,2000
+9447,11,E08000024,2,60.13,195.52,25.84,2000
+9448,11,E08000024,3,64.01,210.44,25.84,2000
+9449,11,E08000024,4,73.71,281.69,25.84,2000
+9450,12,E08000024,0,58.82,316.32,18.64,2000
+266,1,E07000214,1,60.13,139.33,25.84,1000
+592,1,E07000214,2,74.68,165.75,18.64,2000
+918,1,E07000214,3,85.34,182.58,25.84,2000
+1244,1,E07000214,4,94.09,201.8,25.84,1000
+2874,2,E07000214,0,65.34,303.51,25.84,2000
+1570,3,E07000214,1,54.32,130.92,25.84,1000
+1896,3,E07000214,2,65.95,146.54,25.84,2000
+2222,3,E07000214,3,71.76,169.36,18.64,2000
+2548,3,E07000214,4,76.62,209,25.84,1000
+3200,4,E07000214,0,51.19,221.24,25.84,1000
+4031,5,E07000214,1,60.13,172.47,25.84,1000
+4646,5,E07000214,2,74.68,226.53,25.84,1000
+5298,5,E07000214,3,85.34,304.71,25.84,1000
+5983,5,E07000214,4,94.09,499.04,25.84,1000
+3526,6,E07000214,0,65.34,560.42,25.84,1000
+4098,7,E07000214,1,54.32,172.47,25.84,2000
+4793,7,E07000214,2,65.95,226.53,25.84,1000
+5398,7,E07000214,3,71.76,304.71,25.84,2000
+6087,7,E07000214,4,76.62,499.04,25.84,1000
+3852,8,E07000214,0,51.19,560.42,18.64,2000
+6786,9,E07000214,1,60.13,248.54,25.84,1000
+7112,9,E07000214,2,74.68,326.44,18.64,2000
+7438,9,E07000214,3,85.34,439.08,25.84,1000
+7764,9,E07000214,4,94.09,719.09,25.84,1000
+8090,10,E07000214,0,65.34,807.58,25.84,2000
+9451,11,E07000214,1,60.13,248.54,25.84,2000
+9452,11,E07000214,2,74.68,326.44,25.84,2000
+9453,11,E07000214,3,85.34,439.08,25.84,2000
+9454,11,E07000214,4,94.09,719.09,25.84,2000
+9455,12,E07000214,0,65.34,807.58,18.64,2000
+267,1,E09000029,1,68.85,164.54,25.84,1000
+593,1,E09000029,2,81.46,177.76,25.84,1000
+919,1,E09000029,3,88.25,188.59,25.84,2000
+1245,1,E09000029,4,106.66,211.41,18.64,2000
+2875,2,E09000029,0,74.06,358.82,18.64,2000
+1571,3,E09000029,1,61.09,134.53,25.84,1000
+1897,3,E09000029,2,66.92,157.36,25.84,2000
+2223,3,E09000029,3,74.68,180.17,25.84,1000
+2549,3,E09000029,4,87.29,294.28,25.84,1000
+3201,4,E09000029,0,63.17,420.87,25.84,1000
+3978,5,E09000029,1,68.85,185.13,25.84,1000
+4593,5,E09000029,2,81.46,232.26,25.84,1000
+5245,5,E09000029,3,88.25,317.35,25.84,1000
+5930,5,E09000029,4,106.66,511.68,25.84,1000
+3527,6,E09000029,0,74.06,574.63,25.84,1000
+4192,7,E09000029,1,61.09,185.13,18.64,2000
+4693,7,E09000029,2,66.92,232.26,25.84,1000
+5345,7,E09000029,3,74.68,317.35,25.84,2000
+5897,7,E09000029,4,87.29,511.68,18.64,2000
+3853,8,E09000029,0,63.17,574.63,25.84,1000
+6787,9,E09000029,1,68.85,266.78,25.84,1000
+7113,9,E09000029,2,81.46,334.7,25.84,2000
+7439,9,E09000029,3,88.25,457.3,25.84,1000
+7765,9,E09000029,4,106.66,737.32,18.64,2000
+8091,10,E09000029,0,74.06,828.05,25.84,2000
+9456,11,E09000029,1,68.85,266.78,25.84,2000
+9457,11,E09000029,2,81.46,334.7,25.84,2000
+9458,11,E09000029,3,88.25,457.3,25.84,2000
+9459,11,E09000029,4,106.66,737.32,25.84,2000
+9460,12,E09000029,0,74.06,828.05,18.64,2000
+268,1,E07000113,1,60.13,139.33,18.64,2000
+594,1,E07000113,2,74.68,165.75,25.84,1000
+920,1,E07000113,3,85.34,182.58,25.84,2000
+1246,1,E07000113,4,94.09,201.8,25.84,1000
+2876,2,E07000113,0,65.34,303.51,25.84,1000
+1572,3,E07000113,1,54.32,130.92,25.84,1000
+1898,3,E07000113,2,65.95,146.54,18.64,2000
+2224,3,E07000113,3,71.76,169.36,25.84,1000
+2550,3,E07000113,4,76.62,209,25.84,1000
+3202,4,E07000113,0,51.19,221.24,25.84,1000
+4032,5,E07000113,1,60.13,132.23,18.64,2000
+4647,5,E07000113,2,74.68,159.83,25.84,1000
+5299,5,E07000113,3,85.34,185.13,25.84,1000
+5984,5,E07000113,4,94.09,244.9,25.84,1000
+3528,6,E07000113,0,65.34,275.06,18.64,2000
+4099,7,E07000113,1,54.32,132.23,25.84,2000
+4794,7,E07000113,2,65.95,159.83,18.64,2000
+5399,7,E07000113,3,71.76,185.13,25.84,2000
+6088,7,E07000113,4,76.62,244.9,25.84,1000
+3854,8,E07000113,0,51.19,275.06,25.84,1000
+6788,9,E07000113,1,60.13,190.54,18.64,2000
+7114,9,E07000113,2,74.68,230.32,25.84,2000
+7440,9,E07000113,3,85.34,266.78,25.84,1000
+7766,9,E07000113,4,94.09,352.9,25.84,1000
+8092,10,E07000113,0,65.34,396.35,25.84,2000
+9461,11,E07000113,1,60.13,190.54,25.84,2000
+9462,11,E07000113,2,74.68,230.32,25.84,2000
+9463,11,E07000113,3,85.34,266.78,25.84,2000
+9464,11,E07000113,4,94.09,352.9,25.84,2000
+9465,12,E07000113,0,65.34,396.35,18.64,2000
+269,1,E06000030,1,51.41,121.33,25.84,1000
+595,1,E06000030,2,58.19,136.92,25.84,1000
+921,1,E06000030,3,64.98,159.75,18.64,2000
+1247,1,E06000030,4,74.68,178.95,25.84,1000
+2877,2,E06000030,0,57.73,261.7,25.84,1000
+1573,3,E06000030,1,49.46,100.89,25.84,1000
+1899,3,E06000030,2,57.22,114.11,25.84,1000
+2225,3,E06000030,3,64.98,123.71,25.84,1000
+2551,3,E06000030,4,77.58,147.74,18.64,2000
+3203,4,E06000030,0,57.73,130.84,25.84,1000
+4223,5,E06000030,1,51.41,123.02,25.84,1000
+4859,5,E06000030,2,58.19,146.04,25.84,1000
+5490,5,E06000030,3,64.98,185.13,25.84,1000
+6028,5,E06000030,4,74.68,257.56,25.84,1000
+3529,6,E06000030,0,57.73,289.26,25.84,1000
+3939,7,E06000030,1,49.46,123.02,25.84,2000
+5136,7,E06000030,2,57.22,146.04,25.84,1000
+5716,7,E06000030,3,64.98,185.13,25.84,1000
+6428,7,E06000030,4,77.58,257.56,25.84,1000
+3855,8,E06000030,0,57.73,289.26,25.84,1000
+6789,9,E06000030,1,51.41,177.26,25.84,1000
+7115,9,E06000030,2,58.19,210.44,25.84,2000
+7441,9,E06000030,3,64.98,266.78,18.64,2000
+7767,9,E06000030,4,74.68,371.14,25.84,1000
+8093,10,E06000030,0,57.73,416.81,25.84,2000
+9466,11,E06000030,1,51.41,177.26,25.84,2000
+9467,11,E06000030,2,58.19,210.44,25.84,2000
+9468,11,E06000030,3,64.98,266.78,25.84,2000
+9469,11,E06000030,4,74.68,371.14,25.84,2000
+9470,12,E06000030,0,57.73,416.81,18.64,2000
+270,1,E08000008,1,54.32,105.71,25.84,1000
+596,1,E08000008,2,62.07,121.33,25.84,1000
+922,1,E08000008,3,68.85,135.72,25.84,1000
+1248,1,E08000008,4,75.65,151.35,25.84,1000
+2878,2,E08000008,0,58.82,271.14,25.84,1000
+1574,3,E08000008,1,45.57,97.28,18.64,2000
+1900,3,E08000008,2,56.25,106.93,25.84,1000
+2226,3,E08000008,3,61.09,118.92,25.84,1000
+2552,3,E08000008,4,58.19,134.53,25.84,1000
+3204,4,E08000008,0,34.85,531.48,18.64,2000
+4383,5,E08000008,1,54.32,111.54,25.84,1000
+4953,5,E08000008,2,62.07,123.02,25.84,1000
+5596,5,E08000008,3,68.85,148.33,18.64,2000
+6344,5,E08000008,4,75.65,196.63,25.84,1000
+3530,6,E08000008,0,58.82,220.82,25.84,1000
+4495,7,E08000008,1,45.57,111.54,25.84,1000
+5091,7,E08000008,2,56.25,123.02,25.84,1000
+5771,7,E08000008,3,61.09,148.33,25.84,2000
+6395,7,E08000008,4,58.19,196.63,25.84,1000
+3856,8,E08000008,0,34.85,220.82,25.84,1000
+6790,9,E08000008,1,54.32,160.73,25.84,1000
+7116,9,E08000008,2,62.07,177.26,25.84,2000
+7442,9,E08000008,3,68.85,213.75,25.84,1000
+7768,9,E08000008,4,75.65,283.35,25.84,1000
+8094,10,E08000008,0,58.82,318.19,18.44,2000
+9471,11,E08000008,1,54.32,160.73,25.84,2000
+9472,11,E08000008,2,62.07,177.26,25.84,2000
+9473,11,E08000008,3,68.85,213.75,25.84,2000
+9474,11,E08000008,4,75.65,283.35,25.84,2000
+9475,12,E08000008,0,58.82,318.19,18.64,2000
+271,1,E07000199,1,55.28,111.71,25.84,1000
+597,1,E07000199,2,61.09,132.12,18.64,2000
+923,1,E07000199,3,72.73,150.14,25.84,1000
+1249,1,E07000199,4,84.37,182.58,25.84,1000
+2879,2,E07000199,0,41.39,277.87,25.84,1000
+1575,3,E07000199,1,48.48,99.69,25.84,1000
+1901,3,E07000199,2,52.38,106.93,25.84,1000
+2227,3,E07000199,3,63.04,117.72,18.64,2000
+2553,3,E07000199,4,71.76,144.14,25.84,1000
+3205,4,E07000199,0,49.01,121.41,25.84,2000
+4303,5,E07000199,1,55.28,111.54,25.84,1000
+4913,5,E07000199,2,61.09,135.68,25.84,1000
+5544,5,E07000199,3,72.73,159.83,25.84,2000
+6196,5,E07000199,4,84.37,219.63,25.84,1000
+3531,6,E07000199,0,41.39,246.66,25.84,1000
+4524,7,E07000199,1,48.48,111.54,18.64,2000
+5209,7,E07000199,2,52.38,135.68,18.64,2000
+5800,7,E07000199,3,63.04,159.83,18.64,2000
+6461,7,E07000199,4,71.76,219.63,25.84,1000
+3857,8,E07000199,0,49.01,246.66,18.64,2000
+6791,9,E07000199,1,55.28,160.73,25.84,1000
+7117,9,E07000199,2,61.09,195.52,18.64,2000
+7443,9,E07000199,3,72.73,230.32,25.84,1000
+7769,9,E07000199,4,84.37,316.49,25.84,1000
+8095,10,E07000199,0,41.39,355.43,25.84,1000
+9476,11,E07000199,1,55.28,160.73,25.84,2000
+9477,11,E07000199,2,61.09,195.52,25.84,2000
+9478,11,E07000199,3,72.73,230.32,25.84,2000
+9479,11,E07000199,4,84.37,316.49,25.84,2000
+9480,12,E07000199,0,41.39,355.43,18.64,2000
+272,1,E07000215,1,60.13,139.33,25.84,1000
+598,1,E07000215,2,74.68,165.75,25.84,1000
+924,1,E07000215,3,85.34,182.58,25.84,1000
+1250,1,E07000215,4,94.09,201.8,18.64,2000
+2880,2,E07000215,0,65.34,303.51,18.64,2000
+1576,3,E07000215,1,54.32,130.92,25.84,1000
+1902,3,E07000215,2,65.95,146.54,25.84,1000
+2228,3,E07000215,3,71.76,169.36,25.84,2000
+2554,3,E07000215,4,76.62,209,25.84,1000
+3206,4,E07000215,0,51.19,221.24,25.84,2000
+4033,5,E07000215,1,60.13,178.23,25.84,1000
+4648,5,E07000215,2,74.68,226.53,25.84,1000
+5300,5,E07000215,3,85.34,330,25.84,1000
+5985,5,E07000215,4,94.09,717.51,18.64,2000
+3532,6,E07000215,0,65.34,805.78,25.84,1000
+4100,7,E07000215,1,54.32,178.23,18.64,2000
+4795,7,E07000215,2,65.95,226.53,25.84,1000
+5400,7,E07000215,3,71.76,330,18.64,2000
+6089,7,E07000215,4,76.62,717.51,18.64,2000
+3858,8,E07000215,0,51.19,805.78,25.84,1000
+6792,9,E07000215,1,60.13,256.83,25.84,1000
+7118,9,E07000215,2,74.68,326.44,25.84,1000
+7444,9,E07000215,3,85.34,475.54,25.84,1000
+7770,9,E07000215,4,94.09,1033.93,18.64,2000
+8096,10,E07000215,0,65.34,1161.13,25.84,1000
+9481,11,E07000215,1,60.13,256.83,25.84,2000
+9482,11,E07000215,2,74.68,326.44,25.84,2000
+9483,11,E07000215,3,85.34,475.54,25.84,2000
+9484,11,E07000215,4,94.09,1033.93,25.84,2000
+9485,12,E07000215,0,65.34,1161.13,18.64,2000
+274,1,E07000045,1,51.41,121.33,18.64,2000
+600,1,E07000045,2,58.19,136.92,25.84,1000
+926,1,E07000045,3,64.98,159.75,25.84,1000
+1252,1,E07000045,4,74.68,178.95,25.84,2000
+2882,2,E07000045,0,57.73,261.7,25.84,1000
+1578,3,E07000045,1,49.46,100.89,25.84,1000
+1904,3,E07000045,2,57.22,114.11,18.64,2000
+2230,3,E07000045,3,64.98,123.71,25.84,2000
+2556,3,E07000045,4,77.58,147.74,25.84,1000
+3208,4,E07000045,0,57.73,130.84,25.84,2000
+4225,5,E07000045,1,51.41,123.02,18.64,2000
+4861,5,E07000045,2,58.19,159.83,25.84,1000
+5492,5,E07000045,3,64.98,190.87,25.84,1000
+6030,5,E07000045,4,74.68,269.07,25.84,1000
+3534,6,E07000045,0,57.73,302.16,18.64,2000
+3941,7,E07000045,1,49.46,123.02,18.64,2000
+5138,7,E07000045,2,57.22,159.83,25.84,1000
+5718,7,E07000045,3,64.98,190.87,25.84,1000
+6430,7,E07000045,4,77.58,269.07,25.84,1000
+3860,8,E07000045,0,57.73,302.16,25.84,1000
+6794,9,E07000045,1,51.41,177.26,18.64,2000
+7120,9,E07000045,2,58.19,230.32,25.84,1000
+7446,9,E07000045,3,64.98,275.06,25.84,1000
+7772,9,E07000045,4,74.68,387.71,25.84,1000
+8098,10,E07000045,0,57.73,435.43,25.84,1000
+9486,11,E07000045,1,51.41,177.26,25.84,2000
+9487,11,E07000045,2,58.19,230.32,25.84,2000
+9488,11,E07000045,3,64.98,275.06,25.84,2000
+9489,11,E07000045,4,74.68,387.71,25.84,2000
+9490,12,E07000045,0,57.73,435.43,18.64,2000
+275,1,E06000020,1,55.28,111.71,25.84,2000
+601,1,E06000020,2,61.09,132.12,25.84,1000
+927,1,E06000020,3,72.73,150.14,18.64,2000
+1253,1,E06000020,4,84.37,182.58,25.84,2000
+2883,2,E06000020,0,41.39,277.87,25.84,1000
+1579,3,E06000020,1,48.48,99.69,25.84,1000
+1905,3,E06000020,2,52.38,106.93,25.84,1000
+2231,3,E06000020,3,63.04,117.72,25.84,2000
+2557,3,E06000020,4,71.76,144.14,18.64,2000
+3209,4,E06000020,0,49.01,121.41,25.84,2000
+4304,5,E06000020,1,55.28,111.54,25.84,1000
+4914,5,E06000020,2,61.09,135.68,18.64,2000
+5545,5,E06000020,3,72.73,154.07,18.64,2000
+6197,5,E06000020,4,84.37,220.78,25.84,1000
+3535,6,E06000020,0,41.39,247.93,25.84,1000
+4525,7,E06000020,1,48.48,111.54,25.84,1000
+5210,7,E06000020,2,52.38,135.68,25.84,1000
+5801,7,E06000020,3,63.04,154.07,25.84,1000
+6462,7,E06000020,4,71.76,220.78,25.84,1000
+3861,8,E06000020,0,49.01,247.93,25.84,1000
+6795,9,E06000020,1,55.28,160.73,25.84,1000
+7121,9,E06000020,2,61.09,195.52,25.84,1000
+7447,9,E06000020,3,72.73,222,18.64,2000
+7773,9,E06000020,4,84.37,318.15,25.84,1000
+8099,10,E06000020,0,41.39,357.27,25.84,1000
+9491,11,E06000020,1,55.28,160.73,25.84,2000
+9492,11,E06000020,2,61.09,195.52,25.84,2000
+9493,11,E06000020,3,72.73,222,25.84,2000
+9494,11,E06000020,4,84.37,318.15,25.84,2000
+9495,12,E06000020,0,41.39,357.27,18.64,2000
+276,1,E07000076,1,57.22,134.53,25.84,2000
+602,1,E07000076,2,67.88,160.94,25.84,1000
+928,1,E07000076,3,74.68,176.56,25.84,1000
+1254,1,E07000076,4,85.34,193.39,25.84,2000
+2884,2,E07000076,0,38.11,256.29,25.84,1000
+1580,3,E07000076,1,52.38,112.91,18.64,2000
+1906,3,E07000076,2,61.09,133.32,25.84,1000
+2232,3,E07000076,3,66.92,147.74,25.84,2000
+2558,3,E07000076,4,74.68,168.16,25.84,1000
+3210,4,E07000076,0,58.82,153.78,18.64,2000
+4157,5,E07000076,1,57.22,120.72,25.84,1000
+4738,5,E07000076,2,67.88,156.37,25.84,1000
+5457,5,E07000076,3,74.68,185.13,25.84,1000
+6167,5,E07000076,4,85.34,244.9,18.64,2000
+3536,6,E07000076,0,38.11,272.46,25.84,1000
+4274,7,E07000076,1,52.38,120.72,18.64,2000
+5000,7,E07000076,2,61.09,156.37,25.84,1000
+5643,7,E07000076,3,66.92,185.13,25.84,1000
+6305,7,E07000076,4,74.68,244.9,25.84,1000
+3862,8,E07000076,0,58.82,272.46,25.84,1000
+6796,9,E07000076,1,57.22,173.96,25.84,1000
+7122,9,E07000076,2,67.88,225.33,25.84,1000
+7448,9,E07000076,3,74.68,266.78,25.84,2000
+7774,9,E07000076,4,85.34,352.9,25.84,1000
+8100,10,E07000076,0,38.11,392.63,18.44,2000
+9496,11,E07000076,1,57.22,173.96,25.84,2000
+9497,11,E07000076,2,67.88,225.33,25.84,2000
+9498,11,E07000076,3,74.68,266.78,25.84,2000
+9499,11,E07000076,4,85.34,352.9,25.84,2000
+9500,12,E07000076,0,38.11,392.63,18.64,2000
+277,1,E07000093,1,60.13,139.33,25.84,2000
+603,1,E07000093,2,74.68,165.75,18.64,2000
+929,1,E07000093,3,85.34,182.58,25.84,1000
+1255,1,E07000093,4,94.09,201.8,25.84,2000
+2885,2,E07000093,0,65.34,303.51,25.84,1000
+1581,3,E07000093,1,54.32,130.92,25.84,1000
+1907,3,E07000093,2,65.95,146.54,25.84,1000
+2233,3,E07000093,3,71.76,169.36,18.64,2000
+2559,3,E07000093,4,76.62,209,25.84,1000
+3211,4,E07000093,0,51.19,221.24,25.84,1000
+4034,5,E07000093,1,60.13,148.33,25.84,1000
+4649,5,E07000093,2,74.68,195.48,18.64,2000
+5301,5,E07000093,3,85.34,232.26,25.84,1000
+5986,5,E07000093,4,94.09,413.94,25.84,2000
+3537,6,E07000093,0,65.34,464.88,25.84,1000
+4101,7,E07000093,1,54.32,148.33,25.84,1000
+4796,7,E07000093,2,65.95,195.48,25.84,1000
+5401,7,E07000093,3,71.76,232.26,25.84,1000
+6090,7,E07000093,4,76.62,413.94,25.84,1000
+3863,8,E07000093,0,51.19,464.88,18.64,2000
+6797,9,E07000093,1,60.13,213.75,25.84,1000
+7123,9,E07000093,2,74.68,281.69,18.64,2000
+7449,9,E07000093,3,85.34,334.7,25.84,2000
+7775,9,E07000093,4,94.09,596.48,25.84,1000
+8101,10,E07000093,0,65.34,669.89,25.84,1000
+9501,11,E07000093,1,60.13,213.75,25.84,2000
+9502,11,E07000093,2,74.68,281.69,25.84,2000
+9503,11,E07000093,3,85.34,334.7,25.84,2000
+9504,11,E07000093,4,94.09,596.48,25.84,2000
+9505,12,E07000093,0,65.34,669.89,18.64,2000
+278,1,E07000083,1,51.41,121.33,25.84,2000
+604,1,E07000083,2,58.19,136.92,25.84,1000
+930,1,E07000083,3,64.98,159.75,25.84,1000
+1256,1,E07000083,4,74.68,178.95,18.64,2000
+2886,2,E07000083,0,57.73,261.7,18.64,2000
+1582,3,E07000083,1,49.46,100.89,25.84,1000
+1908,3,E07000083,2,57.22,114.11,25.84,1000
+2234,3,E07000083,3,64.98,123.71,25.84,1000
+2560,3,E07000083,4,77.58,147.74,25.84,1000
+3212,4,E07000083,0,57.73,130.84,25.84,1000
+4226,5,E07000083,1,51.41,123.02,25.84,1000
+4862,5,E07000083,2,58.19,159.83,25.84,1000
+5493,5,E07000083,3,64.98,190.87,25.84,1000
+6031,5,E07000083,4,74.68,342.66,25.84,1000
+3538,6,E07000083,0,57.73,384.8,25.84,1000
+3942,7,E07000083,1,49.46,123.02,25.84,1000
+5139,7,E07000083,2,57.22,159.83,25.84,1000
+5719,7,E07000083,3,64.98,190.87,25.84,1000
+6431,7,E07000083,4,77.58,342.66,25.84,1000
+3864,8,E07000083,0,57.73,384.8,25.84,1000
+6798,9,E07000083,1,51.41,177.26,25.84,1000
+7124,9,E07000083,2,58.19,230.32,25.84,1000
+7450,9,E07000083,3,64.98,275.06,25.84,2000
+7776,9,E07000083,4,74.68,493.77,18.64,2000
+8102,10,E07000083,0,57.73,554.5,25.84,1000
+9506,11,E07000083,1,51.41,177.26,25.84,2000
+9507,11,E07000083,2,58.19,230.32,25.84,2000
+9508,11,E07000083,3,64.98,275.06,25.84,2000
+9509,11,E07000083,4,74.68,493.77,25.84,2000
+9510,12,E07000083,0,57.73,554.5,18.64,2000
+279,1,E07000114,1,60.13,139.33,18.64,2000
+605,1,E07000114,2,74.68,165.75,25.84,1000
+931,1,E07000114,3,85.34,182.58,25.84,1000
+1257,1,E07000114,4,94.09,201.8,25.84,1000
+2887,2,E07000114,0,65.34,303.51,25.84,1000
+1583,3,E07000114,1,54.32,130.92,25.84,1000
+1909,3,E07000114,2,65.95,146.54,18.64,2000
+2235,3,E07000114,3,71.76,169.36,25.84,1000
+2561,3,E07000114,4,76.62,209,25.84,1000
+3213,4,E07000114,0,51.19,221.24,25.84,1000
+4035,5,E07000114,1,60.13,105.79,25.84,1000
+4650,5,E07000114,2,74.68,142.58,25.84,2000
+5302,5,E07000114,3,85.34,178.23,18.64,2000
+5987,5,E07000114,4,94.09,244.9,25.84,2000
+3539,6,E07000114,0,65.34,272.46,18.64,2000
+4102,7,E07000114,1,54.32,105.79,25.84,1000
+4797,7,E07000114,2,65.95,142.58,25.84,1000
+5402,7,E07000114,3,71.76,178.23,25.84,1000
+6091,7,E07000114,4,76.62,244.9,25.84,1000
+3865,8,E07000114,0,51.19,272.46,25.84,1000
+6799,9,E07000114,1,60.13,152.44,18.64,2000
+7125,9,E07000114,2,74.68,205.46,25.84,1000
+7451,9,E07000114,3,85.34,256.83,25.84,2000
+7777,9,E07000114,4,94.09,352.9,25.84,1000
+8103,10,E07000114,0,65.34,392.63,25.84,1000
+9511,11,E07000114,1,60.13,152.44,25.84,2000
+9512,11,E07000114,2,74.68,205.46,25.84,2000
+9513,11,E07000114,3,85.34,256.83,25.84,2000
+9514,11,E07000114,4,94.09,352.9,25.84,2000
+9515,12,E07000114,0,65.34,392.63,18.64,2000
+281,1,E07000102,1,57.22,134.53,25.84,1000
+607,1,E07000102,2,67.88,160.94,25.84,1000
+933,1,E07000102,3,74.68,176.56,25.84,1000
+1259,1,E07000102,4,85.34,193.39,25.84,1000
+2889,2,E07000102,0,38.11,256.29,25.84,1000
+1585,3,E07000102,1,52.38,112.91,18.64,2000
+1911,3,E07000102,2,61.09,133.32,25.84,1000
+2237,3,E07000102,3,66.92,147.74,25.84,1000
+2563,3,E07000102,4,74.68,168.16,25.84,2000
+3215,4,E07000102,0,58.82,153.78,18.64,2000
+4158,5,E07000102,1,57.22,185.13,25.84,1000
+4739,5,E07000102,2,67.88,281.71,25.84,1000
+5458,5,E07000102,3,74.68,415.1,25.84,1000
+6168,5,E07000102,4,85.34,608.27,25.84,1000
+3541,6,E07000102,0,38.11,683.11,25.84,2000
+4275,7,E07000102,1,52.38,185.13,25.84,1000
+5001,7,E07000102,2,61.09,281.71,18.64,2000
+5644,7,E07000102,3,66.92,415.1,25.84,1000
+6306,7,E07000102,4,74.68,608.27,18.64,2000
+3867,8,E07000102,0,58.82,683.11,25.84,1000
+6801,9,E07000102,1,57.22,266.78,25.84,1000
+7127,9,E07000102,2,67.88,405.94,25.84,1000
+7453,9,E07000102,3,74.68,598.16,25.84,1000
+7779,9,E07000102,4,85.34,876.52,25.84,1000
+8105,10,E07000102,0,38.11,984.36,18.44,2000
+9516,11,E07000102,1,57.22,266.78,25.84,2000
+9517,11,E07000102,2,67.88,405.94,25.84,2000
+9518,11,E07000102,3,74.68,598.16,25.84,2000
+9519,11,E07000102,4,85.34,876.52,25.84,2000
+9520,12,E07000102,0,38.11,984.36,18.64,2000
+282,1,E06000034,1,57.22,134.53,25.84,1000
+608,1,E06000034,2,67.88,160.94,18.64,2000
+934,1,E06000034,3,74.68,176.56,25.84,1000
+1260,1,E06000034,4,85.34,193.39,25.84,1000
+2890,2,E06000034,0,38.11,256.29,25.84,1000
+1586,3,E06000034,1,52.38,112.91,25.84,2000
+1912,3,E06000034,2,61.09,133.32,25.84,1000
+2238,3,E06000034,3,66.92,147.74,18.64,2000
+2564,3,E06000034,4,74.68,168.16,25.84,2000
+3216,4,E06000034,0,58.82,153.78,25.84,1000
+4159,5,E06000034,1,57.22,146.04,25.84,1000
+4740,5,E06000034,2,67.88,185.13,18.64,2000
+5459,5,E06000034,3,74.68,220.78,25.84,1000
+6169,5,E06000034,4,85.34,317.35,25.84,1000
+3542,6,E06000034,0,38.11,356.42,25.84,2000
+4276,7,E06000034,1,52.38,146.04,25.84,1000
+5002,7,E06000034,2,61.09,185.13,25.84,1000
+5645,7,E06000034,3,66.92,220.78,25.84,1000
+6307,7,E06000034,4,74.68,317.35,25.84,1000
+3868,8,E06000034,0,58.82,356.42,18.64,2000
+6802,9,E06000034,1,57.22,210.44,25.84,1000
+7128,9,E06000034,2,67.88,266.78,18.64,2000
+7454,9,E06000034,3,74.68,318.15,25.84,1000
+7780,9,E06000034,4,85.34,457.3,25.84,1000
+8106,10,E06000034,0,38.11,513.58,25.84,1000
+9521,11,E06000034,1,57.22,210.44,25.84,2000
+9522,11,E06000034,2,67.88,266.78,25.84,2000
+9523,11,E06000034,3,74.68,318.15,25.84,2000
+9524,11,E06000034,4,85.34,457.3,25.84,2000
+9525,12,E06000034,0,38.11,513.58,18.64,2000
+283,1,E07000115,1,60.13,139.33,25.84,1000
+609,1,E07000115,2,74.68,165.75,25.84,2000
+935,1,E07000115,3,85.34,182.58,25.84,1000
+1261,1,E07000115,4,94.09,201.8,18.64,2000
+2891,2,E07000115,0,65.34,303.51,18.64,2000
+1587,3,E07000115,1,54.32,130.92,25.84,2000
+1913,3,E07000115,2,65.95,146.54,25.84,1000
+2239,3,E07000115,3,71.76,169.36,25.84,1000
+2565,3,E07000115,4,76.62,209,25.84,2000
+3217,4,E07000115,0,51.19,221.24,25.84,1000
+4037,5,E07000115,1,60.13,148.33,18.64,2000
+4652,5,E07000115,2,74.68,195.48,25.84,2000
+5304,5,E07000115,3,85.34,224.24,25.84,1000
+5989,5,E07000115,4,94.09,474.87,25.84,2000
+3543,6,E07000115,0,65.34,533.32,25.84,2000
+4104,7,E07000115,1,54.32,148.33,25.84,1000
+4799,7,E07000115,2,65.95,195.48,18.64,2000
+5404,7,E07000115,3,71.76,224.24,25.84,1000
+6093,7,E07000115,4,76.62,474.87,25.84,1000
+3869,8,E07000115,0,51.19,533.32,25.84,1000
+6803,9,E07000115,1,60.13,213.75,25.84,1000
+7129,9,E07000115,2,74.68,281.69,25.84,1000
+7455,9,E07000115,3,85.34,323.12,25.84,1000
+7781,9,E07000115,4,94.09,684.29,18.64,2000
+8107,10,E07000115,0,65.34,768.51,25.84,1000
+9526,11,E07000115,1,60.13,213.75,25.84,2000
+9527,11,E07000115,2,74.68,281.69,25.84,2000
+9528,11,E07000115,3,85.34,323.12,25.84,2000
+9529,11,E07000115,4,94.09,684.29,25.84,2000
+9530,12,E07000115,0,65.34,768.51,18.64,2000
+284,1,E06000027,1,51.41,121.33,18.64,2000
+610,1,E06000027,2,58.19,136.92,25.84,2000
+936,1,E06000027,3,64.98,159.75,25.84,1000
+1262,1,E06000027,4,74.68,178.95,25.84,1000
+2892,2,E06000027,0,57.73,261.7,25.84,1000
+1588,3,E06000027,1,49.46,100.89,25.84,2000
+1914,3,E06000027,2,57.22,114.11,18.64,2000
+2240,3,E06000027,3,64.98,123.71,25.84,1000
+2566,3,E06000027,4,77.58,147.74,25.84,2000
+3218,4,E06000027,0,57.73,130.84,25.84,1000
+4227,5,E06000027,1,51.41,118.43,25.84,1000
+4863,5,E06000027,2,58.19,151.79,25.84,1000
+5494,5,E06000027,3,64.98,178.23,25.84,1000
+6032,5,E06000027,4,74.68,235.71,25.84,1000
+3544,6,E06000027,0,57.73,264.72,18.64,2000
+3943,7,E06000027,1,49.46,118.43,25.84,1000
+5140,7,E06000027,2,57.22,151.79,25.84,1000
+5720,7,E06000027,3,64.98,178.23,25.84,1000
+6432,7,E06000027,4,77.58,235.71,18.64,2000
+3870,8,E06000027,0,57.73,264.72,25.84,1000
+6804,9,E06000027,1,51.41,170.65,18.64,2000
+7130,9,E06000027,2,58.19,218.73,25.84,1000
+7456,9,E06000027,3,64.98,256.83,25.84,1000
+7782,9,E06000027,4,74.68,339.66,25.84,2000
+8108,10,E06000027,0,57.73,381.46,25.84,1000
+9531,11,E06000027,1,51.41,170.65,25.84,2000
+9532,11,E06000027,2,58.19,218.73,25.84,2000
+9533,11,E06000027,3,64.98,256.83,25.84,2000
+9534,11,E06000027,4,74.68,339.66,25.84,2000
+9535,12,E06000027,0,57.73,381.46,18.64,2000
+285,1,E07000046,1,51.41,121.33,25.84,1000
+611,1,E07000046,2,58.19,136.92,25.84,2000
+937,1,E07000046,3,64.98,159.75,18.64,2000
+1263,1,E07000046,4,74.68,178.95,25.84,1000
+2893,2,E07000046,0,57.73,261.7,25.84,1000
+1589,3,E07000046,1,49.46,100.89,25.84,2000
+1915,3,E07000046,2,57.22,114.11,25.84,1000
+2241,3,E07000046,3,64.98,123.71,25.84,1000
+2567,3,E07000046,4,77.58,147.74,18.64,2000
+3219,4,E07000046,0,57.73,130.84,25.84,1000
+4228,5,E07000046,1,51.41,105.79,25.84,1000
+4864,5,E07000046,2,58.19,133.38,18.64,2000
+5495,5,E07000046,3,64.98,159.83,18.64,2000
+6033,5,E07000046,4,74.68,208.12,18.64,2000
+3545,6,E07000046,0,57.73,233.73,25.84,1000
+3944,7,E07000046,1,49.46,105.79,25.84,1000
+5141,7,E07000046,2,57.22,133.38,18.64,2000
+5721,7,E07000046,3,64.98,159.83,18.64,2000
+6433,7,E07000046,4,77.58,208.12,25.84,1000
+3871,8,E07000046,0,57.73,233.73,25.84,1000
+6805,9,E07000046,1,51.41,152.44,25.84,2000
+7131,9,E07000046,2,58.19,192.2,25.84,1000
+7457,9,E07000046,3,64.98,230.32,18.64,2000
+7783,9,E07000046,4,74.68,299.91,25.84,2000
+8109,10,E07000046,0,57.73,336.8,25.84,1000
+9536,11,E07000046,1,51.41,152.44,25.84,2000
+9537,11,E07000046,2,58.19,192.2,25.84,2000
+9538,11,E07000046,3,64.98,230.32,25.84,2000
+9539,11,E07000046,4,74.68,299.91,25.84,2000
+9540,12,E07000046,0,57.73,336.8,18.64,2000
+286,1,E09000030,1,68.85,164.54,25.84,1000
+612,1,E09000030,2,81.46,177.76,25.84,2000
+938,1,E09000030,3,88.25,188.59,25.84,1000
+1264,1,E09000030,4,106.66,211.41,25.84,1000
+2894,2,E09000030,0,74.06,358.82,25.84,1000
+1590,3,E09000030,1,61.09,134.53,18.64,2000
+1916,3,E09000030,2,66.92,157.36,25.84,1000
+2242,3,E09000030,3,74.68,180.17,25.84,1000
+2568,3,E09000030,4,87.29,294.28,25.84,1000
+3220,4,E09000030,0,63.17,420.87,18.64,2000
+3979,5,E09000030,1,68.85,343.81,18.64,2000
+4594,5,E09000030,2,81.46,422,25.84,1000
+5246,5,E09000030,3,88.25,511.68,25.84,1000
+5931,5,E09000030,4,106.66,580.68,25.84,1000
+3546,6,E09000030,0,74.06,650.85,25.84,1000
+4193,7,E09000030,1,61.09,343.81,25.84,1000
+4694,7,E09000030,2,66.92,422,18.64,2000
+5346,7,E09000030,3,74.68,511.68,25.84,2000
+5898,7,E09000030,4,87.29,580.68,25.84,1000
+3872,8,E09000030,0,63.17,650.85,25.84,1000
+6806,9,E09000030,1,68.85,495.43,25.84,2000
+7132,9,E09000030,2,81.46,608.11,25.84,1000
+7458,9,E09000030,3,88.25,737.32,25.84,1000
+7784,9,E09000030,4,106.66,836.76,25.84,2000
+8110,10,E09000030,0,74.06,937.88,18.44,2000
+9541,11,E09000030,1,68.85,495.43,25.84,2000
+9542,11,E09000030,2,81.46,608.11,25.84,2000
+9543,11,E09000030,3,88.25,737.32,25.84,2000
+9544,11,E09000030,4,106.66,836.76,25.84,2000
+9545,12,E09000030,0,74.06,937.88,18.64,2000
+287,1,E08000009,1,54.32,105.71,25.84,1000
+613,1,E08000009,2,62.07,121.33,18.64,2000
+939,1,E08000009,3,68.85,135.72,25.84,1000
+1265,1,E08000009,4,75.65,151.35,25.84,1000
+2895,2,E08000009,0,58.82,271.14,25.84,1000
+1591,3,E08000009,1,45.57,97.28,25.84,1000
+1917,3,E08000009,2,56.25,106.93,25.84,1000
+2243,3,E08000009,3,61.09,118.92,18.64,2000
+2569,3,E08000009,4,58.19,134.53,25.84,1000
+3221,4,E08000009,0,34.85,531.48,25.84,1000
+4384,5,E08000009,1,54.32,134.53,25.84,1000
+4954,5,E08000009,2,62.07,170.17,25.84,1000
+5597,5,E08000009,3,68.85,208.12,25.84,2000
+6345,5,E08000009,4,75.65,388.64,25.84,1000
+3547,6,E08000009,0,58.82,436.47,25.84,1000
+4496,7,E08000009,1,45.57,134.53,25.84,1000
+5092,7,E08000009,2,56.25,170.17,25.84,1000
+5772,7,E08000009,3,61.09,208.12,25.84,2000
+6396,7,E08000009,4,58.19,388.64,25.84,1000
+3873,8,E08000009,0,34.85,436.47,18.64,2000
+6807,9,E08000009,1,54.32,193.87,25.84,2000
+7133,9,E08000009,2,62.07,245.2,18.64,2000
+7459,9,E08000009,3,68.85,299.91,25.84,1000
+7785,9,E08000009,4,75.65,560.03,25.84,2000
+8111,10,E08000009,0,58.82,628.94,25.84,1000
+9546,11,E08000009,1,54.32,193.87,25.84,2000
+9547,11,E08000009,2,62.07,245.2,25.84,2000
+9548,11,E08000009,3,68.85,299.91,25.84,2000
+9549,11,E08000009,4,75.65,560.03,25.84,2000
+9550,12,E08000009,0,58.82,628.94,18.32,2000
+288,1,E07000116,1,60.13,139.33,25.84,1000
+614,1,E07000116,2,74.68,165.75,25.84,1000
+940,1,E07000116,3,85.34,182.58,25.84,1000
+1266,1,E07000116,4,94.09,201.8,18.64,2000
+2896,2,E07000116,0,65.34,303.51,18.64,2000
+1592,3,E07000116,1,54.32,130.92,25.84,1000
+1918,3,E07000116,2,65.95,146.54,25.84,1000
+2244,3,E07000116,3,71.76,169.36,25.84,1000
+2570,3,E07000116,4,76.62,209,25.84,1000
+3222,4,E07000116,0,51.19,221.24,25.84,1000
+4038,5,E07000116,1,60.13,164.43,25.84,1000
+4653,5,E07000116,2,74.68,219.63,25.84,2000
+5305,5,E07000116,3,85.34,304.71,25.84,1000
+5990,5,E07000116,4,94.09,572.63,18.64,2000
+3548,6,E07000116,0,65.34,643.1,25.84,1000
+4105,7,E07000116,1,54.32,164.43,18.64,2000
+4800,7,E07000116,2,65.95,219.63,25.84,1000
+5405,7,E07000116,3,71.76,304.71,18.64,2000
+6094,7,E07000116,4,76.62,572.63,18.64,2000
+3874,8,E07000116,0,51.19,643.1,25.84,2000
+6808,9,E07000116,1,60.13,236.96,25.84,2000
+7134,9,E07000116,2,74.68,316.49,25.84,1000
+7460,9,E07000116,3,85.34,439.08,25.84,1000
+7786,9,E07000116,4,94.09,825.17,18.64,2000
+8112,10,E07000116,0,65.34,926.7,25.84,1000
+9551,11,E07000116,1,60.13,236.96,25.84,2000
+9552,11,E07000116,2,74.68,316.49,25.84,2000
+9553,11,E07000116,3,85.34,439.08,25.84,2000
+9554,11,E07000116,4,94.09,825.17,25.84,2000
+9555,12,E07000116,0,65.34,926.7,18.64,2000
+289,1,E07000077,1,57.22,134.53,18.64,2000
+615,1,E07000077,2,67.88,160.94,25.84,1000
+941,1,E07000077,3,74.68,176.56,25.84,1000
+1267,1,E07000077,4,85.34,193.39,25.84,1000
+2897,2,E07000077,0,38.11,256.29,25.84,2000
+1593,3,E07000077,1,52.38,112.91,25.84,1000
+1919,3,E07000077,2,61.09,133.32,18.64,2000
+2245,3,E07000077,3,66.92,147.74,25.84,1000
+2571,3,E07000077,4,74.68,168.16,25.84,1000
+3223,4,E07000077,0,58.82,153.78,25.84,1000
+4160,5,E07000077,1,57.22,146.04,25.84,1000
+4741,5,E07000077,2,67.88,190.87,25.84,1000
+5460,5,E07000077,3,74.68,238.02,25.84,1000
+6170,5,E07000077,4,85.34,426.58,25.84,1000
+3549,6,E07000077,0,38.11,479.09,18.64,2000
+4277,7,E07000077,1,52.38,146.04,25.84,1000
+5003,7,E07000077,2,61.09,190.87,25.84,1000
+5646,7,E07000077,3,66.92,238.02,25.84,1000
+6308,7,E07000077,4,74.68,426.58,25.84,1000
+3875,8,E07000077,0,58.82,479.09,25.84,2000
+6809,9,E07000077,1,57.22,210.44,18.64,2000
+7135,9,E07000077,2,67.88,275.06,25.84,1000
+7461,9,E07000077,3,74.68,342.99,25.84,1000
+7787,9,E07000077,4,85.34,614.72,25.84,1000
+8113,10,E07000077,0,38.11,690.36,25.84,1000
+9556,11,E07000077,1,57.22,210.44,25.84,2000
+9557,11,E07000077,2,67.88,275.06,25.84,2000
+9558,11,E07000077,3,74.68,342.99,25.84,2000
+9559,11,E07000077,4,85.34,614.72,25.84,2000
+9560,12,E07000077,0,38.11,690.36,18.64,2000
+290,1,E07000180,1,60.13,139.33,25.84,1000
+616,1,E07000180,2,74.68,165.75,25.84,1000
+942,1,E07000180,3,85.34,182.58,18.64,2000
+1268,1,E07000180,4,94.09,201.8,25.84,1000
+2898,2,E07000180,0,65.34,303.51,25.84,2000
+1594,3,E07000180,1,54.32,130.92,25.84,1000
+1920,3,E07000180,2,65.95,146.54,25.84,2000
+2246,3,E07000180,3,71.76,169.36,25.84,1000
+2572,3,E07000180,4,76.62,209,18.64,2000
+3224,4,E07000180,0,51.19,221.24,25.84,1000
+4039,5,E07000180,1,60.13,172.47,25.84,1000
+4654,5,E07000180,2,74.68,208.12,18.64,2000
+5306,5,E07000180,3,85.34,257.56,25.84,1000
+5991,5,E07000180,4,94.09,426.58,25.84,1000
+3550,6,E07000180,0,65.34,479.09,25.84,1000
+4106,7,E07000180,1,54.32,172.47,25.84,1000
+4801,7,E07000180,2,65.95,208.12,25.84,1000
+5406,7,E07000180,3,71.76,257.56,25.84,1000
+6095,7,E07000180,4,76.62,426.58,25.84,1000
+3876,8,E07000180,0,51.19,479.09,25.84,2000
+6810,9,E07000180,1,60.13,248.54,25.84,1000
+7136,9,E07000180,2,74.68,299.91,25.84,1000
+7462,9,E07000180,3,85.34,371.14,18.64,2000
+7788,9,E07000180,4,94.09,614.72,25.84,1000
+8114,10,E07000180,0,65.34,690.36,25.84,1000
+9561,11,E07000180,1,60.13,248.54,25.84,2000
+9562,11,E07000180,2,74.68,299.91,25.84,2000
+9563,11,E07000180,3,85.34,371.14,25.84,2000
+9564,11,E07000180,4,94.09,614.72,25.84,2000
+9565,12,E07000180,0,65.34,690.36,18.64,2000
+291,1,E08000036,1,53.35,103.31,25.84,1000
+617,1,E08000036,2,61.09,122.52,25.84,1000
+943,1,E08000036,3,65.95,135.72,25.84,2000
+1269,1,E08000036,4,76.62,163.35,25.84,1000
+2899,2,E08000036,0,55.56,265.72,25.84,2000
+1595,3,E08000036,1,48.48,92.49,18.64,2000
+1921,3,E08000036,2,55.28,127.31,25.84,2000
+2247,3,E08000036,3,59.16,117.72,25.84,1000
+2573,3,E08000036,4,66.92,136.92,25.84,1000
+3225,4,E08000036,0,54.46,182.11,18.64,2000
+4409,5,E08000036,1,53.35,118.43,25.84,1000
+4889,5,E08000036,2,61.09,135.68,18.64,2000
+5520,5,E08000036,3,65.95,148.33,18.64,2000
+6125,5,E08000036,4,76.62,208.12,25.84,1000
+3551,6,E08000036,0,55.56,233.73,25.84,1000
+4563,7,E08000036,1,48.48,118.43,25.84,1000
+4831,7,E08000036,2,55.28,135.68,18.64,2000
+5867,7,E08000036,3,59.16,148.33,18.64,2000
+6223,7,E08000036,4,66.92,208.12,25.84,1000
+3877,8,E08000036,0,54.46,233.73,25.84,2000
+6811,9,E08000036,1,53.35,170.65,25.84,1000
+7137,9,E08000036,2,55.28,195.52,25.84,1000
+7463,9,E08000036,3,65.95,213.75,25.84,1000
+7789,9,E08000036,4,76.62,299.91,25.84,1000
+8115,10,E08000036,0,55.56,336.8,18.44,2000
+9566,11,E08000036,1,53.35,170.65,25.84,2000
+9567,11,E08000036,2,55.28,195.52,25.84,2000
+9568,11,E08000036,3,65.95,213.75,25.84,2000
+9569,11,E08000036,4,76.62,299.91,25.84,2000
+9570,12,E08000036,0,55.56,336.8,18.64,2000
+292,1,E08000030,1,55.28,111.71,25.84,1000
+618,1,E08000030,2,61.09,132.12,18.64,2000
+944,1,E08000030,3,72.73,150.14,25.84,2000
+1270,1,E08000030,4,84.37,182.58,25.84,1000
+2900,2,E08000030,0,41.39,277.87,25.84,2000
+1596,3,E08000030,1,48.48,99.69,25.84,1000
+1922,3,E08000030,2,52.38,106.93,25.84,2000
+2248,3,E08000030,3,63.04,117.72,18.64,2000
+2574,3,E08000030,4,71.76,144.14,25.84,1000
+3226,4,E08000030,0,49.01,121.41,25.84,1000
+4305,5,E08000030,1,55.28,105.79,18.64,2000
+4915,5,E08000030,2,61.09,129.92,25.84,1000
+5546,5,E08000030,3,72.73,141.43,25.84,1000
+6198,5,E08000030,4,84.37,208.12,18.64,2000
+3552,6,E08000030,0,41.39,233.73,25.84,1000
+4526,7,E08000030,1,48.48,105.79,25.84,1000
+5211,7,E08000030,2,52.38,129.92,25.84,1000
+5802,7,E08000030,3,63.04,141.43,25.84,1000
+6463,7,E08000030,4,71.76,208.12,25.84,1000
+3878,8,E08000030,0,49.01,233.73,18.64,2000
+6812,9,E08000030,1,55.28,152.44,25.84,1000
+7138,9,E08000030,2,61.09,187.23,18.64,2000
+7464,9,E08000030,3,72.73,203.8,25.84,1000
+7790,9,E08000030,4,84.37,299.91,25.84,1000
+8116,10,E08000030,0,41.39,336.8,25.84,2000
+9571,11,E08000030,1,55.28,152.44,25.84,2000
+9572,11,E08000030,2,61.09,187.23,25.84,2000
+9573,11,E08000030,3,72.73,203.8,25.84,2000
+9574,11,E08000030,4,84.37,299.91,25.84,2000
+9575,12,E08000030,0,41.39,336.8,18.64,2000
+293,1,E09000031,1,68.85,164.54,25.84,1000
+619,1,E09000031,2,81.46,177.76,25.84,1000
+945,1,E09000031,3,88.25,188.59,25.84,2000
+1271,1,E09000031,4,106.66,211.41,18.64,2000
+2901,2,E09000031,0,74.06,358.82,18.64,2000
+1597,3,E09000031,1,61.09,134.53,25.84,1000
+1923,3,E09000031,2,66.92,157.36,25.84,2000
+2249,3,E09000031,3,74.68,180.17,25.84,1000
+2575,3,E09000031,4,87.29,294.28,25.84,1000
+3227,4,E09000031,0,63.17,420.87,25.84,1000
+3980,5,E09000031,1,68.85,202.38,25.84,1000
+4595,5,E09000031,2,81.46,257.56,25.84,1000
+5247,5,E09000031,3,88.25,317.35,25.84,1000
+5932,5,E09000031,4,106.66,386.35,18.64,2000
+3553,6,E09000031,0,74.06,432.59,25.84,1000
+4194,7,E09000031,1,61.09,202.38,25.84,1000
+4695,7,E09000031,2,66.92,257.56,25.84,1000
+5347,7,E09000031,3,74.68,317.35,18.64,2000
+5899,7,E09000031,4,87.29,386.35,25.84,1000
+3879,8,E09000031,0,63.17,432.59,25.84,1000
+6813,9,E09000031,1,68.85,291.63,25.84,1000
+7139,9,E09000031,2,81.46,371.14,25.84,2000
+7465,9,E09000031,3,88.25,457.3,25.84,1000
+7791,9,E09000031,4,106.66,556.75,18.64,2000
+8117,10,E09000031,0,74.06,623.35,25.84,2000
+9576,11,E09000031,1,68.85,291.63,25.84,2000
+9577,11,E09000031,2,81.46,371.14,25.84,2000
+9578,11,E09000031,3,88.25,457.3,25.84,2000
+9579,11,E09000031,4,106.66,556.75,25.84,2000
+9580,12,E09000031,0,74.06,623.35,18.64,2000
+294,1,E09000032,1,68.85,164.54,18.64,2000
+620,1,E09000032,2,81.46,177.76,25.84,1000
+946,1,E09000032,3,88.25,188.59,25.84,2000
+1272,1,E09000032,4,106.66,211.41,25.84,1000
+2902,2,E09000032,0,74.06,358.82,25.84,1000
+1598,3,E09000032,1,61.09,134.53,25.84,1000
+1924,3,E09000032,2,66.92,157.36,18.64,2000
+2250,3,E09000032,3,74.68,180.17,25.84,1000
+2576,3,E09000032,4,87.29,294.28,25.84,1000
+3228,4,E09000032,0,63.17,420.87,25.84,1000
+3981,5,E09000032,1,68.85,317.35,25.84,1000
+4596,5,E09000032,2,81.46,395.55,18.64,2000
+5248,5,E09000032,3,88.25,491,25.84,1000
+5933,5,E09000032,4,106.66,726.71,25.84,2000
+3554,6,E09000032,0,74.06,816.13,18.64,2000
+4195,7,E09000032,1,61.09,317.35,25.84,1000
+4696,7,E09000032,2,66.92,395.55,25.84,1000
+5348,7,E09000032,3,74.68,491,25.84,1000
+5900,7,E09000032,4,87.29,726.71,25.84,1000
+3880,8,E09000032,0,63.17,816.13,25.84,1000
+6814,9,E09000032,1,68.85,457.3,18.64,2000
+7140,9,E09000032,2,81.46,569.99,25.84,2000
+7466,9,E09000032,3,88.25,707.51,25.84,1000
+7792,9,E09000032,4,106.66,1047.21,25.84,1000
+8118,10,E09000032,0,74.06,1176.06,25.84,2000
+9581,11,E09000032,1,68.85,457.3,25.84,2000
+9582,11,E09000032,2,81.46,569.99,25.84,2000
+9583,11,E09000032,3,88.25,707.51,25.84,2000
+9584,11,E09000032,4,106.66,1047.21,25.84,2000
+9585,12,E09000032,0,74.06,1176.06,18.64,2000
+295,1,E06000007,1,54.32,105.71,25.84,1000
+621,1,E06000007,2,62.07,121.33,25.84,1000
+947,1,E06000007,3,68.85,135.72,18.64,2000
+1273,1,E06000007,4,75.65,151.35,25.84,1000
+2903,2,E06000007,0,58.82,271.14,25.84,1000
+1599,3,E06000007,1,45.57,97.28,25.84,1000
+1925,3,E06000007,2,56.25,106.93,25.84,1000
+2251,3,E06000007,3,61.09,118.92,25.84,1000
+2577,3,E06000007,4,58.19,134.53,18.64,2000
+3229,4,E06000007,0,34.85,531.48,25.84,1000
+4385,5,E06000007,1,54.32,111.54,25.84,1000
+4955,5,E06000007,2,62.07,135.68,18.64,2000
+5598,5,E06000007,3,68.85,166.72,25.84,2000
+6346,5,E06000007,4,75.65,232.26,25.84,1000
+3555,6,E06000007,0,58.82,260.84,25.84,1000
+4497,7,E06000007,1,45.57,111.54,25.84,1000
+5093,7,E06000007,2,56.25,135.68,18.64,2000
+5773,7,E06000007,3,61.09,166.72,25.84,2000
+6397,7,E06000007,4,58.19,232.26,25.84,1000
+3881,8,E06000007,0,34.85,260.84,25.84,1000
+6815,9,E06000007,1,54.32,160.73,25.84,1000
+7141,9,E06000007,2,62.07,195.52,25.84,2000
+7467,9,E06000007,3,68.85,240.25,18.64,2000
+7793,9,E06000007,4,75.65,334.7,25.84,1000
+8119,10,E06000007,0,58.82,375.86,25.84,2000
+9586,11,E06000007,1,54.32,160.73,25.84,2000
+9587,11,E06000007,2,62.07,195.52,25.84,2000
+9588,11,E06000007,3,68.85,240.25,25.84,2000
+9589,11,E06000007,4,75.65,334.7,25.84,2000
+9590,12,E06000007,0,58.82,375.86,18.64,2000
+296,1,E07000222,1,55.28,111.71,25.84,1000
+622,1,E07000222,2,61.09,132.12,25.84,1000
+948,1,E07000222,3,72.73,150.14,25.84,1000
+1274,1,E07000222,4,84.37,182.58,25.84,1000
+2904,2,E07000222,0,41.39,277.87,25.84,1000
+1600,3,E07000222,1,48.48,99.69,18.64,2000
+1926,3,E07000222,2,52.38,106.93,25.84,1000
+2252,3,E07000222,3,63.04,117.72,25.84,1000
+2578,3,E07000222,4,71.76,144.14,25.84,1000
+3230,4,E07000222,0,49.01,121.41,18.64,2000
+4306,5,E07000222,1,55.28,141.43,25.84,1000
+4916,5,E07000222,2,61.09,178.23,25.84,1000
+5547,5,E07000222,3,72.73,208.12,25.84,1000
+6199,5,E07000222,4,84.37,365.64,25.84,1000
+3556,6,E07000222,0,41.39,410.63,25.84,1000
+4527,7,E07000222,1,48.48,141.43,25.84,1000
+5212,7,E07000222,2,52.38,178.23,25.84,1000
+5803,7,E07000222,3,63.04,208.12,25.84,1000
+6464,7,E07000222,4,71.76,365.64,25.84,1000
+3882,8,E07000222,0,49.01,410.63,25.84,1000
+6816,9,E07000222,1,55.28,203.8,25.84,1000
+7142,9,E07000222,2,61.09,256.83,25.84,2000
+7468,9,E07000222,3,72.73,299.91,25.84,1000
+7794,9,E07000222,4,84.37,526.89,25.84,1000
+8120,10,E07000222,0,41.39,591.71,18.44,2000
+9591,11,E07000222,1,55.28,203.8,25.84,2000
+9592,11,E07000222,2,61.09,256.83,25.84,2000
+9593,11,E07000222,3,72.73,299.91,25.84,2000
+9594,11,E07000222,4,84.37,526.89,25.84,2000
+9595,12,E07000222,0,41.39,591.71,18.64,2000
+297,1,E07000103,1,57.22,134.53,25.84,1000
+623,1,E07000103,2,67.88,160.94,18.64,2000
+949,1,E07000103,3,74.68,176.56,25.84,1000
+1275,1,E07000103,4,85.34,193.39,25.84,1000
+2905,2,E07000103,0,38.11,256.29,25.84,1000
+1601,3,E07000103,1,52.38,112.91,25.84,1000
+1927,3,E07000103,2,61.09,133.32,25.84,1000
+2253,3,E07000103,3,66.92,147.74,18.64,2000
+2579,3,E07000103,4,74.68,168.16,25.84,1000
+3231,4,E07000103,0,58.82,153.78,25.84,2000
+4161,5,E07000103,1,57.22,185.13,18.64,2000
+4742,5,E07000103,2,67.88,246.06,25.84,1000
+5461,5,E07000103,3,74.68,304.71,18.64,2000
+6171,5,E07000103,4,85.34,608.27,25.84,1000
+3557,6,E07000103,0,38.11,683.11,25.84,1000
+4278,7,E07000103,1,52.38,185.13,25.84,1000
+5004,7,E07000103,2,61.09,246.06,25.84,1000
+5647,7,E07000103,3,66.92,304.71,18.64,2000
+6309,7,E07000103,4,74.68,608.27,25.84,1000
+3883,8,E07000103,0,58.82,683.11,18.64,2000
+6817,9,E07000103,1,57.22,266.78,25.84,1000
+7143,9,E07000103,2,67.88,354.57,18.64,2000
+7469,9,E07000103,3,74.68,439.08,25.84,1000
+7795,9,E07000103,4,85.34,876.52,25.84,1000
+8121,10,E07000103,0,38.11,984.36,25.84,1000
+9596,11,E07000103,1,57.22,266.78,25.84,2000
+9597,11,E07000103,2,67.88,354.57,25.84,2000
+9598,11,E07000103,3,74.68,439.08,25.84,2000
+9599,11,E07000103,4,85.34,876.52,25.84,2000
+9600,12,E07000103,0,38.11,984.36,18.64,2000
+299,1,E07000216,1,60.13,139.33,25.84,1000
+625,1,E07000216,2,74.68,165.75,25.84,1000
+951,1,E07000216,3,85.34,182.58,25.84,1000
+1277,1,E07000216,4,94.09,201.8,18.64,2000
+2907,2,E07000216,0,65.34,303.51,18.64,2000
+1603,3,E07000216,1,54.32,130.92,25.84,1000
+1929,3,E07000216,2,65.95,146.54,25.84,1000
+2255,3,E07000216,3,71.76,169.36,25.84,2000
+2581,3,E07000216,4,76.62,209,25.84,1000
+3233,4,E07000216,0,51.19,221.24,25.84,2000
+4040,5,E07000216,1,60.13,188.56,25.84,1000
+4655,5,E07000216,2,74.68,242.61,25.84,1000
+5307,5,E07000216,3,85.34,330,18.64,2000
+5992,5,E07000216,4,94.09,608.27,25.84,1000
+3559,6,E07000216,0,65.34,683.11,25.84,1000
+4107,7,E07000216,1,54.32,188.56,25.84,1000
+4802,7,E07000216,2,65.95,242.61,25.84,1000
+5407,7,E07000216,3,71.76,330,25.84,1000
+6096,7,E07000216,4,76.62,608.27,25.84,1000
+3885,8,E07000216,0,51.19,683.11,25.84,1000
+6819,9,E07000216,1,60.13,271.72,25.84,1000
+7145,9,E07000216,2,74.68,349.6,25.84,1000
+7471,9,E07000216,3,85.34,475.54,25.84,1000
+7797,9,E07000216,4,94.09,876.52,18.64,2000
+8123,10,E07000216,0,65.34,984.36,25.84,1000
+9601,11,E07000216,1,60.13,271.72,25.84,2000
+9602,11,E07000216,2,74.68,349.6,25.84,2000
+9603,11,E07000216,3,85.34,475.54,25.84,2000
+9604,11,E07000216,4,94.09,876.52,25.84,2000
+9605,12,E07000216,0,65.34,984.36,18.64,2000
+300,1,E07000065,1,60.13,139.33,18.64,2000
+626,1,E07000065,2,74.68,165.75,25.84,1000
+952,1,E07000065,3,85.34,182.58,25.84,1000
+1278,1,E07000065,4,94.09,201.8,25.84,2000
+2908,2,E07000065,0,65.34,303.51,25.84,1000
+1604,3,E07000065,1,54.32,130.92,25.84,1000
+1930,3,E07000065,2,65.95,146.54,18.64,2000
+2256,3,E07000065,3,71.76,169.36,25.84,2000
+2582,3,E07000065,4,76.62,209,25.84,1000
+3234,4,E07000065,0,51.19,221.24,25.84,2000
+4041,5,E07000065,1,60.13,146.04,25.84,1000
+4656,5,E07000065,2,74.68,190.87,25.84,1000
+5308,5,E07000065,3,85.34,226.53,25.84,1000
+5993,5,E07000065,4,94.09,409.35,25.84,1000
+3560,6,E07000065,0,65.34,459.71,18.64,2000
+4108,7,E07000065,1,54.32,146.04,25.84,1000
+4803,7,E07000065,2,65.95,190.87,25.84,1000
+5408,7,E07000065,3,71.76,226.53,25.84,1000
+6097,7,E07000065,4,76.62,409.35,25.84,1000
+3886,8,E07000065,0,51.19,459.71,25.84,1000
+6820,9,E07000065,1,60.13,210.44,18.64,2000
+7146,9,E07000065,2,74.68,275.06,25.84,1000
+7472,9,E07000065,3,85.34,326.44,25.84,1000
+7798,9,E07000065,4,94.09,589.88,25.84,1000
+8124,10,E07000065,0,65.34,662.45,25.84,1000
+9606,11,E07000065,1,60.13,210.44,25.84,2000
+9607,11,E07000065,2,74.68,275.06,25.84,2000
+9608,11,E07000065,3,85.34,326.44,25.84,2000
+9609,11,E07000065,4,94.09,589.88,25.84,2000
+9610,12,E07000065,0,65.34,662.45,18.64,2000
+302,1,E07000241,1,57.22,134.53,25.84,2000
+628,1,E07000241,2,67.88,160.94,25.84,1000
+954,1,E07000241,3,74.68,176.56,18.64,2000
+1280,1,E07000241,4,85.34,193.39,25.84,2000
+2910,2,E07000241,0,38.11,256.29,25.84,1000
+1606,3,E07000241,1,52.38,112.91,25.84,1000
+1932,3,E07000241,2,61.09,133.32,25.84,1000
+2258,3,E07000241,3,66.92,147.74,25.84,2000
+2584,3,E07000241,4,74.68,168.16,18.64,2000
+3236,4,E07000241,0,58.82,153.78,25.84,2000
+4163,5,E07000241,1,57.22,166.72,25.84,1000
+4744,5,E07000241,2,67.88,208.12,25.84,1000
+5463,5,E07000241,3,74.68,293.23,25.84,1000
+6173,5,E07000241,4,85.34,438.09,18.64,2000
+3562,6,E07000241,0,38.11,492,25.84,1000
+4280,7,E07000241,1,52.38,166.72,18.64,2000
+5006,7,E07000241,2,61.09,208.12,25.84,1000
+5649,7,E07000241,3,66.92,293.23,25.84,2000
+6311,7,E07000241,4,74.68,438.09,25.84,1000
+3888,8,E07000241,0,58.82,492,25.84,1000
+6822,9,E07000241,1,57.22,240.25,25.84,1000
+7148,9,E07000241,2,67.88,299.91,25.84,1000
+7474,9,E07000241,3,74.68,422.54,18.64,2000
+7800,9,E07000241,4,85.34,631.29,25.84,1000
+8126,10,E07000241,0,38.11,708.97,25.84,1000
+9611,11,E07000241,1,57.22,240.25,25.84,2000
+9612,11,E07000241,2,67.88,299.91,25.84,2000
+9613,11,E07000241,3,74.68,422.54,25.84,2000
+9614,11,E07000241,4,85.34,631.29,25.84,2000
+9615,12,E07000241,0,38.11,708.97,18.64,2000
+303,1,E06000037,1,60.13,139.33,25.84,2000
+629,1,E06000037,2,74.68,165.75,25.84,1000
+955,1,E06000037,3,85.34,182.58,25.84,1000
+1281,1,E06000037,4,94.09,201.8,25.84,2000
+2911,2,E06000037,0,65.34,303.51,25.84,1000
+1607,3,E06000037,1,54.32,130.92,18.64,2000
+1933,3,E06000037,2,65.95,146.54,25.84,1000
+2259,3,E06000037,3,71.76,169.36,25.84,2000
+2585,3,E06000037,4,76.62,209,25.84,1000
+3237,4,E06000037,0,51.19,221.24,18.64,2000
+4042,5,E06000037,1,60.13,154.07,18.64,2000
+4657,5,E06000037,2,74.68,195.48,25.84,1000
+5309,5,E06000037,3,85.34,232.26,25.84,1000
+5994,5,E06000037,4,94.09,426.58,25.84,1000
+3563,6,E06000037,0,65.34,479.09,25.84,1000
+4109,7,E06000037,1,54.32,154.07,25.84,1000
+4804,7,E06000037,2,65.95,195.48,18.64,2000
+5409,7,E06000037,3,71.76,232.26,25.84,1000
+6098,7,E06000037,4,76.62,426.58,25.84,1000
+3889,8,E06000037,0,51.19,479.09,25.84,1000
+6823,9,E06000037,1,60.13,222,25.84,1000
+7149,9,E06000037,2,74.68,281.69,25.84,1000
+7475,9,E06000037,3,85.34,334.7,25.84,2000
+7801,9,E06000037,4,94.09,614.72,25.84,1000
+8127,10,E06000037,0,65.34,690.36,18.44,2000
+9616,11,E06000037,1,60.13,222,25.84,2000
+9617,11,E06000037,2,74.68,281.69,25.84,2000
+9618,11,E06000037,3,85.34,334.7,25.84,2000
+9619,11,E06000037,4,94.09,614.72,25.84,2000
+9620,12,E06000037,0,65.34,690.36,18.64,2000
+304,1,E07000047,1,51.41,121.33,25.84,2000
+630,1,E07000047,2,58.19,136.92,18.64,2000
+956,1,E07000047,3,64.98,159.75,25.84,1000
+1282,1,E07000047,4,74.68,178.95,25.84,2000
+2912,2,E07000047,0,57.73,261.7,25.84,1000
+1608,3,E07000047,1,49.46,100.89,25.84,1000
+1934,3,E07000047,2,57.22,114.11,25.84,1000
+2260,3,E07000047,3,64.98,123.71,18.64,2000
+2586,3,E07000047,4,77.58,147.74,25.84,1000
+3238,4,E07000047,0,57.73,130.84,25.84,1000
+4229,5,E07000047,1,51.41,111.54,25.84,1000
+4865,5,E07000047,2,58.19,137.99,25.84,1000
+5496,5,E07000047,3,64.98,171.31,25.84,1000
+6034,5,E07000047,4,74.68,238.02,25.84,1000
+3564,6,E07000047,0,57.73,267.3,25.84,1000
+3945,7,E07000047,1,49.46,111.54,25.84,1000
+5142,7,E07000047,2,57.22,137.99,25.84,1000
+5722,7,E07000047,3,64.98,171.31,25.84,1000
+6434,7,E07000047,4,77.58,238.02,25.84,1000
+3890,8,E07000047,0,57.73,267.3,18.64,2000
+6824,9,E07000047,1,51.41,160.73,25.84,1000
+7150,9,E07000047,2,58.19,198.83,18.64,2000
+7476,9,E07000047,3,64.98,246.86,25.84,2000
+7802,9,E07000047,4,74.68,342.99,25.84,1000
+8128,10,E07000047,0,57.73,385.18,25.84,1000
+9621,11,E07000047,1,51.41,160.73,25.84,2000
+9622,11,E07000047,2,58.19,198.83,25.84,2000
+9623,11,E07000047,3,64.98,246.86,25.84,2000
+9624,11,E07000047,4,74.68,342.99,25.84,2000
+9625,12,E07000047,0,57.73,385.18,18.64,2000
+306,1,E07000127,1,54.32,105.71,25.84,2000
+632,1,E07000127,2,62.07,121.33,25.84,1000
+958,1,E07000127,3,68.85,135.72,25.84,1000
+1284,1,E07000127,4,75.65,151.35,18.64,2000
+2914,2,E07000127,0,58.82,271.14,18.64,2000
+1610,3,E07000127,1,45.57,97.28,25.84,1000
+1936,3,E07000127,2,56.25,106.93,25.84,1000
+2262,3,E07000127,3,61.09,118.92,25.84,1000
+2588,3,E07000127,4,58.19,134.53,25.84,1000
+3240,4,E07000127,0,34.85,531.48,25.84,1000
+4386,5,E07000127,1,54.32,111.54,18.64,2000
+4956,5,E07000127,2,62.07,146.04,25.84,1000
+5599,5,E07000127,3,68.85,159.83,25.84,2000
+6347,5,E07000127,4,75.65,232.26,25.84,1000
+3566,6,E07000127,0,58.82,260.84,25.84,1000
+4498,7,E07000127,1,45.57,111.54,25.84,1000
+5094,7,E07000127,2,56.25,146.04,25.84,1000
+5774,7,E07000127,3,61.09,159.83,25.84,2000
+6398,7,E07000127,4,58.19,232.26,25.84,1000
+3892,8,E07000127,0,34.85,260.84,25.84,1000
+6826,9,E07000127,1,54.32,160.73,25.84,1000
+7152,9,E07000127,2,62.07,210.44,25.84,1000
+7478,9,E07000127,3,68.85,230.32,25.84,2000
+7804,9,E07000127,4,75.65,334.7,18.64,2000
+8130,10,E07000127,0,58.82,375.86,25.84,1000
+9626,11,E07000127,1,54.32,160.73,25.84,2000
+9627,11,E07000127,2,62.07,210.44,25.84,2000
+9628,11,E07000127,3,68.85,230.32,25.84,2000
+9629,11,E07000127,4,75.65,334.7,25.84,2000
+9630,12,E07000127,0,58.82,375.86,18.64,2000
+307,1,E07000142,1,54.32,112.91,18.64,2000
+633,1,E07000142,2,64.98,129.71,25.84,1000
+959,1,E07000142,3,71.76,142.94,25.84,1000
+1285,1,E07000142,4,79.53,178.95,25.84,1000
+2915,2,E07000142,0,54.46,272.48,25.84,1000
+1611,3,E07000142,1,48.48,102.12,25.84,1000
+1937,3,E07000142,2,55.28,109.3,18.64,2000
+2263,3,E07000142,3,61.09,117.72,25.84,1000
+2589,3,E07000142,4,66.92,138.13,25.84,1000
+3241,4,E07000142,0,52.28,129.48,25.84,1000
+4350,5,E07000142,1,54.32,91.98,18.64,2000
+5046,5,E07000142,2,64.98,118.43,25.84,2000
+5689,5,E07000142,3,71.76,140.28,25.84,1000
+6264,5,E07000142,4,79.53,208.12,25.84,1000
+3567,6,E07000142,0,54.46,233.73,18.64,2000
+4450,7,E07000142,1,48.48,91.98,25.84,1000
+5186,7,E07000142,2,55.28,118.43,25.84,1000
+5847,7,E07000142,3,61.09,140.28,25.84,1000
+6508,7,E07000142,4,66.92,208.12,25.84,1000
+3893,8,E07000142,0,52.28,233.73,25.84,1000
+6827,9,E07000142,1,54.32,132.55,18.64,2000
+7153,9,E07000142,2,64.98,170.65,25.84,1000
+7479,9,E07000142,3,71.76,202.15,25.84,2000
+7805,9,E07000142,4,79.53,299.91,25.84,1000
+8131,10,E07000142,0,54.46,336.8,25.84,1000
+9631,11,E07000142,1,54.32,132.55,25.84,2000
+9632,11,E07000142,2,64.98,170.65,25.84,2000
+9633,11,E07000142,3,71.76,202.15,25.84,2000
+9634,11,E07000142,4,79.53,299.91,25.84,2000
+9635,12,E07000142,0,54.46,336.8,18.64,2000
+243,1,E06000062,1,54.32,112.91,25.84,1000
+569,1,E06000062,2,64.98,129.71,25.84,1000
+895,1,E06000062,3,71.76,142.94,18.64,2000
+1221,1,E06000062,4,79.53,178.95,25.84,1000
+2851,2,E06000062,0,54.46,272.48,25.84,1000
+1547,3,E06000062,1,48.48,102.12,25.84,1000
+1873,3,E06000062,2,55.28,109.3,25.84,1000
+2199,3,E06000062,3,61.09,117.72,25.84,1000
+2525,3,E06000062,4,66.92,138.13,18.64,2000
+3177,4,E06000062,0,52.28,129.48,25.84,1000
+4348,5,E06000062,1,54.32,135.68,25.84,1000
+5044,5,E06000062,2,64.98,166.72,25.84,2000
+5687,5,E06000062,3,71.76,200.07,18.64,2000
+6262,5,E06000062,4,79.53,317.35,25.84,1000
+3503,6,E06000062,0,54.46,356.42,25.84,1000
+4448,7,E06000062,1,48.48,135.68,25.84,1000
+5184,7,E06000062,2,55.28,166.72,25.84,1000
+5845,7,E06000062,3,61.09,200.07,25.84,1000
+6506,7,E06000062,4,66.92,317.35,25.84,1000
+3829,8,E06000062,0,52.28,356.42,25.84,1000
+6763,9,E06000062,1,54.32,195.52,25.84,1000
+7089,9,E06000062,2,64.98,240.25,25.84,2000
+7415,9,E06000062,3,71.76,288.3,18.64,2000
+7741,9,E06000062,4,79.53,457.3,25.84,1000
+8067,10,E06000062,0,54.46,513.58,25.84,2000
+9636,11,E06000062,1,54.32,195.52,25.84,2000
+9637,11,E06000062,2,64.98,240.25,25.84,2000
+9638,11,E06000062,3,71.76,288.3,25.84,2000
+9639,11,E06000062,4,79.53,457.3,25.84,2000
+9640,12,E06000062,0,54.46,513.58,18.64,2000
+308,1,E07000181,1,60.13,139.33,25.84,1000
+634,1,E07000181,2,74.68,165.75,25.84,1000
+960,1,E07000181,3,85.34,182.58,18.64,2000
+1286,1,E07000181,4,94.09,201.8,25.84,1000
+2916,2,E07000181,0,65.34,303.51,25.84,1000
+1612,3,E07000181,1,54.32,130.92,25.84,1000
+1938,3,E07000181,2,65.95,146.54,25.84,1000
+2264,3,E07000181,3,71.76,169.36,25.84,1000
+2590,3,E07000181,4,76.62,209,18.64,2000
+3242,4,E07000181,0,51.19,221.24,25.84,1000
+4043,5,E07000181,1,60.13,159.83,25.84,2000
+4658,5,E07000181,2,74.68,196.63,25.84,1000
+5310,5,E07000181,3,85.34,244.9,25.84,1000
+5995,5,E07000181,4,94.09,432.35,18.64,2000
+3568,6,E07000181,0,65.34,485.54,25.84,2000
+4110,7,E07000181,1,54.32,159.83,18.64,2000
+4805,7,E07000181,2,65.95,196.63,25.84,2000
+5410,7,E07000181,3,71.76,244.9,18.64,2000
+6099,7,E07000181,4,76.62,432.35,18.64,2000
+3894,8,E07000181,0,51.19,485.54,25.84,1000
+6828,9,E07000181,1,60.13,230.32,25.84,1000
+7154,9,E07000181,2,74.68,283.35,25.84,1000
+7480,9,E07000181,3,85.34,352.9,18.64,2000
+7806,9,E07000181,4,94.09,623.01,25.84,1000
+8132,10,E07000181,0,65.34,699.67,25.84,1000
+9641,11,E07000181,1,60.13,230.32,25.84,2000
+9642,11,E07000181,2,74.68,283.35,25.84,2000
+9643,11,E07000181,3,85.34,352.9,25.84,2000
+9644,11,E07000181,4,94.09,623.01,25.84,2000
+9645,12,E07000181,0,65.34,699.67,18.64,2000
+254,1,E07000245,1,57.22,134.53,25.84,1000
+580,1,E07000245,2,67.88,160.94,25.84,1000
+906,1,E07000245,3,74.68,176.56,18.64,2000
+1232,1,E07000245,4,85.34,193.39,25.84,1000
+2862,2,E07000245,0,38.11,256.29,25.84,1000
+1558,3,E07000245,1,52.38,112.91,25.84,1000
+1884,3,E07000245,2,61.09,133.32,25.84,1000
+2210,3,E07000245,3,66.92,147.74,25.84,1000
+2536,3,E07000245,4,74.68,168.16,18.64,2000
+3188,4,E07000245,0,58.82,153.78,25.84,1000
+4154,5,E07000245,1,57.22,135.68,25.84,1000
+4735,5,E07000245,2,67.88,159.83,18.64,2000
+5454,5,E07000245,3,74.68,196.63,25.84,1000
+6164,5,E07000245,4,85.34,359.9,25.84,1000
+3514,6,E07000245,0,38.11,404.18,25.84,2000
+4271,7,E07000245,1,52.38,135.68,25.84,1000
+4997,7,E07000245,2,61.09,159.83,25.84,1000
+5640,7,E07000245,3,66.92,196.63,25.84,1000
+6302,7,E07000245,4,74.68,359.9,25.84,1000
+3840,8,E07000245,0,58.82,404.18,25.84,1000
+6774,9,E07000245,1,57.22,195.52,25.84,1000
+7100,9,E07000245,2,67.88,230.32,25.84,1000
+7426,9,E07000245,3,74.68,283.35,18.64,2000
+7752,9,E07000245,4,85.34,518.62,25.84,1000
+8078,10,E07000245,0,38.11,582.43,25.84,1000
+9646,11,E07000245,1,57.22,195.52,25.84,2000
+9647,11,E07000245,2,67.88,230.32,25.84,2000
+9648,11,E07000245,3,74.68,283.35,25.84,2000
+9649,11,E07000245,4,85.34,518.62,25.84,2000
+9650,12,E07000245,0,38.11,582.43,18.64,2000
+310,1,E09000033,1,68.85,164.54,25.84,1000
+636,1,E09000033,2,81.46,177.76,25.84,1000
+962,1,E09000033,3,88.25,188.59,25.84,1000
+1288,1,E09000033,4,106.66,211.41,25.84,1000
+2918,2,E09000033,0,74.06,358.82,25.84,1000
+1614,3,E09000033,1,61.09,134.53,18.64,2000
+1940,3,E09000033,2,66.92,157.36,25.84,1000
+2266,3,E09000033,3,74.68,180.17,25.84,1000
+2592,3,E09000033,4,87.29,294.28,25.84,2000
+3244,4,E09000033,0,63.17,420.87,18.64,2000
+3982,5,E09000033,1,68.85,474.87,25.84,1000
+4597,5,E09000033,2,81.46,684.16,25.84,2000
+5249,5,E09000033,3,88.25,1000.36,18.64,2000
+5934,5,E09000033,4,106.66,1083.58,25.84,2000
+3570,6,E09000033,0,74.06,2167.16,25.84,2000
+4196,7,E09000033,1,61.09,474.87,25.84,1000
+4697,7,E09000033,2,66.92,684.16,25.84,1000
+5349,7,E09000033,3,74.68,1000.36,25.84,1000
+5901,7,E09000033,4,87.29,1083.58,25.84,1000
+3896,8,E09000033,0,63.17,2167.16,25.84,1000
+6830,9,E09000033,1,68.85,684.29,25.84,1000
+7156,9,E09000033,2,81.46,985.87,25.84,1000
+7482,9,E09000033,3,88.25,1441.52,25.84,1000
+7808,9,E09000033,4,106.66,1561.44,25.84,1000
+8134,10,E09000033,0,74.06,2838.98,18.44,2000
+9651,11,E09000033,1,68.85,684.29,25.84,2000
+9652,11,E09000033,2,81.46,985.87,25.84,2000
+9653,11,E09000033,3,88.25,1441.52,25.84,2000
+9654,11,E09000033,4,106.66,1561.44,25.84,2000
+9655,12,E09000033,0,74.06,2838.98,18.64,2000
+8151,1,E06000064,1,54.32,192.07,25.84,1000
+8152,1,E06000064,2,62.07,226.41,25.84,1000
+8153,1,E06000064,3,68.85,256.08,25.84,1000
+8154,1,E06000064,4,75.65,398.2,25.84,1000
+8159,2,E06000064,0,58.82,398.2,25.84,1000
+8155,3,E06000064,1,45.57,447.18,18.44,2000
+8156,3,E06000064,2,56.25,192.07,25.84,1000
+8157,3,E06000064,3,61.09,226.41,25.84,1000
+8158,3,E06000064,4,58.19,256.08,25.84,1000
+8160,4,E06000064,0,34.85,447.18,18.44,2000
+8163,5,E06000064,1,54.32,176.4,25.84,1000
+8165,5,E06000064,2,62.07,285.36,18.44,2000
+8167,5,E06000064,3,68.85,153.95,25.84,1000
+8169,5,E06000064,4,75.65,254.12,25.84,1000
+8161,6,E06000064,0,58.82,124.06,25.84,1000
+8164,7,E06000064,1,45.57,254.12,25.84,1000
+8166,7,E06000064,2,56.25,124.06,25.84,1000
+8168,7,E06000064,3,61.09,176.4,25.84,1000
+8170,7,E06000064,4,58.19,285.36,18.44,2000
+8162,8,E06000064,0,34.85,153.95,25.84,1000
+8171,9,E06000064,1,54.32,254.18,25.84,2000
+8172,9,E06000064,2,62.07,254.18,25.84,2000
+8173,9,E06000064,3,68.85,366.19,25.84,2000
+8174,9,E06000064,4,75.65,366.19,25.84,2000
+8175,10,E06000064,0,58.82,178.76,18.64,2000
+9656,11,E06000064,1,54.32,254.18,25.84,2000
+9657,11,E06000064,2,62.07,254.18,25.84,2000
+9658,11,E06000064,3,68.85,366.19,25.84,2000
+9659,11,E06000064,4,75.65,366.19,25.84,2000
+9660,12,E06000064,0,58.82,178.76,18.64,2000
+312,1,E08000010,1,54.32,105.71,25.84,1000
+638,1,E08000010,2,62.07,121.33,18.64,2000
+964,1,E08000010,3,68.85,135.72,25.84,1000
+1290,1,E08000010,4,75.65,151.35,25.84,1000
+2920,2,E08000010,0,58.82,271.14,25.84,1000
+1616,3,E08000010,1,45.57,97.28,25.84,2000
+1942,3,E08000010,2,56.25,106.93,25.84,1000
+2268,3,E08000010,3,61.09,118.92,18.64,2000
+2594,3,E08000010,4,58.19,134.53,25.84,2000
+3246,4,E08000010,0,34.85,531.48,25.84,1000
+4387,5,E08000010,1,54.32,100.04,25.84,1000
+4957,5,E08000010,2,62.07,118.43,25.84,1000
+5600,5,E08000010,3,68.85,141.43,25.84,2000
+6348,5,E08000010,4,75.65,196.63,18.64,2000
+3572,6,E08000010,0,58.82,220.82,25.84,2000
+4499,7,E08000010,1,45.57,100.04,18.64,2000
+5095,7,E08000010,2,56.25,118.43,25.84,1000
+5775,7,E08000010,3,61.09,141.43,18.64,2000
+6399,7,E08000010,4,58.19,196.63,18.64,2000
+3898,8,E08000010,0,34.85,220.82,18.64,2000
+6832,9,E08000010,1,54.32,144.16,25.84,1000
+7158,9,E08000010,2,62.07,170.65,18.64,2000
+7484,9,E08000010,3,68.85,203.8,25.84,1000
+7810,9,E08000010,4,75.65,283.35,25.84,1000
+8136,10,E08000010,0,58.82,318.19,25.84,1000
+9661,11,E08000010,1,54.32,144.16,25.84,2000
+9662,11,E08000010,2,62.07,170.65,25.84,2000
+9663,11,E08000010,3,68.85,203.8,25.84,2000
+9664,11,E08000010,4,75.65,283.35,25.84,2000
+9665,12,E08000010,0,58.82,318.19,18.64,2000
+313,1,E06000054,1,51.41,121.33,25.84,1000
+639,1,E06000054,2,58.19,136.92,25.84,2000
+965,1,E06000054,3,64.98,159.75,25.84,1000
+1291,1,E06000054,4,74.68,178.95,18.64,2000
+2921,2,E06000054,0,57.1,258.85,18.64,2000
+1617,3,E06000054,1,49.46,100.89,25.84,2000
+1943,3,E06000054,2,57.22,114.11,25.84,1000
+2269,3,E06000054,3,64.98,123.71,25.84,1000
+2595,3,E06000054,4,77.58,147.74,25.84,2000
+3247,4,E06000054,0,57.1,129.41,25.84,1000
+4233,5,E06000054,1,51.41,135.68,18.64,2000
+4869,5,E06000054,2,58.19,167.88,25.84,1000
+5500,5,E06000054,3,64.98,208.12,25.84,1000
+6038,5,E06000054,4,74.68,317.35,25.84,1000
+3573,6,E06000054,0,57.1,352.54,25.84,2000
+3949,7,E06000054,1,49.46,135.68,18.64,2000
+5146,7,E06000054,2,57.22,167.88,25.84,1000
+5726,7,E06000054,3,64.98,208.12,25.84,1000
+6438,7,E06000054,4,77.58,317.35,25.84,1000
+3899,8,E06000054,0,57.1,352.54,25.84,1000
+6833,9,E06000054,1,51.41,195.52,25.84,1000
+7159,9,E06000054,2,58.19,241.91,25.84,1000
+7485,9,E06000054,3,64.98,299.91,25.84,1000
+7811,9,E06000054,4,74.68,457.3,18.64,2000
+8137,10,E06000054,0,57.1,507.99,25.84,1000
+9666,11,E06000054,1,51.41,195.52,25.84,2000
+9667,11,E06000054,2,58.19,241.91,25.84,2000
+9668,11,E06000054,3,64.98,299.91,25.84,2000
+9669,11,E06000054,4,74.68,457.3,25.84,2000
+9670,12,E06000054,0,57.1,507.99,18.44,2000
+314,1,E07000094,1,60.13,139.33,18.64,2000
+640,1,E07000094,2,74.68,165.75,25.84,2000
+966,1,E07000094,3,85.34,182.58,25.84,1000
+1292,1,E07000094,4,94.09,201.8,25.84,1000
+2922,2,E07000094,0,64.63,300.2,25.84,1000
+1618,3,E07000094,1,54.32,130.92,25.84,2000
+1944,3,E07000094,2,65.95,146.54,18.64,2000
+2270,3,E07000094,3,71.76,169.36,25.84,1000
+2596,3,E07000094,4,76.62,209,25.84,2000
+3248,4,E07000094,0,50.64,218.83,25.84,1000
+4044,5,E07000094,1,60.13,185.13,25.84,2000
+4659,5,E07000094,2,74.68,232.26,18.64,2000
+5311,5,E07000094,3,85.34,304.71,25.84,1000
+5996,5,E07000094,4,94.09,456.49,25.84,1000
+3574,6,E07000094,0,64.63,507.07,18.64,2000
+4111,7,E07000094,1,54.32,185.13,25.84,1000
+4806,7,E07000094,2,65.95,232.26,25.84,2000
+5411,7,E07000094,3,71.76,304.71,25.84,1000
+6100,7,E07000094,4,76.62,456.49,25.84,2000
+3900,8,E07000094,0,50.64,507.07,25.84,1000
+6834,9,E07000094,1,60.13,266.78,18.64,2000
+7160,9,E07000094,2,74.68,334.7,25.84,1000
+7486,9,E07000094,3,85.34,439.08,25.84,1000
+7812,9,E07000094,4,94.09,657.81,25.84,2000
+8138,10,E07000094,0,65.34,730.68,25.84,1000
+9671,11,E07000094,1,60.13,266.78,25.84,2000
+9672,11,E07000094,2,74.68,334.7,25.84,2000
+9673,11,E07000094,3,85.34,439.08,25.84,2000
+9674,11,E07000094,4,94.09,657.81,25.84,2000
+9675,12,E07000094,0,65.34,730.68,18.64,2000
+315,1,E06000040,1,60.13,139.33,25.84,1000
+641,1,E06000040,2,74.68,165.75,25.84,2000
+967,1,E06000040,3,85.34,182.58,18.64,2000
+1293,1,E06000040,4,94.09,201.8,25.84,1000
+2923,2,E06000040,0,64.63,300.2,25.84,1000
+1619,3,E06000040,1,54.32,130.92,25.84,2000
+1945,3,E06000040,2,65.95,146.54,25.84,1000
+2271,3,E06000040,3,71.76,169.36,25.84,1000
+2597,3,E06000040,4,76.62,209,18.64,2000
+3249,4,E06000040,0,50.64,218.83,25.84,1000
+4045,5,E06000040,1,60.13,215.03,25.84,2000
+4660,5,E06000040,2,74.68,304.71,25.84,1000
+5312,5,E06000040,3,85.34,371.41,18.64,2000
+5997,5,E06000040,4,94.09,826.73,25.84,1000
+3575,6,E06000040,0,64.63,918.37,25.84,1000
+4112,7,E06000040,1,54.32,215.03,25.84,1000
+4807,7,E06000040,2,65.95,304.71,25.84,2000
+5412,7,E06000040,3,71.76,371.41,25.84,1000
+6101,7,E06000040,4,76.62,826.73,25.84,2000
+3901,8,E06000040,0,50.64,918.37,25.84,1000
+6835,9,E06000040,1,60.13,309.88,25.84,2000
+7161,9,E06000040,2,74.68,439.08,25.84,1000
+7487,9,E06000040,3,85.34,535.2,18.64,2000
+7813,9,E06000040,4,94.09,1191.32,25.84,2000
+8139,10,E06000040,0,65.34,1323.38,25.84,1000
+9676,11,E06000040,1,60.13,309.88,25.84,2000
+9677,11,E06000040,2,74.68,439.08,25.84,2000
+9678,11,E06000040,3,85.34,535.2,25.84,2000
+9679,11,E06000040,4,94.09,1191.32,25.84,2000
+9680,12,E06000040,0,65.34,1323.38,18.64,2000
+316,1,E08000015,1,54.32,105.71,25.84,1000
+642,1,E08000015,2,62.07,121.33,25.84,2000
+968,1,E08000015,3,68.85,135.72,25.84,1000
+1294,1,E08000015,4,75.65,151.35,25.84,1000
+2924,2,E08000015,0,58.18,268.18,25.84,1000
+1620,3,E08000015,1,45.57,97.28,18.64,2000
+1946,3,E08000015,2,56.25,106.93,25.84,1000
+2272,3,E08000015,3,61.09,118.92,25.84,1000
+2598,3,E08000015,4,58.19,134.53,25.84,1000
+3250,4,E08000015,0,34.47,525.7,18.64,2000
+4388,5,E08000015,1,54.32,111.54,25.84,1000
+4958,5,E08000015,2,62.07,135.68,25.84,1000
+5601,5,E08000015,3,68.85,159.83,18.64,2000
+6349,5,E08000015,4,75.65,208.12,25.84,1000
+3576,6,E08000015,0,58.18,231.18,25.84,1000
+4500,7,E08000015,1,45.57,111.54,25.84,1000
+5096,7,E08000015,2,56.25,135.68,25.84,1000
+5776,7,E08000015,3,61.09,159.83,25.84,1000
+6400,7,E08000015,4,58.19,208.12,25.84,1000
+3902,8,E08000015,0,34.47,231.18,25.84,1000
+6836,9,E08000015,1,54.32,160.73,25.84,2000
+7162,9,E08000015,2,62.07,195.52,25.84,1000
+7488,9,E08000015,3,68.85,230.32,25.84,1000
+7814,9,E08000015,4,75.65,299.91,25.84,2000
+8140,10,E08000015,0,58.18,333.14,18.44,2000
+9681,11,E08000015,1,54.32,160.73,25.84,2000
+9682,11,E08000015,2,62.07,195.52,25.84,2000
+9683,11,E08000015,3,68.85,230.32,25.84,2000
+9684,11,E08000015,4,75.65,299.91,25.84,2000
+9685,12,E08000015,0,58.18,333.14,18.44,2000
+317,1,E07000217,1,60.13,139.33,25.84,1000
+643,1,E07000217,2,74.68,165.75,18.64,2000
+969,1,E07000217,3,85.34,182.58,25.84,1000
+1295,1,E07000217,4,94.09,201.8,25.84,1000
+2925,2,E07000217,0,64.63,300.2,25.84,1000
+1621,3,E07000217,1,54.32,130.92,25.84,1000
+1947,3,E07000217,2,65.95,146.54,25.84,1000
+2273,3,E07000217,3,71.76,169.36,18.64,2000
+2599,3,E07000217,4,76.62,209,25.84,1000
+3251,4,E07000217,0,50.64,218.83,25.84,1000
+4046,5,E07000217,1,60.13,190.87,25.84,2000
+4661,5,E07000217,2,74.68,269.07,25.84,1000
+5313,5,E07000217,3,85.34,324.28,25.84,1000
+5998,5,E07000217,4,94.09,730.15,25.84,1000
+3577,6,E07000217,0,64.63,811.07,25.84,1000
+4113,7,E07000217,1,54.32,190.87,25.84,1000
+4808,7,E07000217,2,65.95,269.07,25.84,2000
+5413,7,E07000217,3,71.76,324.28,25.84,1000
+6102,7,E07000217,4,76.62,730.15,25.84,2000
+3903,8,E07000217,0,50.64,811.07,18.64,2000
+6837,9,E07000217,1,60.13,275.06,25.84,2000
+7163,9,E07000217,2,74.68,387.71,18.64,2000
+7489,9,E07000217,3,85.34,467.29,25.84,1000
+7815,9,E07000217,4,94.09,1052.15,25.84,2000
+8141,10,E07000217,0,65.34,1168.75,25.84,1000
+9686,11,E07000217,1,60.13,275.06,25.84,2000
+9687,11,E07000217,2,74.68,387.71,25.84,2000
+9688,11,E07000217,3,85.34,467.29,25.84,2000
+9689,11,E07000217,4,94.09,1052.15,25.84,2000
+9690,12,E07000217,0,65.34,1168.75,18.64,2000
+318,1,E06000041,1,60.13,139.33,25.84,1000
+644,1,E06000041,2,74.68,165.75,25.84,1000
+970,1,E06000041,3,85.34,182.58,25.84,1000
+1296,1,E06000041,4,94.09,201.8,18.64,2000
+2926,2,E06000041,0,64.63,300.2,18.64,2000
+1622,3,E06000041,1,54.32,130.92,25.84,1000
+1948,3,E06000041,2,65.95,146.54,25.84,1000
+2274,3,E06000041,3,71.76,169.36,25.84,1000
+2600,3,E06000041,4,76.62,209,25.84,1000
+3252,4,E06000041,0,50.64,218.83,25.84,1000
+4047,5,E06000041,1,60.13,178.23,18.64,2000
+4662,5,E06000041,2,74.68,223.09,25.84,1000
+5314,5,E06000041,3,85.34,292.07,25.84,1000
+5999,5,E06000041,4,94.09,462.24,25.84,1000
+3578,6,E06000041,0,64.63,513.47,25.84,1000
+4114,7,E06000041,1,54.32,178.23,25.84,1000
+4809,7,E06000041,2,65.95,223.09,18.64,2000
+5414,7,E06000041,3,71.76,292.07,25.84,1000
+6103,7,E06000041,4,76.62,462.24,25.84,2000
+3904,8,E06000041,0,50.64,513.47,25.84,2000
+6838,9,E06000041,1,60.13,256.83,25.84,2000
+7164,9,E06000041,2,74.68,321.48,25.84,1000
+7490,9,E06000041,3,85.34,420.86,25.84,1000
+7816,9,E06000041,4,94.09,666.1,18.64,2000
+8142,10,E06000041,0,64.63,739.91,25.84,1000
+9691,11,E06000041,1,60.13,256.83,25.84,2000
+9692,11,E06000041,2,74.68,321.48,25.84,2000
+9693,11,E06000041,3,85.34,420.86,25.84,2000
+9694,11,E06000041,4,94.09,666.1,25.84,2000
+9695,12,E06000041,0,64.63,739.91,18.44,2000
+319,1,E08000031,1,55.28,111.71,18.64,2000
+645,1,E08000031,2,61.09,132.12,25.84,1000
+971,1,E08000031,3,72.73,150.14,25.84,1000
+1297,1,E08000031,4,84.37,182.58,25.84,1000
+2927,2,E08000031,0,40.94,274.86,25.84,2000
+1623,3,E08000031,1,48.48,99.69,25.84,1000
+1949,3,E08000031,2,52.38,106.93,18.64,2000
+2275,3,E08000031,3,63.04,117.72,25.84,1000
+2601,3,E08000031,4,71.76,144.14,25.84,1000
+3253,4,E08000031,0,48.47,120.09,25.84,1000
+4307,5,E08000031,1,55.28,105.79,25.84,1000
+4917,5,E08000031,2,61.09,129.92,25.84,1000
+5548,5,E08000031,3,72.73,146.04,25.84,1000
+6200,5,E08000031,4,84.37,185.13,25.84,1000
+3579,6,E08000031,0,40.94,205.65,18.64,2000
+4528,7,E08000031,1,48.48,105.79,25.84,1000
+5213,7,E08000031,2,52.38,129.92,25.84,1000
+5804,7,E08000031,3,63.04,146.04,25.84,1000
+6465,7,E08000031,4,71.76,185.13,18.64,2000
+3905,8,E08000031,0,48.47,205.65,25.84,2000
+6839,9,E08000031,1,55.28,152.44,18.64,2000
+7165,9,E08000031,2,61.09,187.23,25.84,1000
+7491,9,E08000031,3,72.73,210.44,25.84,1000
+7817,9,E08000031,4,84.37,266.78,25.84,1000
+8143,10,E08000031,0,40.94,296.35,25.84,1000
+9696,11,E08000031,1,55.28,152.44,25.84,2000
+9697,11,E08000031,2,61.09,187.23,25.84,2000
+9698,11,E08000031,3,72.73,210.44,25.84,2000
+9699,11,E08000031,4,84.37,266.78,25.84,2000
+9700,12,E08000031,0,40.94,296.35,18.44,2000
+320,1,E07000237,1,55.28,111.71,25.84,1000
+646,1,E07000237,2,61.09,132.12,25.84,1000
+972,1,E07000237,3,72.73,150.14,18.64,2000
+1298,1,E07000237,4,84.37,182.58,25.84,1000
+2928,2,E07000237,0,40.94,274.86,25.84,2000
+1624,3,E07000237,1,48.48,99.69,25.84,1000
+1950,3,E07000237,2,52.38,106.93,25.84,2000
+2276,3,E07000237,3,63.04,117.72,25.84,1000
+2602,3,E07000237,4,71.76,144.14,18.64,2000
+3254,4,E07000237,0,48.47,120.09,25.84,1000
+4308,5,E07000237,1,55.28,124.18,25.84,1000
+4918,5,E07000237,2,61.09,154.07,25.84,1000
+5549,5,E07000237,3,72.73,178.23,25.84,1000
+6201,5,E07000237,4,84.37,232.26,25.84,1000
+3580,6,E07000237,0,40.94,258,25.84,1000
+4529,7,E07000237,1,48.48,124.18,18.64,2000
+5214,7,E07000237,2,52.38,154.07,18.64,2000
+5805,7,E07000237,3,63.04,178.23,18.64,2000
+6466,7,E07000237,4,71.76,232.26,25.84,1000
+3906,8,E07000237,0,48.47,258,25.84,2000
+6840,9,E07000237,1,55.28,178.94,25.84,1000
+7166,9,E07000237,2,61.09,222,25.84,1000
+7492,9,E07000237,3,72.73,256.83,18.64,2000
+7818,9,E07000237,4,84.37,334.7,25.84,1000
+8144,10,E07000237,0,40.94,371.78,25.84,1000
+9701,11,E07000237,1,55.28,178.94,25.84,2000
+9702,11,E07000237,2,61.09,222,25.84,2000
+9703,11,E07000237,3,72.73,256.83,25.84,2000
+9704,11,E07000237,4,84.37,334.7,25.84,2000
+9705,12,E07000237,0,40.94,371.78,18.44,2000
+321,1,E07000229,1,60.13,139.33,25.84,1000
+647,1,E07000229,2,74.68,165.75,25.84,1000
+973,1,E07000229,3,85.34,182.58,25.84,2000
+1299,1,E07000229,4,94.09,201.8,25.84,1000
+2929,2,E07000229,0,64.63,300.2,25.84,2000
+1625,3,E07000229,1,54.32,130.92,18.64,2000
+1951,3,E07000229,2,65.95,146.54,25.84,2000
+2277,3,E07000229,3,71.76,169.36,25.84,1000
+2603,3,E07000229,4,76.62,209,25.84,1000
+3255,4,E07000229,0,50.64,218.83,18.64,2000
+4048,5,E07000229,1,60.13,141.43,25.84,1000
+4663,5,E07000229,2,74.68,185.13,25.84,1000
+5315,5,E07000229,3,85.34,232.26,25.84,1000
+6000,5,E07000229,4,94.09,316.2,18.64,2000
+3581,6,E07000229,0,64.63,349.98,25.84,1000
+4115,7,E07000229,1,54.32,141.43,18.64,2000
+4810,7,E07000229,2,65.95,185.13,25.84,1000
+5415,7,E07000229,3,71.76,232.26,18.64,2000
+6104,7,E07000229,4,76.62,316.2,18.64,2000
+3907,8,E07000229,0,50.64,349.98,25.84,2000
+6841,9,E07000229,1,60.13,203.8,25.84,1000
+7167,9,E07000229,2,74.68,266.78,25.84,1000
+7493,9,E07000229,3,85.34,334.7,25.84,1000
+7819,9,E07000229,4,94.09,455.65,25.84,1000
+8145,10,E07000229,0,65.34,504.33,18.44,2000
+9706,11,E07000229,1,60.13,203.8,25.84,2000
+9707,11,E07000229,2,74.68,266.78,25.84,2000
+9708,11,E07000229,3,85.34,334.7,25.84,2000
+9709,11,E07000229,4,94.09,455.65,25.84,2000
+9710,12,E07000229,0,65.34,504.33,18.64,2000
+322,1,E07000238,1,55.28,111.71,25.84,1000
+648,1,E07000238,2,61.09,132.12,18.64,2000
+974,1,E07000238,3,72.73,150.14,25.84,2000
+1300,1,E07000238,4,84.37,182.58,25.84,1000
+2930,2,E07000238,0,40.94,274.86,25.84,2000
+1626,3,E07000238,1,48.48,99.69,25.84,1000
+1952,3,E07000238,2,52.38,106.93,25.84,2000
+2278,3,E07000238,3,63.04,117.72,18.64,2000
+2604,3,E07000238,4,71.76,144.14,25.84,1000
+3256,4,E07000238,0,48.47,120.09,25.84,1000
+4309,5,E07000238,1,55.28,123.02,25.84,1000
+4919,5,E07000238,2,61.09,149.48,18.64,2000
+5550,5,E07000238,3,72.73,185.13,18.64,2000
+6202,5,E07000238,4,84.37,269.07,25.84,1000
+3582,6,E07000238,0,40.94,298.88,25.84,1000
+4530,7,E07000238,1,48.48,123.02,25.84,1000
+5215,7,E07000238,2,52.38,149.48,25.84,2000
+5806,7,E07000238,3,63.04,185.13,25.84,1000
+6467,7,E07000238,4,71.76,269.07,25.84,1000
+3908,8,E07000238,0,48.47,298.88,18.64,2000
+6842,9,E07000238,1,55.28,177.26,25.84,1000
+7168,9,E07000238,2,61.09,215.4,18.64,2000
+7494,9,E07000238,3,72.73,266.78,25.84,1000
+7820,9,E07000238,4,84.37,387.71,25.84,1000
+8146,10,E07000238,0,41.39,430.69,25.84,2000
+9711,11,E07000238,1,55.28,177.26,25.84,2000
+9712,11,E07000238,2,61.09,215.4,25.84,2000
+9713,11,E07000238,3,72.73,266.78,25.84,2000
+9714,11,E07000238,4,84.37,387.71,25.84,2000
+9715,12,E07000238,0,41.39,430.69,18.64,2000
+324,1,E07000128,1,54.32,105.71,18.64,2000
+650,1,E07000128,2,62.07,121.33,25.84,1000
+976,1,E07000128,3,68.85,135.72,25.84,2000
+1302,1,E07000128,4,75.65,151.35,25.84,1000
+2932,2,E07000128,0,58.18,268.18,25.84,1000
+1628,3,E07000128,1,45.57,97.28,25.84,1000
+1954,3,E07000128,2,56.25,106.93,18.64,2000
+2280,3,E07000128,3,61.09,118.92,25.84,1000
+2606,3,E07000128,4,58.19,134.53,25.84,1000
+3258,4,E07000128,0,34.47,525.7,25.84,1000
+4389,5,E07000128,1,54.32,111.54,25.84,1000
+4959,5,E07000128,2,62.07,143.72,25.84,1000
+5602,5,E07000128,3,68.85,159.83,25.84,1000
+6350,5,E07000128,4,75.65,208.12,25.84,1000
+3584,6,E07000128,0,58.18,231.18,18.64,2000
+4501,7,E07000128,1,45.57,111.54,25.84,1000
+5097,7,E07000128,2,56.25,143.72,25.84,1000
+5777,7,E07000128,3,61.09,159.83,25.84,1000
+6401,7,E07000128,4,58.19,208.12,25.84,1000
+3910,8,E07000128,0,34.47,231.18,25.84,1000
+6844,9,E07000128,1,54.32,160.73,18.64,2000
+7170,9,E07000128,2,62.07,207.11,25.84,2000
+7496,9,E07000128,3,68.85,230.32,25.84,1000
+7822,9,E07000128,4,75.65,299.91,25.84,1000
+8148,10,E07000128,0,58.18,333.14,25.84,2000
+9716,11,E07000128,1,54.32,160.73,25.84,2000
+9717,11,E07000128,2,62.07,207.11,25.84,2000
+9718,11,E07000128,3,68.85,230.32,25.84,2000
+9719,11,E07000128,4,75.65,299.91,25.84,2000
+9720,12,E07000128,0,58.18,333.14,18.44,2000
+325,1,E07000239,1,55.28,111.71,25.84,1000
+651,1,E07000239,2,61.09,132.12,25.84,1000
+977,1,E07000239,3,72.73,150.14,18.64,2000
+1303,1,E07000239,4,84.37,182.58,25.84,1000
+2933,2,E07000239,0,40.94,274.86,25.84,1000
+1629,3,E07000239,1,48.48,99.69,25.84,1000
+1955,3,E07000239,2,52.38,106.93,25.84,1000
+2281,3,E07000239,3,63.04,117.72,25.84,1000
+2607,3,E07000239,4,71.76,144.14,18.64,2000
+3259,4,E07000239,0,48.47,120.09,25.84,1000
+4310,5,E07000239,1,55.28,105.79,18.64,2000
+4920,5,E07000239,2,61.09,135.68,25.84,1000
+5551,5,E07000239,3,72.73,154.07,25.84,1000
+6203,5,E07000239,4,84.37,208.12,18.64,2000
+3585,6,E07000239,0,40.94,231.18,25.84,1000
+4531,7,E07000239,1,48.48,105.79,25.84,1000
+5216,7,E07000239,2,52.38,135.68,25.84,2000
+5807,7,E07000239,3,63.04,154.07,25.84,1000
+6468,7,E07000239,4,71.76,208.12,25.84,1000
+3911,8,E07000239,0,48.47,231.18,25.84,1000
+6845,9,E07000239,1,55.28,152.44,25.84,1000
+7171,9,E07000239,2,61.09,195.52,25.84,2000
+7497,9,E07000239,3,72.73,222,18.64,2000
+7823,9,E07000239,4,84.37,299.91,25.84,1000
+8149,10,E07000239,0,41.39,333.14,25.84,2000
+9721,11,E07000239,1,55.28,152.44,25.84,2000
+9722,11,E07000239,2,61.09,195.52,25.84,2000
+9723,11,E07000239,3,72.73,222,25.84,2000
+9724,11,E07000239,4,84.37,299.91,25.84,2000
+9725,12,E07000239,0,41.39,333.14,18.64,2000
+326,1,E06000014,1,53.35,103.31,25.84,1000
+652,1,E06000014,2,61.09,122.52,25.84,1000
+978,1,E06000014,3,65.95,135.72,25.84,1000
+1304,1,E06000014,4,76.62,163.35,25.84,1000
+2934,2,E06000014,0,54.95,262.83,25.84,1000
+1630,3,E06000014,1,48.48,92.49,18.64,2000
+1956,3,E06000014,2,55.28,127.31,25.84,1000
+2282,3,E06000014,3,59.16,117.72,25.84,1000
+2608,3,E06000014,4,66.92,136.92,25.84,1000
+3260,4,E06000014,0,53.87,180.12,18.64,2000
+4410,5,E06000014,1,53.35,146.04,25.84,1000
+4890,5,E06000014,2,61.09,170.17,25.84,1000
+5521,5,E06000014,3,65.95,219.63,25.84,1000
+6126,5,E06000014,4,76.62,380.61,18.64,2000
+3586,6,E06000014,0,54.95,422.79,25.84,1000
+4564,7,E06000014,1,48.48,146.04,25.84,1000
+4832,7,E06000014,2,55.28,170.17,25.84,1000
+5868,7,E06000014,3,59.16,219.63,25.84,1000
+6224,7,E06000014,4,66.92,380.61,25.84,1000
+3912,8,E06000014,0,53.87,422.79,25.84,1000
+6846,9,E06000014,1,53.35,210.44,25.84,1000
+7172,9,E06000014,2,55.28,245.2,25.84,2000
+7498,9,E06000014,3,65.95,316.49,25.84,1000
+7824,9,E06000014,4,76.62,548.46,25.84,1000
+8150,10,E06000014,0,54.95,609.23,18.64,2000
+9726,11,E06000014,1,53.35,210.44,25.84,2000
+9727,11,E06000014,2,55.28,245.2,25.84,2000
+9728,11,E06000014,3,65.95,316.49,25.84,2000
+9729,11,E06000014,4,76.62,548.46,25.84,2000
+9730,12,E06000014,0,54.95,609.23,18.44,2000
diff --git a/db/migrate/20260113143404_add_sex_registered_at_birth_to_sales_logs.rb b/db/migrate/20260113143404_add_sex_registered_at_birth_to_sales_logs.rb
new file mode 100644
index 000000000..27273b566
--- /dev/null
+++ b/db/migrate/20260113143404_add_sex_registered_at_birth_to_sales_logs.rb
@@ -0,0 +1,12 @@
+class AddSexRegisteredAtBirthToSalesLogs < ActiveRecord::Migration[7.2]
+ def change
+ change_table :sales_logs, bulk: true do |t|
+ t.column :sexrab1, :string
+ t.column :sexrab2, :string
+ t.column :sexrab3, :string
+ t.column :sexrab4, :string
+ t.column :sexrab5, :string
+ t.column :sexrab6, :string
+ end
+ end
+end
diff --git a/db/migrate/20260128121417_add_sex_registered_at_birth_to_lettings_logs.rb b/db/migrate/20260128121417_add_sex_registered_at_birth_to_lettings_logs.rb
new file mode 100644
index 000000000..470cbdc70
--- /dev/null
+++ b/db/migrate/20260128121417_add_sex_registered_at_birth_to_lettings_logs.rb
@@ -0,0 +1,14 @@
+class AddSexRegisteredAtBirthToLettingsLogs < ActiveRecord::Migration[7.2]
+ def change
+ change_table :lettings_logs, bulk: true do |t|
+ t.column :sexrab1, :string
+ t.column :sexrab2, :string
+ t.column :sexrab3, :string
+ t.column :sexrab4, :string
+ t.column :sexrab5, :string
+ t.column :sexrab6, :string
+ t.column :sexrab7, :string
+ t.column :sexrab8, :string
+ end
+ end
+end
diff --git a/db/schema.rb b/db/schema.rb
index c7325e491..6fd081249 100644
--- a/db/schema.rb
+++ b/db/schema.rb
@@ -10,7 +10,7 @@
#
# It's strongly recommended that you check this file into your version control system.
-ActiveRecord::Schema[7.2].define(version: 2026_01_23_150201) do
+ActiveRecord::Schema[7.2].define(version: 2026_01_28_121417) do
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"
@@ -376,6 +376,14 @@ ActiveRecord::Schema[7.2].define(version: 2026_01_23_150201) do
t.boolean "manual_address_entry_selected", default: false
t.integer "referral_type"
t.integer "working_situation_illness_check"
+ t.string "sexrab1"
+ t.string "sexrab2"
+ t.string "sexrab3"
+ t.string "sexrab4"
+ t.string "sexrab5"
+ t.string "sexrab6"
+ t.string "sexrab7"
+ t.string "sexrab8"
t.index ["assigned_to_id"], name: "index_lettings_logs_on_assigned_to_id"
t.index ["bulk_upload_id"], name: "index_lettings_logs_on_bulk_upload_id"
t.index ["created_by_id"], name: "index_lettings_logs_on_created_by_id"
@@ -788,6 +796,12 @@ ActiveRecord::Schema[7.2].define(version: 2026_01_23_150201) do
t.datetime "lasttransaction"
t.datetime "initialpurchase"
t.boolean "manual_address_entry_selected", default: false
+ t.string "sexrab1"
+ t.string "sexrab2"
+ t.string "sexrab3"
+ t.string "sexrab4"
+ t.string "sexrab5"
+ t.string "sexrab6"
t.index ["assigned_to_id"], name: "index_sales_logs_on_assigned_to_id"
t.index ["bulk_upload_id"], name: "index_sales_logs_on_bulk_upload_id"
t.index ["created_by_id"], name: "index_sales_logs_on_created_by_id"
diff --git a/docs/Gemfile.lock b/docs/Gemfile.lock
index 174ecda02..5412cb0be 100644
--- a/docs/Gemfile.lock
+++ b/docs/Gemfile.lock
@@ -24,10 +24,12 @@ GEM
ffi (>= 1.15.0)
eventmachine (1.2.7)
execjs (2.8.1)
- faraday (2.7.4)
- faraday-net_http (>= 2.0, < 3.1)
- ruby2_keywords (>= 0.0.4)
- faraday-net_http (3.0.2)
+ faraday (2.14.1)
+ faraday-net_http (>= 2.0, < 3.5)
+ json
+ logger
+ faraday-net_http (3.4.2)
+ net-http (~> 0.5)
ffi (1.15.5)
forwardable-extended (2.6.0)
gemoji (3.0.1)
@@ -196,6 +198,7 @@ GEM
gemoji (~> 3.0)
html-pipeline (~> 2.2)
jekyll (>= 3.0, < 5.0)
+ json (2.18.1)
kramdown (2.3.2)
rexml
kramdown-parser-gfm (1.1.0)
@@ -204,12 +207,15 @@ GEM
listen (3.8.0)
rb-fsevent (~> 0.10, >= 0.10.3)
rb-inotify (~> 0.9, >= 0.9.10)
+ logger (1.7.0)
mercenary (0.3.6)
minima (2.5.1)
jekyll (>= 3.5, < 5.0)
jekyll-feed (~> 0.9)
jekyll-seo-tag (~> 2.1)
minitest (5.19.0)
+ net-http (0.9.1)
+ uri (>= 0.11.1)
nokogiri (1.18.9-arm64-darwin)
racc (~> 1.4)
nokogiri (1.18.9-x86_64-darwin)
@@ -228,7 +234,6 @@ GEM
ffi (~> 1.0)
rexml (3.4.2)
rouge (3.26.0)
- ruby2_keywords (0.0.5)
rubyzip (2.3.2)
safe_yaml (1.0.5)
sass (3.7.4)
@@ -251,6 +256,7 @@ GEM
unf_ext
unf_ext (0.0.8.2)
unicode-display_width (1.8.0)
+ uri (1.1.1)
webrick (1.8.2)
PLATFORMS
diff --git a/spec/factories/lettings_log.rb b/spec/factories/lettings_log.rb
index 62cc94a14..536511805 100644
--- a/spec/factories/lettings_log.rb
+++ b/spec/factories/lettings_log.rb
@@ -40,6 +40,7 @@ FactoryBot.define do
declaration { 1 }
age1_known { 0 }
age1 { 18 }
+ sexrab1 { "M" }
sex1 { "M" }
hhmemb { 1 }
ecstat1 { 0 }
@@ -58,6 +59,7 @@ FactoryBot.define do
tenancycode { Faker::Name.initials(number: 10) }
age1_known { 0 }
age1 { Faker::Number.within(range: 25..45) }
+ sexrab1 { %w[F M R].sample }
sex1 { %w[F M X R].sample }
ethnic_group { 0 }
ethnic { 2 }
@@ -69,6 +71,7 @@ FactoryBot.define do
age2_known { 0 }
details_known_2 { 0 }
age2 { Faker::Number.within(range: 25..45) }
+ sexrab2 { %w[F M R].sample }
sex2 { %w[F M X R].sample }
ecstat2 { 6 }
homeless { 1 }
diff --git a/spec/factories/sales_log.rb b/spec/factories/sales_log.rb
index a2e3f7d4c..b98cc6f75 100644
--- a/spec/factories/sales_log.rb
+++ b/spec/factories/sales_log.rb
@@ -64,6 +64,7 @@ FactoryBot.define do
saledate_today
age1_known { 1 }
age1 { 20 }
+ sexrab1 { "F" }
sex1 { "F" }
ecstat1 { 1 }
postcode_full { "A1 1AA" }
@@ -83,6 +84,7 @@ FactoryBot.define do
privacynotice { 1 }
age1_known { 0 }
age1 { Faker::Number.within(range: 27..45) }
+ sexrab1 { %w[F M R].sample }
sex1 { %w[F M X R].sample }
national { 18 }
buy1livein { 1 }
@@ -93,6 +95,7 @@ FactoryBot.define do
builtype { 1 }
ethnic { 3 }
ethnic_group { 17 }
+ sexrab2 { %w[F M R].sample }
sex2 { "X" }
buy2livein { "1" }
ecstat1 { "1" }
@@ -125,9 +128,13 @@ FactoryBot.define do
savingsnk { 1 }
prevown { 1 }
prevshared { 2 }
+ sexrab3 { %w[F M R].sample }
sex3 { %w[F M X R].sample }
+ sexrab4 { %w[F M R].sample }
sex4 { %w[F M X R].sample }
+ sexrab5 { %w[F M R].sample }
sex5 { %w[F M X R].sample }
+ sexrab6 { %w[F M R].sample }
sex6 { %w[F M X R].sample }
mortgage { 20_000 }
ecstat3 { 9 }
@@ -280,6 +287,7 @@ FactoryBot.define do
privacynotice { 1 }
age1_known { 0 }
age1 { 27 }
+ sexrab1 { "F" }
sex1 { "F" }
national { 18 }
buy1livein { 1 }
@@ -290,6 +298,7 @@ FactoryBot.define do
builtype { 1 }
ethnic { 3 }
ethnic_group { 17 }
+ sexrab2 { "X" }
sex2 { "X" }
buy2livein { "1" }
ecstat1 { "1" }
@@ -322,9 +331,13 @@ FactoryBot.define do
savingsnk { 1 }
prevown { 1 }
prevshared { 2 }
+ sexrab3 { "F" }
sex3 { "F" }
+ sexrab4 { "X" }
sex4 { "X" }
+ sexrab5 { "M" }
sex5 { "M" }
+ sexrab6 { "X" }
sex6 { "X" }
mortgage { 20_000 }
ecstat3 { 9 }
diff --git a/spec/fixtures/exports/general_needs_log_26_27.xml b/spec/fixtures/exports/general_needs_log_26_27.xml
index cc42c8f9b..71b334a4b 100644
--- a/spec/fixtures/exports/general_needs_log_26_27.xml
+++ b/spec/fixtures/exports/general_needs_log_26_27.xml
@@ -4,30 +4,38 @@
2
BZ737
35
+ F
F
2
6
0
2
32
+ M
M
6
+
+
+
+
+
+
1
diff --git a/spec/fixtures/files/2026_27_lettings_bulk_upload.csv b/spec/fixtures/files/2026_27_lettings_bulk_upload.csv
index a3ee5cfc1..7acef99ae 100644
--- a/spec/fixtures/files/2026_27_lettings_bulk_upload.csv
+++ b/spec/fixtures/files/2026_27_lettings_bulk_upload.csv
@@ -1,26 +1,26 @@
-Section,Setting up this lettings log,,,,,,,,,,,,,,,Property information,,,,,,,,,,,,,,,,,,,,,Tenancy information,,,,,Household characteristics,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Household needs,,,,,,,,,,,,,,,,,,,,,Household situation,,,,,,,,,,,,,,,,,,,,,"Income, benefits and outgoings",,,,,,,,,,,,
+Section,Setting up this lettings log,,,,,,,,,,,,,,,Property information,,,,,,,,,,,,,,,,,,,,,Tenancy information,,,,,Household characteristics,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Household needs,,,,,,,,,,,,,,,,,,,,,Household situation,,,,,,,,,,,,,,,,,,,,,"Income, benefits and outgoings",,,,,,,,,,,,,,,,,,,,
Question,Which organisation owns this property?,Which organisation manages this letting?,What is the CORE username of the account this letting log should be assigned to? ,What is the needs type?,What scheme does this letting belong to?,Which location is this letting for?,Is this letting a renewal of social housing to the same tenant in the same property?,What is the tenancy start date? - day DD,What is the tenancy start date? - month MM,What is the tenancy start date? - year YY,What is the rent type?,Which 'Other' type of Intermediate Rent is this letting?,What is the tenant code?,What is the property reference?,Has the tenant seen or been given access to the MHCLG privacy notice?,What is the reason for the property being vacant?,What type was the property most recently let as?,"If known, provide this property’s UPRN",Address Line 1,Address Line 2,Town or city,County,Part 1 of the property's postcode,Part 2 of the property's postcode,What is the property's local authority?,What type of unit is the property?,Which type of building is the property?,Is the property built or adapted to wheelchair-user standards?,How many bedrooms does the property have?,What is the void date? - day DD,What is the void date? - month MM,What is the void date? - year YY,What date were any major repairs completed on? - day DD,What date were any major repairs completed on? - month MM,What date were any major repairs completed on? - year YY,Is this property older people's housing?,Is this a joint tenancy?,Is this a starter tenancy?,What is the type of tenancy?,"If 'Other', what is the type of tenancy?",What is the length of the fixed-term tenancy to the nearest year?,What is the lead tenant’s age?,Which of these best describes the lead tenant’s gender identity? ,Which of these best describes the lead tenant's ethnic background?,What is the lead tenant’s nationality?,Which of these best describes the lead tenant’s working situation?,Is person 2 the partner of the lead tenant?,What is person 2's age?,Which of these best describes person 2's gender identity?,Which of these best describes person 2's working situation?,Is person 3 the partner of the lead tenant?,What is person 3's age?,Which of these best describes person 3's gender identity?,Which of these best describes person 3's working situation?,Is person 4 the partner of the lead tenant?,What is person 4's age?,Which of these best describes person 4's gender identity?,Which of these best describes person 4's working situation?,Is person 5 the partner of the lead tenant?,What is person 5's age?,Which of these best describes person 5's gender identity?,Which of these best describes person 5's working situation?,Is person 6 the partner of the lead tenant?,What is person 6's age?,Which of these best describes person 6's gender identity?,Which of these best describes person 6's working situation?,Is person 7 the partner of the lead tenant?,What is person 7's age?,Which of these best describes person 7's gender identity?,Which of these best describes person 7's working situation?,Is person 8 the partner of the lead tenant?,What is person 8's age?,Which of these best describes person 8's gender identity?,Which of these best describes person 8's working situation?,Does anybody in the household have links to the UK armed forces?,Is this person still serving in the UK armed forces?,Was this person seriously injured or ill as a result of serving in the UK armed forces?,Is anybody in the household pregnant?,"Disabled access needs
-
+
a) Fully wheelchair-accessible housing","Disabled access needs
-
+
b) Wheelchair access to essential rooms","Disabled access needs
-
+
c) Level access housing","Disabled access needs
-
+
f) Other disabled access needs","Disabled access needs
-
+
g) No disabled access needs","Disabled access needs
-
+
h) Don’t know",Does anybody in the household have a physical or mental health condition (or other illness) expected to last 12 months or more?,Does this person's condition affect their dexterity?,Does this person's condition affect their learning or understanding or concentrating?,Does this person's condition affect their hearing?,Does this person's condition affect their memory?,Does this person's condition affect their mental health?,Does this person's condition affect their mobility?,Does this person's condition affect them socially or behaviourally?,Does this person's condition affect their stamina or breathing or fatigue?,Does this person's condition affect their vision?,Does this person's condition affect them in another way?,How long has the household continuously lived in the local authority area of the new letting?,How long has the household been on the local authority housing register (or waiting list) for the area of the new letting?,What is the tenant’s main reason for the household leaving their last settled home?,"If 'Other', what was the main reason for leaving their last settled home?",Where was the household immediately before this letting?,Did the household experience homelessness immediately before this letting?,Do you know the postcode of the household's last settled home?,Part 1 of postcode of last settled home,Part 2 of postcode of last settled home,What is the local authority of the household's last settled home?,Was the household given 'reasonable preference' by the local authority?,"Reasonable preference reason
-
+
They were homeless or about to lose their home (within 56 days)","Reasonable preference reason
-
+
They were living in unsanitary, overcrowded or unsatisfactory housing","Reasonable preference reason
-
+
They needed to move due to medical and welfare reasons (including disability)","Reasonable preference reason
-
+
They needed to move to avoid hardship to themselves or others","Reasonable preference reason
-
+
Don't know","How was this letting allocated?
Choice based Lettings (CBL)","How was this letting allocated?
@@ -29,14 +29,14 @@ Common Allocations Policy (CAP)","How was this letting allocated?
Common Housing Register (CHR)","How was this letting allocated?
-Accessible Housing Register",What was the source of referral for this letting?,Do you know the household's combined total income after tax?,How often does the household receive income?,How much income does the household have in total?,Is the tenant likely to be receiving any of these housing-related benefits?,"How much of the household's income is from Universal Credit, state pensions or benefits?",Does the household pay rent or other charges for the accommodation?,How often does the household pay rent and other charges?,What is the basic rent?,What is the service charge?,What is the personal service charge?,What is the support charge?,"After the household has received any housing-related benefits, will they still need to pay for rent and charges?",What do you expect the outstanding amount to be?
+Accessible Housing Register",What was the source of referral for this letting?,Do you know the household's combined total income after tax?,How often does the household receive income?,How much income does the household have in total?,Is the tenant likely to be receiving any of these housing-related benefits?,"How much of the household's income is from Universal Credit, state pensions or benefits?",Does the household pay rent or other charges for the accommodation?,How often does the household pay rent and other charges?,What is the basic rent?,What is the service charge?,What is the personal service charge?,What is the support charge?,"After the household has received any housing-related benefits, will they still need to pay for rent and charges?",What do you expect the outstanding amount to be?,What was the lead tenant's sex at birth?,What was person 2's sex registered at birth?,What was person 3's sex registered at birth?,What was person 4's sex registered at birth?,What was person 5's sex registered at birth?,What was person 6's sex registered at birth?,What was person 7's sex registered at birth?,What was person 8's sex registered at birth?
Additional info,"You can find the org ID on the CORE service under 'Stock owners' or, if your organisation is the stock owner, under 'About your organisation'","You can find the org ID on the CORE service under 'Managing agents' or, if your organisation is the managing agent, under 'About your organisation'","If left empty, the letting log will be assigned to the account used to upload the log.","General needs housing includes both self-contained and shared housing without support or specific adaptations. Supported housing includes direct access hostels, group homes, residential care and nursing homes.","Scheme code. Include the 'S' at the beginning if it has one.
You can find the scheme code on the CORE service under 'Schemes', either by searching for the specific scheme or downloading a csv.","Location code.
You can find the location code on the CORE service under 'Schemes', either by searching for the specific location or downloading a csv.","If the property was previously being used as temporary accommodation, then answer 'no'.",,,,See specification for definitions,,This is how you usually refer to this tenancy on your own systems.,This is how you usually refer to this property on your own systems.,"Make sure the lead tenant has seen or been given access to the Ministry of Housing, Communities and Local Government (MHCLG) privacy notice before completing this log. This is a legal requirement under data protection legislation.","Internal transfer - Where a tenant moved from one social housing property to another property. Their landlord may be the same or may have changed.
-Renewal of a fixed term tenancy - to the same tenant in the same property, except if was previously used as temporary accommodation.",This is the rent type of the previous tenancy in this property.,"The Unique Property Reference Number (UPRN) is a unique number system created by Ordnance Survey and used by housing providers and various industries across the UK. An example UPRN is 10010457355.
+Renewal of a fixed term tenancy - to the same tenant in the same property, except if was previously used as temporary accommodation.",This is the rent type of the previous tenancy in this property.,"The Unique Property Reference Number (UPRN) is a unique number system created by Ordnance Survey and used by housing providers and various industries across the UK. An example UPRN is 10010457355.
The UPRN may not be the same as the property reference assigned by your organisation.",,,,,Combined with field 22 it should be a postcode which lies within the local authority given in field 25.,Combined with field 21 it should be a postcode which lies within the local authority given in field 25.,,,,"This is whether someone who uses a wheelchair is able to make full use of all of the property’s rooms and facilities, including use of both inside and outside space, and entering and exiting the property.","If shared accommodation, enter the number of bedrooms occupied by this household. A bedsit has 1 bedroom.","Date the property was (legally/contractually) available to let, or for:
- re-lets: the day after previous tenant’s contract end
- new-builds: the day the landlord legally owned the property ('completion date’)
@@ -45,7 +45,7 @@ The UPRN may not be the same as the property reference assigned by your organisa
Extra care housing is for tenants with medium to high care and support needs, often with 24 hour access to support staff provided by an agency registered with the Care Quality Commission.",This is where two or more people are named on the tenancy agreement.,"If the tenancy has an ‘introductory period’ answer ‘yes’.
You should submit a CORE log at the beginning of the starter tenancy or introductory period, with the best information you have at the time. You do not need to submit a log when a tenant later rolls onto the main tenancy.",This is about the main tenancy after any starter or introductory period. See specification for definitions.,,Do not include the starter or introductory period. The minimum period is 2 years for social or affordable rent general needs logs. You do not need to submit CORE logs for these types of tenancies if they are shorter than 2 years.,"This is the household member who does the most paid work. If several people do the same amount of paid work, it's the oldest household member.",This should be however they personally choose to identify from the options below. This may or may not be the same as their biological sex or the sex they were assigned at birth.,,"If the lead tenant is a dual national of the United Kingdom and another country, enter United Kingdom. If they are a dual national of two other countries, the tenant should decide which country to enter.","This is the household member who does the most paid work. If several people do the same amount of paid work, it's the oldest household member.",,Answer 1 for children aged under 1 year old,This should be however they personally choose to identify from the options below. This may or may not be the same as their biological sex or the sex they were assigned at birth.,,,Answer 1 for children aged under 1 year old,This should be however they personally choose to identify from the options below. This may or may not be the same as their biological sex or the sex they were assigned at birth.,,,Answer 1 for children aged under 1 year old,This should be however they personally choose to identify from the options below. This may or may not be the same as their biological sex or the sex they were assigned at birth.,,,Answer 1 for children aged under 1 year old,This should be however they personally choose to identify from the options below. This may or may not be the same as their biological sex or the sex they were assigned at birth.,,,Answer 1 for children aged under 1 year old,This should be however they personally choose to identify from the options below. This may or may not be the same as their biological sex or the sex they were assigned at birth.,,,Answer 1 for children aged under 1 year old,This should be however they personally choose to identify from the options below. This may or may not be the same as their biological sex or the sex they were assigned at birth.,,,Answer 1 for children aged under 1 year old,This should be however they personally choose to identify from the options below. This may or may not be the same as their biological sex or the sex they were assigned at birth.,,"This excludes national service.
-If several household members have these links, answer for regular first. If no regular, answer for reserve. If no reserve, answer for spouses or civil partners.",,,,,,,,,,,"For example, lifting and carrying objects, or using a keyboard",,"For example, deafness or partial hearing",,"For example, depression or anxiety","For example, walking short distances or climbing stairs","For example, anything associated with autism spectrum disorder (ASD), including Asperger’s or attention deficit hyperactivity disorder (ADHD)",,"For example, blindness or partial sight",,,,"The tenant's ‘last settled home' is their last long-standing home. For tenants who had temporary accommodation, sleeping rough or otherwise homeless, their last settled home is where they were living previously.",,,,"This is the tenant’s last long-standing home. It is where the tenant was living before any period in temporary accommodation, sleeping rough or otherwise homeless.","Combined with field 104, it should be a postcode which lies within the local authority given in field 105.","Combined with field 103, it should be a postcode which lies within the local authority given in field 105.","This is the tenant’s last long-standing home. It is where the tenant was living before any period in temporary accommodation, sleeping rough or otherwise homeless.",Households may be given ‘reasonable preference’ for social housing under one or more specific category by the local authority. This is also known as ‘priority need’.,,,,,,Where available vacant properties are advertised and applicants are able to bid for specific properties.,Where a common system agreed between a group of housing providers is used to determine applicants' priority for housing.,Where a single waiting list is used by a group of housing providers to receive and process housing applications. Providers may use different approaches to determine priority.,Where the 'access category' or another descriptor of whether an available vacant property meets a range of access needs is displayed to applicants during the allocations process.,,,,"Include any income after tax from employment, pensions, and Universal Credit. Don't include National Insurance (NI) contributions and tax, housing benefit, child benefit, or council tax support.","This is about when the tenant is in their new let. If they are unsure about the situation for their new let and their financial and working situation hasn’t changed significantly, answer based on what housing-related benefits they currently receive.",,"If rent is charged on the property then answer Yes, even if tenants do not pay it themselves.",,"This is the amount paid before any charges are added for services (for example, hot water or cleaning). Households may receive housing benefit or Universal Credit towards basic rent.","For example, cleaning. Households may get household benefits towards the service charge.",For example heating or hot water. This doesn’t include housing benefit or Universal Credit.,Any charges made to fund support services included in the tenancy agreement.,Also known as the 'outstanding amount',You only need to give an approximate figure.
+If several household members have these links, answer for regular first. If no regular, answer for reserve. If no reserve, answer for spouses or civil partners.",,,,,,,,,,,"For example, lifting and carrying objects, or using a keyboard",,"For example, deafness or partial hearing",,"For example, depression or anxiety","For example, walking short distances or climbing stairs","For example, anything associated with autism spectrum disorder (ASD), including Asperger’s or attention deficit hyperactivity disorder (ADHD)",,"For example, blindness or partial sight",,,,"The tenant's ‘last settled home' is their last long-standing home. For tenants who had temporary accommodation, sleeping rough or otherwise homeless, their last settled home is where they were living previously.",,,,"This is the tenant’s last long-standing home. It is where the tenant was living before any period in temporary accommodation, sleeping rough or otherwise homeless.","Combined with field 104, it should be a postcode which lies within the local authority given in field 105.","Combined with field 103, it should be a postcode which lies within the local authority given in field 105.","This is the tenant’s last long-standing home. It is where the tenant was living before any period in temporary accommodation, sleeping rough or otherwise homeless.",Households may be given ‘reasonable preference’ for social housing under one or more specific category by the local authority. This is also known as ‘priority need’.,,,,,,Where available vacant properties are advertised and applicants are able to bid for specific properties.,Where a common system agreed between a group of housing providers is used to determine applicants' priority for housing.,Where a single waiting list is used by a group of housing providers to receive and process housing applications. Providers may use different approaches to determine priority.,Where the 'access category' or another descriptor of whether an available vacant property meets a range of access needs is displayed to applicants during the allocations process.,,,,"Include any income after tax from employment, pensions, and Universal Credit. Don't include National Insurance (NI) contributions and tax, housing benefit, child benefit, or council tax support.","This is about when the tenant is in their new let. If they are unsure about the situation for their new let and their financial and working situation hasn’t changed significantly, answer based on what housing-related benefits they currently receive.",,"If rent is charged on the property then answer Yes, even if tenants do not pay it themselves.",,"This is the amount paid before any charges are added for services (for example, hot water or cleaning). Households may receive housing benefit or Universal Credit towards basic rent.","For example, cleaning. Households may get household benefits towards the service charge.",For example heating or hot water. This doesn’t include housing benefit or Universal Credit.,Any charges made to fund support services included in the tenancy agreement.,Also known as the 'outstanding amount',You only need to give an approximate figure.,This is the sex that was registered at birth.,This is the sex that was registered at birth.,This is the sex that was registered at birth.,This is the sex that was registered at birth.,This is the sex that was registered at birth.,This is the sex that was registered at birth.,This is the sex that was registered at birth.,This is the sex that was registered at birth.
Values,Alphanumeric,,Email format,01-Feb,Alphanumeric,Numeric,01-Feb,Jan-31,01-Dec,25 - 26,01-Jul,Text,"Alphanumeric, max 13 characters","Alphanumeric, max 12 characters",1,"5 - 6, or 8 - 22",1 - 3 or 5 - 9,Numeric,Alphanumeric,,Text,,"Alphanumeric,
2 - 4 characters","Alphanumeric,
3 characters","9 character ONS code, beginning with 'E' (https://www.get-information-schools.service.gov.uk/Guidance/LaNameCodes) ","1 - 2, 4 or 6 - 10",01-Feb,01-Feb,01-Jul,Jan-31,01-Dec,Jun-26,Jan-31,01-Dec,Jun-26,"2 - 4, 7 - 8",01-Mar,01-Feb,02-Aug,Text,"1 - 99, see specification for more detail",16 - 120 or R,"F, M, X or R",Jan-20,"3 digit ISO country code, see specification",0 - 10,01-Mar,"Numeric, range 1 - 120 or text (upper case 'R')
@@ -77,11 +77,11 @@ Must be >= 16 if working situation = 1 - 8 or 0
Must be <16 if working situation = 9","F, M, X or R","0 - 10
Must be 9 if age <16",01-Jun,03-Jun,01-Mar,,1 or empty,,,,,,01-Mar,1 or empty,,,,,,,,,,1 - 2 or 6 - 12,2 or 6 - 13,"1 - 2, 4, 8 - 14, 16 - 20, 28 - 31, 34 or 44 - 55",Text,"3 - 4, 6 - 7, 9 - 10, 13 - 14, 18 - 19, 21, 23 - 33, 35, 37 - 39 ",1 or 11,01-Feb,"Alphanumeric, 2 - 4 characters","Alphanumeric,
-3 characters","9 character ONS code, beginning with 'E' (https://www.get-information-schools.service.gov.uk/Guidance/LaNameCodes) ",01-Mar,1 or empty,,,,,01-Feb,,,,"1 - 4, 7 - 10, 14 - 24",01-Mar,01-Mar,0 - 99999,"1, 3, 6, 9 or 10",01-Apr,0 - 1,01-Oct,xxxx.xx,,,,01-Mar,xxxx.xx
+3 characters","9 character ONS code, beginning with 'E' (https://www.get-information-schools.service.gov.uk/Guidance/LaNameCodes) ",01-Mar,1 or empty,,,,,01-Feb,,,,"1 - 4, 7 - 10, 14 - 24",01-Mar,01-Mar,0 - 99999,"1, 3, 6, 9 or 10",01-Apr,0 - 1,01-Oct,xxxx.xx,,,,01-Mar,xxxx.xx,"F, M or R","F, M or R","F, M or R","F, M or R","F, M or R","F, M or R","F, M or R","F, M or R"
Can be empty?,No,,Yes,No,"Yes, if letting is general needs (if field 4 = 1)","Yes, if letting is general needs (if field 4 = 1)",No,,,,,"Yes, if letting is not 'Other intermediate rent product' (if field 11 is not 6)",Yes,,No,"Yes, if letting is a renewal (if field 7 = 1)","Yes, if letting is a renewal (if field 7 = 1) or a first-time let (if field 16 = 15 - 17)","Yes, if letting is supported housing (if field 4 = 2) or if the property's postcode is not empty (if fields 23 and 24 contain full and valid entries)","Yes, if letting is supported housing (if field 4 = 2) or if property's UPRN and local authority are known (if fields 18 and 25 are not empty)",Yes,"Yes, if letting is supported housing (if field 4 = 2) or if property's UPRN and local authority are known (if fields 18 and 25 are not empty)",Yes,"Yes, if letting is supported housing (if field 4 = 2) or if property's UPRN and local authority are known (if fields 18 and 25 are not empty)",,"Yes, if letting is supported housing (if field 4 = 2)",,,,,"Yes, if letting is a renewal (if field 7 = 1)",,,Yes,,,"Yes, if letting is general needs (if field 4 = 1)",No,,,"Yes, if 'Other' is not selected for tenancy type (if field 39 is not 3)","Yes, if letting is not a fixed-term tenancy (if field 39 is not 4 or 6)",No,,,,,"Yes, if all fields about person 2 are empty (fields 47 - 50)",,,,"Yes, if all fields about person 3 are empty (fields 51 - 54)",,,,"Yes, if all fields about person 4 are empty (fields 55 - 58)",,,,"Yes, if all fields about person 5 are empty (fields 59 - 62)",,,,"Yes, if all fields about person 6 are empty (fields 63 - 66)",,,,"Yes, if all fields about person 7 are empty (fields 67 - 70)",,,,"Yes, if all fields about person 8 are empty (fields 71 - 74)",,,,No,"Yes, if no one in the household is a current or former regular (if field 75 is not 1)","Yes, if no one in the household is a current or former regular or reserve (if field 75 is not 1 or 4)",No,"Yes, if no household members have access needs or if it is unknown (if field 83 or 84 = 1)",,,,"Yes, if a household member has an access need (if at least one of fields 79 to 82 = 1)",,No,"Yes, if a household member has an access need (if at least one of fields 79 to 82 = 1)
If someone in the household does have such a condition (if field 89 = 1), then at least 1 of these fields must be 1.",,,,,,,,,,No,"Yes, if letting is a renewal (if field 7 = 1)",No,"Yes, if 'Other' is not selected for reason for leaving last settled home (if field 98 is not 20)",No,No,,"Yes, if postcode of household's last settled home is not known (if 102 = 2)",,Yes,No,"If household was given 'reasonable preference' (if field 107 = 1), at least one of these fields must be 1
-If household was not given 'reasonable preference' (if field 106 = 2 or 3), these fields will be ignored.",,,,,No,,,,"Yes, if letting is a renewal (if field 7 = 1)",No,"Yes, if household's income is unknown (if field 117 = 2 or 3)",,No,,"Yes, if letting is supported housing (if field 4 = 2)",No,"Yes, if the household does not pay rent (if field 122 = 1)",,,,"Yes, if the household doesn't receive housing benefits, or if it is unknown (if field 120 = 3, 9 or 10)","Yes, if the household does not need to pay rent or charges after receiving housing benefits (if field 128 is not 1)"
-Type of letting the question applies to,,,,,Supported housing only,,,,,,,Other Intermediate Rent only,,,,,,General needs only,,,,,,,,,,,,,,,,,,Supported housing only,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Supported housing only,,,,,,,
-Duplicate check field?,Yes,,,,Yes,,,Yes,,,,,Yes,,,,,,,,,,Yes,,,,,,,,,,,,,,,,,,,Yes,,,,Yes,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
-Field number,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129
-,ORG1,ORG1,support@example.com,1,,,2,1,4,26,1,,1,1,1,5,1,,a,a,a,a,a1,1aa,E09000001,1,1,1,1,1,4,25,,,,,3,1,2,,,20,F,1,GBR,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,6,3,1,1,,,,,,1,1,,,,,,,,,,1,2,50,,30,1,2,,,,1,1,,,,,1,1,1,1,7,2,,,1,2,1,1,50,0,0,0,3,
+If household was not given 'reasonable preference' (if field 106 = 2 or 3), these fields will be ignored.",,,,,No,,,,"Yes, if letting is a renewal (if field 7 = 1)",No,"Yes, if household's income is unknown (if field 117 = 2 or 3)",,No,,"Yes, if letting is supported housing (if field 4 = 2)",No,"Yes, if the household does not pay rent (if field 122 = 1)",,,,"Yes, if the household doesn't receive housing benefits, or if it is unknown (if field 120 = 3, 9 or 10)","Yes, if the household does not need to pay rent or charges after receiving housing benefits (if field 128 is not 1)",,,,,,,,
+Type of letting the question applies to,,,,,Supported housing only,,,,,,,Other Intermediate Rent only,,,,,,General needs only,,,,,,,,,,,,,,,,,,Supported housing only,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Supported housing only,,,,,,,,,,,,,,,
+Duplicate check field?,Yes,,,,Yes,,,Yes,,,,,Yes,,,,,,,,,,Yes,,,,,,,,,,,,,,,,,,,Yes,,,,Yes,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
+Field number,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137
+,ORG1,ORG1,support@example.com,1,,,2,1,4,26,1,,1,1,1,5,1,,a,a,a,a,a1,1aa,E09000001,1,1,1,1,1,4,25,,,,,3,1,2,,,20,F,1,GBR,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,6,3,1,1,,,,,,1,1,,,,,,,,,,1,2,50,,30,1,2,,,,1,1,,,,,1,1,1,1,7,2,,,1,2,1,1,50,0,0,0,3,,F,,,,,,,
diff --git a/spec/fixtures/files/2026_27_sales_bulk_upload.csv b/spec/fixtures/files/2026_27_sales_bulk_upload.csv
index 5373fd723..bf7d70748 100644
--- a/spec/fixtures/files/2026_27_sales_bulk_upload.csv
+++ b/spec/fixtures/files/2026_27_sales_bulk_upload.csv
@@ -1,23 +1,23 @@
-Section,Setting up this sales log,,,,,,,,,,,,,,,Property information,,,,,,,,,,,,Household characteristics,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Household situation,,,,,,,Other household information,,,,,"Income, benefits and outgoings",,,,,,,,Shared ownership - initial purchase,,,,,,,,,,,,,,,,,,Shared ownership - staircasing transaction,,,,,,,,,,,,,,,,Discounted ownership,,,,,,,,,
+Section,Setting up this sales log,,,,,,,,,,,,,,,Property information,,,,,,,,,,,,Household characteristics,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Household situation,,,,,,,Other household information,,,,,"Income, benefits and outgoings",,,,,,,,Shared ownership - initial purchase,,,,,,,,,,,,,,,,,,Shared ownership - staircasing transaction,,,,,,,,,,,,,,,,Discounted ownership,,,,,,,,,,,,,,,
Question,What is the sale completion date? - day DD,What is the sale completion date? - month MM,What is the sale completion date? - year YY,Which organisation owned this property before the sale?,Which organisation is reporting this sale?,What is the CORE username of the account this sale log should be assigned to? ,What is the purchaser code?,Is this a shared ownership or discounted ownership sale?,What is the type of shared ownership sale?,Is this a staircasing transaction?,What is the type of discounted ownership sale?,Is this a joint purchase?,Are there more than 2 joint buyers of this property?,Did you interview the buyer to answer these questions?,Has the buyer seen or been given access to the MHCLG privacy notice?,"If known, enter this property’s UPRN",Address Line 1,Address Line 2,Town or city,County,Part 1 of the property's postcode,Part 2 of the property's postcode,What is the property's local authority?,What type of unit is the property?,How many bedrooms does the property have?,Which type of building is the property?,Is the property built or adapted to wheelchair-user standards?,What is buyer 1’s age?,Which of these best describes buyer 1's gender identity?,Which of the following best describes buyer 1's ethnic background?,What is buyer 1's nationality?,Which of these best describes buyer 1’s working situation? ,Will buyer 1 live in the property?,Is buyer 2 the partner of buyer 1?,What is buyer 2 or person 2's age?,Which of these best describes buyer 2 or person 2's gender identity?,Which of the following best describes buyer 2's ethnic background?,What is buyer 2's nationality?,Which of these best describes buyer 2 or person 2’s working situation? ,Will buyer 2 live in the property?,"Besides the buyer(s), how many other people live or will live in the property?",Is person 3 the partner of buyer 1?,What is person 3's age?,Which of these best describes person 3's gender identity?,Which of these best describes person 3’s working situation? ,Is person 4 the partner of buyer 1?,What is person 4's age?,Which of these best describes person 4's gender identity?,Which of these best describes person 4’s working situation? ,Is person 5 the partner of buyer 1?,What is person 5's age?,Which of these best describes person 5's gender identity?,Which of these best describes person 5’s working situation? ,Is person 6 the partner of buyer 1?,What is person 6's age?,Which of these best describes person 6's gender identity?,Which of these best describes person 6’s working situation? ,What was buyer 1's previous tenure?,Do you know the postcode of buyer 1's last settled accommodation?,Part 1 of postcode of buyer 1's last settled accommodation,Part 2 of postcode of buyer 1's last settled accommodation,What is the local authority of buyer 1's last settled accommodation?,"At the time of purchase, was buyer 2 living at the same address as buyer 1?",What was buyer 2's previous tenure?,"Have any of the buyers ever served as a regular in the UK armed forces?
-",Is the buyer still serving in the UK armed forces?,Are any of the buyers a spouse or civil partner of a UK armed forces regular who died in service within the last 2 years?,Does anyone in the household consider themselves to have a disability?,Does anyone in the household use a wheelchair?,What is buyer 1's annual income?,Was buyer 1's income used for a mortgage application?,What is buyer 2's annual income?,Was buyer 2's income used for a mortgage application?,Were the buyers receiving any of these housing-related benefits immediately before buying this property?,What is the total amount the buyers had in savings before they paid any deposit for the property?,Have any of the buyers previously owned a property?,Was the previous property under shared ownership?,Is this a resale?,How long did the buyer(s) live in the property before purchasing it?,What is the day of the practical completion or handover date? - DD,What is the month of the practical completion or handover date? - MM,What is the year of the practical completion or handover date? - YY,How many bedrooms did the buyer's previous property have?,What was the previous property type?,What was the buyer’s previous tenure?,What is the full purchase price?,What was the initial percentage share purchased?,Was a mortgage used to buy this property?,What is the mortgage amount?,What is the length of the mortgage in years?,How much was the cash deposit paid on the property?,How much cash discount was given through Social HomeBuy?,What is the basic monthly rent?,What are the total monthly service charges for the property?,What are the total monthly estate management fees for the property?,What percentage of the property has been bought in this staircasing transaction?,What percentage of the property do the buyers now own in total?,Was this transaction part of a back-to-back staircasing transaction to facilitate sale of the home on the open market?,Is this the first time the buyer has engaged in staircasing in the home?,What was the day of the initial purchase of a share in the property? DD,What was the month of the initial purchase of a share in the property? MM,What was the year of the initial purchase of a share in the property? YYYY,"Including this time, how many times has the shared owner engaged in staircasing in the home?",What was the day of the last staircasing transaction? DD,What was the month of the last staircasing transaction? MM,What was the year of the last staircasing transaction? YYYY,What is the full purchase price for this staircasing transaction?,What was the percentage share purchased in the initial transaction?,Was a mortgage used for this staircasing transaction?,What was the basic monthly rent prior to staircasing?,What is the basic monthly rent after staircasing?,How long did the buyer(s) live in the property before purchasing it?,What is the full purchase price?,"What was the amount of any loan, grant, discount or subsidy given?",What was the percentage discount?,Was a mortgage used to buy this property?,What is the mortgage amount?,What is the length of the mortgage in years?,Does this include any extra borrowing?,How much was the cash deposit paid on the property?,What are the total monthly leasehold charges for the property?
+",Is the buyer still serving in the UK armed forces?,Are any of the buyers a spouse or civil partner of a UK armed forces regular who died in service within the last 2 years?,Does anyone in the household consider themselves to have a disability?,Does anyone in the household use a wheelchair?,What is buyer 1's annual income?,Was buyer 1's income used for a mortgage application?,What is buyer 2's annual income?,Was buyer 2's income used for a mortgage application?,Were the buyers receiving any of these housing-related benefits immediately before buying this property?,What is the total amount the buyers had in savings before they paid any deposit for the property?,Have any of the buyers previously owned a property?,Was the previous property under shared ownership?,Is this a resale?,How long did the buyer(s) live in the property before purchasing it?,What is the day of the practical completion or handover date? - DD,What is the month of the practical completion or handover date? - MM,What is the year of the practical completion or handover date? - YY,How many bedrooms did the buyer's previous property have?,What was the previous property type?,What was the buyer’s previous tenure?,What is the full purchase price?,What was the initial percentage share purchased?,Was a mortgage used to buy this property?,What is the mortgage amount?,What is the length of the mortgage in years?,How much was the cash deposit paid on the property?,How much cash discount was given through Social HomeBuy?,What is the basic monthly rent?,What are the total monthly service charges for the property?,What are the total monthly estate management fees for the property?,What percentage of the property has been bought in this staircasing transaction?,What percentage of the property do the buyers now own in total?,Was this transaction part of a back-to-back staircasing transaction to facilitate sale of the home on the open market?,Is this the first time the buyer has engaged in staircasing in the home?,What was the day of the initial purchase of a share in the property? DD,What was the month of the initial purchase of a share in the property? MM,What was the year of the initial purchase of a share in the property? YYYY,"Including this time, how many times has the shared owner engaged in staircasing in the home?",What was the day of the last staircasing transaction? DD,What was the month of the last staircasing transaction? MM,What was the year of the last staircasing transaction? YYYY,What is the full purchase price for this staircasing transaction?,What was the percentage share purchased in the initial transaction?,Was a mortgage used for this staircasing transaction?,What was the basic monthly rent prior to staircasing?,What is the basic monthly rent after staircasing?,How long did the buyer(s) live in the property before purchasing it?,What is the full purchase price?,"What was the amount of any loan, grant, discount or subsidy given?",What was the percentage discount?,Was a mortgage used to buy this property?,What is the mortgage amount?,What is the length of the mortgage in years?,Does this include any extra borrowing?,How much was the cash deposit paid on the property?,What are the total monthly leasehold charges for the property?,What was buyer 1's sex at birth?,What was buyer/person 2's sex registered at birth?,What was person 3's sex registered at birth?,What was person 4's sex registered at birth?,What was person 5's sex registered at birth?,What was person 6's sex registered at birth?
Additional info,,,,"You can find the org ID on the CORE service under 'Stock owners' or, if your organisation is the stock owner, under 'About your organisation'","You can find the org ID on the CORE service under 'Managing agents' or, if your organisation is the managing agent, under 'About your organisation'","If left empty, the sales log will be assigned to the account used to upload the log.",This is how you usually refer to this buyer on your own systems,"Sales logs are no longer required for outright and other sales.
-A shared ownership sale is when the purchaser buys an initial share of up to 75% of the property value and pays rent to the Private Registered Provider (PRP) on the remaining portion, or a subsequent staircasing transaction",See specification for full description of each scheme,"A staircasing transaction is when the household purchases more shares in their property, increasing the proportion they own and decreasing the proportion the housing association owns. Once the household purchases 100% of the shares, they own the property.",See specification for full description of each scheme,This is where two or more people are named as legal owners of the property after the purchase.,,You should still try to answer all questions even if the buyer wasn't interviewed in person,"Make sure the buyer has seen or been given access to the Ministry of Housing, Communities and Local Government (MHCLG) privacy notice before completing this log. This is a legal requirement under data protection legislation.","The Unique Property Reference Number (UPRN) is a unique number system created by Ordnance Survey and used by housing providers and various industries across the UK. An example UPRN is 10010457355.
-The UPRN may not be the same as the property reference assigned by your organisation.",,,,,Combined with field 28 it should be a postcode which lies within the local authority given in field 29.,Combined with field 27 it should be a postcode which lies within the local authority given in field 29.,,,"For bedsits, enter ‘1’",,"This is whether someone who uses a wheelchair is able to make full use of all of the property’s rooms and facilities, including use of both inside and outside space, and entering and exiting the property.","Buyer 1 is the person in the household who does the most paid work. If it’s a joint purchase and the buyers do the same amount of paid work, buyer 1 is whoever is the oldest.",This should be however they personally choose to identify from the options below. This may or may not be the same as their biological sex or the sex they were assigned at birth.,,"If buyer 1 is a dual national of the United Kingdom and another country, enter United Kingdom. If they are a dual national of two other countries, they should decide which country to enter.","Buyer 1 is the person in the household who does the most paid work. If it’s a joint purchase and the buyers do the same amount of paid work, buyer 1 is whoever is the oldest.",,,,This should be however they personally choose to identify from the options below. This may or may not be the same as their biological sex or the sex they were assigned at birth.,,"If buyer 2 is a dual national of the United Kingdom and another country, enter United Kingdom. If they are a dual national of two other countries, they should decide which country to enter.",,,"You can provide details for a maximum of 4 other people if there are 2 buyers, or 5 other people if there is only one buyer",,,This should be however they personally choose to identify from the options below. This may or may not be the same as their biological sex or the sex they were assigned at birth.,,,,This should be however they personally choose to identify from the options below. This may or may not be the same as their biological sex or the sex they were assigned at birth.,,,,This should be however they personally choose to identify from the options below. This may or may not be the same as their biological sex or the sex they were assigned at birth.,,,,This should be however they personally choose to identify from the options below. This may or may not be the same as their biological sex or the sex they were assigned at birth.,,,This is also known as the household's 'last settled home',,,,,,"A regular is somebody who has served in the Royal Navy, the Royal Marines, the Royal Air Force or army full time and does not include reserve forces",,"A regular is somebody who has served in the Royal Navy, the Royal Marines, the Royal Air Force or army full time and does not include reserve forces",This includes any long-term health condition that has an impact on the person's day-to-day life,This can be inside or outside the home,"Provide the gross annual income (i.e. salary before tax) plus the annual amount of benefits, Universal Credit or pensions, and income from investments",,"Provide the gross annual income (i.e. salary before tax) plus the annual amount of benefits, Universal Credit or pensions, and income from investments",,,Enter their total savings to the nearest £10,,For any buyer,"If the social landlord has previously sold the property to another buyer and is now reselling the property, enter 'yes'. If this is the first time the property has been sold, enter 'no'.","If the buyers haven't been living in the property, enter '0'",This is the date on which the building contractor hands over responsibility for the completed property to the private registered provider (PRP).,,,"For bedsits, enter ‘1’",,,"Enter the full purchase price of the property before any discounts are applied. For shared ownership, enter the full purchase price paid for 100% equity (this is equal to the value of the share owned by the PRP plus the value bought by the purchaser).","This is the initial stake purchased. Enter the amount of initial equity held by the purchaser (for example, 25% or 50%)",,Enter the amount of mortgage agreed with the mortgage lender. Exclude any deposits or cash payments.,,Enter the total cash sum paid by the buyer towards the property that was not funded by the mortgage,Enter the total cash discount given on the property being purchased through the Social HomeBuy scheme,Before any charges,"This includes any charges for day-to-day maintenance and repairs, buildings insurance, and any contributions to a sinking or reserve fund. It does not include estate management fees.","Estate management fees are typically used for the maintenance of communal gardens, payments, private roads, car parks or play areas within new build estates.",,,Back-to-back staircasing transactions are used as a way for shared owners who own less than 100% of their property to sell on the open market. It involves the shared owner purchasing the remaining share from their landlord and immediately selling 100% of the property to a buyer on the open market. The landlord is then reimbursed for the staircasing transaction through the proceeds of sale to the buyer.,,,,,,,,,"Enter the full purchase price of the property before any discounts are applied. For shared ownership, enter the full purchase price paid for 100% equity (this is equal to the value of the share owned by the PRP plus the value bought by the purchaser).","This is the initial stake purchased. Enter the amount of initial equity held by the purchaser (for example, 25% or 50%)",,,,,"For all schemes, including Right to Acquire (RTA), Right to Buy (RTB), Voluntary Right to Buy (VRTB) or Preserved Right to Buy (PRTB) sales, enter the full price of the property without any discount","For all schemes except Right to Buy (RTB), Preserved Right to Buy (PRTB), Voluntary Right to Buy (VRTB) and Rent to Buy","For Right to Buy (RTB), Preserved Right to Buy (PRTB) and Voluntary Right to Buy (VRTB). For capped discount, enter capped %. If property is sold to an existing tenant under RTB, PRTB or VRTB, enter % discount from full market value.",,Enter the amount of mortgage agreed with the mortgage lender. Exclude any deposits or cash payments.,,This is 'Yes' if the mortgage includes borrowing beyond the purchase price of the property,Enter the total cash sum paid by the purchaser towards the property that was not funded by the mortgage. This excludes any grant or loan.,"For example, service and management charges"
+A shared ownership sale is when the purchaser buys an initial share of up to 75% of the property value and pays rent to the Private Registered Provider (PRP) on the remaining portion, or a subsequent staircasing transaction",See specification for full description of each scheme,"A staircasing transaction is when the household purchases more shares in their property, increasing the proportion they own and decreasing the proportion the housing association owns. Once the household purchases 100% of the shares, they own the property.",See specification for full description of each scheme,This is where two or more people are named as legal owners of the property after the purchase.,,You should still try to answer all questions even if the buyer wasn't interviewed in person,"Make sure the buyer has seen or been given access to the Ministry of Housing, Communities and Local Government (MHCLG) privacy notice before completing this log. This is a legal requirement under data protection legislation.","The Unique Property Reference Number (UPRN) is a unique number system created by Ordnance Survey and used by housing providers and various industries across the UK. An example UPRN is 10010457355.
+The UPRN may not be the same as the property reference assigned by your organisation.",,,,,Combined with field 28 it should be a postcode which lies within the local authority given in field 29.,Combined with field 27 it should be a postcode which lies within the local authority given in field 29.,,,"For bedsits, enter ‘1’",,"This is whether someone who uses a wheelchair is able to make full use of all of the property’s rooms and facilities, including use of both inside and outside space, and entering and exiting the property.","Buyer 1 is the person in the household who does the most paid work. If it’s a joint purchase and the buyers do the same amount of paid work, buyer 1 is whoever is the oldest.",This should be however they personally choose to identify from the options below. This may or may not be the same as their biological sex or the sex they were assigned at birth.,,"If buyer 1 is a dual national of the United Kingdom and another country, enter United Kingdom. If they are a dual national of two other countries, they should decide which country to enter.","Buyer 1 is the person in the household who does the most paid work. If it’s a joint purchase and the buyers do the same amount of paid work, buyer 1 is whoever is the oldest.",,,,This should be however they personally choose to identify from the options below. This may or may not be the same as their biological sex or the sex they were assigned at birth.,,"If buyer 2 is a dual national of the United Kingdom and another country, enter United Kingdom. If they are a dual national of two other countries, they should decide which country to enter.",,,"You can provide details for a maximum of 4 other people if there are 2 buyers, or 5 other people if there is only one buyer",,,This should be however they personally choose to identify from the options below. This may or may not be the same as their biological sex or the sex they were assigned at birth.,,,,This should be however they personally choose to identify from the options below. This may or may not be the same as their biological sex or the sex they were assigned at birth.,,,,This should be however they personally choose to identify from the options below. This may or may not be the same as their biological sex or the sex they were assigned at birth.,,,,This should be however they personally choose to identify from the options below. This may or may not be the same as their biological sex or the sex they were assigned at birth.,,,This is also known as the household's 'last settled home',,,,,,"A regular is somebody who has served in the Royal Navy, the Royal Marines, the Royal Air Force or army full time and does not include reserve forces",,"A regular is somebody who has served in the Royal Navy, the Royal Marines, the Royal Air Force or army full time and does not include reserve forces",This includes any long-term health condition that has an impact on the person's day-to-day life,This can be inside or outside the home,"Provide the gross annual income (i.e. salary before tax) plus the annual amount of benefits, Universal Credit or pensions, and income from investments",,"Provide the gross annual income (i.e. salary before tax) plus the annual amount of benefits, Universal Credit or pensions, and income from investments",,,Enter their total savings to the nearest £10,,For any buyer,"If the social landlord has previously sold the property to another buyer and is now reselling the property, enter 'yes'. If this is the first time the property has been sold, enter 'no'.","If the buyers haven't been living in the property, enter '0'",This is the date on which the building contractor hands over responsibility for the completed property to the private registered provider (PRP).,,,"For bedsits, enter ‘1’",,,"Enter the full purchase price of the property before any discounts are applied. For shared ownership, enter the full purchase price paid for 100% equity (this is equal to the value of the share owned by the PRP plus the value bought by the purchaser).","This is the initial stake purchased. Enter the amount of initial equity held by the purchaser (for example, 25% or 50%)",,Enter the amount of mortgage agreed with the mortgage lender. Exclude any deposits or cash payments.,,Enter the total cash sum paid by the buyer towards the property that was not funded by the mortgage,Enter the total cash discount given on the property being purchased through the Social HomeBuy scheme,Before any charges,"This includes any charges for day-to-day maintenance and repairs, buildings insurance, and any contributions to a sinking or reserve fund. It does not include estate management fees.","Estate management fees are typically used for the maintenance of communal gardens, payments, private roads, car parks or play areas within new build estates.",,,Back-to-back staircasing transactions are used as a way for shared owners who own less than 100% of their property to sell on the open market. It involves the shared owner purchasing the remaining share from their landlord and immediately selling 100% of the property to a buyer on the open market. The landlord is then reimbursed for the staircasing transaction through the proceeds of sale to the buyer.,,,,,,,,,"Enter the full purchase price of the property before any discounts are applied. For shared ownership, enter the full purchase price paid for 100% equity (this is equal to the value of the share owned by the PRP plus the value bought by the purchaser).","This is the initial stake purchased. Enter the amount of initial equity held by the purchaser (for example, 25% or 50%)",,,,,"For all schemes, including Right to Acquire (RTA), Right to Buy (RTB), Voluntary Right to Buy (VRTB) or Preserved Right to Buy (PRTB) sales, enter the full price of the property without any discount","For all schemes except Right to Buy (RTB), Preserved Right to Buy (PRTB), Voluntary Right to Buy (VRTB) and Rent to Buy","For Right to Buy (RTB), Preserved Right to Buy (PRTB) and Voluntary Right to Buy (VRTB). For capped discount, enter capped %. If property is sold to an existing tenant under RTB, PRTB or VRTB, enter % discount from full market value.",,Enter the amount of mortgage agreed with the mortgage lender. Exclude any deposits or cash payments.,,This is 'Yes' if the mortgage includes borrowing beyond the purchase price of the property,Enter the total cash sum paid by the purchaser towards the property that was not funded by the mortgage. This excludes any grant or loan.,"For example, service and management charges",This is the sex that was registered at birth.,This is the sex that was registered at birth.,This is the sex that was registered at birth.,This is the sex that was registered at birth.,This is the sex that was registered at birth.,This is the sex that was registered at birth.
Values,Jan-31,01-Dec,25 - 26,Alphanumeric,Alphanumeric,Email format,"Alphanumeric, punctuation can be used as long as not the field separator.
Max 9 characters.",01-Feb,"2, 16, 18, 24, 28 or 30 - 32",01-Feb,"8, 9, 14, 21, 22, 27 or 29",01-Feb,01-Mar,01-Feb,1,"Numeric, max 12 digits",Alphanumeric,,Text,,"Alphanumeric,
2 - 4 characters","Alphanumeric,
3 characters","9 character ONS code, beginning with 'E' (https://www.get-information-schools.service.gov.uk/Guidance/LaNameCodes) ",1 - 4 or 9,01-Sep,01-Feb,01-Mar,"16 - 110
or R","F, M, X or R",Jan-20,"3 digit ISO country code, see specification",0 - 8 or 10,01-Feb,01-Mar,1 - 110 or R,"F, M, X or R",Jan-20,"3 digit ISO country code, see specification",0 - 10,01-Feb,0 - 5,01-Mar,1 - 110 or R,"F, M, X or R",0 - 10,01-Mar,1 - 110 or R,"F, M, X or R",0 - 10,01-Mar,1 - 110 or R,"F, M, X or R",0 - 10,01-Mar,1 - 110 or R,"F, M, X or R",0 - 10,"1 - 7, 9 or R",01-Feb,"Alphanumeric,
2 - 4 characters","Alphanumeric,
- 3 characters","9 character ONS code, beginning with 'E' (https://www.get-information-schools.service.gov.uk/Guidance/LaNameCodes) ",01-Mar,"1 - 7, 9 or R","1, 3, 7 or 8",04-Jun,04-Jul,01-Mar,,0 - 99999 or R,01-Feb,0 - 99999 or R,01-Feb,01-Apr,0 - 999990 or R,01-Mar,,01-Feb,Integer <= 80,Jan-31,01-Dec,22 - 26,01-Sep,1 - 4 or 9,1 - 3 or 9 - 10,0 - 999999,0 - 100,01-Feb,0 - 999999,Integer <= 60,0 - 999999,,0 - 9999.99,,,1 - 100,,01-Mar,01-Feb,Jan-31,01-Dec,1980-2026,02-Oct,Jan-31,01-Dec,1980-2026,0 - 999999,0 - 100,01-Mar,0 - 9999.99,,Integer <= 80,0 - 999999,,0 - 100,01-Feb,0 - 999999,Integer <= 60,01-Mar,0 - 999999,0 - 9999.99
+ 3 characters","9 character ONS code, beginning with 'E' (https://www.get-information-schools.service.gov.uk/Guidance/LaNameCodes) ",01-Mar,"1 - 7, 9 or R","1, 3, 7 or 8",04-Jun,04-Jul,01-Mar,,0 - 99999 or R,01-Feb,0 - 99999 or R,01-Feb,01-Apr,0 - 999990 or R,01-Mar,,01-Feb,Integer <= 80,Jan-31,01-Dec,22 - 26,01-Sep,1 - 4 or 9,1 - 3 or 9 - 10,0 - 999999,0 - 100,01-Feb,0 - 999999,Integer <= 60,0 - 999999,,0 - 9999.99,,,1 - 100,,01-Mar,01-Feb,Jan-31,01-Dec,1980-2026,02-Oct,Jan-31,01-Dec,1980-2026,0 - 999999,0 - 100,01-Mar,0 - 9999.99,,Integer <= 80,0 - 999999,,0 - 100,01-Feb,0 - 999999,Integer <= 60,01-Mar,0 - 999999,0 - 9999.99,"F, M or R","F, M or R","F, M or R","F, M or R","F, M or R","F, M or R"
Can be empty?,No,,,No,No,Yes,Yes,No,"Yes, if the purchase was not made through a shared ownership scheme (if field 8 = 2)","Yes, if the purchase was not made through a shared ownership scheme (if field 8 = 2)","Yes, if the purchase was not made through a discounted ownership scheme (if field 8 = 1)",No,"Yes, if the sale is not a joint purchase (if field 12 = 2)",No,No,"Yes, if property's full address is known (if fields 16, 18, 20 and 21 are not empty)","Yes, if property's UPRN is known (if field 16 is not empty)",Yes,"Yes, if property's UPRN is known (if field 16 is not empty)",Yes,"Yes, if property's UPRN and local authority are known (if fields 16 and 23 are not empty",,No,,,"Yes, if the purchase is a staircasing transaction (if field 10 = 1)",,No,,"Yes, if the purchase is a staircasing transaction (if field 10 = 1)",,,,"Yes, if sale is not a joint purchase (if field 12 = 2) and the other fields about this person (fields 35, 36 and 39) are also empty","Yes, if sale is not a joint purchase (if field 12 = 2) and the other fields about this person (fields 35, 36 and 39) are also empty","Yes, if sale is not a joint purchase (if field 12 = 2) and the other fields about this person (fields 35, 36 and 39) are also empty","Yes, if sale is not a joint purchase (if field 12 = 2), or if the purchase is a staircasing transaction (if field 10 = 1)",,"Yes, if sale is not a joint purchase (if field 12 = 2) and the other fields about this person (fields 35, 36 and 39) are also empty, or if the purchase is a staircasing transaction (if field 10 = 1)","Yes, if sale is not a joint purchase (if field 12 = 2), or if the purchase is a staircasing transaction (if field 10 = 1)","Yes, if purchase is a staircasing transaction (if field 10 = 1)","Yes, if all fields about this person (fields 42 - 45) are also empty, or if the purchase is a staircasing transaction (if field 10 = 1)",,,,"Yes, if all fields about this person (fields 46 - 49) are also empty, or if the purchase is a staircasing transaction (if field 10 = 1)",,,,"Yes, if all fields about this person (fields 50 - 53) are also empty, or if the purchase is a staircasing transaction (if field 10 = 1)",,,,"Yes, if all fields about this person (fields 54 - 57) are also empty, or if the purchase is a staircasing transaction (if field 10 = 1)",,,,"Yes, if the purchase is a staircasing transaction (if field 10 = 1)","Yes, if sale is discounted ownership (if field 8 = 2), or if the purchase is a staircasing transaction (if field 10 = 1)","Yes, if postcode of buyer 1's last settled accommodation is unknown (if field 59 = 2)
Yes, if sale is discounted ownership (if field 8 = 2), or if the purchase is a staircasing transaction (if field 10 = 1)",,Yes,"Yes, if sale is not a joint purchase (if field 12 = 2), or if the purchase is a staircasing transaction (if field 10 = 1)","Yes, if sale is not a joint purchase (if field 12 = 2), or if buyer is not known to have been living at the same address as buyer 1 at the time of purchase (if field 63 = 1 or 3), or if the purchase is a staircasing transaction (if field 10 = 1)","Yes, if the purchase is a staircasing transaction (if field 10 = 1)","Yes, if none of the buyers are known to have served as a regular in the UK armed forces (if field 65 = 7, 3 or 8), or if the purchase is a staircasing transaction (if field 10 = 1)","Yes, if the purchase is a staircasing transaction (if field 10 = 1)",,,"Yes, if the purchase is a staircasing transaction (if field 10 = 1)","Yes, if buyer 1's income is not known (if field 70 = R), or if the purchase is a staircasing transaction (if field 10 = 1)","Yes, if sale is not a joint purchase (if field 12 = 2), or if the purchase is a staircasing transaction (if field 10 = 1)","Yes, if sale is not a joint purchase (if field 12 = 2) or if buyer 2's income is not known (if field 70 = R), or if the purchase is a staircasing transaction (if field 10 = 1)","Yes, if the purchase is a staircasing transaction (if field 10 = 1)",,,"Yes, if the purchasers did not previously own a property or if it is not known (if field 76 = 2 or 3), or if the purchase is a staircasing transaction (if field 10 = 1)","Yes, if the purchase was not made through a shared ownership scheme (if field 8 = 2) or if this is a staircasing transaction (if field 10 = 1)","Yes, if the purchase was not made through a shared ownership scheme (if field 8 = 2), if this is a resale (if field 78 = 1) or if this is a staircasing transaction (if field 10 = 1)",,,,"Yes, if the purchase was not made through a shared ownership scheme (if field 8 = 2), or if the purchase is a staircasing transaction (if field 10 = 1)
-Yes, if the buyer was not a private registered provider, housing association or local authority tenant immediately before sale (if field 58 is not 1 or 2)",,,"Yes, if the purchase was not made through a shared ownership scheme (if field 8 = 2), or if the purchase is a staircasing transaction (if field 10 = 1)",,,"Yes, if the purchase was not made through a shared ownership scheme (if field 8 = 2), if the purchase is a staircasing transaction (if field 10 = 1) or if a mortgage was not used (if field 88 = 2)",,"Yes, if the purchase was not made through a shared ownership scheme (if field 8 = 2), or if the purchase is a staircasing transaction (if field 10 = 1)","Yes, if the purchase was not made through a shared ownership scheme (if field 8 = 2), if the purchase is a staircasing transaction (if field 10 = 1), or if the type of shared ownership sale is not Social Homebuy (if field 9 is not 18)","Yes, if there are no monthy charges or fees, if the purchase was not made through a shared ownership scheme (if field 8 = 2), or if the purchase is a staircasing transaction (if field 10 = 1)",,,"Yes, if this is not a shared ownership transaction (if field 8 = 2), or if it is not a staircasing transaction (if field 10 = 2)",,"Yes, if this is not a shared ownership transaction (if field 8 = 2), or if it is not a staircasing transaction (if field 10 = 2), or if the buyers do not own 100% of the property (if field 97 is less than 100)","Yes, if this is not a shared ownership transaction (if field 8 = 2), or if it is not a staircasing transaction (if field 10 = 2)",,,,"Yes, if this is not a shared ownership transaction (if field 8 = 2), or if it is not a staircasing transaction (if field 10 = 2), and if this is the first time the buyer has engaged in staircasing in the home (if field 99 = 1)",,,,"Yes, if this is not a shared ownership transaction (if field 8 = 2), or if it is not a staircasing transaction (if field 10 = 2)",,,,"Yes, if this is not a shared ownership transaction (if field 8 = 2), or if it is not a staircasing transaction (if field 10 = 2), or if the buyers now own 100% of the property (if field 97 = 100)","Yes, if the purchase was not made through a discounted ownership scheme (if field 8 = 1)",,"Yes, if the purchase was not made through a discounted ownership scheme (if field 8 = 1) or if the type of discounted sale is PRTB, VRTB, RTB, or Rent to Buy (if field 11 is 9, 14, 27 or 29)","Yes, if the purchase was not made through a discounted ownership scheme (if field 8 = 1) or if the type of discounted sale is not PRTB, VRTB, RTB, or Rent to Buy (if field 11 is 8, 21, 22)","Yes, if the purchase was not made through a discounted ownership scheme (if field 8 = 1)","Yes, if the purchase was not made through a discounted ownership scheme (if field 8 = 1) or if a mortgage was not used (if field 116 = 2)",,,"Yes, if the purchase was not made through a discounted ownership scheme (if field 8 = 1)","Yes, if there are no leasehold charges or if the purchase was not made through a discounted ownership scheme (if field 8 = 1)"
-Types of sales the question applies to,All,,,,,,,,Shared ownership only,Shared ownership only,Discounted ownership only,All,Joint purchase only,All,,All,,,,,,,,,,Shared ownership - initial purchase and discounted ownership,,All,,Shared ownership - initial purchase and discounted ownership,,,,Joint purchases,,,Joint purchases which are shared ownership - initial purchase and discounted ownership,,,,Shared ownership - initial purchase and discounted ownership,,,,,,,,,,,,,,,,,Shared ownership - initial purchase and discounted ownership,Shared ownership - initial purchase,,,Shared ownership - initial purchase and discounted ownership,Joint purchases which are shared ownership - initial purchase and discounted ownership,,Shared ownership - initial purchase and discounted ownership,,,,,Shared ownership - initial purchase and discounted ownership,,Joint purchases which are shared ownership - initial purchase and discounted ownership,,Shared ownership - initial purchase and discounted ownership,,,,Shared ownership - initial purchase only,,,,,,,,,,,,,,,,,,Shared ownership - staircasing transaction only,,,,,,,,,,,,,,,,Discounted ownership only,,,,,,,,,
-Duplicate check field?,Yes,,,,,,,,,,,,,,,,,,,,Yes,,,,,,,Yes,,,,Yes,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
-Field number,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121
-,4,9,26,ORG1,ORG1,support@example.com,1,2,,,8,2,3,1,1,,a,a,a,a,aa1,1aa,E09000001,1,1,2,3,20,M,20,GBR,10,1,,,,,,,,0,,,,,,,,,,,,,,,,,1,2,,,,,,8,,7,3,3,10000,2,,,4,20000,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,30,400000,10000,25,2,,,,390000,0
+Yes, if the buyer was not a private registered provider, housing association or local authority tenant immediately before sale (if field 58 is not 1 or 2)",,,"Yes, if the purchase was not made through a shared ownership scheme (if field 8 = 2), or if the purchase is a staircasing transaction (if field 10 = 1)",,,"Yes, if the purchase was not made through a shared ownership scheme (if field 8 = 2), if the purchase is a staircasing transaction (if field 10 = 1) or if a mortgage was not used (if field 88 = 2)",,"Yes, if the purchase was not made through a shared ownership scheme (if field 8 = 2), or if the purchase is a staircasing transaction (if field 10 = 1)","Yes, if the purchase was not made through a shared ownership scheme (if field 8 = 2), if the purchase is a staircasing transaction (if field 10 = 1), or if the type of shared ownership sale is not Social Homebuy (if field 9 is not 18)","Yes, if there are no monthy charges or fees, if the purchase was not made through a shared ownership scheme (if field 8 = 2), or if the purchase is a staircasing transaction (if field 10 = 1)",,,"Yes, if this is not a shared ownership transaction (if field 8 = 2), or if it is not a staircasing transaction (if field 10 = 2)",,"Yes, if this is not a shared ownership transaction (if field 8 = 2), or if it is not a staircasing transaction (if field 10 = 2), or if the buyers do not own 100% of the property (if field 97 is less than 100)","Yes, if this is not a shared ownership transaction (if field 8 = 2), or if it is not a staircasing transaction (if field 10 = 2)",,,,"Yes, if this is not a shared ownership transaction (if field 8 = 2), or if it is not a staircasing transaction (if field 10 = 2), and if this is the first time the buyer has engaged in staircasing in the home (if field 99 = 1)",,,,"Yes, if this is not a shared ownership transaction (if field 8 = 2), or if it is not a staircasing transaction (if field 10 = 2)",,,,"Yes, if this is not a shared ownership transaction (if field 8 = 2), or if it is not a staircasing transaction (if field 10 = 2), or if the buyers now own 100% of the property (if field 97 = 100)","Yes, if the purchase was not made through a discounted ownership scheme (if field 8 = 1)",,"Yes, if the purchase was not made through a discounted ownership scheme (if field 8 = 1) or if the type of discounted sale is PRTB, VRTB, RTB, or Rent to Buy (if field 11 is 9, 14, 27 or 29)","Yes, if the purchase was not made through a discounted ownership scheme (if field 8 = 1) or if the type of discounted sale is not PRTB, VRTB, RTB, or Rent to Buy (if field 11 is 8, 21, 22)","Yes, if the purchase was not made through a discounted ownership scheme (if field 8 = 1)","Yes, if the purchase was not made through a discounted ownership scheme (if field 8 = 1) or if a mortgage was not used (if field 116 = 2)",,,"Yes, if the purchase was not made through a discounted ownership scheme (if field 8 = 1)","Yes, if there are no leasehold charges or if the purchase was not made through a discounted ownership scheme (if field 8 = 1)",,,,,,
+Types of sales the question applies to,All,,,,,,,,Shared ownership only,Shared ownership only,Discounted ownership only,All,Joint purchase only,All,,All,,,,,,,,,,Shared ownership - initial purchase and discounted ownership,,All,,Shared ownership - initial purchase and discounted ownership,,,,Joint purchases,,,Joint purchases which are shared ownership - initial purchase and discounted ownership,,,,Shared ownership - initial purchase and discounted ownership,,,,,,,,,,,,,,,,,Shared ownership - initial purchase and discounted ownership,Shared ownership - initial purchase,,,Shared ownership - initial purchase and discounted ownership,Joint purchases which are shared ownership - initial purchase and discounted ownership,,Shared ownership - initial purchase and discounted ownership,,,,,Shared ownership - initial purchase and discounted ownership,,Joint purchases which are shared ownership - initial purchase and discounted ownership,,Shared ownership - initial purchase and discounted ownership,,,,Shared ownership - initial purchase only,,,,,,,,,,,,,,,,,,Shared ownership - staircasing transaction only,,,,,,,,,,,,,,,,Discounted ownership only,,,,,,,,,,,,,,,
+Duplicate check field?,Yes,,,,,,,,,,,,,,,,,,,,Yes,,,,,,,Yes,,,,Yes,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
+Field number,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127
+,4,9,26,ORG1,ORG1,support@example.com,1,2,,,8,2,3,1,1,,a,a,a,a,aa1,1aa,E09000001,1,1,2,3,20,M,20,GBR,10,1,,,,,,,,0,,,,,,,,,,,,,,,,,1,2,,,,,,8,,7,3,3,10000,2,,,4,20000,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,30,400000,10000,25,2,,,,390000,0,F,,,,,
diff --git a/spec/fixtures/files/lettings_log_csv_export_codes_26.csv b/spec/fixtures/files/lettings_log_csv_export_codes_26.csv
index 6ad6a7aef..2c2bb616a 100644
--- a/spec/fixtures/files/lettings_log_csv_export_codes_26.csv
+++ b/spec/fixtures/files/lettings_log_csv_export_codes_26.csv
@@ -1,3 +1,3 @@
-Log ID,Status of log,ID of a set of duplicate logs,User the log is created by,User the log is assigned to,Is the user in the assigned_to column the data protection officer?,Time and date the log was created,User who last updated the log,Time and date the log was last updated,Was the log submitted in-service or via bulk upload?,Year collection period opened,ID of a set of bulk uploaded logs,Which organisation owns this property?,Which organisation manages this letting?,What is the needs type?,What is the letting type?,Is this letting a renewal?,What is the tenancy start date?,"What is the rent type? (grouped into SR, IR or AR)",What is the rent type?,Which type of Intermediate Rent is this letting?,Which 'Other' type of Intermediate Rent is this letting?,Is this a London Affordable Rent letting?,What is the tenant code?,What is the property reference?,Has the tenant seen the MHCLG privacy notice?,Is this the first time the property has been let as social housing?,What rent product was the property most recently let as?,What is the reason for the property being vacant?,Is this property new to the social rented sector?,"If known, property's UPRN",Address line 1,Address line 2,Town or City,County,Postcode,The internal value to indicate if the LA was inferred from the postcode,What is the property's local authority?,Local authority code,Is the UPRN known?,UPRN of the address selected,Was the 'No address found' page seen?,Address line 1 input from address matching feature,Postcode input from address matching feature,Address line 1 entered in bulk upload file,Address line 2 entered in bulk upload file,Town or city entered in bulk upload file,County entered in bulk upload file,Postcode entered in bulk upload file,Local authority entered in bulk upload file,What type of unit is the property?,Is the property built or adapted to wheelchair-user standards?,How many bedrooms does the property have?,What is the void date?,Number of days the property was vacant,The following soft validation was confirmed: You told us that the property has been vacant for more than 2 years. This is higher than we would expect.,Were any major repairs carried out during the void period?,What date were any major repairs completed on?,The following soft validation was confirmed: You told us the property has been vacant for 2 years. This is higher than we would expect.,Is this letting in sheltered accommodation?,Is this a joint tenancy?,Is this a starter tenancy?,What is the type of tenancy?,"If 'Other', what is the type of tenancy?",What is the length of the fixed-term tenancy to the nearest year?,How many people live in the household at this letting?,The following soft validation was confirmed: You told us somebody in the household is pregnant. You also told us there are no female tenants living at the property.,"Where household characteristics have a 'Refused' option for some or all of: AGE1-AGE8, SEX1-SEX8, RELAT2-RELAT8, ECSTAT1-ECSTAT8","Type of household 1 = 1 elder; 2 = 2 adults, including elder(s); 3 = 1 adult; 4 = 2 adults; 5 = 1 adult & 1+ children; 6 = 2+ adults & 1+ children; 9 = Other",Total number of dependent children in the household (Sum of when RELAT2-8 = C),Total number of elders in household (Sum of when AGE1-8 >= 60),Total number of adults in household,What is the lead tenant's age?,The following soft validation was confirmed: You told us this person is aged %{age} years and retired. The minimum expected retirement age for %{gender} in England is %{age}.,Which of these best describes the lead tenant's gender identity?,What is the lead tenant's ethnic group?,Which of these best describes the lead tenant's ethnic background?,What is the lead tenant's nationality?,Which of these best describes the lead tenant's working situation?,The following soft validation was confirmed: You have said that at least one person's situation is 'Unable to work because of long-term sickness or disability'.,Are the details of tenant 2 known?,What is person 2's age?,What is person 2's relationship to the lead tenant?,The following soft validation was confirmed: You said that more than one person in the household is the partner of the lead tenant. Are you sure this is correct?,Which of these best describes person 2's gender identity?,Which of these best describes person 2's working situation?,Are the details of tenant 3 known?,What is person 3's age?,What is person 3's relationship to the lead tenant?,Which of these best describes person 3's gender identity?,Which of these best describes person 3's working situation?,Are the details of tenant 4 known?,What is person 4's age?,What is person 4's relationship to the lead tenant?,Which of these best describes person 4's gender identity?,Which of these best describes person 4's working situation?,Are the details of tenant 5 known?,What is person 5's age?,What is person 5's relationship to the lead tenant?,Which of these best describes person 5's gender identity?,Which of these best describes person 5's working situation?,Are the details of tenant 6 known?,What is person 6's age?,What is person 6's relationship to the lead tenant?,Which of these best describes person 6's gender identity?,Which of these best describes person 6's working situation?,Are the details of tenant 7 known?,What is person 7's age?,What is person 7's relationship to the lead tenant?,Which of these best describes person 7's gender identity?,Which of these best describes person 7's working situation?,Are the details of tenant 8 known?,What is person 8's age?,What is person 8's relationship to the lead tenant?,Which of these best describes person 8's gender identity?,Which of these best describes person 8's working situation?,Does anybody in the household have links to the UK armed forces?,Is this person still serving in the UK armed forces?,Was this person seriously injured or ill as a result of serving in the UK armed forces?,Is anybody in the household pregnant?,Does anybody in the household have any disabled access needs?,"What access needs do they have? (Fully wheelchair-accessible housing, Level access housing or Wheelchair access to essential rooms)",Disabled access needs a) Fully wheelchair-accessible housing,Disabled access needs b) Wheelchair access to essential rooms,Disabled access needs c) Level access housing,Disabled access needs f) Other disabled access needs,Disabled access needs g) No disabled access needs,Disabled access needs h) Don't know,Do they have any other disabled access needs?,Does anybody in the household have a physical or mental health condition (or other illness) expected to last 12 months or more?,Does this person's condition affect their dexterity?,Does this person's condition affect their learning or understanding or concentrating?,Does this person's condition affect their hearing?,Does this person's condition affect their memory?,Does this person's condition affect their mental health?,Does this person's condition affect their mobility?,Does this person's condition affect them socially or behaviourally?,Does this person's condition affect their stamina or breathing or fatigue?,Does this person's condition affect their vision?,Does this person's condition affect them in another way?,How long has the household continuously lived in the local authority area of the new letting?,How long has the household been on the local authority waiting list for the new letting?,What is the tenant's main reason for the household leaving their last settled home?,"If 'Other', what was the main reason for leaving their last settled home?",The soft validation was confirmed,Where was the household immediately before this letting?,Did the household experience homelessness immediately before this letting?,Previous postcode unknown or previous accommodation was temporary,What is the postcode of the household's last settled home?,Was the local authority of the household's last settled home known?,The internal value to indicate if the previous LA was inferred from the postcode,Previous location LA name,Previous location's ONS LA Code,Was the household given reasonable preference by the local authority?,Reasonable preference reason - They were homeless or about to lose their home (within 56 days),"Reasonable preference reason - They were living in insanitary, overcrowded or unisatisfactory housing",Reasonable preference reason - They needed to move on medical and welfare reasons (including disability),Reasonable preference reason - They needed to move to avoid hardship to themselves or others,Reasonable preference reason - Don't Know,Was the letting made under Choice-Based Lettings (CBL)?,Was the letting made under the Common Allocation Policy (CAP)?,Was the letting made under the Common Housing Register (CHR)?,Was the letting made under the Accessible Register?,"The letting was not allocated under CBL, CAP, CHR or Accessible Register.",,What was the source of referral for this letting?,"The following soft validation was confirmed: Are you sure? This is a general needs log, and this referral type is for supported housing.",Do you know the household's combined income after tax?,Was the household income refused?,How often does the household receive income?,How much income does the household have in total?,Populated when someone hits the soft validation and confirmed in the service,Is the tenant likely to be receiving any of these housing-related benefits?,"Does the tenant receive housing-related benefits? Yes if hb = Universal Credit housing element or Housing benefit, No if hb = Don't Know, Neither, Tenant prefers not to say or blank","How much of the household's income is from Universal Credit, state pensions or benefits?",Does the household pay rent or other charges for the accommodation?,Does the household pay rent or other charges for the accommodation? - flag for when household_charge is answered no,How often does the household pay rent and other charges?,What is the basic rent?,Weekly rent,Populated when the soft validation and confirmed in the service,What is the service charge?,Weekly service charge,What is the personal service charge?,Weekly personal service charge,What is the support charge?,Weekly support charge,Total charge to the tenant,Weekly total charge to the tenant,Populated when the soft validation and confirmed in the service,Populated when the soft validation and confirmed in the service,Populated when the soft validation and confirmed in the service,"After the household has received any housing-related benefits, will they still need to pay for rent and charges?",Can you estimate the outstanding amount?,Estimated outstanding amount,Weekly total rent shortfall charge for tenant receiving housing benefit,What scheme does this letting belong to?,"From scheme code, we map to the scheme name",Does the scheme contain confidential information?,"What is this type of scheme? (Direct access hostel), Foyer, Housing for older people or Other supported housing",Is this scheme registered under the Care Standards Act 2000?,Which organisation owns the housing stock for this scheme?,What client group is this scheme intended for?,Does this scheme provide for another client group?,What is the other client group?,What support does this scheme provide?,Intended length of stay,Date scheme was created,Which location is this letting for?,What is the postcode for this location?,What is the name of this location?,How many units are at this location?,What is the most common type of unit at this location?,What are the mobility standards for the majority of the units in this location?,What is the local authority of this postcode?,When did the first property in this location become available under this scheme?
-id,status,duplicate_set_id,created_by,assigned_to,is_dpo,created_at,updated_by,updated_at,creation_method,collection_start_year,bulk_upload_id,owning_organisation_name,managing_organisation_name,needstype,lettype,renewal,startdate,renttype,renttype_detail,irproduct,irproduct_other,lar,tenancycode,propcode,declaration,first_time_property_let_as_social_housing,unitletas,rsnvac,newprop,uprn,address_line1,address_line2,town_or_city,county,postcode_full,is_la_inferred,la_label,la,uprn_known,uprn_selection,address_search_value_check,address_line1_input,postcode_full_input,address_line1_as_entered,address_line2_as_entered,town_or_city_as_entered,county_as_entered,postcode_full_as_entered,la_as_entered,unittype_gn,wchair,beds,voiddate,vacdays,void_date_value_check,majorrepairs,mrcdate,major_repairs_date_value_check,sheltered,joint,startertenancy,tenancy,tenancyother,tenancylength,hhmemb,pregnancy_value_check,refused,hhtype,totchild,totelder,totadult,age1,retirement_value_check,sex1,ethnic_group,ethnic,nationality_all,ecstat1,working_situation_illness_check,details_known_2,age2,relat2,multiple_partners_value_check,sex2,ecstat2,details_known_3,age3,relat3,sex3,ecstat3,details_known_4,age4,relat4,sex4,ecstat4,details_known_5,age5,relat5,sex5,ecstat5,details_known_6,age6,relat6,sex6,ecstat6,details_known_7,age7,relat7,sex7,ecstat7,details_known_8,age8,relat8,sex8,ecstat8,armedforces,leftreg,reservist,preg_occ,housingneeds,housingneeds_type,housingneeds_a,housingneeds_b,housingneeds_c,housingneeds_f,housingneeds_g,housingneeds_h,housingneeds_other,illness,illness_type_4,illness_type_5,illness_type_2,illness_type_6,illness_type_7,illness_type_3,illness_type_9,illness_type_8,illness_type_1,illness_type_10,layear,waityear,reason,reasonother,reasonother_value_check,prevten,homeless,ppcodenk,ppostcode_full,previous_la_known,is_previous_la_inferred,prevloc_label,prevloc,reasonpref,rp_homeless,rp_insan_unsat,rp_medwel,rp_hardship,rp_dontknow,cbl,cap,chr,accessible_register,letting_allocation_none,referral_type,referral,referral_value_check,net_income_known,incref,incfreq,earnings,net_income_value_check,hb,has_benefits,benefits,household_charge,nocharge,period,brent,wrent,rent_value_check,scharge,wscharge,pscharge,wpschrge,supcharg,wsupchrg,tcharge,wtcharge,scharge_value_check,pscharge_value_check,supcharg_value_check,hbrentshortfall,tshortfall_known,tshortfall,wtshortfall,scheme_code,scheme_service_name,scheme_confidential,SCHTYPE,scheme_registered_under_care_act,scheme_owning_organisation_name,scheme_primary_client_group,scheme_has_other_client_group,scheme_secondary_client_group,scheme_support_type,scheme_intended_stay,scheme_created_at,location_code,location_postcode,location_name,location_units,location_type_of_unit,location_mobility_type,location_local_authority,location_startdate
-,in_progress,,s.port@jeemayle.com,s.port@jeemayle.com,false,2026-04-01T00:00:00+01:00,,2026-04-01T00:00:00+01:00,1,2026,,MHCLG,MHCLG,1,7,0,2026-04-01,2,2,,,2,HIJKLMN,ABCDEFG,1,0,2,6,2,,Address line 1,,London,,NW9 5LL,false,Barnet,E09000003,0,,,,,address line 1 as entered,address line 2 as entered,town or city as entered,county as entered,AB1 2CD,la as entered,7,1,3,2026-03-30,1,,1,2026-03-31,,,3,1,4,,2,4,,1,4,0,0,2,35,,F,0,2,36,0,,0,32,P,,M,6,1,-9,R,R,10,0,-9,R,R,10,,,,,,,,,,,,,,,,,,,,,1,4,1,2,1,0,1,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,2,7,4,,,6,1,0,TN23 6LZ,1,false,Ashford,E07000105,1,0,1,0,0,0,0,0,1,0,0,,,,0,0,1,268,,6,1,1,,,2,200.0,100.0,,50.0,25.0,40.0,20.0,35.0,17.5,325.0,162.5,,,,1,0,12.0,6.0,,,,,,,,,,,,,,,,,,,,
+Log ID,Status of log,ID of a set of duplicate logs,User the log is created by,User the log is assigned to,Is the user in the assigned_to column the data protection officer?,Time and date the log was created,User who last updated the log,Time and date the log was last updated,Was the log submitted in-service or via bulk upload?,Year collection period opened,ID of a set of bulk uploaded logs,Which organisation owns this property?,Which organisation manages this letting?,What is the needs type?,What is the letting type?,Is this letting a renewal?,What is the tenancy start date?,"What is the rent type? (grouped into SR, IR or AR)",What is the rent type?,Which type of Intermediate Rent is this letting?,Which 'Other' type of Intermediate Rent is this letting?,Is this a London Affordable Rent letting?,What is the tenant code?,What is the property reference?,Has the tenant seen the MHCLG privacy notice?,Is this the first time the property has been let as social housing?,What rent product was the property most recently let as?,What is the reason for the property being vacant?,Is this property new to the social rented sector?,"If known, property's UPRN",Address line 1,Address line 2,Town or City,County,Postcode,The internal value to indicate if the LA was inferred from the postcode,What is the property's local authority?,Local authority code,Is the UPRN known?,UPRN of the address selected,Was the 'No address found' page seen?,Address line 1 input from address matching feature,Postcode input from address matching feature,Address line 1 entered in bulk upload file,Address line 2 entered in bulk upload file,Town or city entered in bulk upload file,County entered in bulk upload file,Postcode entered in bulk upload file,Local authority entered in bulk upload file,What type of unit is the property?,Is the property built or adapted to wheelchair-user standards?,How many bedrooms does the property have?,What is the void date?,Number of days the property was vacant,The following soft validation was confirmed: You told us that the property has been vacant for more than 2 years. This is higher than we would expect.,Were any major repairs carried out during the void period?,What date were any major repairs completed on?,The following soft validation was confirmed: You told us the property has been vacant for 2 years. This is higher than we would expect.,Is this letting in sheltered accommodation?,Is this a joint tenancy?,Is this a starter tenancy?,What is the type of tenancy?,"If 'Other', what is the type of tenancy?",What is the length of the fixed-term tenancy to the nearest year?,How many people live in the household at this letting?,The following soft validation was confirmed: You told us somebody in the household is pregnant. You also told us there are no female tenants living at the property.,"Where household characteristics have a 'Refused' option for some or all of: AGE1-AGE8, SEX1-SEX8, RELAT2-RELAT8, ECSTAT1-ECSTAT8","Type of household 1 = 1 elder; 2 = 2 adults, including elder(s); 3 = 1 adult; 4 = 2 adults; 5 = 1 adult & 1+ children; 6 = 2+ adults & 1+ children; 9 = Other",Total number of dependent children in the household (Sum of when RELAT2-8 = C),Total number of elders in household (Sum of when AGE1-8 >= 60),Total number of adults in household,What is the lead tenant's age?,The following soft validation was confirmed: You told us this person is aged %{age} years and retired. The minimum expected retirement age for %{gender} in England is %{age}.,What was the lead tenant's sex at birth?,Which of these best describes the lead tenant's gender identity?,What is the lead tenant's ethnic group?,Which of these best describes the lead tenant's ethnic background?,What is the lead tenant's nationality?,Which of these best describes the lead tenant's working situation?,The following soft validation was confirmed: You have said that at least one person's situation is 'Unable to work because of long-term sickness or disability'.,Are the details of tenant 2 known?,What is person 2's age?,What is person 2's relationship to the lead tenant?,The following soft validation was confirmed: You said that more than one person in the household is the partner of the lead tenant. Are you sure this is correct?,What was person 2's sex at birth?,Which of these best describes person 2's gender identity?,Which of these best describes person 2's working situation?,Are the details of tenant 3 known?,What is person 3's age?,What is person 3's relationship to the lead tenant?,What was person 3's sex at birth?,Which of these best describes person 3's gender identity?,Which of these best describes person 3's working situation?,Are the details of tenant 4 known?,What is person 4's age?,What is person 4's relationship to the lead tenant?,What was person 4's sex at birth?,Which of these best describes person 4's gender identity?,Which of these best describes person 4's working situation?,Are the details of tenant 5 known?,What is person 5's age?,What is person 5's relationship to the lead tenant?,What was person 5's sex at birth?,Which of these best describes person 5's gender identity?,Which of these best describes person 5's working situation?,Are the details of tenant 6 known?,What is person 6's age?,What is person 6's relationship to the lead tenant?,What was person 6's sex at birth?,Which of these best describes person 6's gender identity?,Which of these best describes person 6's working situation?,Are the details of tenant 7 known?,What is person 7's age?,What is person 7's relationship to the lead tenant?,What was person 7's sex at birth?,Which of these best describes person 7's gender identity?,Which of these best describes person 7's working situation?,Are the details of tenant 8 known?,What is person 8's age?,What is person 8's relationship to the lead tenant?,What was person 8's sex at birth?,Which of these best describes person 8's gender identity?,Which of these best describes person 8's working situation?,Does anybody in the household have links to the UK armed forces?,Is this person still serving in the UK armed forces?,Was this person seriously injured or ill as a result of serving in the UK armed forces?,Is anybody in the household pregnant?,Does anybody in the household have any disabled access needs?,"What access needs do they have? (Fully wheelchair-accessible housing, Level access housing or Wheelchair access to essential rooms)",Disabled access needs a) Fully wheelchair-accessible housing,Disabled access needs b) Wheelchair access to essential rooms,Disabled access needs c) Level access housing,Disabled access needs f) Other disabled access needs,Disabled access needs g) No disabled access needs,Disabled access needs h) Don't know,Do they have any other disabled access needs?,Does anybody in the household have a physical or mental health condition (or other illness) expected to last 12 months or more?,Does this person's condition affect their dexterity?,Does this person's condition affect their learning or understanding or concentrating?,Does this person's condition affect their hearing?,Does this person's condition affect their memory?,Does this person's condition affect their mental health?,Does this person's condition affect their mobility?,Does this person's condition affect them socially or behaviourally?,Does this person's condition affect their stamina or breathing or fatigue?,Does this person's condition affect their vision?,Does this person's condition affect them in another way?,How long has the household continuously lived in the local authority area of the new letting?,How long has the household been on the local authority waiting list for the new letting?,What is the tenant's main reason for the household leaving their last settled home?,"If 'Other', what was the main reason for leaving their last settled home?",The soft validation was confirmed,Where was the household immediately before this letting?,Did the household experience homelessness immediately before this letting?,Previous postcode unknown or previous accommodation was temporary,What is the postcode of the household's last settled home?,Was the local authority of the household's last settled home known?,The internal value to indicate if the previous LA was inferred from the postcode,Previous location LA name,Previous location's ONS LA Code,Was the household given reasonable preference by the local authority?,Reasonable preference reason - They were homeless or about to lose their home (within 56 days),"Reasonable preference reason - They were living in insanitary, overcrowded or unisatisfactory housing",Reasonable preference reason - They needed to move on medical and welfare reasons (including disability),Reasonable preference reason - They needed to move to avoid hardship to themselves or others,Reasonable preference reason - Don't Know,Was the letting made under Choice-Based Lettings (CBL)?,Was the letting made under the Common Allocation Policy (CAP)?,Was the letting made under the Common Housing Register (CHR)?,Was the letting made under the Accessible Register?,"The letting was not allocated under CBL, CAP, CHR or Accessible Register.",,What was the source of referral for this letting?,"The following soft validation was confirmed: Are you sure? This is a general needs log, and this referral type is for supported housing.",Do you know the household's combined income after tax?,Was the household income refused?,How often does the household receive income?,How much income does the household have in total?,Populated when someone hits the soft validation and confirmed in the service,Is the tenant likely to be receiving any of these housing-related benefits?,"Does the tenant receive housing-related benefits? Yes if hb = Universal Credit housing element or Housing benefit, No if hb = Don't Know, Neither, Tenant prefers not to say or blank","How much of the household's income is from Universal Credit, state pensions or benefits?",Does the household pay rent or other charges for the accommodation?,Does the household pay rent or other charges for the accommodation? - flag for when household_charge is answered no,How often does the household pay rent and other charges?,What is the basic rent?,Weekly rent,Populated when the soft validation and confirmed in the service,What is the service charge?,Weekly service charge,What is the personal service charge?,Weekly personal service charge,What is the support charge?,Weekly support charge,Total charge to the tenant,Weekly total charge to the tenant,Populated when the soft validation and confirmed in the service,Populated when the soft validation and confirmed in the service,Populated when the soft validation and confirmed in the service,"After the household has received any housing-related benefits, will they still need to pay for rent and charges?",Can you estimate the outstanding amount?,Estimated outstanding amount,Weekly total rent shortfall charge for tenant receiving housing benefit,What scheme does this letting belong to?,"From scheme code, we map to the scheme name",Does the scheme contain confidential information?,"What is this type of scheme? (Direct access hostel), Foyer, Housing for older people or Other supported housing",Is this scheme registered under the Care Standards Act 2000?,Which organisation owns the housing stock for this scheme?,What client group is this scheme intended for?,Does this scheme provide for another client group?,What is the other client group?,What support does this scheme provide?,Intended length of stay,Date scheme was created,Which location is this letting for?,What is the postcode for this location?,What is the name of this location?,How many units are at this location?,What is the most common type of unit at this location?,What are the mobility standards for the majority of the units in this location?,What is the local authority of this postcode?,When did the first property in this location become available under this scheme?
+id,status,duplicate_set_id,created_by,assigned_to,is_dpo,created_at,updated_by,updated_at,creation_method,collection_start_year,bulk_upload_id,owning_organisation_name,managing_organisation_name,needstype,lettype,renewal,startdate,renttype,renttype_detail,irproduct,irproduct_other,lar,tenancycode,propcode,declaration,first_time_property_let_as_social_housing,unitletas,rsnvac,newprop,uprn,address_line1,address_line2,town_or_city,county,postcode_full,is_la_inferred,la_label,la,uprn_known,uprn_selection,address_search_value_check,address_line1_input,postcode_full_input,address_line1_as_entered,address_line2_as_entered,town_or_city_as_entered,county_as_entered,postcode_full_as_entered,la_as_entered,unittype_gn,wchair,beds,voiddate,vacdays,void_date_value_check,majorrepairs,mrcdate,major_repairs_date_value_check,sheltered,joint,startertenancy,tenancy,tenancyother,tenancylength,hhmemb,pregnancy_value_check,refused,hhtype,totchild,totelder,totadult,age1,retirement_value_check,sexrab1,sex1,ethnic_group,ethnic,nationality_all,ecstat1,working_situation_illness_check,details_known_2,age2,relat2,multiple_partners_value_check,sexrab2,sex2,ecstat2,details_known_3,age3,relat3,sexrab3,sex3,ecstat3,details_known_4,age4,relat4,sexrab4,sex4,ecstat4,details_known_5,age5,relat5,sexrab5,sex5,ecstat5,details_known_6,age6,relat6,sexrab6,sex6,ecstat6,details_known_7,age7,relat7,sexrab7,sex7,ecstat7,details_known_8,age8,relat8,sexrab8,sex8,ecstat8,armedforces,leftreg,reservist,preg_occ,housingneeds,housingneeds_type,housingneeds_a,housingneeds_b,housingneeds_c,housingneeds_f,housingneeds_g,housingneeds_h,housingneeds_other,illness,illness_type_4,illness_type_5,illness_type_2,illness_type_6,illness_type_7,illness_type_3,illness_type_9,illness_type_8,illness_type_1,illness_type_10,layear,waityear,reason,reasonother,reasonother_value_check,prevten,homeless,ppcodenk,ppostcode_full,previous_la_known,is_previous_la_inferred,prevloc_label,prevloc,reasonpref,rp_homeless,rp_insan_unsat,rp_medwel,rp_hardship,rp_dontknow,cbl,cap,chr,accessible_register,letting_allocation_none,referral_type,referral,referral_value_check,net_income_known,incref,incfreq,earnings,net_income_value_check,hb,has_benefits,benefits,household_charge,nocharge,period,brent,wrent,rent_value_check,scharge,wscharge,pscharge,wpschrge,supcharg,wsupchrg,tcharge,wtcharge,scharge_value_check,pscharge_value_check,supcharg_value_check,hbrentshortfall,tshortfall_known,tshortfall,wtshortfall,scheme_code,scheme_service_name,scheme_confidential,SCHTYPE,scheme_registered_under_care_act,scheme_owning_organisation_name,scheme_primary_client_group,scheme_has_other_client_group,scheme_secondary_client_group,scheme_support_type,scheme_intended_stay,scheme_created_at,location_code,location_postcode,location_name,location_units,location_type_of_unit,location_mobility_type,location_local_authority,location_startdate
+,in_progress,,s.port@jeemayle.com,s.port@jeemayle.com,false,2026-04-01T00:00:00+01:00,,2026-04-01T00:00:00+01:00,1,2026,,MHCLG,MHCLG,1,7,0,2026-04-01,2,2,,,2,HIJKLMN,ABCDEFG,1,0,2,6,2,,Address line 1,,London,,NW9 5LL,false,Barnet,E09000003,0,,,,,address line 1 as entered,address line 2 as entered,town or city as entered,county as entered,AB1 2CD,la as entered,7,1,3,2026-03-30,1,,1,2026-03-31,,,3,1,4,,2,4,,1,4,0,0,2,35,,F,F,0,2,36,0,,0,32,P,,M,M,6,1,-9,R,R,R,10,0,-9,R,R,R,10,,,,,,,,,,,,,,,,,,,,,,,,,1,4,1,2,1,0,1,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,2,7,4,,,6,1,0,TN23 6LZ,1,false,Ashford,E07000105,1,0,1,0,0,0,0,0,1,0,0,,,,0,0,1,268,,6,1,1,,,2,200.0,100.0,,50.0,25.0,40.0,20.0,35.0,17.5,325.0,162.5,,,,1,0,12.0,6.0,,,,,,,,,,,,,,,,,,,,
diff --git a/spec/fixtures/files/lettings_log_csv_export_labels_26.csv b/spec/fixtures/files/lettings_log_csv_export_labels_26.csv
index 909a1a02e..f771b4d60 100644
--- a/spec/fixtures/files/lettings_log_csv_export_labels_26.csv
+++ b/spec/fixtures/files/lettings_log_csv_export_labels_26.csv
@@ -1,3 +1,3 @@
-Log ID,Status of log,ID of a set of duplicate logs,User the log is created by,User the log is assigned to,Is the user in the assigned_to column the data protection officer?,Time and date the log was created,User who last updated the log,Time and date the log was last updated,Was the log submitted in-service or via bulk upload?,Year collection period opened,ID of a set of bulk uploaded logs,Which organisation owns this property?,Which organisation manages this letting?,What is the needs type?,What is the letting type?,Is this letting a renewal?,What is the tenancy start date?,"What is the rent type? (grouped into SR, IR or AR)",What is the rent type?,Which type of Intermediate Rent is this letting?,Which 'Other' type of Intermediate Rent is this letting?,Is this a London Affordable Rent letting?,What is the tenant code?,What is the property reference?,Has the tenant seen the MHCLG privacy notice?,Is this the first time the property has been let as social housing?,What rent product was the property most recently let as?,What is the reason for the property being vacant?,Is this property new to the social rented sector?,"If known, property's UPRN",Address line 1,Address line 2,Town or City,County,Postcode,The internal value to indicate if the LA was inferred from the postcode,What is the property's local authority?,Local authority code,Is the UPRN known?,UPRN of the address selected,Was the 'No address found' page seen?,Address line 1 input from address matching feature,Postcode input from address matching feature,Address line 1 entered in bulk upload file,Address line 2 entered in bulk upload file,Town or city entered in bulk upload file,County entered in bulk upload file,Postcode entered in bulk upload file,Local authority entered in bulk upload file,What type of unit is the property?,Is the property built or adapted to wheelchair-user standards?,How many bedrooms does the property have?,What is the void date?,Number of days the property was vacant,The following soft validation was confirmed: You told us that the property has been vacant for more than 2 years. This is higher than we would expect.,Were any major repairs carried out during the void period?,What date were any major repairs completed on?,The following soft validation was confirmed: You told us the property has been vacant for 2 years. This is higher than we would expect.,Is this letting in sheltered accommodation?,Is this a joint tenancy?,Is this a starter tenancy?,What is the type of tenancy?,"If 'Other', what is the type of tenancy?",What is the length of the fixed-term tenancy to the nearest year?,How many people live in the household at this letting?,The following soft validation was confirmed: You told us somebody in the household is pregnant. You also told us there are no female tenants living at the property.,"Where household characteristics have a 'Refused' option for some or all of: AGE1-AGE8, SEX1-SEX8, RELAT2-RELAT8, ECSTAT1-ECSTAT8","Type of household 1 = 1 elder; 2 = 2 adults, including elder(s); 3 = 1 adult; 4 = 2 adults; 5 = 1 adult & 1+ children; 6 = 2+ adults & 1+ children; 9 = Other",Total number of dependent children in the household (Sum of when RELAT2-8 = C),Total number of elders in household (Sum of when AGE1-8 >= 60),Total number of adults in household,What is the lead tenant's age?,The following soft validation was confirmed: You told us this person is aged %{age} years and retired. The minimum expected retirement age for %{gender} in England is %{age}.,Which of these best describes the lead tenant's gender identity?,What is the lead tenant's ethnic group?,Which of these best describes the lead tenant's ethnic background?,What is the lead tenant's nationality?,Which of these best describes the lead tenant's working situation?,The following soft validation was confirmed: You have said that at least one person's situation is 'Unable to work because of long-term sickness or disability'.,Are the details of tenant 2 known?,What is person 2's age?,What is person 2's relationship to the lead tenant?,The following soft validation was confirmed: You said that more than one person in the household is the partner of the lead tenant. Are you sure this is correct?,Which of these best describes person 2's gender identity?,Which of these best describes person 2's working situation?,Are the details of tenant 3 known?,What is person 3's age?,What is person 3's relationship to the lead tenant?,Which of these best describes person 3's gender identity?,Which of these best describes person 3's working situation?,Are the details of tenant 4 known?,What is person 4's age?,What is person 4's relationship to the lead tenant?,Which of these best describes person 4's gender identity?,Which of these best describes person 4's working situation?,Are the details of tenant 5 known?,What is person 5's age?,What is person 5's relationship to the lead tenant?,Which of these best describes person 5's gender identity?,Which of these best describes person 5's working situation?,Are the details of tenant 6 known?,What is person 6's age?,What is person 6's relationship to the lead tenant?,Which of these best describes person 6's gender identity?,Which of these best describes person 6's working situation?,Are the details of tenant 7 known?,What is person 7's age?,What is person 7's relationship to the lead tenant?,Which of these best describes person 7's gender identity?,Which of these best describes person 7's working situation?,Are the details of tenant 8 known?,What is person 8's age?,What is person 8's relationship to the lead tenant?,Which of these best describes person 8's gender identity?,Which of these best describes person 8's working situation?,Does anybody in the household have links to the UK armed forces?,Is this person still serving in the UK armed forces?,Was this person seriously injured or ill as a result of serving in the UK armed forces?,Is anybody in the household pregnant?,Does anybody in the household have any disabled access needs?,"What access needs do they have? (Fully wheelchair-accessible housing, Level access housing or Wheelchair access to essential rooms)",Disabled access needs a) Fully wheelchair-accessible housing,Disabled access needs b) Wheelchair access to essential rooms,Disabled access needs c) Level access housing,Disabled access needs f) Other disabled access needs,Disabled access needs g) No disabled access needs,Disabled access needs h) Don't know,Do they have any other disabled access needs?,Does anybody in the household have a physical or mental health condition (or other illness) expected to last 12 months or more?,Does this person's condition affect their dexterity?,Does this person's condition affect their learning or understanding or concentrating?,Does this person's condition affect their hearing?,Does this person's condition affect their memory?,Does this person's condition affect their mental health?,Does this person's condition affect their mobility?,Does this person's condition affect them socially or behaviourally?,Does this person's condition affect their stamina or breathing or fatigue?,Does this person's condition affect their vision?,Does this person's condition affect them in another way?,How long has the household continuously lived in the local authority area of the new letting?,How long has the household been on the local authority waiting list for the new letting?,What is the tenant's main reason for the household leaving their last settled home?,"If 'Other', what was the main reason for leaving their last settled home?",The soft validation was confirmed,Where was the household immediately before this letting?,Did the household experience homelessness immediately before this letting?,Previous postcode unknown or previous accommodation was temporary,What is the postcode of the household's last settled home?,Was the local authority of the household's last settled home known?,The internal value to indicate if the previous LA was inferred from the postcode,Previous location LA name,Previous location's ONS LA Code,Was the household given reasonable preference by the local authority?,Reasonable preference reason - They were homeless or about to lose their home (within 56 days),"Reasonable preference reason - They were living in insanitary, overcrowded or unisatisfactory housing",Reasonable preference reason - They needed to move on medical and welfare reasons (including disability),Reasonable preference reason - They needed to move to avoid hardship to themselves or others,Reasonable preference reason - Don't Know,Was the letting made under Choice-Based Lettings (CBL)?,Was the letting made under the Common Allocation Policy (CAP)?,Was the letting made under the Common Housing Register (CHR)?,Was the letting made under the Accessible Register?,"The letting was not allocated under CBL, CAP, CHR or Accessible Register.",,What was the source of referral for this letting?,"The following soft validation was confirmed: Are you sure? This is a general needs log, and this referral type is for supported housing.",Do you know the household's combined income after tax?,Was the household income refused?,How often does the household receive income?,How much income does the household have in total?,Populated when someone hits the soft validation and confirmed in the service,Is the tenant likely to be receiving any of these housing-related benefits?,"Does the tenant receive housing-related benefits? Yes if hb = Universal Credit housing element or Housing benefit, No if hb = Don't Know, Neither, Tenant prefers not to say or blank","How much of the household's income is from Universal Credit, state pensions or benefits?",Does the household pay rent or other charges for the accommodation?,Does the household pay rent or other charges for the accommodation? - flag for when household_charge is answered no,How often does the household pay rent and other charges?,What is the basic rent?,Weekly rent,Populated when the soft validation and confirmed in the service,What is the service charge?,Weekly service charge,What is the personal service charge?,Weekly personal service charge,What is the support charge?,Weekly support charge,Total charge to the tenant,Weekly total charge to the tenant,Populated when the soft validation and confirmed in the service,Populated when the soft validation and confirmed in the service,Populated when the soft validation and confirmed in the service,"After the household has received any housing-related benefits, will they still need to pay for rent and charges?",Can you estimate the outstanding amount?,Estimated outstanding amount,Weekly total rent shortfall charge for tenant receiving housing benefit,What scheme does this letting belong to?,"From scheme code, we map to the scheme name",Does the scheme contain confidential information?,"What is this type of scheme? (Direct access hostel), Foyer, Housing for older people or Other supported housing",Is this scheme registered under the Care Standards Act 2000?,Which organisation owns the housing stock for this scheme?,What client group is this scheme intended for?,Does this scheme provide for another client group?,What is the other client group?,What support does this scheme provide?,Intended length of stay,Date scheme was created,Which location is this letting for?,What is the postcode for this location?,What is the name of this location?,How many units are at this location?,What is the most common type of unit at this location?,What are the mobility standards for the majority of the units in this location?,What is the local authority of this postcode?,When did the first property in this location become available under this scheme?
-id,status,duplicate_set_id,created_by,assigned_to,is_dpo,created_at,updated_by,updated_at,creation_method,collection_start_year,bulk_upload_id,owning_organisation_name,managing_organisation_name,needstype,lettype,renewal,startdate,renttype,renttype_detail,irproduct,irproduct_other,lar,tenancycode,propcode,declaration,first_time_property_let_as_social_housing,unitletas,rsnvac,newprop,uprn,address_line1,address_line2,town_or_city,county,postcode_full,is_la_inferred,la_label,la,uprn_known,uprn_selection,address_search_value_check,address_line1_input,postcode_full_input,address_line1_as_entered,address_line2_as_entered,town_or_city_as_entered,county_as_entered,postcode_full_as_entered,la_as_entered,unittype_gn,wchair,beds,voiddate,vacdays,void_date_value_check,majorrepairs,mrcdate,major_repairs_date_value_check,sheltered,joint,startertenancy,tenancy,tenancyother,tenancylength,hhmemb,pregnancy_value_check,refused,hhtype,totchild,totelder,totadult,age1,retirement_value_check,sex1,ethnic_group,ethnic,nationality_all,ecstat1,working_situation_illness_check,details_known_2,age2,relat2,multiple_partners_value_check,sex2,ecstat2,details_known_3,age3,relat3,sex3,ecstat3,details_known_4,age4,relat4,sex4,ecstat4,details_known_5,age5,relat5,sex5,ecstat5,details_known_6,age6,relat6,sex6,ecstat6,details_known_7,age7,relat7,sex7,ecstat7,details_known_8,age8,relat8,sex8,ecstat8,armedforces,leftreg,reservist,preg_occ,housingneeds,housingneeds_type,housingneeds_a,housingneeds_b,housingneeds_c,housingneeds_f,housingneeds_g,housingneeds_h,housingneeds_other,illness,illness_type_4,illness_type_5,illness_type_2,illness_type_6,illness_type_7,illness_type_3,illness_type_9,illness_type_8,illness_type_1,illness_type_10,layear,waityear,reason,reasonother,reasonother_value_check,prevten,homeless,ppcodenk,ppostcode_full,previous_la_known,is_previous_la_inferred,prevloc_label,prevloc,reasonpref,rp_homeless,rp_insan_unsat,rp_medwel,rp_hardship,rp_dontknow,cbl,cap,chr,accessible_register,letting_allocation_none,referral_type,referral,referral_value_check,net_income_known,incref,incfreq,earnings,net_income_value_check,hb,has_benefits,benefits,household_charge,nocharge,period,brent,wrent,rent_value_check,scharge,wscharge,pscharge,wpschrge,supcharg,wsupchrg,tcharge,wtcharge,scharge_value_check,pscharge_value_check,supcharg_value_check,hbrentshortfall,tshortfall_known,tshortfall,wtshortfall,scheme_code,scheme_service_name,scheme_confidential,SCHTYPE,scheme_registered_under_care_act,scheme_owning_organisation_name,scheme_primary_client_group,scheme_has_other_client_group,scheme_secondary_client_group,scheme_support_type,scheme_intended_stay,scheme_created_at,location_code,location_postcode,location_name,location_units,location_type_of_unit,location_mobility_type,location_local_authority,location_startdate
-,in_progress,,s.port@jeemayle.com,s.port@jeemayle.com,false,2026-04-01T00:00:00+01:00,,2026-04-01T00:00:00+01:00,single log,2026,,MHCLG,MHCLG,General needs,Affordable rent general needs local authority,No,2026-04-01,Affordable Rent,Affordable Rent,,,No,HIJKLMN,ABCDEFG,Yes,No,Affordable rent basis,Tenant abandoned property,No,,Address line 1,,London,,NW9 5LL,No,Barnet,E09000003,No,,,,,address line 1 as entered,address line 2 as entered,town or city as entered,county as entered,AB1 2CD,la as entered,House,Yes,3,2026-03-30,1,,Yes,2026-03-31,,,Don’t know,Yes,Assured Shorthold Tenancy (AST) – Fixed term,,2,4,,Yes,4,0,0,2,35,,Female,White,Irish,Australia,Other,,Yes,32,Yes,,Male,Not seeking work,No,Not known,Prefers not to say,Prefers not to say,Prefers not to say,Yes,Not known,Tenant prefers not to say,Person prefers not to say,Person prefers not to say,,,,,,,,,,,,,,,,,,,,,Yes – the person is a current or former regular,No – they left up to and including 5 years ago,Yes,No,Yes,Fully wheelchair accessible housing,Yes,No,No,No,No,No,No,Yes,No,No,Yes,No,No,No,No,No,No,No,Less than 1 year,1 year but under 2 years,Loss of tied accommodation,,,Other supported housing,No,Yes,TN23 6LZ,Yes,No,Ashford,E07000105,Yes,,Yes,,,,No,No,Yes,No,No,,,,Yes,No,Weekly,268,,Universal Credit housing element,Yes,All,,,Every 2 weeks,200.0,100.0,,50.0,25.0,40.0,20.0,35.0,17.5,325.0,162.5,,,,Yes,Yes,12.0,6.0,,,,,,,,,,,,,,,,,,,,
+Log ID,Status of log,ID of a set of duplicate logs,User the log is created by,User the log is assigned to,Is the user in the assigned_to column the data protection officer?,Time and date the log was created,User who last updated the log,Time and date the log was last updated,Was the log submitted in-service or via bulk upload?,Year collection period opened,ID of a set of bulk uploaded logs,Which organisation owns this property?,Which organisation manages this letting?,What is the needs type?,What is the letting type?,Is this letting a renewal?,What is the tenancy start date?,"What is the rent type? (grouped into SR, IR or AR)",What is the rent type?,Which type of Intermediate Rent is this letting?,Which 'Other' type of Intermediate Rent is this letting?,Is this a London Affordable Rent letting?,What is the tenant code?,What is the property reference?,Has the tenant seen the MHCLG privacy notice?,Is this the first time the property has been let as social housing?,What rent product was the property most recently let as?,What is the reason for the property being vacant?,Is this property new to the social rented sector?,"If known, property's UPRN",Address line 1,Address line 2,Town or City,County,Postcode,The internal value to indicate if the LA was inferred from the postcode,What is the property's local authority?,Local authority code,Is the UPRN known?,UPRN of the address selected,Was the 'No address found' page seen?,Address line 1 input from address matching feature,Postcode input from address matching feature,Address line 1 entered in bulk upload file,Address line 2 entered in bulk upload file,Town or city entered in bulk upload file,County entered in bulk upload file,Postcode entered in bulk upload file,Local authority entered in bulk upload file,What type of unit is the property?,Is the property built or adapted to wheelchair-user standards?,How many bedrooms does the property have?,What is the void date?,Number of days the property was vacant,The following soft validation was confirmed: You told us that the property has been vacant for more than 2 years. This is higher than we would expect.,Were any major repairs carried out during the void period?,What date were any major repairs completed on?,The following soft validation was confirmed: You told us the property has been vacant for 2 years. This is higher than we would expect.,Is this letting in sheltered accommodation?,Is this a joint tenancy?,Is this a starter tenancy?,What is the type of tenancy?,"If 'Other', what is the type of tenancy?",What is the length of the fixed-term tenancy to the nearest year?,How many people live in the household at this letting?,The following soft validation was confirmed: You told us somebody in the household is pregnant. You also told us there are no female tenants living at the property.,"Where household characteristics have a 'Refused' option for some or all of: AGE1-AGE8, SEX1-SEX8, RELAT2-RELAT8, ECSTAT1-ECSTAT8","Type of household 1 = 1 elder; 2 = 2 adults, including elder(s); 3 = 1 adult; 4 = 2 adults; 5 = 1 adult & 1+ children; 6 = 2+ adults & 1+ children; 9 = Other",Total number of dependent children in the household (Sum of when RELAT2-8 = C),Total number of elders in household (Sum of when AGE1-8 >= 60),Total number of adults in household,What is the lead tenant's age?,The following soft validation was confirmed: You told us this person is aged %{age} years and retired. The minimum expected retirement age for %{gender} in England is %{age}.,What was the lead tenant's sex at birth?,Which of these best describes the lead tenant's gender identity?,What is the lead tenant's ethnic group?,Which of these best describes the lead tenant's ethnic background?,What is the lead tenant's nationality?,Which of these best describes the lead tenant's working situation?,The following soft validation was confirmed: You have said that at least one person's situation is 'Unable to work because of long-term sickness or disability'.,Are the details of tenant 2 known?,What is person 2's age?,What is person 2's relationship to the lead tenant?,The following soft validation was confirmed: You said that more than one person in the household is the partner of the lead tenant. Are you sure this is correct?,What was person 2's sex at birth?,Which of these best describes person 2's gender identity?,Which of these best describes person 2's working situation?,Are the details of tenant 3 known?,What is person 3's age?,What is person 3's relationship to the lead tenant?,What was person 3's sex at birth?,Which of these best describes person 3's gender identity?,Which of these best describes person 3's working situation?,Are the details of tenant 4 known?,What is person 4's age?,What is person 4's relationship to the lead tenant?,What was person 4's sex at birth?,Which of these best describes person 4's gender identity?,Which of these best describes person 4's working situation?,Are the details of tenant 5 known?,What is person 5's age?,What is person 5's relationship to the lead tenant?,What was person 5's sex at birth?,Which of these best describes person 5's gender identity?,Which of these best describes person 5's working situation?,Are the details of tenant 6 known?,What is person 6's age?,What is person 6's relationship to the lead tenant?,What was person 6's sex at birth?,Which of these best describes person 6's gender identity?,Which of these best describes person 6's working situation?,Are the details of tenant 7 known?,What is person 7's age?,What is person 7's relationship to the lead tenant?,What was person 7's sex at birth?,Which of these best describes person 7's gender identity?,Which of these best describes person 7's working situation?,Are the details of tenant 8 known?,What is person 8's age?,What is person 8's relationship to the lead tenant?,What was person 8's sex at birth?,Which of these best describes person 8's gender identity?,Which of these best describes person 8's working situation?,Does anybody in the household have links to the UK armed forces?,Is this person still serving in the UK armed forces?,Was this person seriously injured or ill as a result of serving in the UK armed forces?,Is anybody in the household pregnant?,Does anybody in the household have any disabled access needs?,"What access needs do they have? (Fully wheelchair-accessible housing, Level access housing or Wheelchair access to essential rooms)",Disabled access needs a) Fully wheelchair-accessible housing,Disabled access needs b) Wheelchair access to essential rooms,Disabled access needs c) Level access housing,Disabled access needs f) Other disabled access needs,Disabled access needs g) No disabled access needs,Disabled access needs h) Don't know,Do they have any other disabled access needs?,Does anybody in the household have a physical or mental health condition (or other illness) expected to last 12 months or more?,Does this person's condition affect their dexterity?,Does this person's condition affect their learning or understanding or concentrating?,Does this person's condition affect their hearing?,Does this person's condition affect their memory?,Does this person's condition affect their mental health?,Does this person's condition affect their mobility?,Does this person's condition affect them socially or behaviourally?,Does this person's condition affect their stamina or breathing or fatigue?,Does this person's condition affect their vision?,Does this person's condition affect them in another way?,How long has the household continuously lived in the local authority area of the new letting?,How long has the household been on the local authority waiting list for the new letting?,What is the tenant's main reason for the household leaving their last settled home?,"If 'Other', what was the main reason for leaving their last settled home?",The soft validation was confirmed,Where was the household immediately before this letting?,Did the household experience homelessness immediately before this letting?,Previous postcode unknown or previous accommodation was temporary,What is the postcode of the household's last settled home?,Was the local authority of the household's last settled home known?,The internal value to indicate if the previous LA was inferred from the postcode,Previous location LA name,Previous location's ONS LA Code,Was the household given reasonable preference by the local authority?,Reasonable preference reason - They were homeless or about to lose their home (within 56 days),"Reasonable preference reason - They were living in insanitary, overcrowded or unisatisfactory housing",Reasonable preference reason - They needed to move on medical and welfare reasons (including disability),Reasonable preference reason - They needed to move to avoid hardship to themselves or others,Reasonable preference reason - Don't Know,Was the letting made under Choice-Based Lettings (CBL)?,Was the letting made under the Common Allocation Policy (CAP)?,Was the letting made under the Common Housing Register (CHR)?,Was the letting made under the Accessible Register?,"The letting was not allocated under CBL, CAP, CHR or Accessible Register.",,What was the source of referral for this letting?,"The following soft validation was confirmed: Are you sure? This is a general needs log, and this referral type is for supported housing.",Do you know the household's combined income after tax?,Was the household income refused?,How often does the household receive income?,How much income does the household have in total?,Populated when someone hits the soft validation and confirmed in the service,Is the tenant likely to be receiving any of these housing-related benefits?,"Does the tenant receive housing-related benefits? Yes if hb = Universal Credit housing element or Housing benefit, No if hb = Don't Know, Neither, Tenant prefers not to say or blank","How much of the household's income is from Universal Credit, state pensions or benefits?",Does the household pay rent or other charges for the accommodation?,Does the household pay rent or other charges for the accommodation? - flag for when household_charge is answered no,How often does the household pay rent and other charges?,What is the basic rent?,Weekly rent,Populated when the soft validation and confirmed in the service,What is the service charge?,Weekly service charge,What is the personal service charge?,Weekly personal service charge,What is the support charge?,Weekly support charge,Total charge to the tenant,Weekly total charge to the tenant,Populated when the soft validation and confirmed in the service,Populated when the soft validation and confirmed in the service,Populated when the soft validation and confirmed in the service,"After the household has received any housing-related benefits, will they still need to pay for rent and charges?",Can you estimate the outstanding amount?,Estimated outstanding amount,Weekly total rent shortfall charge for tenant receiving housing benefit,What scheme does this letting belong to?,"From scheme code, we map to the scheme name",Does the scheme contain confidential information?,"What is this type of scheme? (Direct access hostel), Foyer, Housing for older people or Other supported housing",Is this scheme registered under the Care Standards Act 2000?,Which organisation owns the housing stock for this scheme?,What client group is this scheme intended for?,Does this scheme provide for another client group?,What is the other client group?,What support does this scheme provide?,Intended length of stay,Date scheme was created,Which location is this letting for?,What is the postcode for this location?,What is the name of this location?,How many units are at this location?,What is the most common type of unit at this location?,What are the mobility standards for the majority of the units in this location?,What is the local authority of this postcode?,When did the first property in this location become available under this scheme?
+id,status,duplicate_set_id,created_by,assigned_to,is_dpo,created_at,updated_by,updated_at,creation_method,collection_start_year,bulk_upload_id,owning_organisation_name,managing_organisation_name,needstype,lettype,renewal,startdate,renttype,renttype_detail,irproduct,irproduct_other,lar,tenancycode,propcode,declaration,first_time_property_let_as_social_housing,unitletas,rsnvac,newprop,uprn,address_line1,address_line2,town_or_city,county,postcode_full,is_la_inferred,la_label,la,uprn_known,uprn_selection,address_search_value_check,address_line1_input,postcode_full_input,address_line1_as_entered,address_line2_as_entered,town_or_city_as_entered,county_as_entered,postcode_full_as_entered,la_as_entered,unittype_gn,wchair,beds,voiddate,vacdays,void_date_value_check,majorrepairs,mrcdate,major_repairs_date_value_check,sheltered,joint,startertenancy,tenancy,tenancyother,tenancylength,hhmemb,pregnancy_value_check,refused,hhtype,totchild,totelder,totadult,age1,retirement_value_check,sexrab1,sex1,ethnic_group,ethnic,nationality_all,ecstat1,working_situation_illness_check,details_known_2,age2,relat2,multiple_partners_value_check,sexrab2,sex2,ecstat2,details_known_3,age3,relat3,sexrab3,sex3,ecstat3,details_known_4,age4,relat4,sexrab4,sex4,ecstat4,details_known_5,age5,relat5,sexrab5,sex5,ecstat5,details_known_6,age6,relat6,sexrab6,sex6,ecstat6,details_known_7,age7,relat7,sexrab7,sex7,ecstat7,details_known_8,age8,relat8,sexrab8,sex8,ecstat8,armedforces,leftreg,reservist,preg_occ,housingneeds,housingneeds_type,housingneeds_a,housingneeds_b,housingneeds_c,housingneeds_f,housingneeds_g,housingneeds_h,housingneeds_other,illness,illness_type_4,illness_type_5,illness_type_2,illness_type_6,illness_type_7,illness_type_3,illness_type_9,illness_type_8,illness_type_1,illness_type_10,layear,waityear,reason,reasonother,reasonother_value_check,prevten,homeless,ppcodenk,ppostcode_full,previous_la_known,is_previous_la_inferred,prevloc_label,prevloc,reasonpref,rp_homeless,rp_insan_unsat,rp_medwel,rp_hardship,rp_dontknow,cbl,cap,chr,accessible_register,letting_allocation_none,referral_type,referral,referral_value_check,net_income_known,incref,incfreq,earnings,net_income_value_check,hb,has_benefits,benefits,household_charge,nocharge,period,brent,wrent,rent_value_check,scharge,wscharge,pscharge,wpschrge,supcharg,wsupchrg,tcharge,wtcharge,scharge_value_check,pscharge_value_check,supcharg_value_check,hbrentshortfall,tshortfall_known,tshortfall,wtshortfall,scheme_code,scheme_service_name,scheme_confidential,SCHTYPE,scheme_registered_under_care_act,scheme_owning_organisation_name,scheme_primary_client_group,scheme_has_other_client_group,scheme_secondary_client_group,scheme_support_type,scheme_intended_stay,scheme_created_at,location_code,location_postcode,location_name,location_units,location_type_of_unit,location_mobility_type,location_local_authority,location_startdate
+,in_progress,,s.port@jeemayle.com,s.port@jeemayle.com,false,2026-04-01T00:00:00+01:00,,2026-04-01T00:00:00+01:00,single log,2026,,MHCLG,MHCLG,General needs,Affordable rent general needs local authority,No,2026-04-01,Affordable Rent,Affordable Rent,,,No,HIJKLMN,ABCDEFG,Yes,No,Affordable rent basis,Tenant abandoned property,No,,Address line 1,,London,,NW9 5LL,No,Barnet,E09000003,No,,,,,address line 1 as entered,address line 2 as entered,town or city as entered,county as entered,AB1 2CD,la as entered,House,Yes,3,2026-03-30,1,,Yes,2026-03-31,,,Don’t know,Yes,Assured Shorthold Tenancy (AST) – Fixed term,,2,4,,Yes,4,0,0,2,35,,Female,Female,White,Irish,Australia,Other,,Yes,32,Yes,,Male,Male,Not seeking work,No,Not known,Prefers not to say,Prefers not to say,Prefers not to say,Prefers not to say,Yes,Not known,Tenant prefers not to say,Person prefers not to say,Person prefers not to say,Person prefers not to say,,,,,,,,,,,,,,,,,,,,,,,,,Yes – the person is a current or former regular,No – they left up to and including 5 years ago,Yes,No,Yes,Fully wheelchair accessible housing,Yes,No,No,No,No,No,No,Yes,No,No,Yes,No,No,No,No,No,No,No,Less than 1 year,1 year but under 2 years,Loss of tied accommodation,,,Other supported housing,No,Yes,TN23 6LZ,Yes,No,Ashford,E07000105,Yes,,Yes,,,,No,No,Yes,No,No,,,,Yes,No,Weekly,268,,Universal Credit housing element,Yes,All,,,Every 2 weeks,200.0,100.0,,50.0,25.0,40.0,20.0,35.0,17.5,325.0,162.5,,,,Yes,Yes,12.0,6.0,,,,,,,,,,,,,,,,,,,,
diff --git a/spec/fixtures/files/lettings_log_csv_export_non_support_codes_26.csv b/spec/fixtures/files/lettings_log_csv_export_non_support_codes_26.csv
index 49f2cc928..a5d1fb996 100644
--- a/spec/fixtures/files/lettings_log_csv_export_non_support_codes_26.csv
+++ b/spec/fixtures/files/lettings_log_csv_export_non_support_codes_26.csv
@@ -1,3 +1,3 @@
-Log ID,Status of log,ID of a set of duplicate logs,User the log is assigned to,Is the user in the assigned_to column the data protection officer?,Time and date the log was created,User who last updated the log,Time and date the log was last updated,Was the log submitted in-service or via bulk upload?,Year collection period opened,ID of a set of bulk uploaded logs,Which organisation owns this property?,Which organisation manages this letting?,What is the needs type?,What is the letting type?,Is this letting a renewal?,What is the tenancy start date?,"What is the rent type? (grouped into SR, IR or AR)",What is the rent type?,Which type of Intermediate Rent is this letting?,Which 'Other' type of Intermediate Rent is this letting?,Is this a London Affordable Rent letting?,What is the tenant code?,What is the property reference?,Has the tenant seen the MHCLG privacy notice?,Is this the first time the property has been let as social housing?,What rent product was the property most recently let as?,What is the reason for the property being vacant?,Is this property new to the social rented sector?,Is the UPRN known?,"If known, property's UPRN",Address line 1,Address line 2,Town or City,County,Postcode,What is the property's local authority?,What type of unit is the property?,Is the property built or adapted to wheelchair-user standards?,How many bedrooms does the property have?,What is the void date?,Number of days the property was vacant,Were any major repairs carried out during the void period?,What date were any major repairs completed on?,Is this letting in sheltered accommodation?,Is this a joint tenancy?,Is this a starter tenancy?,What is the type of tenancy?,"If 'Other', what is the type of tenancy?",What is the length of the fixed-term tenancy to the nearest year?,How many people live in the household at this letting?,"Where household characteristics have a 'Refused' option for some or all of: AGE1-AGE8, SEX1-SEX8, RELAT2-RELAT8, ECSTAT1-ECSTAT8",What is the lead tenant's age?,Which of these best describes the lead tenant's gender identity?,What is the lead tenant's ethnic group?,Which of these best describes the lead tenant's ethnic background?,What is the lead tenant's nationality?,Which of these best describes the lead tenant's working situation?,What is person 2's age?,What is person 2's relationship to the lead tenant?,Which of these best describes person 2's gender identity?,Which of these best describes person 2's working situation?,What is person 3's age?,What is person 3's relationship to the lead tenant?,Which of these best describes person 3's gender identity?,Which of these best describes person 3's working situation?,What is person 4's age?,What is person 4's relationship to the lead tenant?,Which of these best describes person 4's gender identity?,Which of these best describes person 4's working situation?,What is person 5's age?,What is person 5's relationship to the lead tenant?,Which of these best describes person 5's gender identity?,Which of these best describes person 5's working situation?,What is person 6's age?,What is person 6's relationship to the lead tenant?,Which of these best describes person 6's gender identity?,Which of these best describes person 6's working situation?,What is person 7's age?,What is person 7's relationship to the lead tenant?,Which of these best describes person 7's gender identity?,Which of these best describes person 7's working situation?,What is person 8's age?,What is person 8's relationship to the lead tenant?,Which of these best describes person 8's gender identity?,Which of these best describes person 8's working situation?,Does anybody in the household have links to the UK armed forces?,Is this person still serving in the UK armed forces?,Was this person seriously injured or ill as a result of serving in the UK armed forces?,Is anybody in the household pregnant?,Does anybody in the household have any disabled access needs?,"What access needs do they have? (Fully wheelchair-accessible housing, Level access housing or Wheelchair access to essential rooms)",Disabled access needs a) Fully wheelchair-accessible housing,Disabled access needs b) Wheelchair access to essential rooms,Disabled access needs c) Level access housing,Disabled access needs f) Other disabled access needs,Disabled access needs g) No disabled access needs,Disabled access needs h) Don't know,Do they have any other disabled access needs?,Does anybody in the household have a physical or mental health condition (or other illness) expected to last 12 months or more?,Does this person's condition affect their dexterity?,Does this person's condition affect their learning or understanding or concentrating?,Does this person's condition affect their hearing?,Does this person's condition affect their memory?,Does this person's condition affect their mental health?,Does this person's condition affect their mobility?,Does this person's condition affect them socially or behaviourally?,Does this person's condition affect their stamina or breathing or fatigue?,Does this person's condition affect their vision?,Does this person's condition affect them in another way?,How long has the household continuously lived in the local authority area of the new letting?,How long has the household been on the local authority waiting list for the new letting?,What is the tenant's main reason for the household leaving their last settled home?,"If 'Other', what was the main reason for leaving their last settled home?",Where was the household immediately before this letting?,Did the household experience homelessness immediately before this letting?,Previous postcode unknown or previous accommodation was temporary,What is the postcode of the household's last settled home?,Previous location LA name,Was the household given reasonable preference by the local authority?,Reasonable preference reason - They were homeless or about to lose their home (within 56 days),"Reasonable preference reason - They were living in insanitary, overcrowded or unisatisfactory housing",Reasonable preference reason - They needed to move on medical and welfare reasons (including disability),Reasonable preference reason - They needed to move to avoid hardship to themselves or others,Reasonable preference reason - Don't Know,Was the letting made under Choice-Based Lettings (CBL)?,Was the letting made under the Common Allocation Policy (CAP)?,Was the letting made under the Common Housing Register (CHR)?,Was the letting made under the Accessible Register?,"The letting was not allocated under CBL, CAP, CHR or Accessible Register.",,What was the source of referral for this letting?,Was the household income refused?,How often does the household receive income?,How much income does the household have in total?,Is the tenant likely to be receiving any of these housing-related benefits?,"Does the tenant receive housing-related benefits? Yes if hb = Universal Credit housing element or Housing benefit, No if hb = Don't Know, Neither, Tenant prefers not to say or blank","How much of the household's income is from Universal Credit, state pensions or benefits?",Does the household pay rent or other charges for the accommodation?,Does the household pay rent or other charges for the accommodation? - flag for when household_charge is answered no,How often does the household pay rent and other charges?,What is the basic rent?,What is the service charge?,What is the personal service charge?,What is the support charge?,Total charge to the tenant,"After the household has received any housing-related benefits, will they still need to pay for rent and charges?",Estimated outstanding amount,What scheme does this letting belong to?,"From scheme code, we map to the scheme name",Does the scheme contain confidential information?,"What is this type of scheme? (Direct access hostel), Foyer, Housing for older people or Other supported housing",Is this scheme registered under the Care Standards Act 2000?,Which organisation owns the housing stock for this scheme?,What client group is this scheme intended for?,Does this scheme provide for another client group?,What is the other client group?,What support does this scheme provide?,Intended length of stay,Date scheme was created,Which location is this letting for?,What is the postcode for this location?,What is the name of this location?,How many units are at this location?,What is the most common type of unit at this location?,What are the mobility standards for the majority of the units in this location?,What is the local authority of this postcode?,When did the first property in this location become available under this scheme?
-id,status,duplicate_set_id,assigned_to,is_dpo,created_at,updated_by,updated_at,creation_method,collection_start_year,bulk_upload_id,owning_organisation_name,managing_organisation_name,needstype,lettype,renewal,startdate,renttype,renttype_detail,irproduct,irproduct_other,lar,tenancycode,propcode,declaration,first_time_property_let_as_social_housing,unitletas,rsnvac,newprop,uprn_known,uprn,address_line1,address_line2,town_or_city,county,postcode_full,la_label,unittype_gn,wchair,beds,voiddate,vacdays,majorrepairs,mrcdate,sheltered,joint,startertenancy,tenancy,tenancyother,tenancylength,hhmemb,refused,age1,sex1,ethnic_group,ethnic,nationality_all,ecstat1,age2,relat2,sex2,ecstat2,age3,relat3,sex3,ecstat3,age4,relat4,sex4,ecstat4,age5,relat5,sex5,ecstat5,age6,relat6,sex6,ecstat6,age7,relat7,sex7,ecstat7,age8,relat8,sex8,ecstat8,armedforces,leftreg,reservist,preg_occ,housingneeds,housingneeds_type,housingneeds_a,housingneeds_b,housingneeds_c,housingneeds_f,housingneeds_g,housingneeds_h,housingneeds_other,illness,illness_type_4,illness_type_5,illness_type_2,illness_type_6,illness_type_7,illness_type_3,illness_type_9,illness_type_8,illness_type_1,illness_type_10,layear,waityear,reason,reasonother,prevten,homeless,ppcodenk,ppostcode_full,prevloc_label,reasonpref,rp_homeless,rp_insan_unsat,rp_medwel,rp_hardship,rp_dontknow,cbl,cap,chr,accessible_register,letting_allocation_none,referral_type,referral,incref,incfreq,earnings,hb,has_benefits,benefits,household_charge,nocharge,period,brent,scharge,pscharge,supcharg,tcharge,hbrentshortfall,tshortfall,scheme_code,scheme_service_name,scheme_confidential,SCHTYPE,scheme_registered_under_care_act,scheme_owning_organisation_name,scheme_primary_client_group,scheme_has_other_client_group,scheme_secondary_client_group,scheme_support_type,scheme_intended_stay,scheme_created_at,location_code,location_postcode,location_name,location_units,location_type_of_unit,location_mobility_type,location_local_authority,location_startdate
-,in_progress,,choreographer@owtluk.com,false,2026-04-01T00:00:00+01:00,,2026-04-01T00:00:00+01:00,1,2026,,MHCLG,MHCLG,1,7,0,2026-04-01,2,2,,,2,HIJKLMN,ABCDEFG,1,0,2,6,2,0,,Address line 1,,London,,NW9 5LL,Barnet,7,1,3,2026-03-30,1,1,2026-03-31,,3,1,4,,2,4,1,35,F,0,2,36,0,32,P,M,6,-9,R,R,10,-9,R,R,10,,,,,,,,,,,,,,,,,1,4,1,2,1,0,1,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,2,7,4,,6,1,0,TN23 6LZ,Ashford,1,0,1,0,0,0,0,0,1,0,0,,,0,1,268,6,1,1,,,2,200.0,50.0,40.0,35.0,325.0,1,12.0,,,,,,,,,,,,,,,,,,,,
+Log ID,Status of log,ID of a set of duplicate logs,User the log is assigned to,Is the user in the assigned_to column the data protection officer?,Time and date the log was created,User who last updated the log,Time and date the log was last updated,Was the log submitted in-service or via bulk upload?,Year collection period opened,ID of a set of bulk uploaded logs,Which organisation owns this property?,Which organisation manages this letting?,What is the needs type?,What is the letting type?,Is this letting a renewal?,What is the tenancy start date?,"What is the rent type? (grouped into SR, IR or AR)",What is the rent type?,Which type of Intermediate Rent is this letting?,Which 'Other' type of Intermediate Rent is this letting?,Is this a London Affordable Rent letting?,What is the tenant code?,What is the property reference?,Has the tenant seen the MHCLG privacy notice?,Is this the first time the property has been let as social housing?,What rent product was the property most recently let as?,What is the reason for the property being vacant?,Is this property new to the social rented sector?,Is the UPRN known?,"If known, property's UPRN",Address line 1,Address line 2,Town or City,County,Postcode,What is the property's local authority?,What type of unit is the property?,Is the property built or adapted to wheelchair-user standards?,How many bedrooms does the property have?,What is the void date?,Number of days the property was vacant,Were any major repairs carried out during the void period?,What date were any major repairs completed on?,Is this letting in sheltered accommodation?,Is this a joint tenancy?,Is this a starter tenancy?,What is the type of tenancy?,"If 'Other', what is the type of tenancy?",What is the length of the fixed-term tenancy to the nearest year?,How many people live in the household at this letting?,"Where household characteristics have a 'Refused' option for some or all of: AGE1-AGE8, SEX1-SEX8, RELAT2-RELAT8, ECSTAT1-ECSTAT8",What is the lead tenant's age?,What was the lead tenant's sex at birth?,Which of these best describes the lead tenant's gender identity?,What is the lead tenant's ethnic group?,Which of these best describes the lead tenant's ethnic background?,What is the lead tenant's nationality?,Which of these best describes the lead tenant's working situation?,What is person 2's age?,What is person 2's relationship to the lead tenant?,What was person 2's sex at birth?,Which of these best describes person 2's gender identity?,Which of these best describes person 2's working situation?,What is person 3's age?,What is person 3's relationship to the lead tenant?,What was person 3's sex at birth?,Which of these best describes person 3's gender identity?,Which of these best describes person 3's working situation?,What is person 4's age?,What is person 4's relationship to the lead tenant?,What was person 4's sex at birth?,Which of these best describes person 4's gender identity?,Which of these best describes person 4's working situation?,What is person 5's age?,What is person 5's relationship to the lead tenant?,What was person 5's sex at birth?,Which of these best describes person 5's gender identity?,Which of these best describes person 5's working situation?,What is person 6's age?,What is person 6's relationship to the lead tenant?,What was person 6's sex at birth?,Which of these best describes person 6's gender identity?,Which of these best describes person 6's working situation?,What is person 7's age?,What is person 7's relationship to the lead tenant?,What was person 7's sex at birth?,Which of these best describes person 7's gender identity?,Which of these best describes person 7's working situation?,What is person 8's age?,What is person 8's relationship to the lead tenant?,What was person 8's sex at birth?,Which of these best describes person 8's gender identity?,Which of these best describes person 8's working situation?,Does anybody in the household have links to the UK armed forces?,Is this person still serving in the UK armed forces?,Was this person seriously injured or ill as a result of serving in the UK armed forces?,Is anybody in the household pregnant?,Does anybody in the household have any disabled access needs?,"What access needs do they have? (Fully wheelchair-accessible housing, Level access housing or Wheelchair access to essential rooms)",Disabled access needs a) Fully wheelchair-accessible housing,Disabled access needs b) Wheelchair access to essential rooms,Disabled access needs c) Level access housing,Disabled access needs f) Other disabled access needs,Disabled access needs g) No disabled access needs,Disabled access needs h) Don't know,Do they have any other disabled access needs?,Does anybody in the household have a physical or mental health condition (or other illness) expected to last 12 months or more?,Does this person's condition affect their dexterity?,Does this person's condition affect their learning or understanding or concentrating?,Does this person's condition affect their hearing?,Does this person's condition affect their memory?,Does this person's condition affect their mental health?,Does this person's condition affect their mobility?,Does this person's condition affect them socially or behaviourally?,Does this person's condition affect their stamina or breathing or fatigue?,Does this person's condition affect their vision?,Does this person's condition affect them in another way?,How long has the household continuously lived in the local authority area of the new letting?,How long has the household been on the local authority waiting list for the new letting?,What is the tenant's main reason for the household leaving their last settled home?,"If 'Other', what was the main reason for leaving their last settled home?",Where was the household immediately before this letting?,Did the household experience homelessness immediately before this letting?,Previous postcode unknown or previous accommodation was temporary,What is the postcode of the household's last settled home?,Previous location LA name,Was the household given reasonable preference by the local authority?,Reasonable preference reason - They were homeless or about to lose their home (within 56 days),"Reasonable preference reason - They were living in insanitary, overcrowded or unisatisfactory housing",Reasonable preference reason - They needed to move on medical and welfare reasons (including disability),Reasonable preference reason - They needed to move to avoid hardship to themselves or others,Reasonable preference reason - Don't Know,Was the letting made under Choice-Based Lettings (CBL)?,Was the letting made under the Common Allocation Policy (CAP)?,Was the letting made under the Common Housing Register (CHR)?,Was the letting made under the Accessible Register?,"The letting was not allocated under CBL, CAP, CHR or Accessible Register.",,What was the source of referral for this letting?,Was the household income refused?,How often does the household receive income?,How much income does the household have in total?,Is the tenant likely to be receiving any of these housing-related benefits?,"Does the tenant receive housing-related benefits? Yes if hb = Universal Credit housing element or Housing benefit, No if hb = Don't Know, Neither, Tenant prefers not to say or blank","How much of the household's income is from Universal Credit, state pensions or benefits?",Does the household pay rent or other charges for the accommodation?,Does the household pay rent or other charges for the accommodation? - flag for when household_charge is answered no,How often does the household pay rent and other charges?,What is the basic rent?,What is the service charge?,What is the personal service charge?,What is the support charge?,Total charge to the tenant,"After the household has received any housing-related benefits, will they still need to pay for rent and charges?",Estimated outstanding amount,What scheme does this letting belong to?,"From scheme code, we map to the scheme name",Does the scheme contain confidential information?,"What is this type of scheme? (Direct access hostel), Foyer, Housing for older people or Other supported housing",Is this scheme registered under the Care Standards Act 2000?,Which organisation owns the housing stock for this scheme?,What client group is this scheme intended for?,Does this scheme provide for another client group?,What is the other client group?,What support does this scheme provide?,Intended length of stay,Date scheme was created,Which location is this letting for?,What is the postcode for this location?,What is the name of this location?,How many units are at this location?,What is the most common type of unit at this location?,What are the mobility standards for the majority of the units in this location?,What is the local authority of this postcode?,When did the first property in this location become available under this scheme?
+id,status,duplicate_set_id,assigned_to,is_dpo,created_at,updated_by,updated_at,creation_method,collection_start_year,bulk_upload_id,owning_organisation_name,managing_organisation_name,needstype,lettype,renewal,startdate,renttype,renttype_detail,irproduct,irproduct_other,lar,tenancycode,propcode,declaration,first_time_property_let_as_social_housing,unitletas,rsnvac,newprop,uprn_known,uprn,address_line1,address_line2,town_or_city,county,postcode_full,la_label,unittype_gn,wchair,beds,voiddate,vacdays,majorrepairs,mrcdate,sheltered,joint,startertenancy,tenancy,tenancyother,tenancylength,hhmemb,refused,age1,sexrab1,sex1,ethnic_group,ethnic,nationality_all,ecstat1,age2,relat2,sexrab2,sex2,ecstat2,age3,relat3,sexrab3,sex3,ecstat3,age4,relat4,sexrab4,sex4,ecstat4,age5,relat5,sexrab5,sex5,ecstat5,age6,relat6,sexrab6,sex6,ecstat6,age7,relat7,sexrab7,sex7,ecstat7,age8,relat8,sexrab8,sex8,ecstat8,armedforces,leftreg,reservist,preg_occ,housingneeds,housingneeds_type,housingneeds_a,housingneeds_b,housingneeds_c,housingneeds_f,housingneeds_g,housingneeds_h,housingneeds_other,illness,illness_type_4,illness_type_5,illness_type_2,illness_type_6,illness_type_7,illness_type_3,illness_type_9,illness_type_8,illness_type_1,illness_type_10,layear,waityear,reason,reasonother,prevten,homeless,ppcodenk,ppostcode_full,prevloc_label,reasonpref,rp_homeless,rp_insan_unsat,rp_medwel,rp_hardship,rp_dontknow,cbl,cap,chr,accessible_register,letting_allocation_none,referral_type,referral,incref,incfreq,earnings,hb,has_benefits,benefits,household_charge,nocharge,period,brent,scharge,pscharge,supcharg,tcharge,hbrentshortfall,tshortfall,scheme_code,scheme_service_name,scheme_confidential,SCHTYPE,scheme_registered_under_care_act,scheme_owning_organisation_name,scheme_primary_client_group,scheme_has_other_client_group,scheme_secondary_client_group,scheme_support_type,scheme_intended_stay,scheme_created_at,location_code,location_postcode,location_name,location_units,location_type_of_unit,location_mobility_type,location_local_authority,location_startdate
+,in_progress,,choreographer@owtluk.com,false,2026-04-01T00:00:00+01:00,,2026-04-01T00:00:00+01:00,1,2026,,MHCLG,MHCLG,1,7,0,2026-04-01,2,2,,,2,HIJKLMN,ABCDEFG,1,0,2,6,2,0,,Address line 1,,London,,NW9 5LL,Barnet,7,1,3,2026-03-30,1,1,2026-03-31,,3,1,4,,2,4,1,35,F,F,0,2,36,0,32,P,M,M,6,-9,R,R,R,10,-9,R,R,R,10,,,,,,,,,,,,,,,,,,,,,1,4,1,2,1,0,1,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,2,7,4,,6,1,0,TN23 6LZ,Ashford,1,0,1,0,0,0,0,0,1,0,0,,,0,1,268,6,1,1,,,2,200.0,50.0,40.0,35.0,325.0,1,12.0,,,,,,,,,,,,,,,,,,,,
diff --git a/spec/fixtures/files/lettings_log_csv_export_non_support_labels_26.csv b/spec/fixtures/files/lettings_log_csv_export_non_support_labels_26.csv
index 90135b804..cc8c02139 100644
--- a/spec/fixtures/files/lettings_log_csv_export_non_support_labels_26.csv
+++ b/spec/fixtures/files/lettings_log_csv_export_non_support_labels_26.csv
@@ -1,3 +1,3 @@
-Log ID,Status of log,ID of a set of duplicate logs,User the log is assigned to,Is the user in the assigned_to column the data protection officer?,Time and date the log was created,User who last updated the log,Time and date the log was last updated,Was the log submitted in-service or via bulk upload?,Year collection period opened,ID of a set of bulk uploaded logs,Which organisation owns this property?,Which organisation manages this letting?,What is the needs type?,What is the letting type?,Is this letting a renewal?,What is the tenancy start date?,"What is the rent type? (grouped into SR, IR or AR)",What is the rent type?,Which type of Intermediate Rent is this letting?,Which 'Other' type of Intermediate Rent is this letting?,Is this a London Affordable Rent letting?,What is the tenant code?,What is the property reference?,Has the tenant seen the MHCLG privacy notice?,Is this the first time the property has been let as social housing?,What rent product was the property most recently let as?,What is the reason for the property being vacant?,Is this property new to the social rented sector?,Is the UPRN known?,"If known, property's UPRN",Address line 1,Address line 2,Town or City,County,Postcode,What is the property's local authority?,What type of unit is the property?,Is the property built or adapted to wheelchair-user standards?,How many bedrooms does the property have?,What is the void date?,Number of days the property was vacant,Were any major repairs carried out during the void period?,What date were any major repairs completed on?,Is this letting in sheltered accommodation?,Is this a joint tenancy?,Is this a starter tenancy?,What is the type of tenancy?,"If 'Other', what is the type of tenancy?",What is the length of the fixed-term tenancy to the nearest year?,How many people live in the household at this letting?,"Where household characteristics have a 'Refused' option for some or all of: AGE1-AGE8, SEX1-SEX8, RELAT2-RELAT8, ECSTAT1-ECSTAT8",What is the lead tenant's age?,Which of these best describes the lead tenant's gender identity?,What is the lead tenant's ethnic group?,Which of these best describes the lead tenant's ethnic background?,What is the lead tenant's nationality?,Which of these best describes the lead tenant's working situation?,What is person 2's age?,What is person 2's relationship to the lead tenant?,Which of these best describes person 2's gender identity?,Which of these best describes person 2's working situation?,What is person 3's age?,What is person 3's relationship to the lead tenant?,Which of these best describes person 3's gender identity?,Which of these best describes person 3's working situation?,What is person 4's age?,What is person 4's relationship to the lead tenant?,Which of these best describes person 4's gender identity?,Which of these best describes person 4's working situation?,What is person 5's age?,What is person 5's relationship to the lead tenant?,Which of these best describes person 5's gender identity?,Which of these best describes person 5's working situation?,What is person 6's age?,What is person 6's relationship to the lead tenant?,Which of these best describes person 6's gender identity?,Which of these best describes person 6's working situation?,What is person 7's age?,What is person 7's relationship to the lead tenant?,Which of these best describes person 7's gender identity?,Which of these best describes person 7's working situation?,What is person 8's age?,What is person 8's relationship to the lead tenant?,Which of these best describes person 8's gender identity?,Which of these best describes person 8's working situation?,Does anybody in the household have links to the UK armed forces?,Is this person still serving in the UK armed forces?,Was this person seriously injured or ill as a result of serving in the UK armed forces?,Is anybody in the household pregnant?,Does anybody in the household have any disabled access needs?,"What access needs do they have? (Fully wheelchair-accessible housing, Level access housing or Wheelchair access to essential rooms)",Disabled access needs a) Fully wheelchair-accessible housing,Disabled access needs b) Wheelchair access to essential rooms,Disabled access needs c) Level access housing,Disabled access needs f) Other disabled access needs,Disabled access needs g) No disabled access needs,Disabled access needs h) Don't know,Do they have any other disabled access needs?,Does anybody in the household have a physical or mental health condition (or other illness) expected to last 12 months or more?,Does this person's condition affect their dexterity?,Does this person's condition affect their learning or understanding or concentrating?,Does this person's condition affect their hearing?,Does this person's condition affect their memory?,Does this person's condition affect their mental health?,Does this person's condition affect their mobility?,Does this person's condition affect them socially or behaviourally?,Does this person's condition affect their stamina or breathing or fatigue?,Does this person's condition affect their vision?,Does this person's condition affect them in another way?,How long has the household continuously lived in the local authority area of the new letting?,How long has the household been on the local authority waiting list for the new letting?,What is the tenant's main reason for the household leaving their last settled home?,"If 'Other', what was the main reason for leaving their last settled home?",Where was the household immediately before this letting?,Did the household experience homelessness immediately before this letting?,Previous postcode unknown or previous accommodation was temporary,What is the postcode of the household's last settled home?,Previous location LA name,Was the household given reasonable preference by the local authority?,Reasonable preference reason - They were homeless or about to lose their home (within 56 days),"Reasonable preference reason - They were living in insanitary, overcrowded or unisatisfactory housing",Reasonable preference reason - They needed to move on medical and welfare reasons (including disability),Reasonable preference reason - They needed to move to avoid hardship to themselves or others,Reasonable preference reason - Don't Know,Was the letting made under Choice-Based Lettings (CBL)?,Was the letting made under the Common Allocation Policy (CAP)?,Was the letting made under the Common Housing Register (CHR)?,Was the letting made under the Accessible Register?,"The letting was not allocated under CBL, CAP, CHR or Accessible Register.",,What was the source of referral for this letting?,Was the household income refused?,How often does the household receive income?,How much income does the household have in total?,Is the tenant likely to be receiving any of these housing-related benefits?,"Does the tenant receive housing-related benefits? Yes if hb = Universal Credit housing element or Housing benefit, No if hb = Don't Know, Neither, Tenant prefers not to say or blank","How much of the household's income is from Universal Credit, state pensions or benefits?",Does the household pay rent or other charges for the accommodation?,Does the household pay rent or other charges for the accommodation? - flag for when household_charge is answered no,How often does the household pay rent and other charges?,What is the basic rent?,What is the service charge?,What is the personal service charge?,What is the support charge?,Total charge to the tenant,"After the household has received any housing-related benefits, will they still need to pay for rent and charges?",Estimated outstanding amount,What scheme does this letting belong to?,"From scheme code, we map to the scheme name",Does the scheme contain confidential information?,"What is this type of scheme? (Direct access hostel), Foyer, Housing for older people or Other supported housing",Is this scheme registered under the Care Standards Act 2000?,Which organisation owns the housing stock for this scheme?,What client group is this scheme intended for?,Does this scheme provide for another client group?,What is the other client group?,What support does this scheme provide?,Intended length of stay,Date scheme was created,Which location is this letting for?,What is the postcode for this location?,What is the name of this location?,How many units are at this location?,What is the most common type of unit at this location?,What are the mobility standards for the majority of the units in this location?,What is the local authority of this postcode?,When did the first property in this location become available under this scheme?
-id,status,duplicate_set_id,assigned_to,is_dpo,created_at,updated_by,updated_at,creation_method,collection_start_year,bulk_upload_id,owning_organisation_name,managing_organisation_name,needstype,lettype,renewal,startdate,renttype,renttype_detail,irproduct,irproduct_other,lar,tenancycode,propcode,declaration,first_time_property_let_as_social_housing,unitletas,rsnvac,newprop,uprn_known,uprn,address_line1,address_line2,town_or_city,county,postcode_full,la_label,unittype_gn,wchair,beds,voiddate,vacdays,majorrepairs,mrcdate,sheltered,joint,startertenancy,tenancy,tenancyother,tenancylength,hhmemb,refused,age1,sex1,ethnic_group,ethnic,nationality_all,ecstat1,age2,relat2,sex2,ecstat2,age3,relat3,sex3,ecstat3,age4,relat4,sex4,ecstat4,age5,relat5,sex5,ecstat5,age6,relat6,sex6,ecstat6,age7,relat7,sex7,ecstat7,age8,relat8,sex8,ecstat8,armedforces,leftreg,reservist,preg_occ,housingneeds,housingneeds_type,housingneeds_a,housingneeds_b,housingneeds_c,housingneeds_f,housingneeds_g,housingneeds_h,housingneeds_other,illness,illness_type_4,illness_type_5,illness_type_2,illness_type_6,illness_type_7,illness_type_3,illness_type_9,illness_type_8,illness_type_1,illness_type_10,layear,waityear,reason,reasonother,prevten,homeless,ppcodenk,ppostcode_full,prevloc_label,reasonpref,rp_homeless,rp_insan_unsat,rp_medwel,rp_hardship,rp_dontknow,cbl,cap,chr,accessible_register,letting_allocation_none,referral_type,referral,incref,incfreq,earnings,hb,has_benefits,benefits,household_charge,nocharge,period,brent,scharge,pscharge,supcharg,tcharge,hbrentshortfall,tshortfall,scheme_code,scheme_service_name,scheme_confidential,SCHTYPE,scheme_registered_under_care_act,scheme_owning_organisation_name,scheme_primary_client_group,scheme_has_other_client_group,scheme_secondary_client_group,scheme_support_type,scheme_intended_stay,scheme_created_at,location_code,location_postcode,location_name,location_units,location_type_of_unit,location_mobility_type,location_local_authority,location_startdate
-,in_progress,,choreographer@owtluk.com,false,2026-04-01T00:00:00+01:00,,2026-04-01T00:00:00+01:00,single log,2026,,MHCLG,MHCLG,General needs,Affordable rent general needs local authority,No,2026-04-01,Affordable Rent,Affordable Rent,,,No,HIJKLMN,ABCDEFG,Yes,No,Affordable rent basis,Tenant abandoned property,No,No,,Address line 1,,London,,NW9 5LL,Barnet,House,Yes,3,2026-03-30,1,Yes,2026-03-31,,Don’t know,Yes,Assured Shorthold Tenancy (AST) – Fixed term,,2,4,Yes,35,Female,White,Irish,Australia,Other,32,Yes,Male,Not seeking work,Not known,Prefers not to say,Prefers not to say,Prefers not to say,Not known,Tenant prefers not to say,Person prefers not to say,Person prefers not to say,,,,,,,,,,,,,,,,,Yes – the person is a current or former regular,No – they left up to and including 5 years ago,Yes,No,Yes,Fully wheelchair accessible housing,Yes,No,No,No,No,No,No,Yes,No,No,Yes,No,No,No,No,No,No,No,Less than 1 year,1 year but under 2 years,Loss of tied accommodation,,Other supported housing,No,Yes,TN23 6LZ,Ashford,Yes,,Yes,,,,No,No,Yes,No,No,,,No,Weekly,268,Universal Credit housing element,Yes,All,,,Every 2 weeks,200.0,50.0,40.0,35.0,325.0,Yes,12.0,,,,,,,,,,,,,,,,,,,,
+Log ID,Status of log,ID of a set of duplicate logs,User the log is assigned to,Is the user in the assigned_to column the data protection officer?,Time and date the log was created,User who last updated the log,Time and date the log was last updated,Was the log submitted in-service or via bulk upload?,Year collection period opened,ID of a set of bulk uploaded logs,Which organisation owns this property?,Which organisation manages this letting?,What is the needs type?,What is the letting type?,Is this letting a renewal?,What is the tenancy start date?,"What is the rent type? (grouped into SR, IR or AR)",What is the rent type?,Which type of Intermediate Rent is this letting?,Which 'Other' type of Intermediate Rent is this letting?,Is this a London Affordable Rent letting?,What is the tenant code?,What is the property reference?,Has the tenant seen the MHCLG privacy notice?,Is this the first time the property has been let as social housing?,What rent product was the property most recently let as?,What is the reason for the property being vacant?,Is this property new to the social rented sector?,Is the UPRN known?,"If known, property's UPRN",Address line 1,Address line 2,Town or City,County,Postcode,What is the property's local authority?,What type of unit is the property?,Is the property built or adapted to wheelchair-user standards?,How many bedrooms does the property have?,What is the void date?,Number of days the property was vacant,Were any major repairs carried out during the void period?,What date were any major repairs completed on?,Is this letting in sheltered accommodation?,Is this a joint tenancy?,Is this a starter tenancy?,What is the type of tenancy?,"If 'Other', what is the type of tenancy?",What is the length of the fixed-term tenancy to the nearest year?,How many people live in the household at this letting?,"Where household characteristics have a 'Refused' option for some or all of: AGE1-AGE8, SEX1-SEX8, RELAT2-RELAT8, ECSTAT1-ECSTAT8",What is the lead tenant's age?,What was the lead tenant's sex at birth?,Which of these best describes the lead tenant's gender identity?,What is the lead tenant's ethnic group?,Which of these best describes the lead tenant's ethnic background?,What is the lead tenant's nationality?,Which of these best describes the lead tenant's working situation?,What is person 2's age?,What is person 2's relationship to the lead tenant?,What was person 2's sex at birth?,Which of these best describes person 2's gender identity?,Which of these best describes person 2's working situation?,What is person 3's age?,What is person 3's relationship to the lead tenant?,What was person 3's sex at birth?,Which of these best describes person 3's gender identity?,Which of these best describes person 3's working situation?,What is person 4's age?,What is person 4's relationship to the lead tenant?,What was person 4's sex at birth?,Which of these best describes person 4's gender identity?,Which of these best describes person 4's working situation?,What is person 5's age?,What is person 5's relationship to the lead tenant?,What was person 5's sex at birth?,Which of these best describes person 5's gender identity?,Which of these best describes person 5's working situation?,What is person 6's age?,What is person 6's relationship to the lead tenant?,What was person 6's sex at birth?,Which of these best describes person 6's gender identity?,Which of these best describes person 6's working situation?,What is person 7's age?,What is person 7's relationship to the lead tenant?,What was person 7's sex at birth?,Which of these best describes person 7's gender identity?,Which of these best describes person 7's working situation?,What is person 8's age?,What is person 8's relationship to the lead tenant?,What was person 8's sex at birth?,Which of these best describes person 8's gender identity?,Which of these best describes person 8's working situation?,Does anybody in the household have links to the UK armed forces?,Is this person still serving in the UK armed forces?,Was this person seriously injured or ill as a result of serving in the UK armed forces?,Is anybody in the household pregnant?,Does anybody in the household have any disabled access needs?,"What access needs do they have? (Fully wheelchair-accessible housing, Level access housing or Wheelchair access to essential rooms)",Disabled access needs a) Fully wheelchair-accessible housing,Disabled access needs b) Wheelchair access to essential rooms,Disabled access needs c) Level access housing,Disabled access needs f) Other disabled access needs,Disabled access needs g) No disabled access needs,Disabled access needs h) Don't know,Do they have any other disabled access needs?,Does anybody in the household have a physical or mental health condition (or other illness) expected to last 12 months or more?,Does this person's condition affect their dexterity?,Does this person's condition affect their learning or understanding or concentrating?,Does this person's condition affect their hearing?,Does this person's condition affect their memory?,Does this person's condition affect their mental health?,Does this person's condition affect their mobility?,Does this person's condition affect them socially or behaviourally?,Does this person's condition affect their stamina or breathing or fatigue?,Does this person's condition affect their vision?,Does this person's condition affect them in another way?,How long has the household continuously lived in the local authority area of the new letting?,How long has the household been on the local authority waiting list for the new letting?,What is the tenant's main reason for the household leaving their last settled home?,"If 'Other', what was the main reason for leaving their last settled home?",Where was the household immediately before this letting?,Did the household experience homelessness immediately before this letting?,Previous postcode unknown or previous accommodation was temporary,What is the postcode of the household's last settled home?,Previous location LA name,Was the household given reasonable preference by the local authority?,Reasonable preference reason - They were homeless or about to lose their home (within 56 days),"Reasonable preference reason - They were living in insanitary, overcrowded or unisatisfactory housing",Reasonable preference reason - They needed to move on medical and welfare reasons (including disability),Reasonable preference reason - They needed to move to avoid hardship to themselves or others,Reasonable preference reason - Don't Know,Was the letting made under Choice-Based Lettings (CBL)?,Was the letting made under the Common Allocation Policy (CAP)?,Was the letting made under the Common Housing Register (CHR)?,Was the letting made under the Accessible Register?,"The letting was not allocated under CBL, CAP, CHR or Accessible Register.",,What was the source of referral for this letting?,Was the household income refused?,How often does the household receive income?,How much income does the household have in total?,Is the tenant likely to be receiving any of these housing-related benefits?,"Does the tenant receive housing-related benefits? Yes if hb = Universal Credit housing element or Housing benefit, No if hb = Don't Know, Neither, Tenant prefers not to say or blank","How much of the household's income is from Universal Credit, state pensions or benefits?",Does the household pay rent or other charges for the accommodation?,Does the household pay rent or other charges for the accommodation? - flag for when household_charge is answered no,How often does the household pay rent and other charges?,What is the basic rent?,What is the service charge?,What is the personal service charge?,What is the support charge?,Total charge to the tenant,"After the household has received any housing-related benefits, will they still need to pay for rent and charges?",Estimated outstanding amount,What scheme does this letting belong to?,"From scheme code, we map to the scheme name",Does the scheme contain confidential information?,"What is this type of scheme? (Direct access hostel), Foyer, Housing for older people or Other supported housing",Is this scheme registered under the Care Standards Act 2000?,Which organisation owns the housing stock for this scheme?,What client group is this scheme intended for?,Does this scheme provide for another client group?,What is the other client group?,What support does this scheme provide?,Intended length of stay,Date scheme was created,Which location is this letting for?,What is the postcode for this location?,What is the name of this location?,How many units are at this location?,What is the most common type of unit at this location?,What are the mobility standards for the majority of the units in this location?,What is the local authority of this postcode?,When did the first property in this location become available under this scheme?
+id,status,duplicate_set_id,assigned_to,is_dpo,created_at,updated_by,updated_at,creation_method,collection_start_year,bulk_upload_id,owning_organisation_name,managing_organisation_name,needstype,lettype,renewal,startdate,renttype,renttype_detail,irproduct,irproduct_other,lar,tenancycode,propcode,declaration,first_time_property_let_as_social_housing,unitletas,rsnvac,newprop,uprn_known,uprn,address_line1,address_line2,town_or_city,county,postcode_full,la_label,unittype_gn,wchair,beds,voiddate,vacdays,majorrepairs,mrcdate,sheltered,joint,startertenancy,tenancy,tenancyother,tenancylength,hhmemb,refused,age1,sexrab1,sex1,ethnic_group,ethnic,nationality_all,ecstat1,age2,relat2,sexrab2,sex2,ecstat2,age3,relat3,sexrab3,sex3,ecstat3,age4,relat4,sexrab4,sex4,ecstat4,age5,relat5,sexrab5,sex5,ecstat5,age6,relat6,sexrab6,sex6,ecstat6,age7,relat7,sexrab7,sex7,ecstat7,age8,relat8,sexrab8,sex8,ecstat8,armedforces,leftreg,reservist,preg_occ,housingneeds,housingneeds_type,housingneeds_a,housingneeds_b,housingneeds_c,housingneeds_f,housingneeds_g,housingneeds_h,housingneeds_other,illness,illness_type_4,illness_type_5,illness_type_2,illness_type_6,illness_type_7,illness_type_3,illness_type_9,illness_type_8,illness_type_1,illness_type_10,layear,waityear,reason,reasonother,prevten,homeless,ppcodenk,ppostcode_full,prevloc_label,reasonpref,rp_homeless,rp_insan_unsat,rp_medwel,rp_hardship,rp_dontknow,cbl,cap,chr,accessible_register,letting_allocation_none,referral_type,referral,incref,incfreq,earnings,hb,has_benefits,benefits,household_charge,nocharge,period,brent,scharge,pscharge,supcharg,tcharge,hbrentshortfall,tshortfall,scheme_code,scheme_service_name,scheme_confidential,SCHTYPE,scheme_registered_under_care_act,scheme_owning_organisation_name,scheme_primary_client_group,scheme_has_other_client_group,scheme_secondary_client_group,scheme_support_type,scheme_intended_stay,scheme_created_at,location_code,location_postcode,location_name,location_units,location_type_of_unit,location_mobility_type,location_local_authority,location_startdate
+,in_progress,,choreographer@owtluk.com,false,2026-04-01T00:00:00+01:00,,2026-04-01T00:00:00+01:00,single log,2026,,MHCLG,MHCLG,General needs,Affordable rent general needs local authority,No,2026-04-01,Affordable Rent,Affordable Rent,,,No,HIJKLMN,ABCDEFG,Yes,No,Affordable rent basis,Tenant abandoned property,No,No,,Address line 1,,London,,NW9 5LL,Barnet,House,Yes,3,2026-03-30,1,Yes,2026-03-31,,Don’t know,Yes,Assured Shorthold Tenancy (AST) – Fixed term,,2,4,Yes,35,Female,Female,White,Irish,Australia,Other,32,Yes,Male,Male,Not seeking work,Not known,Prefers not to say,Prefers not to say,Prefers not to say,Prefers not to say,Not known,Tenant prefers not to say,Person prefers not to say,Person prefers not to say,Person prefers not to say,,,,,,,,,,,,,,,,,,,,,Yes – the person is a current or former regular,No – they left up to and including 5 years ago,Yes,No,Yes,Fully wheelchair accessible housing,Yes,No,No,No,No,No,No,Yes,No,No,Yes,No,No,No,No,No,No,No,Less than 1 year,1 year but under 2 years,Loss of tied accommodation,,Other supported housing,No,Yes,TN23 6LZ,Ashford,Yes,,Yes,,,,No,No,Yes,No,No,,,No,Weekly,268,Universal Credit housing element,Yes,All,,,Every 2 weeks,200.0,50.0,40.0,35.0,325.0,Yes,12.0,,,,,,,,,,,,,,,,,,,,
diff --git a/spec/fixtures/variable_definitions/lettings_download_26_27.csv b/spec/fixtures/variable_definitions/lettings_download_26_27.csv
index 2cc95f184..94ac24c49 100644
--- a/spec/fixtures/variable_definitions/lettings_download_26_27.csv
+++ b/spec/fixtures/variable_definitions/lettings_download_26_27.csv
@@ -1 +1,228 @@
+id,Log ID
+status,Status of log
+duplicate_set_id,ID of a set of duplicate logs
+created_by,User the log is created by
+is_dpo,Is the user in the assigned_to column the data protection officer?
+created_at,Time and date the log was created
+updated_by,User who last updated the log
+updated_at,Time and date the log was last updated
+creation_method,Was the log submitted in-service or via bulk upload?
+collection_start_year,Year collection period opened
+address_line1_as_entered,Address line 1 entered in bulk upload file
+address_line2_as_entered,Address line 2 entered in bulk upload file
+town_or_city_as_entered,Town or city entered in bulk upload file
+county_as_entered,County entered in bulk upload file
+postcode_full_as_entered,Postcode entered in bulk upload file
+la_as_entered,Local authority entered in bulk upload file
+bulk_upload_id,ID of a set of bulk uploaded logs
+assigned_to,User the log is assigned to
+owning_organisation_name,Which organisation owns this property?
+managing_organisation_name,Which organisation manages this letting?
+needstype,What is the needs type?
+lettype,What is the letting type?
+renewal,Is this letting a renewal?
+startdate,What is the tenancy start date?
+renttype,What is the rent type? (grouped into SR, IR or AR)
+renttype_detail,What is the rent type?
+irproduct,Which type of Intermediate Rent is this letting?
+irproduct_other,Which 'Other' type of Intermediate Rent is this letting?
+lar,Is this a London Affordable Rent letting?
+tenancycode,What is the tenant code?
+propcode,What is the property reference?
+uprn_known,Is the UPRN known?
+uprn,If known, property's UPRN
+address_line1_input,Address line 1 input from address matching feature
+postcode_full_input,Postcode input from address matching feature
+address_search_value_check,Was the 'No address found' page seen?
+uprn_selection,UPRN of the address selected
+address_line1,Address line 1
+address_line2,Address line 2
+town_or_city,Town or City
+county,County
+postcode_full,Postcode
+is_la_inferred,The internal value to indicate if the LA was inferred from the postcode
+la_label,What is the property's local authority?
+la,Local authority code
+first_time_property_let_as_social_housing,Is this the first time the property has been let as social housing?
+unitletas,What rent product was the property most recently let as?
+rsnvac,What is the reason for the property being vacant?
+newprop,Is this property new to the social rented sector?
+unittype_gn,What type of unit is the property?
+wchair,Is the property built or adapted to wheelchair-user standards?
+beds,How many bedrooms does the property have?
+voiddate,What is the void date?
+vacdays,Number of days the property was vacant
+void_date_value_check,The following soft validation was confirmed: You told us that the property has been vacant for more than 2 years. This is higher than we would expect.
+majorrepairs,Were any major repairs carried out during the void period?
+mrcdate,What date were any major repairs completed on?
+major_repairs_date_value_check,The following soft validation was confirmed: You told us the property has been vacant for 2 years. This is higher than we would expect.
+joint,Is this a joint tenancy?
+startertenancy,Is this a starter tenancy?
+tenancy,What is the type of tenancy?
+tenancyother,If 'Other', what is the type of tenancy?
+tenancylength,What is the length of the fixed-term tenancy to the nearest year?
+sheltered,Is this letting in sheltered accommodation?
+declaration,Has the tenant seen the MHCLG privacy notice?
+hhmemb,How many people live in the household at this letting?
+pregnancy_value_check,The following soft validation was confirmed: You told us somebody in the household is pregnant. You also told us there are no female tenants living at the property.
+refused,Where household characteristics have a 'Refused' option for some or all of: AGE1-AGE8, SEX1-SEX8, RELAT2-RELAT8, ECSTAT1-ECSTAT8
+hhtype,Type of household 1 = 1 elder; 2 = 2 adults, including elder(s); 3 = 1 adult; 4 = 2 adults; 5 = 1 adult & 1+ children; 6 = 2+ adults & 1+ children; 9 = Other
+totchild,Total number of dependent children in the household (Sum of when RELAT2-8 = C)
+totelder,Total number of elders in household (Sum of when AGE1-8 >= 60)
+totadult,Total number of adults in household
+age1,What is the lead tenant's age?
+retirement_value_check,The following soft validation was confirmed: You told us this person is aged %{age} years and retired. The minimum expected retirement age for %{gender} in England is %{age}.
+sex1,Which of these best describes the lead tenant's gender identity?
+ethnic_group,What is the lead tenant's ethnic group?
+ethnic,Which of these best describes the lead tenant's ethnic background?
+nationality_all,What is the lead tenant's nationality?
+ecstat1,Which of these best describes the lead tenant's working situation?
+details_known_2,Are the details of tenant 2 known?
+relat2,What is person 2's relationship to the lead tenant?
+partner_under_16_value_check,The following soft validation was confirmed: You said that [person X]'s relationship to lead tenant is partner, and that their age is [AGEX]. Are you sure this is correct?
+multiple_partners_value_check,The following soft validation was confirmed: You said that more than one person in the household is the partner of the lead tenant. Are you sure this is correct?
+age2,What is person 2's age?
+sex2,Which of these best describes person 2's gender identity?
+ecstat2,Which of these best describes person 2's working situation?
+details_known_3,Are the details of tenant 3 known?
+relat3,What is person 3's relationship to the lead tenant?
+age3,What is person 3's age?
+sex3,Which of these best describes person 3's gender identity?
+ecstat3,Which of these best describes person 3's working situation?
+details_known_4,Are the details of tenant 4 known?
+relat4,What is person 4's relationship to the lead tenant?
+age4,What is person 4's age?
+sex4,Which of these best describes person 4's gender identity?
+ecstat4,Which of these best describes person 4's working situation?
+details_known_5,Are the details of tenant 5 known?
+relat5,What is person 5's relationship to the lead tenant?
+age5,What is person 5's age?
+sex5,Which of these best describes person 5's gender identity?
+ecstat5,Which of these best describes person 5's working situation?
+details_known_6,Are the details of tenant 6 known?
+relat6,What is person 6's relationship to the lead tenant?
+age6,What is person 6's age?
+sex6,Which of these best describes person 6's gender identity?
+ecstat6,Which of these best describes person 6's working situation?
+details_known_7,Are the details of tenant 7 known?
+relat7,What is person 7's relationship to the lead tenant?
+age7,What is person 7's age?
+sex7,Which of these best describes person 7's gender identity?
+ecstat7,Which of these best describes person 7's working situation?
+details_known_8,Are the details of tenant 8 known?
+relat8,What is person 8's relationship to the lead tenant?
+age8,What is person 8's age?
+sex8,Which of these best describes person 8's gender identity?
+ecstat8,Which of these best describes person 8's working situation?
+armedforces,Does anybody in the household have links to the UK armed forces?
+leftreg,Is this person still serving in the UK armed forces?
+reservist,Was this person seriously injured or ill as a result of serving in the UK armed forces?
+preg_occ,Is anybody in the household pregnant?
+housingneeds,Does anybody in the household have any disabled access needs?
+housingneeds_type,What access needs do they have? (Fully wheelchair-accessible housing, Level access housing or Wheelchair access to essential rooms)
+housingneeds_a,Disabled access needs a) Fully wheelchair-accessible housing
+housingneeds_b,Disabled access needs b) Wheelchair access to essential rooms
+housingneeds_c,Disabled access needs c) Level access housing
+housingneeds_f,Disabled access needs f) Other disabled access needs
+housingneeds_g,Disabled access needs g) No disabled access needs
+housingneeds_h,Disabled access needs h) Don't know
+housingneeds_other,Do they have any other disabled access needs?
+illness,Does anybody in the household have a physical or mental health condition (or other illness) expected to last 12 months or more?
+illness_type_4,Does this person's condition affect their dexterity?
+illness_type_5,Does this person's condition affect their learning or understanding or concentrating?
+illness_type_2,Does this person's condition affect their hearing?
+illness_type_6,Does this person's condition affect their memory?
+illness_type_7,Does this person's condition affect their mental health?
+illness_type_3,Does this person's condition affect their mobility?
+illness_type_9,Does this person's condition affect them socially or behaviourally?
+illness_type_8,Does this person's condition affect their stamina or breathing or fatigue?
+illness_type_1,Does this person's condition affect their vision?
+illness_type_10,Does this person's condition affect them in another way?
+layear,How long has the household continuously lived in the local authority area of the new letting?
+waityear,How long has the household been on the local authority waiting list for the new letting?
+reason,What is the tenant's main reason for the household leaving their last settled home?
+reasonother,If 'Other', what was the main reason for leaving their last settled home?
+reasonother_value_check,The soft validation was confirmed
+prevten,Where was the household immediately before this letting?
+homeless,Did the household experience homelessness immediately before this letting?
+ppcodenk,Previous postcode unknown or previous accommodation was temporary
+ppostcode_full,What is the postcode of the household's last settled home?
+previous_la_known,Was the local authority of the household's last settled home known?
+is_previous_la_inferred,The internal value to indicate if the previous LA was inferred from the postcode
+prevloc_label,Previous location LA name
+prevloc,Previous location's ONS LA Code
+reasonpref,Was the household given reasonable preference by the local authority?
+rp_homeless,Reasonable preference reason - They were homeless or about to lose their home (within 56 days)
+rp_insan_unsat,Reasonable preference reason - They were living in insanitary, overcrowded or unisatisfactory housing
+rp_medwel,Reasonable preference reason - They needed to move on medical and welfare reasons (including disability)
+rp_hardship,Reasonable preference reason - They needed to move to avoid hardship to themselves or others
+rp_dontknow,Reasonable preference reason - Don't Know
+cbl,Was the letting made under Choice-Based Lettings (CBL)?
+cap,Was the letting made under the Common Allocation Policy (CAP)?
+chr,Was the letting made under the Common Housing Register (CHR)?
+accessible_register,Was the letting made under the Accessible Register?
+letting_allocation_none,The letting was not allocated under CBL, CAP, CHR or Accessible Register.
+referral,What was the source of referral for this letting?
+referral_value_check,The following soft validation was confirmed: Are you sure? This is a general needs log, and this referral type is for supported housing.
+net_income_known,Do you know the household's combined income after tax?
+incref,Was the household income refused?
+earnings,How much income does the household have in total?
+incfreq,How often does the household receive income?
+net_income_value_check,Populated when someone hits the soft validation and confirmed in the service
+hb,Is the tenant likely to be receiving any of these housing-related benefits?
+has_benefits,Does the tenant receive housing-related benefits? Yes if hb = Universal Credit housing element or Housing benefit, No if hb = Don't Know, Neither, Tenant prefers not to say or blank
+benefits,How much of the household's income is from Universal Credit, state pensions or benefits?
+household_charge,Does the household pay rent or other charges for the accommodation?
+nocharge,Does the household pay rent or other charges for the accommodation? - flag for when household_charge is answered no
+period,How often does the household pay rent and other charges?
+is_carehome,Is this accommodation a care home?
+chcharge,If this is a care home, how much does the household pay every [time period]?
+wchchrg,Weekly care home charge
+carehome_charges_value_check,Populated when the soft validation and confirmed in the service
+brent,What is the basic rent?
+wrent,Weekly rent
+rent_value_check,Populated when the soft validation and confirmed in the service
+scharge,What is the service charge?
+wscharge,Weekly service charge
+pscharge,What is the personal service charge?
+wpschrge,Weekly personal service charge
+supcharg,What is the support charge?
+wsupchrg,Weekly support charge
+tcharge,Total charge to the tenant
+wtcharge,Weekly total charge to the tenant
+scharge_value_check,Populated when the soft validation and confirmed in the service
+pscharge_value_check,Populated when the soft validation and confirmed in the service
+supcharg_value_check,Populated when the soft validation and confirmed in the service
+hbrentshortfall,After the household has received any housing-related benefits, will they still need to pay for rent and charges?
+tshortfall_known,Can you estimate the outstanding amount?
+tshortfall,Estimated outstanding amount
+wtshortfall,Weekly total rent shortfall charge for tenant receiving housing benefit
+scheme_code,What scheme does this letting belong to?
+scheme_service_name,From scheme code, we map to the scheme name
+scheme_confidential,Does the scheme contain confidential information?
+SCHTYPE,What is this type of scheme? (Direct access hostel), Foyer, Housing for older people or Other supported housing
+scheme_registered_under_care_act,Is this scheme registered under the Care Standards Act 2000?
+scheme_owning_organisation_name,Which organisation owns the housing stock for this scheme?
+scheme_primary_client_group,What client group is this scheme intended for?
+scheme_has_other_client_group,Does this scheme provide for another client group?
+scheme_secondary_client_group,What is the other client group?
+scheme_support_type,What support does this scheme provide?
+scheme_intended_stay,Intended length of stay
+scheme_created_at,Date scheme was created
+location_code,Which location is this letting for?
+location_postcode,What is the postcode for this location?
+location_name,What is the name of this location?
+location_units,How many units are at this location?
+location_type_of_unit,What is the most common type of unit at this location?
+location_mobility_type,What are the mobility standards for the majority of the units in this location?
+location_local_authority,What is the local authority of this postcode?
+location_startdate,When did the first property in this location become available under this scheme?
working_situation_illness_check,The following soft validation was confirmed: You have said that at least one person's situation is 'Unable to work because of long-term sickness or disability'.
+sexrab1,What was the lead tenant's sex at birth?
+sexrab2,What was person 2's sex at birth?
+sexrab3,What was person 3's sex at birth?
+sexrab4,What was person 4's sex at birth?
+sexrab5,What was person 5's sex at birth?
+sexrab6,What was person 6's sex at birth?
+sexrab7,What was person 7's sex at birth?
+sexrab8,What was person 8's sex at birth?
diff --git a/spec/fixtures/variable_definitions/sales_download_26_27.csv b/spec/fixtures/variable_definitions/sales_download_26_27.csv
new file mode 100644
index 000000000..c0759bf6d
--- /dev/null
+++ b/spec/fixtures/variable_definitions/sales_download_26_27.csv
@@ -0,0 +1,287 @@
+ID,Log ID
+STATUS,Status of log
+DUPLICATESET,ID of a set of duplicate logs
+CREATEDDATE,Time and date the log was created
+UPLOADDATE,Time and date the log was last updated
+COLLECTIONYEAR,Year collection period opened
+CREATIONMETHOD,Was the log submitted in-service or via bulk upload?
+BULKUPLOADID,ID of a set of bulk uploaded logs
+DATAPROTECT,Is the user in the created_by column the data protection officer?
+OWNINGORGNAME,Which organisation owned this property before the sale?
+MANINGORGNAME,Which organisation reported the sale?
+CREATEDBY,User that created the log
+USERNAME,User the log is assigned to
+DAY,Day of sale completion date
+MONTH,Month of sale completion date
+YEAR,Year of sale completion date
+PURCHID,What is the purchaser code?
+OWNERSHIP,Was this purchase made through an ownership scheme?
+TYPE,What is the type of shared ownership/discounted ownership/outright sale?
+OTHTYPE,If type = 'Other', what is the type of outright sale?
+COMPANY,Is the buyer a company?
+LIVEINBUYER,Will the buyer(s) live in the property?
+JOINT,Is this a joint purchase?
+JOINTMORE,Are there more than 2 joint buyers of this property?
+NOINT,Did you interview the buyer to answer these questions?
+PRIVACYNOTICE,Has the buyer seen the MHCLG privacy notice?
+UPRN,What is the UPRN of the property?
+ADDRESS1,Address line 1
+ADDRESS2,Address line 2
+TOWNCITY,Town/City
+COUNTY,County
+POSTCODE,Postcode
+ISLAINFERRED,The internal value to indicate if the LA was inferred from the postcode
+LANAME,LA name
+LA,LA code
+UPRNSELECTED,UPRN of the address selected
+ADDRESS_SEARCH_VALUE_CHECK,Was the 'No address found' page seen?
+ADDRESS1INPUT,Address line 1 input from address matching feature
+POSTCODEINPUT,Postcode input from address matching feature
+BULKADDRESS1,Address line 1 entered in bulk upload file
+BULKADDRESS2,Address line 2 entered in bulk upload file
+BULKTOWNCITY,Town or city entered in bulk upload file
+BULKCOUNTY,County entered in bulk upload file
+BULKPOSTCODE,Postcode entered in bulk upload file
+BULKLA,Local authority entered in bulk upload file
+BEDS,How many bedrooms does the property have?
+PROPTYPE,What type of unit is the property?
+BUILTYPE,Which type of building is the property?
+WCHAIR,Is the property built or adapted to wheelchair-user standards?
+AGE1,What is buyer 1's age?
+SEX1,Which of these best describes buyer 1's gender identity?
+ETHNICGROUP1,What is buyer 1's ethnic group?
+ETHNIC,Which of the following best describes buyer 1's ethnic background?
+NATIONALITYALL1,What is buyer 1's nationality?
+ECSTAT1,Which of these best describes buyer 1's working situation?
+LIVEINBUYER1,Will buyer 1 live in the property?
+RELAT2,What is buyer 2 or person 2's relationship to buyer 1?
+AGE2,What is buyer 2 or person 2's age?
+SEX2,Which of these best describes buyer 2 or person 2's gender identity?
+ETHNICGROUP2,What is buyer 2's ethnic group?
+ETHNIC2,Which of the following best describes buyer 2's ethnic background?
+NATIONALITYALL2,What is buyer 2's nationality?
+ECSTAT2,What is buyer 2 or person 2's working situation?
+LIVEINBUYER2,Will buyer 2 live in the property?
+HHTYPE,Besides the buyer(s), how many other people live or will live in the property?
+RELAT3,What is person 3's relationship to buyer 1?
+AGE3,What is person 3's age?
+SEX3,What is person 3's gender identity?
+ECSTAT3,What is person 3's working situation?
+RELAT4,What is person 4's relationship to buyer 1?
+AGE4,What is person 4's age?
+SEX4,What is person 4's gender identity?
+ECSTAT4,What is person 4's working situation?
+RELAT5,What is person 5's relationship to buyer 1?
+AGE5,What is person 5's age?
+SEX5,What is person 5's gender identity?
+ECSTAT5,What is person 5's working situation?
+RELAT6,What is person 6's relationship to buyer 1?
+AGE6,What is person 6's age?
+SEX6,What is person 6's gender identity?
+ECSTAT6,What is person 6's working situation?
+PREVTEN,What was buyer 1's previous tenure?
+PPCODENK,Do you know the postcode of buyer 1's last settled accommodation?
+PPOSTC1,Part 1 of postcode of buyer 1's last settled accommodation
+PPOSTC2,Part 2 of postcode of buyer 1's last settled accommodation
+PREVIOUSLAKNOWN,Do you know the local authority of buyer 1's last settled accommodation?
+PREVLOC,The local authority code of buyer 1's last settled accommodation
+PREVLOCNAME,The local authority name of buyer 1's last settled accommodation
+PREGYRHA,Was the buyer registered with their PRP (HA)?
+PREGOTHER,Was the buyer registered with another PRP (HA)?
+PREGLA,Was the buyer registered with the local authority?
+PREGGHB,Was the buyer registered with a Help to Buy agent?
+PREGBLANK,Populated if pregyrha, pregother, pregla and pregghb are blank
+BUY2LIVING,At the time of purchase, was buyer 2 living at the same address as buyer 1?
+PREVTEN2,What was buyer 2's previous tenure?
+HHREGRES,Have any of the buyers ever served as a regular in the UK armed forces?
+HHREGRESSTILL,Is the buyer still serving in the UK armed forces?
+ARMEDFORCESSPOUSE,Are any of the buyers a spouse or civil partner of a UK armed forces regular who died in service within the last 2 years?
+DISABLED,Does anyone in the household consider themselves to have a disability?
+WHEEL,Does anyone in the household use a wheelchair?
+INC1NK,Is buyer 1's annual income known?
+INCOME1,What is buyer 1's annual income?
+INC1MORT,Was buyer 1's income used for a mortgage application?
+INC2NK,Is buyer 1's annual income known?
+INCOME2,What is buyer 2's annual income?
+INC2MORT,Was buyer 2's income used for a mortgage application?
+HB,Were the buyers receiving any of these housing-related benefits immediately before buying this property?
+SAVINGSNK,Is the the total amount the buyers had in savings known?
+SAVINGS,What is the total amount the buyers had in savings before they paid any deposit for the property?
+PREVOWN,Have any of the buyers previously owned a property?
+PREVSHARED,Was the previous property under shared ownership?
+PROPLEN,How long did the buyer(s) live in the property before purchasing it?
+STAIRCASE,Is this a staircasing transaction?
+STAIRBOUGHT,What percentage of the property has been bought in this staircasing transaction?
+STAIROWNED,What percentage of the property do the buyers now own in total?
+STAIRCASETOSALE,Was this transaction part of a back-to-back staircasing transaction to facilitate sale of the home on the open market?
+RESALE,Is this a resale?
+EXDAY,Day of the exchange of contracts
+EXMONTH,Month of the exchange of contracts
+EXYEAR,Year of the exchange of contracts
+HODAY,Day of the practical completion or handover date
+HOMONTH,Month of the practical completion or handover date
+HOYEAR,Year of the practical completion or handover date
+LANOMAGR,Was the household rehoused under a local authority nominations agreement?
+SOCTEN,Was the buyer a private registered provider, housing association or local authority tenant immediately before this sale?
+FROMBEDS,How many bedrooms did the buyer's previous property have?
+FROMPROP,What was the previous property type?
+SOCPREVTEN,What was the rent type of buyer's previous tenure?
+VALUE,What is the full purchase price?
+VALUE_VALUE_CHECK,Populated if a soft validation is confirmed.
+EQUITY,What was the initial percentage equity stake purchased?
+MORTGAGEUSED,Was a mortgage used to buy this property?
+MORTGAGE,What is the mortgage amount?
+MORTGAGELENDER,What is the name of the mortgage lender?
+MORTGAGELENDEROTHER,If mortgagelender = 'Other', what is the name of the mortgage lender?
+MORTLEN1,What is the length of the mortgage in years?
+EXTRABOR,Does this include any extra borrowing?
+DEPOSIT,How much was the cash deposit paid on the property?
+CASHDIS,How much cash discount was given through Social Homebuy?
+MRENT,What is the basic monthly rent?
+HASMSCHARGE,Does the property have any monthly leasehold charges?
+MSCHARGE,What are the total monthly leasehold charges for the property?
+MSCHARGE_VALUE_CHECK,Populated if a soft validation is confirmed.
+DISCOUNT,What was the percentage discount?
+GRANT,What was the amount of any loan, grant, discount or subsidy given?
+id,Log ID
+status,Status of log
+duplicate_set_id,ID of a set of duplicate logs
+created_at,Time and date the log was created
+updated_at,Time and date the log was last updated
+old_form_id,The ID on the old service
+collection_start_year,Year collection period opened
+creation_method,Was the log submitted in-service or via bulk upload?
+is_dpo,Is the user in the assigned_to column the data protection officer?
+owning_organisation_name,Which organisation owned this property before the sale?
+managing_organisation_name,Which organisation reported the sale?
+assigned_to,User the log is assigned to
+day,Day of sale completion date
+month,Month of sale completion date
+year,Year of sale completion date
+purchid,What is the purchaser code?
+ownershipsch,Was this purchase made through an ownership scheme?
+type,What is the type of shared ownership/discounted ownership/outright sale?
+othtype,If type = 'Other', what is the type of outright sale?
+companybuy,Is the buyer a company?
+buylivein,Will the buyer(s) live in the property?
+jointpur,Is this a joint purchase?
+jointmore,Are there more than 2 joint buyers of this property?
+beds,How many bedrooms does the property have?
+proptype,What type of unit is the property?
+builtype,Which type of building is the property?
+uprn,What is the UPRN of the property?
+uprn_confirmed,We found an address that might be this property. Is this the property address?
+address_line1_input,Address line 1 input from address matching feature
+postcode_full_input,Postcode input from address matching feature
+uprn_selection,UPRN of the address selected
+address_line1,Address line 1
+address_line2,Address line 2
+town_or_city,Town/City
+county,County
+pcode1,Part 1 of the property's postcode
+pcode2,Part 2 of the property's postcode
+la,LA code
+la_label,LA name
+wchair,Is the property built or adapted to wheelchair-user standards?
+noint,Did you interview the buyer to answer these questions?
+privacynotice,Has the buyer seen the MHCLG privacy notice?
+age1,What is buyer 1's age?
+sex1,Which of these best describes buyer 1's gender identity?
+ethnic_group,What is buyer 1's ethnic group?
+ethnic,Which of the following best describes buyer 1's ethnic background?
+nationality_all,What is buyer 1's nationality?
+ecstat1,Which of these best describes buyer 1's working situation?
+buy1livein,Will buyer 1 live in the property?
+relat2,What is buyer 2 or person 2's relationship to buyer 1?
+age2,What is buyer 2 or person 2's age?
+sex2,Which of these best describes buyer 2 or person 2's gender identity?
+ethnic_group2,What is buyer 2's ethnic group?
+ethnicbuy2,Which of the following best describes buyer 2's ethnic background?
+nationality_all_buyer2,What is buyer 2's nationality?
+ecstat2,What is buyer 2 or person 2's working situation?
+buy2livein,Will buyer 2 live in the property?
+hholdcount,Besides the buyer(s), how many other people live or will live in the property?
+relat3,What is person 3's relationship to buyer 1?
+age3,What is person 3's age?
+sex3,What is person 3's gender identity?
+ecstat3,What is person 3's working situation?
+relat4,What is person 4's relationship to buyer 1?
+age4,What is person 4's age?
+sex4,What is person 4's gender identity?
+ecstat4,What is person 4's working situation?
+relat5,What is person 5's relationship to buyer 1?
+age5,What is person 5's age?
+sex5,What is person 5's gender identity?
+ecstat5,What is person 5's working situation?
+relat6,What is person 6's relationship to buyer 1?
+age6,What is person 6's age?
+sex6,What is person 6's gender identity?
+ecstat6,What is person 6's working situation?
+prevten,What was buyer 1's previous tenure?
+ppcodenk,Do you know the postcode of buyer 1's last settled accommodation?
+ppostc1,Part 1 of postcode of buyer 1's last settled accommodation
+ppostc2,Part 2 of postcode of buyer 1's last settled accommodation
+previous_la_known,Do you know the local authority of buyer 1's last settled accommodation?
+prevloc,The local authority code of buyer 1's last settled accommodation
+prevloc_label,The local authority name of buyer 1's last settled accommodation
+pregyrha,Was the buyer registered with their PRP (HA)?
+pregother,Was the buyer registered with another PRP (HA)?
+pregla,Was the buyer registered with the local authority?
+pregghb,Was the buyer registered with a Help to Buy agent?
+pregblank,Populated if pregyrha, pregother, pregla and pregghb are blank
+buy2living,At the time of purchase, was buyer 2 living at the same address as buyer 1?
+prevtenbuy2,What was buyer 2's previous tenure?
+hhregres,Have any of the buyers ever served as a regular in the UK armed forces?
+hhregresstill,Is the buyer still serving in the UK armed forces?
+armedforcesspouse,Are any of the buyers a spouse or civil partner of a UK armed forces regular who died in service within the last 2 years?
+disabled,Does anyone in the household consider themselves to have a disability?
+wheel,Does anyone in the household use a wheelchair?
+income1nk,Is buyer 1's annual income known?
+income1,What is buyer 1's annual income?
+inc1mort,Was buyer 1's income used for a mortgage application?
+income2nk,Is buyer 2's annual income known?
+income2,What is buyer 2's annual income?
+inc2mort,Was buyer 2's income used for a mortgage application?
+hb,Were the buyers receiving any of these housing-related benefits immediately before buying this property?
+savingsnk,Is the the total amount the buyers had in savings known?
+savings,What is the total amount the buyers had in savings before they paid any deposit for the property?
+prevown,Have any of the buyers previously owned a property?
+prevshared,Was the previous property under shared ownership?
+proplen,How long did the buyer(s) live in the property before purchasing it?
+staircase,Is this a staircasing transaction?
+stairbought,What percentage of the property has been bought in this staircasing transaction?
+stairowned,What percentage of the property do the buyers now own in total?
+staircasesale,Was this transaction part of a back-to-back staircasing transaction to facilitate sale of the home on the open market?
+resale,Is this a resale?
+exday,Day of the exchange of contracts
+exmonth,Month of the exchange of contracts
+exyear,Year of the exchange of contracts
+hoday,Day of the practical completion or handover date
+homonth,Month of the practical completion or handover date
+hoyear,Year of the practical completion or handover date
+lanomagr,Was the household rehoused under a local authority nominations agreement?
+soctenant,Was the buyer a private registered provider, housing association or local authority tenant immediately before this sale?
+frombeds,How many bedrooms did the buyer's previous property have?
+fromprop,What was the previous property type?
+socprevten,What was the rent type of buyer's previous tenure?
+value,What is the full purchase price?
+equity,What was the initial percentage equity stake purchased?
+mortgageused,Was a mortgage used to buy this property?
+mortgage,What is the mortgage amount?
+mortgagelender,What is the name of the mortgage lender?
+mortgagelenderother,If mortgagelender = 'Other', what is the name of the mortgage lender?
+mortlen,What is the length of the mortgage in years?
+extrabor,Does this include any extra borrowing?
+deposit,How much was the cash deposit paid on the property?
+cashdis,How much cash discount was given through Social Homebuy?
+mrent,What is the basic monthly rent?
+has_mscharge,Does the property have any monthly leasehold charges?
+mscharge,What are the total monthly leasehold charges for the property?
+discount,What was the percentage discount?
+grant,What was the amount of any loan, grant, discount or subsidy given?
+sexrab1,What was buyer 1's sex at birth?
+sexrab2,What was buyer/person 2's sex at birth?
+sexrab3,What was person 3's sex at birth?
+sexrab4,What was person 4's sex at birth?
+sexrab5,What was person 5's sex at birth?
+sexrab6,What was person 6's sex at birth?
diff --git a/spec/lib/tasks/log_variable_definitions_spec.rb b/spec/lib/tasks/log_variable_definitions_spec.rb
index 8bae5a4d0..386810d83 100644
--- a/spec/lib/tasks/log_variable_definitions_spec.rb
+++ b/spec/lib/tasks/log_variable_definitions_spec.rb
@@ -6,6 +6,7 @@ RSpec.describe "log_variable_definitions" do
subject(:task) { Rake::Task["data_import:add_variable_definitions"] }
let(:path) { "spec/fixtures/variable_definitions" }
+ let(:total_variable_definitions_count) { 431 }
before do
Rake.application.rake_require("tasks/log_variable_definitions")
@@ -14,7 +15,7 @@ RSpec.describe "log_variable_definitions" do
end
it "adds CsvVariableDefinition records from each file in the specified directory" do
- expect { task.invoke(path) }.to change(CsvVariableDefinition, :count).by(417)
+ expect { task.invoke(path) }.to change(CsvVariableDefinition, :count).by(total_variable_definitions_count)
end
it "handles an empty directory without errors" do
@@ -34,7 +35,7 @@ RSpec.describe "log_variable_definitions" do
task.invoke(path)
second_run_count = CsvVariableDefinition.count
- expect(first_run_count).to eq(initial_count + 417)
+ expect(first_run_count).to eq(initial_count + total_variable_definitions_count)
expect(second_run_count).to eq(first_run_count)
end
end
diff --git a/spec/models/form/lettings/pages/lead_tenant_sex_registered_at_birth_spec.rb b/spec/models/form/lettings/pages/lead_tenant_sex_registered_at_birth_spec.rb
new file mode 100644
index 000000000..fcc655849
--- /dev/null
+++ b/spec/models/form/lettings/pages/lead_tenant_sex_registered_at_birth_spec.rb
@@ -0,0 +1,29 @@
+require "rails_helper"
+
+RSpec.describe Form::Lettings::Pages::LeadTenantSexRegisteredAtBirth, type: :model do
+ subject(:page) { described_class.new(page_id, page_definition, subsection) }
+
+ let(:page_id) { nil }
+ let(:page_definition) { nil }
+ let(:subsection) { instance_double(Form::Subsection, form: instance_double(Form, start_date: Time.zone.local(2026, 4, 1))) }
+
+ it "has correct subsection" do
+ expect(page.subsection).to eq(subsection)
+ end
+
+ it "has correct questions" do
+ expect(page.questions.map(&:id)).to eq(%w[sexrab1])
+ end
+
+ it "has the correct id" do
+ expect(page.id).to eq("lead_tenant_sex_registered_at_birth")
+ end
+
+ it "has the correct description" do
+ expect(page.description).to be_nil
+ end
+
+ it "has correct depends_on" do
+ expect(page.depends_on).to eq([{ "declaration" => 1 }])
+ end
+end
diff --git a/spec/models/form/lettings/pages/person_sex_registered_at_birth_spec.rb b/spec/models/form/lettings/pages/person_sex_registered_at_birth_spec.rb
new file mode 100644
index 000000000..628fe5f30
--- /dev/null
+++ b/spec/models/form/lettings/pages/person_sex_registered_at_birth_spec.rb
@@ -0,0 +1,138 @@
+require "rails_helper"
+
+RSpec.describe Form::Lettings::Pages::PersonSexRegisteredAtBirth, type: :model do
+ subject(:page) { described_class.new(page_id, page_definition, subsection, person_index:) }
+
+ let(:page_definition) { nil }
+ let(:subsection) { instance_double(Form::Subsection, form: instance_double(Form, start_date: Time.zone.local(2026, 4, 1))) }
+ let(:person_index) { 1 }
+
+ let(:page_id) { "person_2_sex_registered_at_birth" }
+
+ it "has correct subsection" do
+ expect(page.subsection).to eq(subsection)
+ end
+
+ it "has the correct description" do
+ expect(page.description).to be_nil
+ end
+
+ context "with person 2" do
+ let(:person_index) { 2 }
+ let(:page_id) { "person_2_sex_registered_at_birth" }
+
+ it "has correct questions" do
+ expect(page.questions.map(&:id)).to eq(%w[sexrab2])
+ end
+
+ it "has the correct id" do
+ expect(page.id).to eq("person_2_sex_registered_at_birth")
+ end
+
+ it "has correct depends_on" do
+ expect(page.depends_on).to eq([{ "details_known_2" => 0 }])
+ end
+ end
+
+ context "with person 3" do
+ let(:person_index) { 3 }
+ let(:page_id) { "person_3_sex_registered_at_birth" }
+
+ it "has correct questions" do
+ expect(page.questions.map(&:id)).to eq(%w[sexrab3])
+ end
+
+ it "has the correct id" do
+ expect(page.id).to eq("person_3_sex_registered_at_birth")
+ end
+
+ it "has correct depends_on" do
+ expect(page.depends_on).to eq([{ "details_known_3" => 0 }])
+ end
+ end
+
+ context "with person 4" do
+ let(:person_index) { 4 }
+ let(:page_id) { "person_4_sex_registered_at_birth" }
+
+ it "has correct questions" do
+ expect(page.questions.map(&:id)).to eq(%w[sexrab4])
+ end
+
+ it "has the correct id" do
+ expect(page.id).to eq("person_4_sex_registered_at_birth")
+ end
+
+ it "has correct depends_on" do
+ expect(page.depends_on).to eq([{ "details_known_4" => 0 }])
+ end
+ end
+
+ context "with person 5" do
+ let(:person_index) { 5 }
+ let(:page_id) { "person_5_sex_registered_at_birth" }
+
+ it "has correct questions" do
+ expect(page.questions.map(&:id)).to eq(%w[sexrab5])
+ end
+
+ it "has the correct id" do
+ expect(page.id).to eq("person_5_sex_registered_at_birth")
+ end
+
+ it "has correct depends_on" do
+ expect(page.depends_on).to eq([{ "details_known_5" => 0 }])
+ end
+ end
+
+ context "with person 6" do
+ let(:person_index) { 6 }
+ let(:page_id) { "person_6_sex_registered_at_birth" }
+
+ it "has correct questions" do
+ expect(page.questions.map(&:id)).to eq(%w[sexrab6])
+ end
+
+ it "has the correct id" do
+ expect(page.id).to eq("person_6_sex_registered_at_birth")
+ end
+
+ it "has correct depends_on" do
+ expect(page.depends_on).to eq([{ "details_known_6" => 0 }])
+ end
+ end
+
+ context "with person 7" do
+ let(:person_index) { 7 }
+ let(:page_id) { "person_7_sex_registered_at_birth" }
+
+ it "has correct questions" do
+ expect(page.questions.map(&:id)).to eq(%w[sexrab7])
+ end
+
+ it "has the correct id" do
+ expect(page.id).to eq("person_7_sex_registered_at_birth")
+ end
+
+ it "has correct depends_on" do
+ expect(page.depends_on).to eq([{ "details_known_7" => 0 }])
+ end
+ end
+
+ context "with person 8" do
+ let(:person_index) { 8 }
+ let(:page_id) { "person_8_sex_registered_at_birth" }
+
+ it "has correct questions" do
+ expect(page.questions.map(&:id)).to eq(%w[sexrab8])
+ end
+
+ it "has the correct id" do
+ expect(page.id).to eq("person_8_sex_registered_at_birth")
+ end
+
+ it "has correct depends_on" do
+ expect(page.depends_on).to eq([{ "details_known_8" => 0 }])
+ end
+ end
+end
diff --git a/spec/models/form/lettings/pages/previous_housing_situation_spec.rb b/spec/models/form/lettings/pages/previous_housing_situation_spec.rb
index 907c8671e..811da5bbd 100644
--- a/spec/models/form/lettings/pages/previous_housing_situation_spec.rb
+++ b/spec/models/form/lettings/pages/previous_housing_situation_spec.rb
@@ -3,7 +3,7 @@ require "rails_helper"
RSpec.describe Form::Lettings::Pages::PreviousHousingSituation, type: :model do
subject(:page) { described_class.new(nil, nil, subsection) }
- let(:subsection) { instance_double(Form::Subsection, form: instance_double(Form, start_date: Time.zone.local(2024, 4, 1), start_year_2025_or_later?: false)) }
+ let(:subsection) { instance_double(Form::Subsection, form: instance_double(Form, start_date: Time.zone.local(2024, 4, 1), start_year_2025_or_later?: false, start_year_2026_or_later?: false)) }
it "has correct subsection" do
expect(page.subsection).to eq(subsection)
diff --git a/spec/models/form/lettings/questions/lead_tenant_sex_registered_at_birth_spec.rb b/spec/models/form/lettings/questions/lead_tenant_sex_registered_at_birth_spec.rb
new file mode 100644
index 000000000..bdac0ddf9
--- /dev/null
+++ b/spec/models/form/lettings/questions/lead_tenant_sex_registered_at_birth_spec.rb
@@ -0,0 +1,53 @@
+require "rails_helper"
+
+RSpec.describe Form::Lettings::Questions::LeadTenantSexRegisteredAtBirth, type: :model do
+ subject(:question) { described_class.new(question_id, question_definition, page) }
+
+ let(:question_id) { nil }
+ let(:question_definition) { nil }
+ let(:page) { instance_double(Form::Page) }
+ let(:subsection) { instance_double(Form::Subsection) }
+ let(:form) { instance_double(Form, start_date: Time.zone.local(2026, 4, 1)) }
+
+ before do
+ allow(page).to receive(:subsection).and_return(subsection)
+ allow(subsection).to receive(:form).and_return(form)
+ end
+
+ it "has correct page" do
+ expect(question.page).to eq(page)
+ end
+
+ it "has the correct id" do
+ expect(question.id).to eq("sexrab1")
+ end
+
+ it "has the correct type" do
+ expect(question.type).to eq("radio")
+ end
+
+ it "is not marked as derived" do
+ expect(question.derived?(nil)).to be false
+ end
+
+ it "has the correct answer_options" do
+ expect(question.answer_options).to eq({
+ "F" => { "value" => "Female" },
+ "M" => { "value" => "Male" },
+ "divider" => { "value" => true },
+ "R" => { "value" => "Lead tenant prefers not to say" },
+ })
+ end
+
+ it "has the correct check_answers_card_number" do
+ expect(question.check_answers_card_number).to eq(1)
+ end
+
+ it "has the correct inferred_check_answers_value" do
+ expect(question.inferred_check_answers_value).to be_nil
+ end
+
+ it "has the correct question number" do
+ expect(question.question_number).to eq(31)
+ end
+end
diff --git a/spec/models/form/lettings/questions/person_sex_registered_at_birth_spec.rb b/spec/models/form/lettings/questions/person_sex_registered_at_birth_spec.rb
new file mode 100644
index 000000000..90f48cfda
--- /dev/null
+++ b/spec/models/form/lettings/questions/person_sex_registered_at_birth_spec.rb
@@ -0,0 +1,185 @@
+require "rails_helper"
+
+RSpec.describe Form::Lettings::Questions::PersonSexRegisteredAtBirth, type: :model do
+ subject(:question) { described_class.new(question_id, question_definition, page, person_index:) }
+
+ let(:question_id) { "sexrab2" }
+ let(:question_definition) { nil }
+ let(:page) { instance_double(Form::Page) }
+ let(:person_index) { 2 }
+ let(:subsection) { instance_double(Form::Subsection) }
+ let(:form) { instance_double(Form, start_date: Time.zone.local(2026, 4, 1)) }
+
+ before do
+ allow(page).to receive(:subsection).and_return(subsection)
+ allow(subsection).to receive(:form).and_return(form)
+ end
+
+ it "has correct page" do
+ expect(question.page).to eq(page)
+ end
+
+ it "has the correct type" do
+ expect(question.type).to eq("radio")
+ end
+
+ it "is not marked as derived" do
+ expect(question.derived?(nil)).to be false
+ end
+
+ it "has the correct answer_options" do
+ expect(question.answer_options).to eq({
+ "F" => { "value" => "Female" },
+ "M" => { "value" => "Male" },
+ "divider" => { "value" => true },
+ "R" => { "value" => "Person prefers not to say" },
+ })
+ end
+
+ context "when person 2" do
+ let(:question_id) { "sexrab2" }
+ let(:person_index) { 2 }
+
+ it "has the correct id" do
+ expect(question.id).to eq("sexrab2")
+ end
+
+ it "has expected check answers card number" do
+ expect(question.check_answers_card_number).to eq(2)
+ end
+
+ it "has the correct inferred_check_answers_value" do
+ expect(question.inferred_check_answers_value).to be_nil
+ end
+
+ it "has the correct question number" do
+ expect(question.question_number).to eq(39)
+ end
+ end
+
+ context "when person 3" do
+ let(:question_id) { "sexrab3" }
+ let(:person_index) { 3 }
+
+ it "has the correct id" do
+ expect(question.id).to eq("sexrab3")
+ end
+
+ it "has expected check answers card number" do
+ expect(question.check_answers_card_number).to eq(3)
+ end
+
+ it "has the correct inferred_check_answers_value" do
+ expect(question.inferred_check_answers_value).to be_nil
+ end
+
+ it "has the correct question number" do
+ expect(question.question_number).to eq(44)
+ end
+ end
+
+ context "when person 4" do
+ let(:question_id) { "sexrab4" }
+ let(:person_index) { 4 }
+
+ it "has the correct id" do
+ expect(question.id).to eq("sexrab4")
+ end
+
+ it "has expected check answers card number" do
+ expect(question.check_answers_card_number).to eq(4)
+ end
+
+ it "has the correct inferred_check_answers_value" do
+ expect(question.inferred_check_answers_value).to be_nil
+ end
+
+ it "has the correct question number" do
+ expect(question.question_number).to eq(49)
+ end
+ end
+
+ context "when person 5" do
+ let(:question_id) { "sexrab5" }
+ let(:person_index) { 5 }
+
+ it "has the correct id" do
+ expect(question.id).to eq("sexrab5")
+ end
+
+ it "has expected check answers card number" do
+ expect(question.check_answers_card_number).to eq(5)
+ end
+
+ it "has the correct inferred_check_answers_value" do
+ expect(question.inferred_check_answers_value).to be_nil
+ end
+
+ it "has the correct question number" do
+ expect(question.question_number).to eq(54)
+ end
+ end
+
+ context "when person 6" do
+ let(:question_id) { "sexrab6" }
+ let(:person_index) { 6 }
+
+ it "has the correct id" do
+ expect(question.id).to eq("sexrab6")
+ end
+
+ it "has expected check answers card number" do
+ expect(question.check_answers_card_number).to eq(6)
+ end
+
+ it "has the correct inferred_check_answers_value" do
+ expect(question.inferred_check_answers_value).to be_nil
+ end
+
+ it "has the correct question number" do
+ expect(question.question_number).to eq(59)
+ end
+ end
+
+ context "when person 7" do
+ let(:question_id) { "sexrab7" }
+ let(:person_index) { 7 }
+
+ it "has the correct id" do
+ expect(question.id).to eq("sexrab7")
+ end
+
+ it "has expected check answers card number" do
+ expect(question.check_answers_card_number).to eq(7)
+ end
+
+ it "has the correct inferred_check_answers_value" do
+ expect(question.inferred_check_answers_value).to be_nil
+ end
+
+ it "has the correct question number" do
+ expect(question.question_number).to eq(64)
+ end
+ end
+
+ context "when person 8" do
+ let(:question_id) { "sexrab8" }
+ let(:person_index) { 8 }
+
+ it "has the correct id" do
+ expect(question.id).to eq("sexrab8")
+ end
+
+ it "has expected check answers card number" do
+ expect(question.check_answers_card_number).to eq(8)
+ end
+
+ it "has the correct inferred_check_answers_value" do
+ expect(question.inferred_check_answers_value).to be_nil
+ end
+
+ it "has the correct question number" do
+ expect(question.question_number).to eq(69)
+ end
+ end
+end
diff --git a/spec/models/form/lettings/questions/previous_tenure_spec.rb b/spec/models/form/lettings/questions/previous_tenure_spec.rb
index 4523848b2..af891e568 100644
--- a/spec/models/form/lettings/questions/previous_tenure_spec.rb
+++ b/spec/models/form/lettings/questions/previous_tenure_spec.rb
@@ -1,9 +1,14 @@
require "rails_helper"
RSpec.describe Form::Lettings::Questions::PreviousTenure, type: :model do
+ include CollectionTimeHelper
+
subject(:question) { described_class.new(nil, nil, page) }
- let(:form) { instance_double(Form, start_date: Time.zone.local(2023, 4, 1), start_year_2025_or_later?: false) }
+ let(:year) { current_collection_start_year }
+ let(:start_year_2025_or_later?) { false }
+ let(:start_year_2026_or_later?) { false }
+ let(:form) { instance_double(Form, start_date: collection_start_date_for_year(year), start_year_2025_or_later?: start_year_2025_or_later?, start_year_2026_or_later?: start_year_2026_or_later?) }
let(:page) { instance_double(Form::Page, subsection: instance_double(Form::Subsection, form:)) }
it "has the correct id" do
@@ -22,7 +27,9 @@ RSpec.describe Form::Lettings::Questions::PreviousTenure, type: :model do
expect(question.derived?(nil)).to be false
end
- context "with start year before 2025" do
+ context "with 2024 logs" do
+ let(:year) { 2024 }
+
it "has the correct answer_options" do
expect(question.answer_options).to eq({
"30" => { "value" => "Fixed-term local authority general needs tenancy" },
@@ -56,7 +63,45 @@ RSpec.describe Form::Lettings::Questions::PreviousTenure, type: :model do
end
context "with 2025 logs" do
- let(:form) { instance_double(Form, start_date: Time.zone.local(2025, 4, 1), start_year_2025_or_later?: true) }
+ let(:year) { 2025 }
+ let(:start_year_2025_or_later?) { true }
+
+ it "has the correct answer_options" do
+ expect(question.answer_options).to eq({
+ "30" => { "value" => "Fixed-term local authority general needs tenancy" },
+ "32" => { "value" => "Fixed-term private registered provider (PRP) general needs tenancy" },
+ "31" => { "value" => "Lifetime local authority general needs tenancy" },
+ "33" => { "value" => "Lifetime private registered provider (PRP) general needs tenancy" },
+ "35" => { "value" => "Extra care housing" },
+ "38" => { "value" => "Older people’s housing for tenants with low support needs" },
+ "6" => { "value" => "Other supported housing" },
+ "3" => { "value" => "Private sector tenancy" },
+ "27" => { "value" => "Owner occupation (low-cost home ownership)" },
+ "26" => { "value" => "Owner occupation (private)" },
+ "28" => { "value" => "Living with friends or family (long-term)" },
+ "39" => { "value" => "Sofa surfing (moving regularly between family or friends, no permanent bed)" },
+ "14" => { "value" => "Bed and breakfast" },
+ "7" => { "value" => "Direct access hostel" },
+ "10" => { "value" => "Hospital" },
+ "29" => { "value" => "Prison or approved probation hostel" },
+ "19" => { "value" => "Rough sleeping" },
+ "18" => { "value" => "Any other temporary accommodation" },
+ "13" => { "value" => "Children’s home or foster care" },
+ "24" => { "value" => "Home Office Asylum Support" },
+ "23" => { "value" => "Mobile home or caravan" },
+ "21" => { "value" => "Refuge" },
+ "9" => { "value" => "Residential care home" },
+ "4" => { "value" => "Tied housing or rented with job" },
+ "37" => { "value" => "Host family or similar refugee accommodation" },
+ "25" => { "value" => "Any other accommodation" },
+ })
+ end
+ end
+
+ context "with 2026 logs" do
+ let(:year) { 2026 }
+ let(:start_year_2025_or_later?) { true }
+ let(:start_year_2026_or_later?) { true }
it "has the correct answer_options" do
expect(question.answer_options).to eq({
@@ -64,6 +109,7 @@ RSpec.describe Form::Lettings::Questions::PreviousTenure, type: :model do
"32" => { "value" => "Fixed-term private registered provider (PRP) general needs tenancy" },
"31" => { "value" => "Lifetime local authority general needs tenancy" },
"33" => { "value" => "Lifetime private registered provider (PRP) general needs tenancy" },
+ "40" => { "value" => "Other general needs" },
"35" => { "value" => "Extra care housing" },
"38" => { "value" => "Older people’s housing for tenants with low support needs" },
"6" => { "value" => "Other supported housing" },
diff --git a/spec/models/form/lettings/subsections/household_characteristics_spec.rb b/spec/models/form/lettings/subsections/household_characteristics_spec.rb
index 3269514d2..8a8618f3a 100644
--- a/spec/models/form/lettings/subsections/household_characteristics_spec.rb
+++ b/spec/models/form/lettings/subsections/household_characteristics_spec.rb
@@ -346,6 +346,7 @@ RSpec.describe Form::Lettings::Subsections::HouseholdCharacteristics, type: :mod
females_in_soft_age_range_in_pregnant_household_lead_age_value_check
age_lead_tenant_under_retirement_value_check
age_lead_tenant_over_retirement_value_check
+ lead_tenant_sex_registered_at_birth
lead_tenant_gender_identity
no_females_pregnant_household_lead_value_check
females_in_soft_age_range_in_pregnant_household_lead_value_check
@@ -369,6 +370,7 @@ RSpec.describe Form::Lettings::Subsections::HouseholdCharacteristics, type: :mod
females_in_soft_age_range_in_pregnant_household_person_2_age_value_check
age_2_under_retirement_value_check
age_2_over_retirement_value_check
+ person_2_sex_registered_at_birth
person_2_gender_identity
no_females_pregnant_household_person_2_value_check
females_in_soft_age_range_in_pregnant_household_person_2_value_check
@@ -385,6 +387,7 @@ RSpec.describe Form::Lettings::Subsections::HouseholdCharacteristics, type: :mod
females_in_soft_age_range_in_pregnant_household_person_3_age_value_check
age_3_under_retirement_value_check
age_3_over_retirement_value_check
+ person_3_sex_registered_at_birth
person_3_gender_identity
no_females_pregnant_household_person_3_value_check
females_in_soft_age_range_in_pregnant_household_person_3_value_check
@@ -401,6 +404,7 @@ RSpec.describe Form::Lettings::Subsections::HouseholdCharacteristics, type: :mod
females_in_soft_age_range_in_pregnant_household_person_4_age_value_check
age_4_under_retirement_value_check
age_4_over_retirement_value_check
+ person_4_sex_registered_at_birth
person_4_gender_identity
no_females_pregnant_household_person_4_value_check
females_in_soft_age_range_in_pregnant_household_person_4_value_check
@@ -417,6 +421,7 @@ RSpec.describe Form::Lettings::Subsections::HouseholdCharacteristics, type: :mod
females_in_soft_age_range_in_pregnant_household_person_5_age_value_check
age_5_under_retirement_value_check
age_5_over_retirement_value_check
+ person_5_sex_registered_at_birth
person_5_gender_identity
no_females_pregnant_household_person_5_value_check
females_in_soft_age_range_in_pregnant_household_person_5_value_check
@@ -433,6 +438,7 @@ RSpec.describe Form::Lettings::Subsections::HouseholdCharacteristics, type: :mod
females_in_soft_age_range_in_pregnant_household_person_6_age_value_check
age_6_under_retirement_value_check
age_6_over_retirement_value_check
+ person_6_sex_registered_at_birth
person_6_gender_identity
no_females_pregnant_household_person_6_value_check
females_in_soft_age_range_in_pregnant_household_person_6_value_check
@@ -449,6 +455,7 @@ RSpec.describe Form::Lettings::Subsections::HouseholdCharacteristics, type: :mod
females_in_soft_age_range_in_pregnant_household_person_7_age_value_check
age_7_under_retirement_value_check
age_7_over_retirement_value_check
+ person_7_sex_registered_at_birth
person_7_gender_identity
no_females_pregnant_household_person_7_value_check
females_in_soft_age_range_in_pregnant_household_person_7_value_check
@@ -465,6 +472,7 @@ RSpec.describe Form::Lettings::Subsections::HouseholdCharacteristics, type: :mod
females_in_soft_age_range_in_pregnant_household_person_8_age_value_check
age_8_under_retirement_value_check
age_8_over_retirement_value_check
+ person_8_sex_registered_at_birth
person_8_gender_identity
no_females_pregnant_household_person_8_value_check
females_in_soft_age_range_in_pregnant_household_person_8_value_check
diff --git a/spec/models/form/sales/pages/person_sex_registered_at_birth_spec.rb b/spec/models/form/sales/pages/person_sex_registered_at_birth_spec.rb
new file mode 100644
index 000000000..fa116818c
--- /dev/null
+++ b/spec/models/form/sales/pages/person_sex_registered_at_birth_spec.rb
@@ -0,0 +1,104 @@
+require "rails_helper"
+
+RSpec.describe Form::Sales::Pages::PersonSexRegisteredAtBirth, type: :model do
+ subject(:page) { described_class.new(page_id, page_definition, subsection, person_index:) }
+
+ let(:page_definition) { nil }
+ let(:subsection) { instance_double(Form::Subsection, form: instance_double(Form, start_date: Time.zone.local(2026, 4, 1))) }
+ let(:person_index) { 1 }
+
+ let(:page_id) { "person_2_sex_registered_at_birth" }
+
+ it "has correct subsection" do
+ expect(page.subsection).to eq(subsection)
+ end
+
+ it "has the correct description" do
+ expect(page.description).to be_nil
+ end
+
+ context "with person 2" do
+ let(:person_index) { 2 }
+ let(:page_id) { "person_2_sex_registered_at_birth" }
+
+ it "has correct questions" do
+ expect(page.questions.map(&:id)).to eq(%w[sexrab2])
+ end
+
+ it "has the correct id" do
+ expect(page.id).to eq("person_2_sex_registered_at_birth")
+ end
+
+ it "has correct depends_on" do
+ expect(page.depends_on).to eq([{ "details_known_2" => 1 }])
+ end
+ end
+
+ context "with person 3" do
+ let(:person_index) { 3 }
+ let(:page_id) { "person_3_sex_registered_at_birth" }
+
+ it "has correct questions" do
+ expect(page.questions.map(&:id)).to eq(%w[sexrab3])
+ end
+
+ it "has the correct id" do
+ expect(page.id).to eq("person_3_sex_registered_at_birth")
+ end
+
+ it "has correct depends_on" do
+ expect(page.depends_on).to eq([{ "details_known_3" => 1 }])
+ end
+ end
+
+ context "with person 4" do
+ let(:person_index) { 4 }
+ let(:page_id) { "person_4_sex_registered_at_birth" }
+
+ it "has correct questions" do
+ expect(page.questions.map(&:id)).to eq(%w[sexrab4])
+ end
+
+ it "has the correct id" do
+ expect(page.id).to eq("person_4_sex_registered_at_birth")
+ end
+
+ it "has correct depends_on" do
+ expect(page.depends_on).to eq([{ "details_known_4" => 1 }])
+ end
+ end
+
+ context "with person 5" do
+ let(:person_index) { 5 }
+ let(:page_id) { "person_5_sex_registered_at_birth" }
+
+ it "has correct questions" do
+ expect(page.questions.map(&:id)).to eq(%w[sexrab5])
+ end
+
+ it "has the correct id" do
+ expect(page.id).to eq("person_5_sex_registered_at_birth")
+ end
+
+ it "has correct depends_on" do
+ expect(page.depends_on).to eq([{ "details_known_5" => 1 }])
+ end
+ end
+
+ context "with person 6" do
+ let(:person_index) { 6 }
+ let(:page_id) { "person_6_sex_registered_at_birth" }
+
+ it "has correct questions" do
+ expect(page.questions.map(&:id)).to eq(%w[sexrab6])
+ end
+
+ it "has the correct id" do
+ expect(page.id).to eq("person_6_sex_registered_at_birth")
+ end
+
+ it "has correct depends_on" do
+ expect(page.depends_on).to eq([{ "details_known_6" => 1 }])
+ end
+ end
+end
diff --git a/spec/models/form/sales/pages/sex_registered_at_birth1_spec.rb b/spec/models/form/sales/pages/sex_registered_at_birth1_spec.rb
new file mode 100644
index 000000000..da020aa91
--- /dev/null
+++ b/spec/models/form/sales/pages/sex_registered_at_birth1_spec.rb
@@ -0,0 +1,29 @@
+require "rails_helper"
+
+RSpec.describe Form::Sales::Pages::SexRegisteredAtBirth1, type: :model do
+ subject(:page) { described_class.new(page_id, page_definition, subsection) }
+
+ let(:page_id) { nil }
+ let(:page_definition) { nil }
+ let(:subsection) { instance_double(Form::Subsection, form: instance_double(Form, start_date: Time.zone.local(2026, 4, 1))) }
+
+ it "has correct subsection" do
+ expect(page.subsection).to eq(subsection)
+ end
+
+ it "has correct questions" do
+ expect(page.questions.map(&:id)).to eq(%w[sexrab1])
+ end
+
+ it "has the correct id" do
+ expect(page.id).to eq("buyer_1_sex_registered_at_birth")
+ end
+
+ it "has the correct description" do
+ expect(page.description).to be_nil
+ end
+
+ it "has correct depends_on" do
+ expect(page.depends_on).to eq([{ "buyer_has_seen_privacy_notice?" => true }, { "buyer_not_interviewed?" => true }])
+ end
+end
diff --git a/spec/models/form/sales/pages/sex_registered_at_birth2_spec.rb b/spec/models/form/sales/pages/sex_registered_at_birth2_spec.rb
new file mode 100644
index 000000000..d120c6e23
--- /dev/null
+++ b/spec/models/form/sales/pages/sex_registered_at_birth2_spec.rb
@@ -0,0 +1,38 @@
+require "rails_helper"
+
+RSpec.describe Form::Sales::Pages::SexRegisteredAtBirth2, type: :model do
+ subject(:page) { described_class.new(page_id, page_definition, subsection) }
+
+ let(:page_id) { nil }
+ let(:page_definition) { nil }
+ let(:subsection) { instance_double(Form::Subsection, form: instance_double(Form, start_date: Time.zone.local(2026, 4, 1))) }
+
+ it "has correct subsection" do
+ expect(page.subsection).to eq(subsection)
+ end
+
+ it "has correct questions" do
+ expect(page.questions.map(&:id)).to eq(%w[sexrab2])
+ end
+
+ it "has the correct id" do
+ expect(page.id).to eq("buyer_2_sex_registered_at_birth")
+ end
+
+ it "has the correct description" do
+ expect(page.description).to be_nil
+ end
+
+ it "has correct depends_on" do
+ expect(page.depends_on).to eq([
+ {
+ "joint_purchase?" => true,
+ "buyer_has_seen_privacy_notice?" => true,
+ },
+ {
+ "joint_purchase?" => true,
+ "buyer_not_interviewed?" => true,
+ },
+ ])
+ end
+end
diff --git a/spec/models/form/sales/questions/person_sex_registered_at_birth_spec.rb b/spec/models/form/sales/questions/person_sex_registered_at_birth_spec.rb
new file mode 100644
index 000000000..eb5f10687
--- /dev/null
+++ b/spec/models/form/sales/questions/person_sex_registered_at_birth_spec.rb
@@ -0,0 +1,123 @@
+require "rails_helper"
+
+RSpec.describe Form::Sales::Questions::PersonSexRegisteredAtBirth, type: :model do
+ subject(:question) { described_class.new(question_id, question_definition, page, person_index:) }
+
+ let(:question_id) { "sexrab2" }
+ let(:question_definition) { nil }
+ let(:page) { instance_double(Form::Page) }
+ let(:person_index) { 2 }
+ let(:subsection) { instance_double(Form::Subsection) }
+ let(:form) { instance_double(Form, start_date: Time.zone.local(2026, 4, 1)) }
+
+ before do
+ allow(page).to receive(:subsection).and_return(subsection)
+ allow(subsection).to receive(:form).and_return(form)
+ end
+
+ it "has correct page" do
+ expect(question.page).to eq(page)
+ end
+
+ it "has the correct type" do
+ expect(question.type).to eq("radio")
+ end
+
+ it "is not marked as derived" do
+ expect(question.derived?(nil)).to be false
+ end
+
+ it "has the correct answer_options" do
+ expect(question.answer_options).to eq({
+ "F" => { "value" => "Female" },
+ "M" => { "value" => "Male" },
+ "divider" => { "value" => true },
+ "R" => { "value" => "Person prefers not to say" },
+ })
+ end
+
+ context "when person 2" do
+ let(:question_id) { "sexrab2" }
+ let(:person_index) { 2 }
+
+ it "has the correct id" do
+ expect(question.id).to eq("sexrab2")
+ end
+
+ it "has expected check answers card number" do
+ expect(question.check_answers_card_number).to eq(2)
+ end
+
+ it "has the correct inferred_check_answers_value" do
+ expect(question.inferred_check_answers_value).to be_nil
+ end
+ end
+
+ context "when person 3" do
+ let(:question_id) { "sexrab3" }
+ let(:person_index) { 3 }
+
+ it "has the correct id" do
+ expect(question.id).to eq("sexrab3")
+ end
+
+ it "has expected check answers card number" do
+ expect(question.check_answers_card_number).to eq(3)
+ end
+
+ it "has the correct inferred_check_answers_value" do
+ expect(question.inferred_check_answers_value).to be_nil
+ end
+ end
+
+ context "when person 4" do
+ let(:question_id) { "sexrab4" }
+ let(:person_index) { 4 }
+
+ it "has the correct id" do
+ expect(question.id).to eq("sexrab4")
+ end
+
+ it "has expected check answers card number" do
+ expect(question.check_answers_card_number).to eq(4)
+ end
+
+ it "has the correct inferred_check_answers_value" do
+ expect(question.inferred_check_answers_value).to be_nil
+ end
+ end
+
+ context "when person 5" do
+ let(:question_id) { "sexrab5" }
+ let(:person_index) { 5 }
+
+ it "has the correct id" do
+ expect(question.id).to eq("sexrab5")
+ end
+
+ it "has expected check answers card number" do
+ expect(question.check_answers_card_number).to eq(5)
+ end
+
+ it "has the correct inferred_check_answers_value" do
+ expect(question.inferred_check_answers_value).to be_nil
+ end
+ end
+
+ context "when person 6" do
+ let(:question_id) { "sexrab6" }
+ let(:person_index) { 6 }
+
+ it "has the correct id" do
+ expect(question.id).to eq("sexrab6")
+ end
+
+ it "has expected check answers card number" do
+ expect(question.check_answers_card_number).to eq(6)
+ end
+
+ it "has the correct inferred_check_answers_value" do
+ expect(question.inferred_check_answers_value).to be_nil
+ end
+ end
+end
diff --git a/spec/models/form/sales/questions/sex_registered_at_birth1_spec.rb b/spec/models/form/sales/questions/sex_registered_at_birth1_spec.rb
new file mode 100644
index 000000000..cc1f981cc
--- /dev/null
+++ b/spec/models/form/sales/questions/sex_registered_at_birth1_spec.rb
@@ -0,0 +1,49 @@
+require "rails_helper"
+
+RSpec.describe Form::Sales::Questions::SexRegisteredAtBirth1, type: :model do
+ subject(:question) { described_class.new(question_id, question_definition, page) }
+
+ let(:question_id) { nil }
+ let(:question_definition) { nil }
+ let(:page) { instance_double(Form::Page) }
+ let(:subsection) { instance_double(Form::Subsection) }
+ let(:form) { instance_double(Form, start_date: Time.zone.local(2026, 4, 1)) }
+
+ before do
+ allow(page).to receive(:subsection).and_return(subsection)
+ allow(subsection).to receive(:form).and_return(form)
+ end
+
+ it "has correct page" do
+ expect(question.page).to eq(page)
+ end
+
+ it "has the correct id" do
+ expect(question.id).to eq("sexrab1")
+ end
+
+ it "has the correct type" do
+ expect(question.type).to eq("radio")
+ end
+
+ it "is not marked as derived" do
+ expect(question.derived?(nil)).to be false
+ end
+
+ it "has the correct answer_options" do
+ expect(question.answer_options).to eq({
+ "F" => { "value" => "Female" },
+ "M" => { "value" => "Male" },
+ "divider" => { "value" => true },
+ "R" => { "value" => "Buyer prefers not to say" },
+ })
+ end
+
+ it "has the correct check_answers_card_number" do
+ expect(question.check_answers_card_number).to eq(1)
+ end
+
+ it "has the correct inferred_check_answers_value" do
+ expect(question.inferred_check_answers_value).to be_nil
+ end
+end
diff --git a/spec/models/form/sales/questions/sex_registered_at_birth2_spec.rb b/spec/models/form/sales/questions/sex_registered_at_birth2_spec.rb
new file mode 100644
index 000000000..99ded462a
--- /dev/null
+++ b/spec/models/form/sales/questions/sex_registered_at_birth2_spec.rb
@@ -0,0 +1,49 @@
+require "rails_helper"
+
+RSpec.describe Form::Sales::Questions::SexRegisteredAtBirth2, type: :model do
+ subject(:question) { described_class.new(question_id, question_definition, page) }
+
+ let(:question_id) { nil }
+ let(:question_definition) { nil }
+ let(:page) { instance_double(Form::Page) }
+ let(:subsection) { instance_double(Form::Subsection) }
+ let(:form) { instance_double(Form, start_date: Time.zone.local(2026, 4, 1)) }
+
+ before do
+ allow(page).to receive(:subsection).and_return(subsection)
+ allow(subsection).to receive(:form).and_return(form)
+ end
+
+ it "has correct page" do
+ expect(question.page).to eq(page)
+ end
+
+ it "has the correct id" do
+ expect(question.id).to eq("sexrab2")
+ end
+
+ it "has the correct type" do
+ expect(question.type).to eq("radio")
+ end
+
+ it "is not marked as derived" do
+ expect(question.derived?(nil)).to be false
+ end
+
+ it "has the correct answer_options" do
+ expect(question.answer_options).to eq({
+ "F" => { "value" => "Female" },
+ "M" => { "value" => "Male" },
+ "divider" => { "value" => true },
+ "R" => { "value" => "Buyer prefers not to say" },
+ })
+ end
+
+ it "has the correct check_answers_card_number" do
+ expect(question.check_answers_card_number).to eq(2)
+ end
+
+ it "has the correct inferred_check_answers_value" do
+ expect(question.inferred_check_answers_value).to be_nil
+ end
+end
diff --git a/spec/models/form/sales/subsections/household_characteristics_spec.rb b/spec/models/form/sales/subsections/household_characteristics_spec.rb
index 67f758ae3..74ed15da4 100644
--- a/spec/models/form/sales/subsections/household_characteristics_spec.rb
+++ b/spec/models/form/sales/subsections/household_characteristics_spec.rb
@@ -21,6 +21,7 @@ RSpec.describe Form::Sales::Subsections::HouseholdCharacteristics, type: :model
allow(form).to receive(:start_date).and_return(Time.zone.local(2023, 4, 1))
allow(form).to receive(:start_year_2024_or_later?).and_return(false)
allow(form).to receive(:start_year_2025_or_later?).and_return(false)
+ allow(form).to receive(:start_year_2026_or_later?).and_return(false)
end
it "has correct pages" do
@@ -130,6 +131,7 @@ RSpec.describe Form::Sales::Subsections::HouseholdCharacteristics, type: :model
allow(form).to receive(:start_date).and_return(Time.zone.local(2024, 4, 1))
allow(form).to receive(:start_year_2024_or_later?).and_return(true)
allow(form).to receive(:start_year_2025_or_later?).and_return(false)
+ allow(form).to receive(:start_year_2026_or_later?).and_return(false)
end
it "has correct depends on" do
@@ -284,6 +286,7 @@ RSpec.describe Form::Sales::Subsections::HouseholdCharacteristics, type: :model
allow(form).to receive(:start_date).and_return(Time.zone.local(2025, 4, 1))
allow(form).to receive(:start_year_2024_or_later?).and_return(true)
allow(form).to receive(:start_year_2025_or_later?).and_return(true)
+ allow(form).to receive(:start_year_2026_or_later?).and_return(false)
end
it "has correct pages" do
@@ -398,4 +401,132 @@ RSpec.describe Form::Sales::Subsections::HouseholdCharacteristics, type: :model
expect(household_characteristics.depends_on).to eq([{ "setup_completed?" => true }])
end
end
+
+ context "with 2026/27 form" do
+ before do
+ allow(form).to receive(:start_date).and_return(Time.zone.local(2026, 4, 1))
+ allow(form).to receive(:start_year_2024_or_later?).and_return(true)
+ allow(form).to receive(:start_year_2025_or_later?).and_return(true)
+ allow(form).to receive(:start_year_2026_or_later?).and_return(true)
+ end
+
+ it "has correct pages" do
+ expect(household_characteristics.pages.map(&:id)).to eq(
+ %w[
+ buyer_1_age
+ age_1_retirement_value_check
+ age_1_not_retired_value_check
+ age_1_old_persons_shared_ownership_joint_purchase_value_check
+ age_1_old_persons_shared_ownership_value_check
+ buyer_1_sex_registered_at_birth
+ buyer_1_gender_identity
+ buyer_1_ethnic_group
+ buyer_1_ethnic_background_black
+ buyer_1_ethnic_background_asian
+ buyer_1_ethnic_background_arab
+ buyer_1_ethnic_background_mixed
+ buyer_1_ethnic_background_white
+ buyer_1_nationality
+ buyer_1_working_situation
+ working_situation_1_retirement_value_check
+ working_situation_1_not_retired_value_check
+ working_situation_buyer_1_income_value_check
+ buyer_1_live_in_property
+ buyer_1_live_in_property_value_check
+ buyer_2_relationship_to_buyer_1
+ buyer_2_age
+ age_2_old_persons_shared_ownership_joint_purchase_value_check
+ age_2_old_persons_shared_ownership_value_check
+ age_2_buyer_retirement_value_check
+ age_2_buyer_not_retired_value_check
+ buyer_2_sex_registered_at_birth
+ buyer_2_gender_identity
+ buyer_2_ethnic_group
+ buyer_2_ethnic_background_black
+ buyer_2_ethnic_background_asian
+ buyer_2_ethnic_background_arab
+ buyer_2_ethnic_background_mixed
+ buyer_2_ethnic_background_white
+ buyer_2_nationality
+ buyer_2_working_situation
+ working_situation_2_retirement_value_check_joint_purchase
+ working_situation_2_not_retired_value_check_joint_purchase
+ working_situation_buyer_2_income_value_check
+ buyer_2_live_in_property
+ buyer_2_live_in_property_value_check
+ number_of_others_in_property
+ number_of_others_in_property_joint_purchase
+ person_2_known
+ person_2_relationship_to_buyer_1
+ relationship_2_partner_under_16_value_check
+ relationship_2_multiple_partners_value_check
+ person_2_age
+ age_2_retirement_value_check
+ age_2_not_retired_value_check
+ age_2_partner_under_16_value_check
+ person_2_sex_registered_at_birth
+ person_2_gender_identity
+ person_2_working_situation
+ working_situation_2_retirement_value_check
+ working_situation_2_not_retired_value_check
+ person_3_known
+ person_3_relationship_to_buyer_1
+ relationship_3_partner_under_16_value_check
+ relationship_3_multiple_partners_value_check
+ person_3_age
+ age_3_retirement_value_check
+ age_3_not_retired_value_check
+ age_3_partner_under_16_value_check
+ person_3_sex_registered_at_birth
+ person_3_gender_identity
+ person_3_working_situation
+ working_situation_3_retirement_value_check
+ working_situation_3_not_retired_value_check
+ person_4_known
+ person_4_relationship_to_buyer_1
+ relationship_4_partner_under_16_value_check
+ relationship_4_multiple_partners_value_check
+ person_4_age
+ age_4_retirement_value_check
+ age_4_not_retired_value_check
+ age_4_partner_under_16_value_check
+ person_4_sex_registered_at_birth
+ person_4_gender_identity
+ person_4_working_situation
+ working_situation_4_retirement_value_check
+ working_situation_4_not_retired_value_check
+ person_5_known
+ person_5_relationship_to_buyer_1
+ relationship_5_partner_under_16_value_check
+ relationship_5_multiple_partners_value_check
+ person_5_age
+ age_5_retirement_value_check
+ age_5_not_retired_value_check
+ age_5_partner_under_16_value_check
+ person_5_sex_registered_at_birth
+ person_5_gender_identity
+ person_5_working_situation
+ working_situation_5_retirement_value_check
+ working_situation_5_not_retired_value_check
+ person_6_known
+ person_6_relationship_to_buyer_1
+ relationship_6_partner_under_16_value_check
+ relationship_6_multiple_partners_value_check
+ person_6_age
+ age_6_retirement_value_check
+ age_6_not_retired_value_check
+ age_6_partner_under_16_value_check
+ person_6_sex_registered_at_birth
+ person_6_gender_identity
+ person_6_working_situation
+ working_situation_6_retirement_value_check
+ working_situation_6_not_retired_value_check
+ ],
+ )
+ end
+
+ it "has correct depends on" do
+ expect(household_characteristics.depends_on).to eq([{ "setup_completed?" => true }])
+ end
+ end
end
diff --git a/spec/services/bulk_upload/lettings/validator_spec.rb b/spec/services/bulk_upload/lettings/validator_spec.rb
index 0658d95f0..c053bb33d 100644
--- a/spec/services/bulk_upload/lettings/validator_spec.rb
+++ b/spec/services/bulk_upload/lettings/validator_spec.rb
@@ -11,7 +11,7 @@ RSpec.describe BulkUpload::Lettings::Validator do
let(:user) { create(:user, organisation:) }
let(:log) { build(:lettings_log, :completed, period: 2, assigned_to: user) }
let(:log_to_csv) { BulkUpload::LettingsLogToCsv.new(log:) }
- let(:bulk_upload) { create(:bulk_upload, user:, year: log.collection_start_year) }
+ let(:bulk_upload) { create(:bulk_upload, :lettings, user:, year:) }
let(:path) { file.path }
let(:file) { Tempfile.new }
@@ -190,8 +190,8 @@ RSpec.describe BulkUpload::Lettings::Validator do
expect(error.tenant_code).to eql(log.tenancycode)
expect(error.property_ref).to eql(log.propcode)
expect(error.row).to eql("2")
- expect(error.cell).to eql("CX2")
- expect(error.col).to eql("CX")
+ expect(error.cell).to eql("DL2")
+ expect(error.col).to eql("DL")
end
end
end
diff --git a/spec/services/bulk_upload/lettings/year2026/csv_parser_spec.rb b/spec/services/bulk_upload/lettings/year2026/csv_parser_spec.rb
index 91648d729..fa452fb8f 100644
--- a/spec/services/bulk_upload/lettings/year2026/csv_parser_spec.rb
+++ b/spec/services/bulk_upload/lettings/year2026/csv_parser_spec.rb
@@ -244,10 +244,10 @@ RSpec.describe BulkUpload::Lettings::Year2026::CsvParser do
end
it "returns correct column" do
- expect(service.column_for_field("field_5")).to eql("B")
- expect(service.column_for_field("field_22")).to eql("AS")
- expect(service.column_for_field("field_26")).to eql("DG")
- expect(service.column_for_field("field_25")).to eql("I")
+ expect(service.column_for_field("field_5")).to eql("F")
+ expect(service.column_for_field("field_22")).to eql("AW")
+ expect(service.column_for_field("field_26")).to eql("DO")
+ expect(service.column_for_field("field_25")).to eql("R")
end
end
end
diff --git a/spec/services/bulk_upload/lettings/year2026/row_parser_spec.rb b/spec/services/bulk_upload/lettings/year2026/row_parser_spec.rb
index e0c9897e5..bbfee1bd5 100644
--- a/spec/services/bulk_upload/lettings/year2026/row_parser_spec.rb
+++ b/spec/services/bulk_upload/lettings/year2026/row_parser_spec.rb
@@ -248,6 +248,15 @@ RSpec.describe BulkUpload::Lettings::Year2026::RowParser do
field_4: "1",
field_18: "12",
+
+ field_130: "F",
+ field_131: "M",
+ field_132: "R",
+ field_133: "F",
+ field_134: "M",
+ field_135: "R",
+ field_136: "F",
+ field_137: "M",
}
end
@@ -1910,7 +1919,7 @@ RSpec.describe BulkUpload::Lettings::Year2026::RowParser do
let(:attributes) { { bulk_upload: } }
before do
- build(:lettings_log, owning_organisation: nil, startdate: nil, tenancycode: nil, location: nil, age1: nil, sex1: nil, ecstat1: nil, brent: nil, scharge: nil, pscharge: nil, supcharg: nil).save(validate: false)
+ build(:lettings_log, owning_organisation: nil, startdate: nil, tenancycode: nil, location: nil, age1: nil, sexrab1: nil, sex1: nil, ecstat1: nil, brent: nil, scharge: nil, pscharge: nil, supcharg: nil).save(validate: false)
end
it "does not add duplicate logs validation to the blank row" do
diff --git a/spec/services/bulk_upload/sales/validator_spec.rb b/spec/services/bulk_upload/sales/validator_spec.rb
index b665b2b5c..a37eff505 100644
--- a/spec/services/bulk_upload/sales/validator_spec.rb
+++ b/spec/services/bulk_upload/sales/validator_spec.rb
@@ -11,7 +11,7 @@ RSpec.describe BulkUpload::Sales::Validator do
let(:organisation) { create(:organisation, old_visible_id: "123") }
let(:log) { build(:sales_log, :completed, assigned_to: user) }
let(:log_to_csv) { BulkUpload::SalesLogToCsv.new(log:) }
- let(:bulk_upload) { create(:bulk_upload, user:, year: log.collection_start_year) }
+ let(:bulk_upload) { create(:bulk_upload, :sales, user:, year:) }
let(:path) { file.path }
let(:file) { Tempfile.new }
diff --git a/spec/services/bulk_upload/sales/year2026/csv_parser_spec.rb b/spec/services/bulk_upload/sales/year2026/csv_parser_spec.rb
index 41ed9e91a..ea97dfac7 100644
--- a/spec/services/bulk_upload/sales/year2026/csv_parser_spec.rb
+++ b/spec/services/bulk_upload/sales/year2026/csv_parser_spec.rb
@@ -15,8 +15,8 @@ RSpec.describe BulkUpload::Sales::Year2026::CsvParser do
file.write("Can be empty?\n")
file.write("Type of letting the question applies to\n")
file.write("Duplicate check field?\n")
- file.write(BulkUpload::SalesLogToCsv.new(log:).default_field_numbers_row_for_year(2025))
- file.write(BulkUpload::SalesLogToCsv.new(log:).to_year_csv_row(2025))
+ file.write(BulkUpload::SalesLogToCsv.new(log:).default_field_numbers_row_for_year(2026))
+ file.write(BulkUpload::SalesLogToCsv.new(log:).to_year_csv_row(2026))
file.write("\n")
file.rewind
end
@@ -81,8 +81,8 @@ RSpec.describe BulkUpload::Sales::Year2026::CsvParser do
file.write("Can be empty?\n")
file.write("Type of letting the question applies to\n")
file.write("Duplicate check field?\n")
- file.write(BulkUpload::SalesLogToCsv.new(log:).default_field_numbers_row_for_year(2025, seed:))
- file.write(BulkUpload::SalesLogToCsv.new(log:).to_year_csv_row(2025, seed:))
+ file.write(BulkUpload::SalesLogToCsv.new(log:).default_field_numbers_row_for_year(2026, seed:))
+ file.write(BulkUpload::SalesLogToCsv.new(log:).to_year_csv_row(2026, seed:))
file.rewind
end
diff --git a/spec/services/bulk_upload/sales/year2026/row_parser_spec.rb b/spec/services/bulk_upload/sales/year2026/row_parser_spec.rb
index d424a5c25..f9fb2aa2c 100644
--- a/spec/services/bulk_upload/sales/year2026/row_parser_spec.rb
+++ b/spec/services/bulk_upload/sales/year2026/row_parser_spec.rb
@@ -112,6 +112,12 @@ RSpec.describe BulkUpload::Sales::Year2026::RowParser do
field_105: "07",
field_106: "2023",
field_110: "900",
+ field_122: "F",
+ field_123: "F",
+ field_124: "M",
+ field_125: "M",
+ field_126: "R",
+ field_127: "R",
}
end
@@ -1432,7 +1438,7 @@ RSpec.describe BulkUpload::Sales::Year2026::RowParser do
let(:attributes) { { bulk_upload: } }
before do
- build(:sales_log, owning_organisation: nil, saledate: nil, purchid: nil, age1: nil, sex1: nil, ecstat1: nil).save(validate: false)
+ build(:sales_log, owning_organisation: nil, saledate: nil, purchid: nil, age1: nil, sexrab1: nil, sex1: nil, ecstat1: nil).save(validate: false)
end
it "does not add duplicate logs validation to the blank row" do
diff --git a/spec/services/csv/lettings_log_csv_service_spec.rb b/spec/services/csv/lettings_log_csv_service_spec.rb
index 1579fb499..0ee00823a 100644
--- a/spec/services/csv/lettings_log_csv_service_spec.rb
+++ b/spec/services/csv/lettings_log_csv_service_spec.rb
@@ -242,6 +242,7 @@ RSpec.describe Csv::LettingsLogCsvService do
age1_known: 0,
age1: 35,
sex1: "F",
+ sexrab1: "F",
ethnic_group: 0,
ethnic: 2,
nationality_all: 36,
@@ -251,12 +252,14 @@ RSpec.describe Csv::LettingsLogCsvService do
age2_known: 0,
age2: 32,
sex2: "M",
+ sexrab2: "M",
ecstat2: 6,
details_known_3: 1,
details_known_4: 0,
relat4: "R",
age4_known: 1,
sex4: "R",
+ sexrab4: "R",
ecstat4: 10,
armedforces: 1,
leftreg: 4,
diff --git a/spec/services/exports/lettings_log_export_service_spec.rb b/spec/services/exports/lettings_log_export_service_spec.rb
index 613d64dd0..5e1dff30c 100644
--- a/spec/services/exports/lettings_log_export_service_spec.rb
+++ b/spec/services/exports/lettings_log_export_service_spec.rb
@@ -497,7 +497,7 @@ RSpec.describe Exports::LettingsLogExportService do
end
context "and one lettings log is available for export" do
- let!(:lettings_log) { FactoryBot.create(:lettings_log, :completed, startdate: Time.zone.local(2026, 4, 3), assigned_to: user, age1: 35, sex1: "F", age2: 32, sex2: "M", ppostcode_full: "A1 1AA", nationality_all_group: 13, propcode: "123", postcode_full: "SE2 6RT", tenancycode: "BZ737", voiddate: Time.zone.local(2021, 11, 3), mrcdate: Time.zone.local(2022, 5, 5, 10, 36, 49), tenancylength: 5, underoccupation_benefitcap: 4, creation_method: 2, bulk_upload_id: 1, address_line1_as_entered: "address line 1 as entered", address_line2_as_entered: "address line 2 as entered", town_or_city_as_entered: "town or city as entered", county_as_entered: "county as entered", postcode_full_as_entered: "AB1 2CD", la_as_entered: "la as entered", manual_address_entry_selected: false, uprn: "1", uprn_known: 1) }
+ let!(:lettings_log) { FactoryBot.create(:lettings_log, :completed, startdate: Time.zone.local(2026, 4, 3), assigned_to: user, age1: 35, sexrab1: "F", sex1: "F", age2: 32, sexrab2: "M", sex2: "M", ppostcode_full: "A1 1AA", nationality_all_group: 13, propcode: "123", postcode_full: "SE2 6RT", tenancycode: "BZ737", voiddate: Time.zone.local(2021, 11, 3), mrcdate: Time.zone.local(2022, 5, 5, 10, 36, 49), tenancylength: 5, underoccupation_benefitcap: 4, creation_method: 2, bulk_upload_id: 1, address_line1_as_entered: "address line 1 as entered", address_line2_as_entered: "address line 2 as entered", town_or_city_as_entered: "town or city as entered", county_as_entered: "county as entered", postcode_full_as_entered: "AB1 2CD", la_as_entered: "la as entered", manual_address_entry_selected: false, uprn: "1", uprn_known: 1) }
let(:expected_zip_filename) { "core_2026_2027_apr_mar_f0001_inc0001.zip" }
let(:expected_data_filename) { "core_2026_2027_apr_mar_f0001_inc0001_pt001.xml" }
let(:xml_export_file) { File.open("spec/fixtures/exports/general_needs_log_26_27.xml", "r:UTF-8") }
@@ -510,7 +510,7 @@ RSpec.describe Exports::LettingsLogExportService do
expect(entry.get_input_stream.read).to have_same_xml_contents_as(expected_content)
end
- export_service.export_xml_lettings_logs
+ export_service.export_xml_lettings_logs(collection_year: 2026)
end
end
end
diff --git a/spec/services/imports/variable_definitions_service_spec.rb b/spec/services/imports/variable_definitions_service_spec.rb
index 3c7a3b526..65d3aaeb2 100644
--- a/spec/services/imports/variable_definitions_service_spec.rb
+++ b/spec/services/imports/variable_definitions_service_spec.rb
@@ -13,13 +13,13 @@ RSpec.describe Imports::VariableDefinitionsService, type: :service do
describe "#call" do
before do
- allow(Dir).to receive(:glob).and_return(%w[lettings_download_23_24.csv lettings_download_24_25.csv sales_download_23_24.csv sales_download_24_25.csv])
+ allow(Dir).to receive(:glob).and_return(%w[lettings_download_23_24.csv lettings_download_24_25.csv lettings_download_26_27.csv sales_download_23_24.csv sales_download_24_25.csv sales_download_26_27.csv])
allow(service).to receive(:process_file)
end
it "processes each file in the directory" do
service.call
- %w[lettings_download_23_24.csv lettings_download_24_25.csv sales_download_23_24.csv sales_download_24_25.csv].each do |file|
+ %w[lettings_download_23_24.csv lettings_download_24_25.csv lettings_download_26_27.csv sales_download_23_24.csv sales_download_24_25.csv sales_download_26_27.csv].each do |file|
expect(service).to have_received(:process_file).with(file)
end
end