r_code

Importing Data from other Statistical Sofware - foreign

参考 Schouwenaars (2016)

stata

library(foreign)
florida <- read.dta("datasets/florida.dta")
tail(florida)
##     gore  bush buchanan nader  total
## 62  2647  4051       27    59   6784
## 63  1399  2326       26    29   3780
## 64 97063 82214      396  2436 182109
## 65  3835  4511       46   149   8541
## 66  5637 12176      120   265  18198
## 67  2796  4983       88    93   7960

研究下部分参数

# foreign is already loaded

# Specify the file path using file.path(): path
path <- file.path("datasets","edequality.dta")

# Create and print structure of edu_equal_1
edu_equal_1 <- read.dta(path)
str(edu_equal_1)
## 'data.frame':    12214 obs. of  27 variables:
##  $ hhid              : num  1 1 1 2 2 3 4 4 5 6 ...
##  $ hhweight          : num  627 627 627 627 627 ...
##  $ location          : Factor w/ 2 levels "urban location",..: 1 1 1 1 1 2 2 2 1 1 ...
##  $ region            : Factor w/ 9 levels "Sofia city","Bourgass",..: 8 8 8 9 9 4 4 4 8 8 ...
##  $ ethnicity_head    : Factor w/ 4 levels "Bulgaria","Turks",..: 2 2 2 1 1 1 1 1 1 1 ...
##  $ age               : num  37 11 8 73 70 75 79 80 82 83 ...
##  $ gender            : Factor w/ 2 levels "male","female": 2 2 1 1 2 1 1 2 2 2 ...
##  $ relation          : Factor w/ 9 levels "head                      ",..: 1 3 3 1 2 1 1 2 1 1 ...
##  $ literate          : Factor w/ 2 levels "no","yes": 1 2 2 2 2 2 2 2 2 2 ...
##  $ income_mnt        : num  13.3 13.3 13.3 142.5 142.5 ...
##  $ income            : num  160 160 160 1710 1710 ...
##  $ aggregate         : num  1042 1042 1042 3271 3271 ...
##  $ aggr_ind_annual   : num  347 347 347 1635 1635 ...
##  $ educ_completed    : int  2 4 4 4 3 3 3 3 4 4 ...
##  $ grade_complete    : num  4 3 0 3 4 4 4 4 5 5 ...
##  $ grade_all         : num  4 11 8 11 8 8 8 8 13 13 ...
##  $ unemployed        : int  2 1 1 1 1 1 1 1 1 1 ...
##  $ reason_OLF        : int  NA NA NA 3 3 3 9 9 3 3 ...
##  $ sector            : int  NA NA NA NA NA NA 1 1 NA NA ...
##  $ occupation        : int  NA NA NA NA NA NA 5 5 NA NA ...
##  $ earn_mont         : num  0 0 0 0 0 0 20 20 0 0 ...
##  $ earn_ann          : num  0 0 0 0 0 0 240 240 0 0 ...
##  $ hours_week        : num  NA NA NA NA NA NA 30 35 NA NA ...
##  $ hours_mnt         : num  NA NA NA NA NA ...
##  $ fulltime          : int  NA NA NA NA NA NA 1 1 NA NA ...
##  $ hhexp             : num  100 100 100 343 343 ...
##  $ legacy_pension_amt: num  NA NA NA NA NA NA NA NA NA NA ...
##  - attr(*, "datalabel")= chr ""
##  - attr(*, "time.stamp")= chr ""
##  - attr(*, "formats")= chr  "%9.0g" "%9.0g" "%9.0g" "%9.0g" ...
##  - attr(*, "types")= int  100 100 108 108 108 100 108 108 108 100 ...
##  - attr(*, "val.labels")= chr  "" "" "location" "region" ...
##  - attr(*, "var.labels")= chr  "hhid" "hhweight" "location" "region" ...
##  - attr(*, "expansion.fields")=List of 12
##   ..$ : chr  "_dta" "_svy_su1" "cluster"
##   ..$ : chr  "_dta" "_svy_strata1" "strata"
##   ..$ : chr  "_dta" "_svy_stages" "1"
##   ..$ : chr  "_dta" "_svy_version" "2"
##   ..$ : chr  "_dta" "__XijVarLabcons" "(sum) cons"
##   ..$ : chr  "_dta" "ReS_Xij" "cons"
##   ..$ : chr  "_dta" "ReS_str" "0"
##   ..$ : chr  "_dta" "ReS_j" "group"
##   ..$ : chr  "_dta" "ReS_ver" "v.2"
##   ..$ : chr  "_dta" "ReS_i" "hhid dur"
##   ..$ : chr  "_dta" "note1" "variables g1pc, g2pc, g3pc, g4pc, g5pc, g7pc, g8pc, g9pc, g10pc, g11pc, g12pc,  gall, health, rent, durables we"| __truncated__
##   ..$ : chr  "_dta" "note0" "1"
##  - attr(*, "version")= int 7
##  - attr(*, "label.table")=List of 12
##   ..$ location: Named int  1 2
##   .. ..- attr(*, "names")= chr  "urban location" "rural location"
##   ..$ region  : Named int  1 2 3 4 5 6 7 8 9
##   .. ..- attr(*, "names")= chr  "Sofia city" "Bourgass" "Varna" "Lovetch" ...
##   ..$ ethnic  : Named int  1 2 3 4
##   .. ..- attr(*, "names")= chr  "Bulgaria" "Turks" "Roma" "Other"
##   ..$ s2_q2   : Named int  1 2
##   .. ..- attr(*, "names")= chr  "male" "female"
##   ..$ s2_q3   : Named int  1 2 3 4 5 6 7 8 9
##   .. ..- attr(*, "names")= chr  "head                      " "spouse/partner            " "child                     " "son/daughter-in-law       " ...
##   ..$ lit     : Named int  1 2
##   .. ..- attr(*, "names")= chr  "no" "yes"
##   ..$         : Named int  1 2 3 4
##   .. ..- attr(*, "names")= chr  "never attanded" "primary" "secondary" "postsecondary"
##   ..$         : Named int  1 2
##   .. ..- attr(*, "names")= chr  "Not unemployed" "Unemployed"
##   ..$         : Named int  1 2 3 4 5 6 7 8 9 10
##   .. ..- attr(*, "names")= chr  "student" "housewife/childcare" "in retirement" "illness, disability" ...
##   ..$         : Named int  1 2 3 4 5 6 7 8 9 10
##   .. ..- attr(*, "names")= chr  "agriculture" "mining" "manufacturing" "utilities" ...
##   ..$         : Named int  1 2 3 4 5
##   .. ..- attr(*, "names")= chr  "private company" "public works program" "government,public sector, army" "private individual" ...
##   ..$         : Named int  1 2
##   .. ..- attr(*, "names")= chr  "no" "yes"
# Create and print structure of edu_equal_2
edu_equal_2 <- read.dta(path,convert.factors = F)
str(edu_equal_2)
## 'data.frame':    12214 obs. of  27 variables:
##  $ hhid              : num  1 1 1 2 2 3 4 4 5 6 ...
##  $ hhweight          : num  627 627 627 627 627 ...
##  $ location          : int  1 1 1 1 1 2 2 2 1 1 ...
##  $ region            : int  8 8 8 9 9 4 4 4 8 8 ...
##  $ ethnicity_head    : int  2 2 2 1 1 1 1 1 1 1 ...
##  $ age               : num  37 11 8 73 70 75 79 80 82 83 ...
##  $ gender            : int  2 2 1 1 2 1 1 2 2 2 ...
##  $ relation          : int  1 3 3 1 2 1 1 2 1 1 ...
##  $ literate          : int  1 2 2 2 2 2 2 2 2 2 ...
##  $ income_mnt        : num  13.3 13.3 13.3 142.5 142.5 ...
##  $ income            : num  160 160 160 1710 1710 ...
##  $ aggregate         : num  1042 1042 1042 3271 3271 ...
##  $ aggr_ind_annual   : num  347 347 347 1635 1635 ...
##  $ educ_completed    : int  2 4 4 4 3 3 3 3 4 4 ...
##  $ grade_complete    : num  4 3 0 3 4 4 4 4 5 5 ...
##  $ grade_all         : num  4 11 8 11 8 8 8 8 13 13 ...
##  $ unemployed        : int  2 1 1 1 1 1 1 1 1 1 ...
##  $ reason_OLF        : int  NA NA NA 3 3 3 9 9 3 3 ...
##  $ sector            : int  NA NA NA NA NA NA 1 1 NA NA ...
##  $ occupation        : int  NA NA NA NA NA NA 5 5 NA NA ...
##  $ earn_mont         : num  0 0 0 0 0 0 20 20 0 0 ...
##  $ earn_ann          : num  0 0 0 0 0 0 240 240 0 0 ...
##  $ hours_week        : num  NA NA NA NA NA NA 30 35 NA NA ...
##  $ hours_mnt         : num  NA NA NA NA NA ...
##  $ fulltime          : int  NA NA NA NA NA NA 1 1 NA NA ...
##  $ hhexp             : num  100 100 100 343 343 ...
##  $ legacy_pension_amt: num  NA NA NA NA NA NA NA NA NA NA ...
##  - attr(*, "datalabel")= chr ""
##  - attr(*, "time.stamp")= chr ""
##  - attr(*, "formats")= chr  "%9.0g" "%9.0g" "%9.0g" "%9.0g" ...
##  - attr(*, "types")= int  100 100 108 108 108 100 108 108 108 100 ...
##  - attr(*, "val.labels")= chr  "" "" "location" "region" ...
##  - attr(*, "var.labels")= chr  "hhid" "hhweight" "location" "region" ...
##  - attr(*, "expansion.fields")=List of 12
##   ..$ : chr  "_dta" "_svy_su1" "cluster"
##   ..$ : chr  "_dta" "_svy_strata1" "strata"
##   ..$ : chr  "_dta" "_svy_stages" "1"
##   ..$ : chr  "_dta" "_svy_version" "2"
##   ..$ : chr  "_dta" "__XijVarLabcons" "(sum) cons"
##   ..$ : chr  "_dta" "ReS_Xij" "cons"
##   ..$ : chr  "_dta" "ReS_str" "0"
##   ..$ : chr  "_dta" "ReS_j" "group"
##   ..$ : chr  "_dta" "ReS_ver" "v.2"
##   ..$ : chr  "_dta" "ReS_i" "hhid dur"
##   ..$ : chr  "_dta" "note1" "variables g1pc, g2pc, g3pc, g4pc, g5pc, g7pc, g8pc, g9pc, g10pc, g11pc, g12pc,  gall, health, rent, durables we"| __truncated__
##   ..$ : chr  "_dta" "note0" "1"
##  - attr(*, "version")= int 7
##  - attr(*, "label.table")=List of 12
##   ..$ location: Named int  1 2
##   .. ..- attr(*, "names")= chr  "urban location" "rural location"
##   ..$ region  : Named int  1 2 3 4 5 6 7 8 9
##   .. ..- attr(*, "names")= chr  "Sofia city" "Bourgass" "Varna" "Lovetch" ...
##   ..$ ethnic  : Named int  1 2 3 4
##   .. ..- attr(*, "names")= chr  "Bulgaria" "Turks" "Roma" "Other"
##   ..$ s2_q2   : Named int  1 2
##   .. ..- attr(*, "names")= chr  "male" "female"
##   ..$ s2_q3   : Named int  1 2 3 4 5 6 7 8 9
##   .. ..- attr(*, "names")= chr  "head                      " "spouse/partner            " "child                     " "son/daughter-in-law       " ...
##   ..$ lit     : Named int  1 2
##   .. ..- attr(*, "names")= chr  "no" "yes"
##   ..$         : Named int  1 2 3 4
##   .. ..- attr(*, "names")= chr  "never attanded" "primary" "secondary" "postsecondary"
##   ..$         : Named int  1 2
##   .. ..- attr(*, "names")= chr  "Not unemployed" "Unemployed"
##   ..$         : Named int  1 2 3 4 5 6 7 8 9 10
##   .. ..- attr(*, "names")= chr  "student" "housewife/childcare" "in retirement" "illness, disability" ...
##   ..$         : Named int  1 2 3 4 5 6 7 8 9 10
##   .. ..- attr(*, "names")= chr  "agriculture" "mining" "manufacturing" "utilities" ...
##   ..$         : Named int  1 2 3 4 5
##   .. ..- attr(*, "names")= chr  "private company" "public works program" "government,public sector, army" "private individual" ...
##   ..$         : Named int  1 2
##   .. ..- attr(*, "names")= chr  "no" "yes"
# Create and print structure of edu_equal_3
edu_equal_3 <- read.dta(path, convert.underscore = TRUE)
str(edu_equal_3)
## 'data.frame':    12214 obs. of  27 variables:
##  $ hhid              : num  1 1 1 2 2 3 4 4 5 6 ...
##  $ hhweight          : num  627 627 627 627 627 ...
##  $ location          : Factor w/ 2 levels "urban location",..: 1 1 1 1 1 2 2 2 1 1 ...
##  $ region            : Factor w/ 9 levels "Sofia city","Bourgass",..: 8 8 8 9 9 4 4 4 8 8 ...
##  $ ethnicity.head    : Factor w/ 4 levels "Bulgaria","Turks",..: 2 2 2 1 1 1 1 1 1 1 ...
##  $ age               : num  37 11 8 73 70 75 79 80 82 83 ...
##  $ gender            : Factor w/ 2 levels "male","female": 2 2 1 1 2 1 1 2 2 2 ...
##  $ relation          : Factor w/ 9 levels "head                      ",..: 1 3 3 1 2 1 1 2 1 1 ...
##  $ literate          : Factor w/ 2 levels "no","yes": 1 2 2 2 2 2 2 2 2 2 ...
##  $ income.mnt        : num  13.3 13.3 13.3 142.5 142.5 ...
##  $ income            : num  160 160 160 1710 1710 ...
##  $ aggregate         : num  1042 1042 1042 3271 3271 ...
##  $ aggr.ind.annual   : num  347 347 347 1635 1635 ...
##  $ educ.completed    : int  2 4 4 4 3 3 3 3 4 4 ...
##  $ grade.complete    : num  4 3 0 3 4 4 4 4 5 5 ...
##  $ grade.all         : num  4 11 8 11 8 8 8 8 13 13 ...
##  $ unemployed        : int  2 1 1 1 1 1 1 1 1 1 ...
##  $ reason.OLF        : int  NA NA NA 3 3 3 9 9 3 3 ...
##  $ sector            : int  NA NA NA NA NA NA 1 1 NA NA ...
##  $ occupation        : int  NA NA NA NA NA NA 5 5 NA NA ...
##  $ earn.mont         : num  0 0 0 0 0 0 20 20 0 0 ...
##  $ earn.ann          : num  0 0 0 0 0 0 240 240 0 0 ...
##  $ hours.week        : num  NA NA NA NA NA NA 30 35 NA NA ...
##  $ hours.mnt         : num  NA NA NA NA NA ...
##  $ fulltime          : int  NA NA NA NA NA NA 1 1 NA NA ...
##  $ hhexp             : num  100 100 100 343 343 ...
##  $ legacy.pension.amt: num  NA NA NA NA NA NA NA NA NA NA ...
##  - attr(*, "datalabel")= chr ""
##  - attr(*, "time.stamp")= chr ""
##  - attr(*, "formats")= chr  "%9.0g" "%9.0g" "%9.0g" "%9.0g" ...
##  - attr(*, "types")= int  100 100 108 108 108 100 108 108 108 100 ...
##  - attr(*, "val.labels")= chr  "" "" "location" "region" ...
##  - attr(*, "var.labels")= chr  "hhid" "hhweight" "location" "region" ...
##  - attr(*, "expansion.fields")=List of 12
##   ..$ : chr  "_dta" "_svy_su1" "cluster"
##   ..$ : chr  "_dta" "_svy_strata1" "strata"
##   ..$ : chr  "_dta" "_svy_stages" "1"
##   ..$ : chr  "_dta" "_svy_version" "2"
##   ..$ : chr  "_dta" "__XijVarLabcons" "(sum) cons"
##   ..$ : chr  "_dta" "ReS_Xij" "cons"
##   ..$ : chr  "_dta" "ReS_str" "0"
##   ..$ : chr  "_dta" "ReS_j" "group"
##   ..$ : chr  "_dta" "ReS_ver" "v.2"
##   ..$ : chr  "_dta" "ReS_i" "hhid dur"
##   ..$ : chr  "_dta" "note1" "variables g1pc, g2pc, g3pc, g4pc, g5pc, g7pc, g8pc, g9pc, g10pc, g11pc, g12pc,  gall, health, rent, durables we"| __truncated__
##   ..$ : chr  "_dta" "note0" "1"
##  - attr(*, "version")= int 7
##  - attr(*, "label.table")=List of 12
##   ..$ location: Named int  1 2
##   .. ..- attr(*, "names")= chr  "urban location" "rural location"
##   ..$ region  : Named int  1 2 3 4 5 6 7 8 9
##   .. ..- attr(*, "names")= chr  "Sofia city" "Bourgass" "Varna" "Lovetch" ...
##   ..$ ethnic  : Named int  1 2 3 4
##   .. ..- attr(*, "names")= chr  "Bulgaria" "Turks" "Roma" "Other"
##   ..$ s2_q2   : Named int  1 2
##   .. ..- attr(*, "names")= chr  "male" "female"
##   ..$ s2_q3   : Named int  1 2 3 4 5 6 7 8 9
##   .. ..- attr(*, "names")= chr  "head                      " "spouse/partner            " "child                     " "son/daughter-in-law       " ...
##   ..$ lit     : Named int  1 2
##   .. ..- attr(*, "names")= chr  "no" "yes"
##   ..$         : Named int  1 2 3 4
##   .. ..- attr(*, "names")= chr  "never attanded" "primary" "secondary" "postsecondary"
##   ..$         : Named int  1 2
##   .. ..- attr(*, "names")= chr  "Not unemployed" "Unemployed"
##   ..$         : Named int  1 2 3 4 5 6 7 8 9 10
##   .. ..- attr(*, "names")= chr  "student" "housewife/childcare" "in retirement" "illness, disability" ...
##   ..$         : Named int  1 2 3 4 5 6 7 8 9 10
##   .. ..- attr(*, "names")= chr  "agriculture" "mining" "manufacturing" "utilities" ...
##   ..$         : Named int  1 2 3 4 5
##   .. ..- attr(*, "names")= chr  "private company" "public works program" "government,public sector, army" "private individual" ...
##   ..$         : Named int  1 2
##   .. ..- attr(*, "names")= chr  "no" "yes"
edu_equal_1
##      hhid hhweight       location       region ethnicity_head age gender
## 1       1 627.2325 urban location Sofia region          Turks  37 female
## 2       1 627.2325 urban location Sofia region          Turks  11 female
## 3       1 627.2325 urban location Sofia region          Turks   8   male
## 4       2 627.2325 urban location      Haskovo       Bulgaria  73   male
## 5       2 627.2325 urban location      Haskovo       Bulgaria  70 female
## 6       3 627.2325 rural location      Lovetch       Bulgaria  75   male
## 7       4 627.2325 rural location      Lovetch       Bulgaria  79   male
## 8       4 627.2325 rural location      Lovetch       Bulgaria  80 female
## 9       5 627.2325 urban location Sofia region       Bulgaria  82 female
## 10      6 627.2325 urban location Sofia region       Bulgaria  83 female
## 11      7 627.2325 urban location      Lovetch          Turks  58   male
## 12      7 627.2325 urban location      Lovetch          Turks  57 female
## 13      8 627.2325 urban location     Bourgass       Bulgaria  63   male
## 14      8 627.2325 urban location     Bourgass       Bulgaria  66 female
## 15      9 627.2325 urban location     Bourgass       Bulgaria  50 female
## 16      9 627.2325 urban location     Bourgass       Bulgaria  71 female
## 17      9 627.2325 urban location     Bourgass       Bulgaria  19   male
## 18     10 627.2325 urban location Sofia region       Bulgaria  42   male
## 19     10 627.2325 urban location Sofia region       Bulgaria  42 female
## 20     10 627.2325 urban location Sofia region       Bulgaria  15   male
## 21     11 627.2325 urban location     Bourgass       Bulgaria  64   male
## 22     11 627.2325 urban location     Bourgass       Bulgaria  64 female
## 23     12 627.2325 urban location      Lovetch          Turks  77   male
## 24     12 627.2325 urban location      Lovetch          Turks  79 female
## 25     13 627.2325 urban location      Lovetch          Turks  69   male
## 26     13 627.2325 urban location      Lovetch          Turks  70 female
## 27     13 627.2325 urban location      Lovetch          Turks  27   male
## 28     13 627.2325 urban location      Lovetch          Turks  24 female
## 29     13 627.2325           <NA>      Lovetch          Turks   1   male
## 30     14 627.2325 urban location     Bourgass       Bulgaria  66   male
## 31     14 627.2325 urban location     Bourgass       Bulgaria  56 female
## 32     14 627.2325 urban location     Bourgass       Bulgaria  23 female
## 33     15 627.2325 urban location     Bourgass       Bulgaria  68   male
## 34     15 627.2325 urban location     Bourgass       Bulgaria  65 female
## 35     16 627.2325 urban location     Bourgass       Bulgaria  65   male
## 36     16 627.2325 urban location     Bourgass       Bulgaria  60 female
## 37     17 627.2325 urban location Sofia region       Bulgaria  60 female
## 38     18 627.2325 urban location      Plovdiv       Bulgaria  34 female
## 39     18 627.2325 urban location      Plovdiv       Bulgaria  41   male
## 40     18 627.2325 urban location      Plovdiv       Bulgaria  14 female
## 41     19 627.2325 urban location      Plovdiv       Bulgaria  75   male
## 42     19 627.2325 urban location      Plovdiv       Bulgaria  74 female
## 43     19 627.2325 urban location      Plovdiv       Bulgaria  43   male
## 44     20 627.2325 urban location      Plovdiv       Bulgaria  46   male
## 45     20 627.2325 urban location      Plovdiv       Bulgaria  44 female
## 46     20 627.2325 urban location      Plovdiv       Bulgaria  19 female
## 47     20 627.2325 urban location      Plovdiv       Bulgaria  80 female
## 48     21 627.2325 rural location      Lovetch       Bulgaria  75   male
## 49     21 627.2325 rural location      Lovetch       Bulgaria  65 female
## 50     21 627.2325 rural location      Lovetch       Bulgaria  87 female
## 51     22 627.2325 rural location      Lovetch           Roma  56 female
## 52     22 627.2325 rural location      Lovetch           Roma  35   male
## 53     22 627.2325 rural location      Lovetch           Roma  27 female
## 54     22 627.2325 rural location      Lovetch           Roma   8   male
## 55     22 627.2325           <NA>      Lovetch           Roma   4 female
## 56     22 627.2325           <NA>      Lovetch           Roma   3 female
## 57     23 627.2325 rural location      Lovetch       Bulgaria  49   male
## 58     23 627.2325 rural location      Lovetch       Bulgaria  42 female
## 59     23 627.2325 rural location      Lovetch       Bulgaria  24   male
## 60     23 627.2325 rural location      Lovetch       Bulgaria  21   male
## 61     24 627.2325 urban location      Plovdiv       Bulgaria  82   male
## 62     24 627.2325 urban location      Plovdiv       Bulgaria  78 female
## 63     25 627.2325 urban location      Plovdiv       Bulgaria  36   male
## 64     25 627.2325 urban location      Plovdiv       Bulgaria  36 female
## 65     25 627.2325 urban location      Plovdiv       Bulgaria  15   male
## 66     25 627.2325           <NA>      Plovdiv       Bulgaria   6   male
## 67     25 627.2325           <NA>      Plovdiv       Bulgaria   6   male
## 68     26 627.2325 rural location       Rousse       Bulgaria  52   male
## 69     26 627.2325 rural location       Rousse       Bulgaria  51 female
## 70     26 627.2325           <NA>       Rousse       Bulgaria  24   male
## 71     27 627.2325 urban location   Sofia city       Bulgaria  49   male
## 72     27 627.2325 urban location   Sofia city       Bulgaria  44 female
## 73     27 627.2325 urban location   Sofia city       Bulgaria  16   male
## 74     27 627.2325 urban location   Sofia city       Bulgaria  78 female
## 75     28 627.2325 urban location   Sofia city       Bulgaria  27 female
## 76     29 627.2325 urban location      Plovdiv       Bulgaria  57   male
## 77     29 627.2325 urban location      Plovdiv       Bulgaria  57 female
## 78     29 627.2325 urban location      Plovdiv       Bulgaria  80 female
## 79     30 627.2325 urban location      Lovetch          Turks  31   male
## 80     30 627.2325 urban location      Lovetch          Turks  29 female
## 81     30 627.2325 urban location      Lovetch          Turks  10   male
## 82     30 627.2325           <NA>      Lovetch          Turks   3   male
## 83     31 627.2325 rural location      Plovdiv           Roma  47   male
## 84     31 627.2325 rural location      Plovdiv           Roma  49 female
## 85     32 627.2325 urban location      Haskovo          Turks  67   male
## 86     32 627.2325 urban location      Haskovo          Turks  64 female
## 87     33 627.2325 urban location Sofia region       Bulgaria  33   male
## 88     33 627.2325 urban location Sofia region       Bulgaria  30 female
## 89     33 627.2325 urban location Sofia region       Bulgaria  10   male
## 90     34 627.2325 urban location      Plovdiv       Bulgaria  56   male
## 91     34 627.2325 urban location      Plovdiv       Bulgaria  55 female
## 92     35 627.2325 urban location      Haskovo       Bulgaria  77   male
## 93     35 627.2325 urban location      Haskovo       Bulgaria  77 female
## 94     35 627.2325 urban location      Haskovo       Bulgaria  53   male
## 95     35 627.2325 urban location      Haskovo       Bulgaria  53 female
## 96     35 627.2325 urban location      Haskovo       Bulgaria  32   male
## 97     36 627.2325 urban location      Haskovo       Bulgaria  57   male
## 98     36 627.2325 urban location      Haskovo       Bulgaria  52 female
## 99     37 627.2325 urban location      Haskovo       Bulgaria  86 female
## 100    38 627.2325 rural location      Lovetch       Bulgaria  63   male
## 101    38 627.2325 rural location      Lovetch       Bulgaria  61 female
## 102    39 627.2325 rural location      Lovetch       Bulgaria  80   male
## 103    39 627.2325 rural location      Lovetch       Bulgaria  70 female
## 104    40 627.2325 rural location      Lovetch       Bulgaria  73   male
## 105    40 627.2325 rural location      Lovetch       Bulgaria  76 female
## 106    41 627.2325 urban location Sofia region       Bulgaria  67 female
## 107    42 627.2325 rural location Sofia region           Roma  30   male
## 108    42 627.2325 rural location Sofia region           Roma  28 female
## 109    42 627.2325 rural location Sofia region           Roma  10 female
## 110    42 627.2325           <NA> Sofia region           Roma   3   male
## 111    43 627.2325 urban location Sofia region       Bulgaria  44   male
## 112    43 627.2325 urban location Sofia region       Bulgaria  37 female
## 113    43 627.2325 urban location Sofia region       Bulgaria  16   male
## 114    43 627.2325 urban location Sofia region       Bulgaria  13 female
## 115    44 627.2325 urban location Sofia region          Turks  47   male
## 116    44 627.2325 urban location Sofia region          Turks  41 female
## 117    45 627.2325 urban location      Plovdiv       Bulgaria  71 female
## 118    45 627.2325 urban location      Plovdiv       Bulgaria  72   male
## 119    45 627.2325 urban location      Plovdiv       Bulgaria  38   male
## 120    46 627.2325 urban location      Plovdiv       Bulgaria  39   male
## 121    46 627.2325 urban location      Plovdiv       Bulgaria  70 female
## 122    47 627.2325 urban location      Plovdiv       Bulgaria  28   male
## 123    47 627.2325 urban location      Plovdiv       Bulgaria  26 female
## 124    47 627.2325           <NA>      Plovdiv       Bulgaria   5 female
## 125    48 627.2325 urban location      Plovdiv       Bulgaria  58   male
## 126    48 627.2325 urban location      Plovdiv       Bulgaria  57 female
## 127    49 627.2325 urban location      Plovdiv       Bulgaria  45   male
## 128    49 627.2325 urban location      Plovdiv       Bulgaria  38 female
## 129    49 627.2325 urban location      Plovdiv       Bulgaria  18   male
## 130    49 627.2325           <NA>      Plovdiv       Bulgaria   6   male
## 131    50 627.2325 urban location      Plovdiv       Bulgaria  51   male
## 132    50 627.2325 urban location      Plovdiv       Bulgaria  47 female
## 133    50 627.2325 urban location      Plovdiv       Bulgaria  24 female
## 134    51 627.2325 urban location       Rousse       Bulgaria  61   male
## 135    51 627.2325 urban location       Rousse       Bulgaria  57 female
## 136    52 627.2325 urban location      Plovdiv       Bulgaria  51 female
## 137    52 627.2325 urban location      Plovdiv       Bulgaria  30 female
## 138    52 627.2325 urban location      Plovdiv       Bulgaria  27   male
## 139    53 627.2325 urban location      Plovdiv       Bulgaria  53 female
## 140    54 627.2325 urban location Sofia region           Roma  68 female
## 141    55 627.2325 rural location      Plovdiv           Roma  38   male
## 142    55 627.2325 rural location      Plovdiv           Roma  72   male
## 143    55 627.2325 rural location      Plovdiv           Roma  32 female
## 144    55 627.2325 rural location      Plovdiv           Roma  17   male
## 145    55 627.2325 rural location      Plovdiv           Roma  15 female
## 146    55 627.2325 rural location      Plovdiv           Roma  13   male
## 147    56 627.2325 rural location      Plovdiv           Roma  27   male
## 148    56 627.2325 rural location      Plovdiv           Roma  59 female
## 149    56 627.2325 rural location      Plovdiv           Roma  24 female
## 150    56 627.2325           <NA>      Plovdiv           Roma   4   male
## 151    56 627.2325           <NA>      Plovdiv           Roma   1   male
## 152    56 627.2325           <NA>      Plovdiv           Roma   3   male
## 153    56 627.2325           <NA>      Plovdiv           Roma   2   male
## 154    57 627.2325 rural location      Plovdiv       Bulgaria  76   male
## 155    57 627.2325 rural location      Plovdiv       Bulgaria  75 female
## 156    58 627.2325 urban location      Plovdiv       Bulgaria  79   male
## 157    59 627.2325 urban location      Plovdiv       Bulgaria  86 female
## 158    59 627.2325 urban location      Plovdiv       Bulgaria  54 female
## 159    59 627.2325 urban location      Plovdiv       Bulgaria  31   male
## 160    60 627.2325 urban location Sofia region       Bulgaria  63   male
## 161    60 627.2325 urban location Sofia region       Bulgaria  61 female
## 162    61 627.2325 urban location   Sofia city       Bulgaria  30 female
## 163    61 627.2325 urban location   Sofia city       Bulgaria   9 female
## 164    62 627.2325 urban location   Sofia city       Bulgaria  66 female
## 165    63 627.2325 rural location      Plovdiv       Bulgaria  42   male
## 166    63 627.2325 rural location      Plovdiv       Bulgaria  39 female
## 167    63 627.2325 rural location      Plovdiv       Bulgaria  19   male
## 168    63 627.2325 rural location      Plovdiv       Bulgaria  17   male
## 169    64 627.2325 urban location     Bourgass       Bulgaria  71   male
## 170    64 627.2325 urban location     Bourgass       Bulgaria  62 female
## 171    64 627.2325 urban location     Bourgass       Bulgaria  39   male
## 172    65 627.2325 rural location      Plovdiv           Roma  65 female
## 173    65 627.2325 rural location      Plovdiv           Roma  43   male
## 174    65 627.2325 rural location      Plovdiv           Roma  41 female
## 175    65 627.2325 rural location      Plovdiv           Roma  26   male
## 176    65 627.2325 rural location      Plovdiv           Roma  24 female
## 177    65 627.2325 rural location      Plovdiv           Roma   8   male
## 178    65 627.2325           <NA>      Plovdiv           Roma   2 female
## 179    66 627.2325 rural location      Lovetch       Bulgaria  73 female
## 180    67 627.2325 rural location     Bourgass          Turks  51   male
## 181    67 627.2325 rural location     Bourgass          Turks  72 female
## 182    68 627.2325 rural location     Bourgass          Turks  23   male
## 183    68 627.2325 rural location     Bourgass          Turks  29 female
## 184    68 627.2325           <NA>     Bourgass          Turks   3   male
## 185    69 627.2325 rural location     Bourgass          Turks  46   male
## 186    69 627.2325 rural location     Bourgass          Turks  44 female
## 187    69 627.2325 rural location     Bourgass          Turks  20   male
## 188    69 627.2325 rural location     Bourgass          Turks  68 female
## 189    69 627.2325 rural location     Bourgass          Turks  70   male
## 190    70 627.2325 urban location   Sofia city       Bulgaria  48   male
## 191    70 627.2325 urban location   Sofia city       Bulgaria  40 female
## 192    70 627.2325 urban location   Sofia city       Bulgaria  21   male
## 193    70 627.2325 urban location   Sofia city       Bulgaria  10 female
## 194    71 627.2325 urban location      Plovdiv       Bulgaria  75   male
## 195    71 627.2325 urban location      Plovdiv       Bulgaria  73 female
## 196    72 627.2325 urban location      Plovdiv       Bulgaria  46   male
## 197    72 627.2325 urban location      Plovdiv       Bulgaria  46 female
## 198    72 627.2325 urban location      Plovdiv       Bulgaria  10 female
## 199    73 627.2325 rural location       Rousse          Turks  78   male
## 200    73 627.2325 rural location       Rousse          Turks  51   male
## 201    73 627.2325 rural location       Rousse          Turks  50 female
## 202    73 627.2325 rural location       Rousse          Turks  27   male
## 203    73 627.2325 rural location       Rousse          Turks  24 female
## 204    73 627.2325           <NA>       Rousse          Turks   0 female
## 205    74 627.2325 rural location       Rousse       Bulgaria  73 female
## 206    75 627.2325 urban location   Sofia city       Bulgaria  33 female
## 207    75 627.2325 urban location   Sofia city       Bulgaria  36   male
## 208    75 627.2325           <NA>   Sofia city       Bulgaria   6 female
## 209    76 627.2325 urban location   Sofia city       Bulgaria  84 female
## 210    77 627.2325 urban location Sofia region       Bulgaria  60   male
## 211    77 627.2325 urban location Sofia region       Bulgaria  59 female
## 212    77 627.2325 urban location Sofia region       Bulgaria  30   male
## 213    78 627.2325 urban location     Bourgass       Bulgaria  30   male
## 214    78 627.2325 urban location     Bourgass       Bulgaria  43 female
## 215    79 627.2325 urban location     Bourgass       Bulgaria  38   male
## 216    79 627.2325 urban location     Bourgass       Bulgaria  30 female
## 217    79 627.2325 urban location     Bourgass       Bulgaria  12   male
## 218    79 627.2325           <NA>     Bourgass       Bulgaria   7   male
## 219    79 627.2325 urban location     Bourgass       Bulgaria  61 female
## 220    80 627.2325 urban location     Bourgass           Roma  46   male
## 221    80 627.2325 urban location     Bourgass           Roma  40 female
## 222    80 627.2325 urban location     Bourgass           Roma  16 female
## 223    80 627.2325 urban location     Bourgass           Roma  13 female
## 224    81 627.2325 urban location     Bourgass           Roma  34   male
## 225    81 627.2325 urban location     Bourgass           Roma  29 female
## 226    81 627.2325 urban location     Bourgass           Roma  10   male
## 227    81 627.2325 urban location     Bourgass           Roma   9 female
## 228    81 627.2325           <NA>     Bourgass           Roma   5   male
## 229    82 627.2325 rural location       Rousse       Bulgaria  69   male
## 230    82 627.2325 rural location       Rousse       Bulgaria  69 female
## 231    83 627.2325 rural location       Rousse       Bulgaria  65   male
## 232    83 627.2325 rural location       Rousse       Bulgaria  66 female
## 233    83 627.2325 rural location       Rousse       Bulgaria  40   male
## 234    83 627.2325 rural location       Rousse       Bulgaria  33 female
## 235    83 627.2325 rural location       Rousse       Bulgaria  14 female
## 236    84 627.2325 rural location       Rousse       Bulgaria  57   male
## 237    84 627.2325 rural location       Rousse       Bulgaria  51 female
## 238    85 627.2325 urban location   Sofia city       Bulgaria  62 female
## 239    86 627.2325 urban location      Plovdiv       Bulgaria  76 female
## 240    87 627.2325 urban location      Plovdiv       Bulgaria  55   male
## 241    87 627.2325 urban location      Plovdiv       Bulgaria  53 female
## 242    88 627.2325 urban location      Plovdiv       Bulgaria  74   male
## 243    88 627.2325 urban location      Plovdiv       Bulgaria  70 female
## 244    89 627.2325 rural location      Lovetch       Bulgaria  56   male
## 245    89 627.2325 rural location      Lovetch       Bulgaria  51 female
## 246    89 627.2325           <NA>      Lovetch       Bulgaria  31 female
## 247    89 627.2325           <NA>      Lovetch       Bulgaria  25 female
## 248    90 627.2325 rural location      Lovetch           Roma  71 female
## 249    91 627.2325 rural location      Lovetch       Bulgaria  74 female
## 250    92 627.2325 urban location      Haskovo          Turks  49   male
## 251    92 627.2325 urban location      Haskovo          Turks  47 female
## 252    92 627.2325 urban location      Haskovo          Turks  20   male
## 253    92 627.2325 urban location      Haskovo          Turks  26 female
## 254    92 627.2325           <NA>      Haskovo          Turks   7 female
## 255    93 627.2325 urban location Sofia region       Bulgaria  68   male
## 256    93 627.2325 urban location Sofia region       Bulgaria  66 female
## 257    94 627.2325 urban location      Lovetch       Bulgaria  85   male
## 258    94 627.2325 urban location      Lovetch       Bulgaria  85 female
## 259    95 627.2325 urban location      Haskovo          Turks  68 female
## 260    95 627.2325 urban location      Haskovo          Turks  39   male
## 261    95 627.2325 urban location      Haskovo          Turks  35 female
## 262    95 627.2325 urban location      Haskovo          Turks  16   male
## 263    95 627.2325 urban location      Haskovo          Turks  13   male
## 264    96 627.2325 urban location     Bourgass       Bulgaria  47   male
## 265    96 627.2325 urban location     Bourgass       Bulgaria  46 female
## 266    97 627.2325 rural location      Plovdiv       Bulgaria  71   male
## 267    97 627.2325 rural location      Plovdiv       Bulgaria  65 female
## 268    98 627.2325 urban location      Haskovo          Turks  70   male
## 269    98 627.2325 urban location      Haskovo          Turks  66 female
## 270    99 627.2325 rural location      Lovetch       Bulgaria  75 female
## 271   100 627.2325 urban location   Sofia city       Bulgaria  52   male
## 272   100 627.2325 urban location   Sofia city       Bulgaria  48 female
## 273   100 627.2325 urban location   Sofia city       Bulgaria  28 female
## 274   101 627.2325 urban location   Sofia city       Bulgaria  67   male
## 275   101 627.2325 urban location   Sofia city       Bulgaria  64 female
## 276   102 627.2325 rural location     Bourgass          Turks  78   male
## 277   103 627.2325 rural location      Lovetch       Bulgaria  71 female
## 278   104 627.2325 urban location Sofia region       Bulgaria  55 female
## 279   104 627.2325 urban location Sofia region       Bulgaria  82 female
## 280   104 627.2325 urban location Sofia region       Bulgaria  82   male
## 281   104 627.2325 urban location Sofia region       Bulgaria  22   male
## 282   105 627.2325 urban location Sofia region       Bulgaria  73 female
## 283   106 627.2325 rural location      Lovetch       Bulgaria  54   male
## 284   106 627.2325 rural location      Lovetch       Bulgaria  55 female
## 285   106 627.2325 rural location      Lovetch       Bulgaria  22   male
## 286   107 627.2325 urban location      Montana       Bulgaria  71 female
## 287   108 627.2325 urban location      Montana       Bulgaria  86   male
## 288   108 627.2325 urban location      Montana       Bulgaria  88 female
## 289   109 627.2325 urban location Sofia region       Bulgaria  55   male
## 290   109 627.2325 urban location Sofia region       Bulgaria  52 female
## 291   109 627.2325 urban location Sofia region       Bulgaria  83 female
## 292   109 627.2325 urban location Sofia region       Bulgaria  30 female
## 293   109 627.2325 urban location Sofia region       Bulgaria  26   male
## 294   109 627.2325 urban location Sofia region       Bulgaria  34   male
## 295   109 627.2325           <NA> Sofia region       Bulgaria   4   male
## 296   110 627.2325 urban location Sofia region       Bulgaria  29 female
## 297   110 627.2325           <NA> Sofia region       Bulgaria   7 female
## 298   110 627.2325           <NA> Sofia region       Bulgaria   1   male
## 299   111 627.2325 rural location       Rousse       Bulgaria  73   male
## 300   111 627.2325 rural location       Rousse       Bulgaria  71 female
## 301   112 627.2325 rural location       Rousse       Bulgaria  63   male
## 302   113 627.2325 rural location       Rousse          Turks  34   male
## 303   113 627.2325 rural location       Rousse          Turks  33 female
## 304   113 627.2325 rural location       Rousse          Turks  11 female
## 305   113 627.2325 rural location       Rousse          Turks  83 female
## 306   113 627.2325 rural location       Rousse          Turks  56 female
## 307   113 627.2325 rural location       Rousse          Turks  29   male
## 308   113 627.2325 rural location       Rousse          Turks  25 female
## 309   114 627.2325 rural location       Rousse       Bulgaria  84 female
## 310   114 627.2325 rural location       Rousse       Bulgaria  55 female
## 311   115 627.2325 rural location      Lovetch       Bulgaria  73   male
## 312   115 627.2325 rural location      Lovetch       Bulgaria  75 female
## 313   116 627.2325 rural location      Plovdiv       Bulgaria  55   male
## 314   117 627.2325 rural location      Plovdiv       Bulgaria  60   male
## 315   117 627.2325 rural location      Plovdiv       Bulgaria  58 female
## 316   117 627.2325 rural location      Plovdiv       Bulgaria  33   male
## 317   117 627.2325 rural location      Plovdiv       Bulgaria  28 female
## 318   117 627.2325           <NA>      Plovdiv       Bulgaria   6 female
## 319   118 627.2325 rural location      Plovdiv       Bulgaria  72   male
## 320   118 627.2325 rural location      Plovdiv       Bulgaria  64 female
## 321   119 627.2325 urban location     Bourgass       Bulgaria  62 female
## 322   119 627.2325 urban location     Bourgass       Bulgaria  84 female
## 323   120 627.2325 urban location     Bourgass       Bulgaria  55   male
## 324   120 627.2325 urban location     Bourgass       Bulgaria  52 female
## 325   120 627.2325 urban location     Bourgass       Bulgaria  28 female
## 326   120 627.2325 urban location     Bourgass       Bulgaria  21 female
## 327   121 627.2325 urban location     Bourgass       Bulgaria  39 female
## 328   121 627.2325 urban location     Bourgass       Bulgaria  19   male
## 329   122 627.2325 urban location     Bourgass       Bulgaria  75   male
## 330   123 627.2325 urban location      Haskovo          Turks  55 female
## 331   124 627.2325 urban location      Haskovo          Turks  47   male
## 332   124 627.2325 urban location      Haskovo          Turks  48 female
## 333   124 627.2325 urban location      Haskovo          Turks  25   male
## 334   124 627.2325 urban location      Haskovo          Turks  21   male
## 335   125 627.2325 urban location Sofia region           Roma  28   male
## 336   125 627.2325 urban location Sofia region           Roma  26 female
## 337   125 627.2325           <NA> Sofia region           Roma   5   male
## 338   125 627.2325           <NA> Sofia region           Roma   4   male
## 339   125 627.2325           <NA> Sofia region           Roma   1 female
## 340   126 627.2325 rural location      Haskovo           Roma  43   male
## 341   126 627.2325 rural location      Haskovo           Roma  42 female
## 342   126 627.2325 rural location      Haskovo           Roma  24   male
## 343   126 627.2325 rural location      Haskovo           Roma  22 female
## 344   126 627.2325           <NA>      Haskovo           Roma   1 female
## 345   127 627.2325 rural location Sofia region       Bulgaria  63   male
## 346   127 627.2325 rural location Sofia region       Bulgaria  58 female
## 347   128 627.2325 urban location        Varna       Bulgaria  59   male
## 348   128 627.2325 urban location        Varna       Bulgaria  57 female
## 349   128 627.2325 urban location        Varna       Bulgaria  34   male
## 350   129 627.2325 rural location Sofia region       Bulgaria  58 female
## 351   130 627.2325 urban location       Rousse       Bulgaria  48   male
## 352   130 627.2325 urban location       Rousse       Bulgaria  47 female
## 353   131 627.2325 urban location      Lovetch          Turks  44   male
## 354   131 627.2325           <NA>      Lovetch          Turks  36 female
## 355   131 627.2325 urban location      Lovetch          Turks  19 female
## 356   131 627.2325 urban location      Lovetch          Turks  18   male
## 357   131 627.2325 urban location      Lovetch          Turks  72   male
## 358   131 627.2325 urban location      Lovetch          Turks  66 female
## 359   132 627.2325 rural location      Haskovo           Roma  70 female
## 360   132 627.2325 rural location      Haskovo           Roma  49 female
## 361   132 627.2325 rural location      Haskovo           Roma  19   male
## 362   133 627.2325 urban location     Bourgass       Bulgaria  64   male
## 363   133 627.2325 urban location     Bourgass       Bulgaria  58 female
## 364   133 627.2325 urban location     Bourgass       Bulgaria  34   male
## 365   134 627.2325 urban location      Lovetch       Bulgaria  57   male
## 366   134 627.2325 urban location      Lovetch       Bulgaria  53 female
## 367   135 627.2325 urban location     Bourgass           Roma  50   male
## 368   135 627.2325 urban location     Bourgass           Roma  48 female
## 369   135 627.2325 urban location     Bourgass           Roma  28   male
## 370   135 627.2325 urban location     Bourgass           Roma  23 female
## 371   135 627.2325 urban location     Bourgass           Roma   8 female
## 372   136 627.2325 urban location       Rousse       Bulgaria  57 female
## 373   136 627.2325 urban location       Rousse       Bulgaria  37   male
## 374   136 627.2325 urban location       Rousse       Bulgaria  33   male
## 375   137 627.2325 urban location      Plovdiv       Bulgaria  54   male
## 376   137 627.2325 urban location      Plovdiv       Bulgaria  51 female
## 377   137 627.2325 urban location      Plovdiv       Bulgaria  32 female
## 378   137 627.2325 urban location      Plovdiv       Bulgaria  32   male
## 379   137 627.2325           <NA>      Plovdiv       Bulgaria   5   male
## 380   137 627.2325           <NA>      Plovdiv       Bulgaria   2   male
## 381   138 627.2325 urban location      Plovdiv       Bulgaria  58   male
## 382   138 627.2325 urban location      Plovdiv       Bulgaria  53 female
## 383   138 627.2325 urban location      Plovdiv       Bulgaria  38   male
## 384   138 627.2325 urban location      Plovdiv       Bulgaria  35 female
## 385   138 627.2325 urban location      Plovdiv       Bulgaria  30 female
## 386   138 627.2325 urban location      Plovdiv       Bulgaria   8 female
## 387   138 627.2325           <NA>      Plovdiv       Bulgaria   3 female
## 388   139 627.2325 urban location      Lovetch       Bulgaria  42   male
## 389   139 627.2325 urban location      Lovetch       Bulgaria  39 female
## 390   139 627.2325 urban location      Lovetch       Bulgaria  22   male
## 391   139 627.2325 urban location      Lovetch       Bulgaria  23 female
## 392   139 627.2325           <NA>      Lovetch       Bulgaria   3 female
## 393   139 627.2325           <NA>      Lovetch       Bulgaria   0   male
## 394   140 627.2325 urban location      Lovetch       Bulgaria  59   male
## 395   140 627.2325 urban location      Lovetch       Bulgaria  57 female
## 396   141 627.2325 urban location      Montana       Bulgaria  82 female
## 397   141 627.2325 urban location      Montana       Bulgaria  23   male
## 398   142 627.2325 urban location Sofia region       Bulgaria  63   male
## 399   142 627.2325 urban location Sofia region       Bulgaria  59 female
## 400   143 627.2325 urban location Sofia region       Bulgaria  51   male
## 401   143 627.2325 urban location Sofia region       Bulgaria  49 female
## 402   144 627.2325 urban location Sofia region       Bulgaria  66   male
## 403   144 627.2325 urban location Sofia region       Bulgaria  64 female
## 404   145 627.2325 urban location   Sofia city       Bulgaria  67   male
## 405   145 627.2325 urban location   Sofia city       Bulgaria  49 female
## 406   146 627.2325 urban location   Sofia city       Bulgaria  50 female
## 407   146 627.2325 urban location   Sofia city       Bulgaria  52   male
## 408   146 627.2325 urban location   Sofia city       Bulgaria  26 female
## 409   146 627.2325 urban location   Sofia city       Bulgaria  22   male
## 410   147 627.2325 urban location   Sofia city       Bulgaria  24 female
## 411   147 627.2325 urban location   Sofia city       Bulgaria  21   male
## 412   148 627.2325 rural location      Montana       Bulgaria  71   male
## 413   149 627.2325 rural location Sofia region       Bulgaria  60   male
## 414   149 627.2325 rural location Sofia region       Bulgaria  58 female
## 415   150 627.2325 rural location      Montana       Bulgaria  68   male
## 416   150 627.2325 rural location      Montana       Bulgaria  68 female
## 417   151 627.2325 rural location      Montana       Bulgaria  71   male
## 418   151 627.2325 rural location      Montana       Bulgaria  71 female
## 419   152 627.2325 urban location        Varna       Bulgaria  47   male
## 420   152 627.2325 urban location        Varna       Bulgaria  39 female
## 421   152 627.2325 urban location        Varna       Bulgaria  16 female
## 422   152 627.2325 urban location        Varna       Bulgaria  12 female
## 423   153 627.2325 urban location        Varna       Bulgaria  51   male
## 424   153 627.2325 urban location        Varna       Bulgaria  50 female
## 425   153 627.2325 urban location        Varna       Bulgaria  22   male
## 426   153 627.2325 urban location        Varna       Bulgaria  72 female
## 427   154 627.2325 urban location      Montana       Bulgaria  58   male
## 428   154 627.2325 urban location      Montana       Bulgaria  55 female
## 429   154 627.2325 urban location      Montana       Bulgaria  34   male
## 430   154 627.2325 urban location      Montana       Bulgaria  83 female
## 431   155 627.2325 urban location        Varna       Bulgaria  60 female
## 432   155 627.2325 urban location        Varna       Bulgaria  33   male
## 433   156 627.2325 rural location      Plovdiv       Bulgaria  50 female
## 434   156 627.2325 rural location      Plovdiv       Bulgaria  22 female
## 435   156 627.2325 rural location      Plovdiv       Bulgaria  17   male
## 436   156 627.2325 rural location      Plovdiv       Bulgaria  50   male
## 437   157 627.2325 urban location        Varna       Bulgaria  74 female
## 438   158 627.2325 urban location      Montana       Bulgaria  47   male
## 439   158 627.2325 urban location      Montana       Bulgaria  41 female
## 440   158 627.2325 urban location      Montana       Bulgaria  25   male
## 441   158 627.2325 urban location      Montana       Bulgaria  80 female
## 442   159 627.2325 urban location      Plovdiv       Bulgaria  29   male
## 443   159 627.2325 urban location      Plovdiv       Bulgaria  28 female
## 444   159 627.2325 urban location      Plovdiv       Bulgaria   7 female
## 445   159 627.2325           <NA>      Plovdiv       Bulgaria   2   male
## 446   160 627.2325 urban location      Lovetch       Bulgaria  60 female
## 447   160 627.2325 urban location      Lovetch       Bulgaria  36   male
## 448   161 627.2325 urban location Sofia region       Bulgaria  51   male
## 449   161 627.2325 urban location Sofia region       Bulgaria  46 female
## 450   161 627.2325 urban location Sofia region       Bulgaria  26 female
## 451   161 627.2325           <NA> Sofia region       Bulgaria   5   male
## 452   162 627.2325 rural location     Bourgass       Bulgaria  62   male
## 453   162 627.2325 rural location     Bourgass       Bulgaria  54 female
## 454   163 627.2325 urban location Sofia region       Bulgaria  59   male
## 455   163 627.2325 urban location Sofia region       Bulgaria  58 female
## 456   164 627.2325 urban location      Lovetch       Bulgaria  42   male
## 457   164 627.2325 urban location      Lovetch       Bulgaria  44 female
## 458   164 627.2325 urban location      Lovetch       Bulgaria  15 female
## 459   164 627.2325 urban location      Lovetch       Bulgaria  76 female
## 460   165 627.2325 urban location      Lovetch       Bulgaria  73   male
## 461   165 627.2325 urban location      Lovetch       Bulgaria  67 female
## 462   165 627.2325 urban location      Lovetch       Bulgaria  43   male
## 463   166 627.2325 urban location      Plovdiv       Bulgaria  69 female
## 464   166 627.2325 urban location      Plovdiv       Bulgaria  42 female
## 465   167 627.2325 urban location      Plovdiv       Bulgaria  66 female
## 466   167 627.2325 urban location      Plovdiv       Bulgaria  32   male
## 467   167 627.2325 urban location      Plovdiv       Bulgaria  29   male
## 468   168 627.2325 urban location      Lovetch       Bulgaria  56 female
## 469   169 627.2325 rural location      Haskovo          Turks  54   male
## 470   169 627.2325 rural location      Haskovo          Turks  52 female
## 471   169 627.2325 rural location      Haskovo          Turks  77 female
## 472   170 627.2325 rural location       Rousse       Bulgaria  52   male
## 473   170 627.2325 rural location       Rousse       Bulgaria  53 female
## 474   170 627.2325 rural location       Rousse       Bulgaria  75 female
## 475   170 627.2325 rural location       Rousse       Bulgaria  44   male
## 476   171 627.2325 urban location      Plovdiv       Bulgaria  39   male
## 477   171 627.2325 urban location      Plovdiv       Bulgaria  39 female
## 478   171 627.2325 urban location      Plovdiv       Bulgaria  15 female
## 479   171 627.2325 urban location      Plovdiv       Bulgaria   9 female
## 480   171 627.2325           <NA>      Plovdiv       Bulgaria   3 female
## 481   172 627.2325 urban location      Plovdiv       Bulgaria  32   male
## 482   172 627.2325 urban location      Plovdiv       Bulgaria  30 female
## 483   172 627.2325           <NA>      Plovdiv       Bulgaria   6 female
## 484   173 627.2325 urban location      Plovdiv       Bulgaria  79   male
## 485   173 627.2325 urban location      Plovdiv       Bulgaria  76 female
## 486   174 627.2325 urban location      Plovdiv       Bulgaria  34   male
## 487   174 627.2325 urban location      Plovdiv       Bulgaria  29 female
## 488   174 627.2325           <NA>      Plovdiv       Bulgaria   7   male
## 489   174 627.2325           <NA>      Plovdiv       Bulgaria   3 female
## 490   175 627.2325 urban location      Plovdiv       Bulgaria  61   male
## 491   175 627.2325 urban location      Plovdiv       Bulgaria  59 female
## 492   176 627.2325 urban location      Lovetch       Bulgaria  32   male
## 493   176 627.2325 urban location      Lovetch       Bulgaria  27 female
## 494   176 627.2325           <NA>      Lovetch       Bulgaria   2 female
## 495   177 627.2325 urban location      Lovetch       Bulgaria  25 female
## 496   177 627.2325           <NA>      Lovetch       Bulgaria   6   male
## 497   178 627.2325 urban location      Lovetch       Bulgaria  57   male
## 498   178 627.2325 urban location      Lovetch       Bulgaria  51 female
## 499   179 627.2325 urban location      Lovetch       Bulgaria  67   male
## 500   179 627.2325 urban location      Lovetch       Bulgaria  64 female
## 501   180 627.2325 rural location      Plovdiv       Bulgaria  69   male
## 502   180 627.2325 rural location      Plovdiv       Bulgaria  61 female
## 503   180 627.2325 rural location      Plovdiv       Bulgaria  38   male
## 504   181 627.2325 rural location      Plovdiv       Bulgaria  60 female
## 505   181 627.2325 rural location      Plovdiv       Bulgaria  39   male
## 506   182 627.2325 rural location      Plovdiv       Bulgaria  60   male
## 507   182 627.2325 rural location      Plovdiv       Bulgaria  57 female
## 508   182 627.2325 rural location      Plovdiv       Bulgaria  37   male
## 509   183 627.2325 rural location      Plovdiv          Turks  39   male
## 510   183 627.2325 rural location      Plovdiv          Turks  78 female
## 511   184 627.2325 rural location      Plovdiv       Bulgaria  66   male
## 512   184 627.2325 rural location      Plovdiv       Bulgaria  63 female
## 513   184 627.2325 rural location      Plovdiv       Bulgaria  35   male
## 514   184 627.2325 rural location      Plovdiv       Bulgaria  31 female
## 515   184 627.2325 rural location      Plovdiv       Bulgaria   9   male
## 516   184 627.2325           <NA>      Plovdiv       Bulgaria   6   male
## 517   185 627.2325 rural location      Plovdiv       Bulgaria  51   male
## 518   185 627.2325 rural location      Plovdiv       Bulgaria  50 female
## 519   186 627.2325 rural location      Plovdiv       Bulgaria  50 female
## 520   186 627.2325 rural location      Plovdiv       Bulgaria  81 female
## 521   187 627.2325 rural location      Plovdiv       Bulgaria  50   male
## 522   187 627.2325 rural location      Plovdiv       Bulgaria  47 female
## 523   187 627.2325           <NA>      Plovdiv       Bulgaria   2   male
## 524   188 627.2325 rural location      Plovdiv       Bulgaria  61   male
## 525   188 627.2325 rural location      Plovdiv       Bulgaria  62 female
## 526   189 627.2325 rural location     Bourgass       Bulgaria  31 female
## 527   189 627.2325 rural location     Bourgass       Bulgaria  36   male
## 528   189 627.2325 rural location     Bourgass       Bulgaria  13 female
## 529   189 627.2325 rural location     Bourgass       Bulgaria   8 female
## 530   190 627.2325 rural location     Bourgass       Bulgaria  74   male
## 531   190 627.2325 rural location     Bourgass       Bulgaria  74 female
## 532   191 627.2325 rural location     Bourgass       Bulgaria  58   male
## 533   191 627.2325 rural location     Bourgass       Bulgaria  59 female
## 534   192 627.2325 rural location     Bourgass       Bulgaria  74   male
## 535   192 627.2325 rural location     Bourgass       Bulgaria  71 female
## 536   193 627.2325 rural location     Bourgass       Bulgaria  18   male
## 537   194 627.2325 rural location     Bourgass       Bulgaria  63   male
## 538   194 627.2325 rural location     Bourgass       Bulgaria  53 female
## 539   194 627.2325 rural location     Bourgass       Bulgaria  76 female
## 540   194 627.2325 rural location     Bourgass       Bulgaria  88   male
## 541   195 627.2325 rural location     Bourgass       Bulgaria  74 female
## 542   196 627.2325 rural location     Bourgass       Bulgaria  55   male
## 543   196 627.2325 rural location     Bourgass       Bulgaria  27 female
## 544   196 627.2325 rural location     Bourgass       Bulgaria  11 female
## 545   197 627.2325 rural location     Bourgass       Bulgaria  62 female
## 546   197 627.2325 rural location     Bourgass       Bulgaria  70   male
## 547   198 627.2325 rural location       Rousse       Bulgaria  34   male
## 548   198 627.2325 rural location       Rousse       Bulgaria  35 female
## 549   198 627.2325 rural location       Rousse       Bulgaria  10 female
## 550   198 627.2325 rural location       Rousse       Bulgaria  63 female
## 551   199 627.2325 rural location       Rousse       Bulgaria  55 female
## 552   199 627.2325 rural location       Rousse       Bulgaria  84 female
## 553   200 627.2325 rural location       Rousse       Bulgaria  74 female
## 554   201 627.2325 urban location   Sofia city       Bulgaria  35   male
## 555   201 627.2325 urban location   Sofia city       Bulgaria  41 female
## 556   201 627.2325 urban location   Sofia city       Bulgaria  13   male
## 557   202 627.2325 urban location Sofia region       Bulgaria  67 female
## 558   203 627.2325 urban location Sofia region       Bulgaria  32   male
## 559   203 627.2325 urban location Sofia region       Bulgaria  29 female
## 560   203 627.2325 urban location Sofia region       Bulgaria  57   male
## 561   203 627.2325 urban location Sofia region       Bulgaria  56 female
## 562   203 627.2325           <NA> Sofia region       Bulgaria   1 female
## 563   204 627.2325 urban location Sofia region       Bulgaria  41 female
## 564   204 627.2325 urban location Sofia region       Bulgaria  75   male
## 565   204 627.2325 urban location Sofia region       Bulgaria  18   male
## 566   204 627.2325 urban location Sofia region       Bulgaria  13   male
## 567   204 627.2325 urban location Sofia region       Bulgaria  13 female
## 568   205 627.2325 urban location Sofia region       Bulgaria  47   male
## 569   205 627.2325 urban location Sofia region       Bulgaria  44 female
## 570   205 627.2325 urban location Sofia region       Bulgaria  25   male
## 571   206 627.2325 rural location       Rousse       Bulgaria  75   male
## 572   206 627.2325 rural location       Rousse       Bulgaria  74 female
## 573   207 627.2325 urban location       Rousse       Bulgaria  53   male
## 574   207 627.2325 urban location       Rousse       Bulgaria  51 female
## 575   208 627.2325 urban location Sofia region       Bulgaria  43   male
## 576   208 627.2325 urban location Sofia region       Bulgaria  42 female
## 577   208 627.2325 urban location Sofia region       Bulgaria  19 female
## 578   209 627.2325 urban location Sofia region       Bulgaria  31   male
## 579   209 627.2325 urban location Sofia region       Bulgaria  28 female
## 580   209 627.2325 urban location Sofia region       Bulgaria  55 female
## 581   210 627.2325 urban location Sofia region       Bulgaria  72   male
## 582   210 627.2325 urban location Sofia region       Bulgaria  66 female
## 583   210 627.2325 urban location Sofia region       Bulgaria  39   male
## 584   211 627.2325 urban location Sofia region       Bulgaria  59   male
## 585   211 627.2325 urban location Sofia region       Bulgaria  54 female
## 586   212 627.2325 urban location Sofia region           Roma  60   male
## 587   212 627.2325 urban location Sofia region           Roma  60 female
## 588   212 627.2325 urban location Sofia region           Roma  23 female
## 589   212 627.2325 urban location Sofia region           Roma  19 female
## 590   212 627.2325           <NA> Sofia region           Roma   3   male
## 591   212 627.2325           <NA> Sofia region           Roma   1   male
## 592   213 627.2325 urban location Sofia region           Roma  25   male
## 593   213 627.2325 urban location Sofia region           Roma  24 female
## 594   213 627.2325           <NA> Sofia region           Roma   3   male
## 595   213 627.2325           <NA> Sofia region           Roma   0   male
## 596   214 627.2325 urban location Sofia region           Roma  50   male
## 597   214 627.2325 urban location Sofia region           Roma  47 female
## 598   215 627.2325 urban location Sofia region           Roma  32   male
## 599   215 627.2325 urban location Sofia region           Roma  32 female
## 600   215 627.2325 urban location Sofia region           Roma  14   male
## 601   215 627.2325 urban location Sofia region           Roma   9 female
## 602   216 627.2325 rural location     Bourgass       Bulgaria  46   male
## 603   217 627.2325 urban location     Bourgass           Roma  48   male
## 604   217 627.2325 urban location     Bourgass           Roma  48 female
## 605   217 627.2325 urban location     Bourgass           Roma  21 female
## 606   218 627.2325 urban location     Bourgass           Roma  55   male
## 607   218 627.2325 urban location     Bourgass           Roma  49 female
## 608   218 627.2325 urban location     Bourgass           Roma  79 female
## 609   219 627.2325 urban location     Bourgass       Bulgaria  23   male
## 610   219 627.2325 urban location     Bourgass       Bulgaria  21 female
## 611   219 627.2325           <NA>     Bourgass       Bulgaria   1 female
## 612   219 627.2325 urban location     Bourgass       Bulgaria  49   male
## 613   219 627.2325 urban location     Bourgass       Bulgaria  46 female
## 614   220 627.2325 urban location     Bourgass       Bulgaria  50   male
## 615   220 627.2325 urban location     Bourgass       Bulgaria  48 female
## 616   220 627.2325 urban location     Bourgass       Bulgaria  14 female
## 617   221 627.2325 urban location     Bourgass       Bulgaria  52   male
## 618   221 627.2325 urban location     Bourgass       Bulgaria  50 female
## 619   221 627.2325 urban location     Bourgass       Bulgaria  25   male
## 620   221 627.2325 urban location     Bourgass       Bulgaria  22 female
## 621   222 627.2325 urban location     Bourgass       Bulgaria  59   male
## 622   222 627.2325 urban location     Bourgass       Bulgaria  53 female
## 623   223 627.2325 urban location     Bourgass       Bulgaria  56   male
## 624   223 627.2325 urban location     Bourgass       Bulgaria  55 female
## 625   224 627.2325 urban location     Bourgass           Roma  30   male
## 626   224 627.2325 urban location     Bourgass           Roma  30 female
## 627   224 627.2325           <NA>     Bourgass           Roma   4 female
## 628   224 627.2325 urban location     Bourgass           Roma  68   male
## 629   225 627.2325 rural location     Bourgass       Bulgaria  71   male
## 630   225 627.2325 rural location     Bourgass       Bulgaria  69 female
## 631   226 627.2325 rural location     Bourgass       Bulgaria  32 female
## 632   226 627.2325 rural location     Bourgass       Bulgaria  15   male
## 633   226 627.2325 rural location     Bourgass       Bulgaria  10   male
## 634   227 627.2325 rural location       Rousse          Turks  57   male
## 635   227 627.2325 rural location       Rousse          Turks  56 female
## 636   228 627.2325 rural location       Rousse           Roma  41   male
## 637   228 627.2325 rural location       Rousse           Roma  35 female
## 638   228 627.2325 rural location       Rousse           Roma  17   male
## 639   228 627.2325 rural location       Rousse           Roma  16   male
## 640   229 627.2325 rural location       Rousse          Turks  38   male
## 641   229 627.2325 rural location       Rousse          Turks  32 female
## 642   229 627.2325 rural location       Rousse          Turks  13 female
## 643   229 627.2325 rural location       Rousse          Turks   9 female
## 644   230 627.2325 rural location       Rousse          Turks  85 female
## 645   231 627.2325 rural location       Rousse           Roma  87 female
## 646   231 627.2325 rural location       Rousse           Roma  43 female
## 647   231 627.2325 rural location       Rousse           Roma  47   male
## 648   232 627.2325 urban location Sofia region       Bulgaria  36 female
## 649   232 627.2325 urban location Sofia region       Bulgaria  36   male
## 650   232 627.2325 urban location Sofia region       Bulgaria   9 female
## 651   232 627.2325           <NA> Sofia region       Bulgaria   6   male
## 652   233 627.2325 rural location     Bourgass       Bulgaria  48   male
## 653   233 627.2325 rural location     Bourgass       Bulgaria  24 female
## 654   233 627.2325 rural location     Bourgass       Bulgaria  27   male
## 655   233 627.2325           <NA>     Bourgass       Bulgaria   1 female
## 656   233 627.2325           <NA>     Bourgass       Bulgaria   2 female
## 657   233 627.2325 rural location     Bourgass       Bulgaria  43 female
## 658   234 627.2325 urban location      Lovetch       Bulgaria  57   male
## 659   234 627.2325 urban location      Lovetch       Bulgaria  52 female
## 660   234 627.2325 urban location      Lovetch       Bulgaria  24 female
## 661   235 627.2325 urban location      Lovetch       Bulgaria  73 female
## 662   235 627.2325 urban location      Lovetch       Bulgaria  48   male
## 663   235 627.2325 urban location      Lovetch       Bulgaria  60 female
## 664   235 627.2325 urban location      Lovetch       Bulgaria  20 female
## 665   236 627.2325 urban location      Lovetch       Bulgaria  68   male
## 666   236 627.2325 urban location      Lovetch       Bulgaria  65 female
## 667   236 627.2325 urban location      Lovetch       Bulgaria  42   male
## 668   236 627.2325 urban location      Lovetch       Bulgaria  42 female
## 669   236 627.2325 urban location      Lovetch       Bulgaria   8 female
## 670   236 627.2325 urban location      Lovetch       Bulgaria  35   male
## 671   237 627.2325 urban location      Lovetch       Bulgaria  54 female
## 672   237 627.2325 urban location      Lovetch       Bulgaria  33 female
## 673   238 627.2325 urban location      Lovetch       Bulgaria  55   male
## 674   238 627.2325 urban location      Lovetch       Bulgaria  47 female
## 675   238 627.2325 urban location      Lovetch       Bulgaria  22 female
## 676   238 627.2325 urban location      Lovetch       Bulgaria  20 female
## 677   239 627.2325 urban location      Montana       Bulgaria  71 female
## 678   239 627.2325 urban location      Montana       Bulgaria  76   male
## 679   239 627.2325 urban location      Montana       Bulgaria  11   male
## 680   239 627.2325 urban location      Montana       Bulgaria   9   male
## 681   240 627.2325 urban location      Montana       Bulgaria  32 female
## 682   240 627.2325 urban location      Montana       Bulgaria  37   male
## 683   240 627.2325 urban location      Montana       Bulgaria   9   male
## 684   240 627.2325 urban location      Montana       Bulgaria  59   male
## 685   241 627.2325 urban location      Montana       Bulgaria  35 female
## 686   241 627.2325 urban location      Montana       Bulgaria  61 female
## 687   242 627.2325 rural location      Montana       Bulgaria  45   male
## 688   242 627.2325 rural location      Montana       Bulgaria  41 female
## 689   242 627.2325 rural location      Montana       Bulgaria  22   male
## 690   242 627.2325 rural location      Montana       Bulgaria  16   male
## 691   243 627.2325 rural location      Montana       Bulgaria  57   male
## 692   243 627.2325 rural location      Montana       Bulgaria  51 female
## 693   244 627.2325 rural location      Montana       Bulgaria  87 female
## 694   245 627.2325 rural location      Montana       Bulgaria  81 female
## 695   246 627.2325 rural location       Rousse       Bulgaria  57   male
## 696   246 627.2325 rural location       Rousse       Bulgaria  88 female
## 697   247 627.2325 urban location       Rousse       Bulgaria  65   male
## 698   247 627.2325 urban location       Rousse       Bulgaria  61 female
## 699   248 627.2325 urban location Sofia region       Bulgaria  66 female
## 700   249 627.2325 urban location Sofia region       Bulgaria  68 female
## 701   249 627.2325 urban location Sofia region       Bulgaria  31   male
## 702   250 627.2325 urban location Sofia region       Bulgaria  54 female
## 703   250 627.2325 urban location Sofia region       Bulgaria  77 female
## 704   251 627.2325 rural location     Bourgass       Bulgaria  47   male
## 705   251 627.2325 rural location     Bourgass       Bulgaria  45 female
## 706   251 627.2325 rural location     Bourgass       Bulgaria  26 female
## 707   251 627.2325 rural location     Bourgass       Bulgaria  24   male
## 708   252 627.2325 rural location     Bourgass       Bulgaria  27 female
## 709   252 627.2325           <NA>     Bourgass       Bulgaria   7 female
## 710   253 627.2325 urban location     Bourgass           Roma  51   male
## 711   253 627.2325 urban location     Bourgass           Roma  44 female
## 712   254 627.2325 rural location     Bourgass       Bulgaria  82 female
## 713   255 627.2325 rural location     Bourgass       Bulgaria  80   male
## 714   256 627.2325 rural location     Bourgass       Bulgaria  67   male
## 715   257 627.2325 rural location       Rousse       Bulgaria  64   male
## 716   257 627.2325 rural location       Rousse       Bulgaria  82 female
## 717   258 627.2325 urban location       Rousse       Bulgaria  57   male
## 718   258 627.2325 urban location       Rousse       Bulgaria  57 female
## 719   258 627.2325 urban location       Rousse       Bulgaria  30   male
## 720   259 627.2325 urban location      Montana       Bulgaria  66   male
## 721   259 627.2325 urban location      Montana       Bulgaria  61 female
## 722   259 627.2325 urban location      Montana       Bulgaria  40 female
## 723   259 627.2325 urban location      Montana       Bulgaria  17   male
## 724   260 627.2325 urban location      Montana       Bulgaria  59   male
## 725   260 627.2325 urban location      Montana       Bulgaria  56 female
## 726   261 627.2325 urban location      Montana       Bulgaria  57   male
## 727   261 627.2325 urban location      Montana       Bulgaria  57 female
## 728   261 627.2325 urban location      Montana       Bulgaria  29   male
## 729   262 627.2325 urban location      Montana       Bulgaria  54 female
## 730   262 627.2325 urban location      Montana       Bulgaria  56   male
## 731   262 627.2325 urban location      Montana       Bulgaria  75 female
## 732   262 627.2325 urban location      Montana       Bulgaria  22   male
## 733   262 627.2325 urban location      Montana       Bulgaria  33   male
## 734   263 627.2325 rural location      Haskovo           Roma  66   male
## 735   263 627.2325 rural location      Haskovo           Roma  63 female
## 736   264 627.2325 rural location Sofia region       Bulgaria  78   male
## 737   264 627.2325 rural location Sofia region       Bulgaria  77 female
## 738   265 627.2325 rural location Sofia region       Bulgaria  71 female
## 739   266 627.2325 rural location Sofia region       Bulgaria  72   male
## 740   266 627.2325 rural location Sofia region       Bulgaria  72 female
## 741   267 627.2325 rural location Sofia region       Bulgaria  71   male
## 742   267 627.2325 rural location Sofia region       Bulgaria  74 female
## 743   268 627.2325 urban location      Montana           Roma  48   male
## 744   268 627.2325 urban location      Montana           Roma  53 female
## 745   268 627.2325 urban location      Montana           Roma  51   male
## 746   269 627.2325 rural location Sofia region       Bulgaria  65   male
## 747   269 627.2325 rural location Sofia region       Bulgaria  61 female
## 748   269 627.2325 rural location Sofia region       Bulgaria  87 female
## 749   270 627.2325 rural location Sofia region       Bulgaria  36   male
## 750   270 627.2325 rural location Sofia region       Bulgaria  34 female
## 751   270 627.2325 rural location Sofia region       Bulgaria  77 female
## 752   270 627.2325 rural location Sofia region       Bulgaria  12   male
## 753   270 627.2325 rural location Sofia region       Bulgaria  11 female
## 754   271 627.2325 urban location        Varna       Bulgaria  52 female
## 755   271 627.2325 urban location        Varna       Bulgaria  22   male
## 756   271 627.2325 urban location        Varna       Bulgaria  72 female
## 757   272 627.2325 urban location        Varna       Bulgaria  67 female
## 758   273 627.2325 rural location     Bourgass       Bulgaria  57   male
## 759   273 627.2325 rural location     Bourgass       Bulgaria  79 female
## 760   274 627.2325 rural location     Bourgass       Bulgaria  69 female
## 761   274 627.2325 rural location     Bourgass       Bulgaria  44   male
## 762   274 627.2325 rural location     Bourgass       Bulgaria  40 female
## 763   274 627.2325 rural location     Bourgass       Bulgaria  21   male
## 764   275 627.2325 urban location      Plovdiv       Bulgaria  87   male
## 765   275 627.2325 urban location      Plovdiv       Bulgaria  79 female
## 766   276 627.2325 urban location      Plovdiv       Bulgaria  63   male
## 767   276 627.2325 urban location      Plovdiv       Bulgaria  60 female
## 768   276 627.2325 urban location      Plovdiv       Bulgaria  34   male
## 769   277 627.2325 rural location      Lovetch       Bulgaria  83 female
## 770   277 627.2325 rural location      Lovetch       Bulgaria  65   male
## 771   278 627.2325 rural location      Lovetch       Bulgaria  63   male
## 772   278 627.2325 rural location      Lovetch       Bulgaria  58 female
## 773   279 627.2325 rural location      Haskovo          Turks  74 female
## 774   280 627.2325 urban location      Montana       Bulgaria  53   male
## 775   280 627.2325 urban location      Montana       Bulgaria  56 female
## 776   281 627.2325 urban location      Montana       Bulgaria  73   male
## 777   281 627.2325 urban location      Montana       Bulgaria  63 female
## 778   282 627.2325 rural location      Montana       Bulgaria  73 female
## 779   283 627.2325 urban location Sofia region       Bulgaria  59   male
## 780   283 627.2325 urban location Sofia region       Bulgaria  57 female
## 781   284 627.2325 urban location      Plovdiv       Bulgaria  75 female
## 782   285 627.2325 urban location      Plovdiv       Bulgaria  67   male
## 783   285 627.2325 urban location      Plovdiv       Bulgaria  62 female
## 784   286 627.2325 rural location      Lovetch       Bulgaria  64   male
## 785   286 627.2325 rural location      Lovetch       Bulgaria  62 female
## 786   287 627.2325 rural location      Lovetch       Bulgaria  81   male
## 787   288 627.2325 rural location      Lovetch       Bulgaria  70 female
## 788   288 627.2325 rural location      Lovetch       Bulgaria  87 female
## 789   288 627.2325 rural location      Lovetch       Bulgaria  20   male
## 790   289 627.2325 urban location      Plovdiv           Roma  48   male
## 791   289 627.2325 urban location      Plovdiv           Roma  45 female
## 792   289 627.2325 urban location      Plovdiv           Roma  23   male
## 793   289 627.2325 urban location      Plovdiv           Roma  13 female
## 794   290 627.2325 urban location      Plovdiv       Bulgaria  47 female
## 795   290 627.2325 urban location      Plovdiv       Bulgaria  53   male
## 796   290 627.2325 urban location      Plovdiv       Bulgaria  26   male
## 797   291 627.2325 urban location      Lovetch       Bulgaria  43   male
## 798   291 627.2325 urban location      Lovetch       Bulgaria  41 female
## 799   291 627.2325 urban location      Lovetch       Bulgaria  16   male
## 800   292 627.2325 urban location      Lovetch       Bulgaria  78 female
## 801   293 627.2325 rural location      Lovetch       Bulgaria  60 female
## 802   293 627.2325           <NA>      Lovetch       Bulgaria  31   male
## 803   294 627.2325 urban location      Lovetch       Bulgaria  70   male
## 804   294 627.2325 urban location      Lovetch       Bulgaria  67 female
## 805   295 627.2325 urban location      Lovetch       Bulgaria  68 female
## 806   296 627.2325 rural location       Rousse       Bulgaria  77   male
## 807   296 627.2325 rural location       Rousse       Bulgaria  79 female
## 808   297 627.2325 urban location Sofia region       Bulgaria  36   male
## 809   297 627.2325 urban location Sofia region       Bulgaria  29 female
## 810   297 627.2325 urban location Sofia region       Bulgaria   7   male
## 811   298 627.2325 rural location     Bourgass       Bulgaria  34   male
## 812   298 627.2325 rural location     Bourgass       Bulgaria  34 female
## 813   298 627.2325 rural location     Bourgass       Bulgaria  15 female
## 814   299 627.2325 urban location Sofia region       Bulgaria  65   male
## 815   299 627.2325 urban location Sofia region       Bulgaria  63 female
## 816   300 627.2325 urban location Sofia region       Bulgaria  53   male
## 817   300 627.2325 urban location Sofia region       Bulgaria  47 female
## 818   300 627.2325 urban location Sofia region       Bulgaria  19   male
## 819   300 627.2325 urban location Sofia region       Bulgaria  18   male
## 820   301 627.2325 urban location Sofia region       Bulgaria  58   male
## 821   301 627.2325 urban location Sofia region       Bulgaria  55 female
## 822   301 627.2325 urban location Sofia region       Bulgaria  30   male
## 823   302 627.2325 urban location Sofia region       Bulgaria  30   male
## 824   302 627.2325 urban location Sofia region       Bulgaria  26 female
## 825   302 627.2325           <NA> Sofia region       Bulgaria   3 female
## 826   302 627.2325           <NA> Sofia region       Bulgaria   0   male
## 827   303 627.2325 urban location Sofia region           Roma  63   male
## 828   303 627.2325 urban location Sofia region           Roma  63 female
## 829   303 627.2325 urban location Sofia region           Roma  44   male
## 830   303 627.2325 urban location Sofia region           Roma  39 female
## 831   303 627.2325 urban location Sofia region           Roma  20   male
## 832   304 627.2325 urban location Sofia region          Other  53   male
## 833   304 627.2325 urban location Sofia region          Other  51 female
## 834   304 627.2325 urban location Sofia region          Other  31 female
## 835   304 627.2325 urban location Sofia region          Other  23   male
## 836   304 627.2325 urban location Sofia region          Other  15 female
## 837   305 627.2325 urban location Sofia region       Bulgaria  69   male
## 838   305 627.2325 urban location Sofia region       Bulgaria  62 female
## 839   306 627.2325 urban location Sofia region       Bulgaria  59   male
## 840   306 627.2325 urban location Sofia region       Bulgaria  51 female
## 841   306 627.2325 urban location Sofia region       Bulgaria  24   male
## 842   306 627.2325 urban location Sofia region       Bulgaria   9   male
## 843   307 627.2325 urban location Sofia region       Bulgaria  62   male
## 844   307 627.2325 urban location Sofia region       Bulgaria  65 female
## 845   307 627.2325 urban location Sofia region       Bulgaria  33   male
## 846   308 627.2325 urban location Sofia region       Bulgaria  60   male
## 847   309 627.2325 urban location      Plovdiv           Roma  68   male
## 848   309 627.2325 urban location      Plovdiv           Roma  64 female
## 849   309 627.2325 urban location      Plovdiv           Roma  45   male
## 850   309 627.2325 urban location      Plovdiv           Roma  45 female
## 851   309 627.2325 urban location      Plovdiv           Roma  42   male
## 852   309 627.2325 urban location      Plovdiv           Roma  37 female
## 853   309 627.2325 urban location      Plovdiv           Roma  19 female
## 854   309 627.2325 urban location      Plovdiv           Roma  18 female
## 855   309 627.2325 urban location      Plovdiv           Roma  17   male
## 856   309 627.2325 urban location      Plovdiv           Roma  39 female
## 857   310 627.2325 urban location      Plovdiv       Bulgaria  32   male
## 858   310 627.2325 urban location      Plovdiv       Bulgaria  27 female
## 859   310 627.2325 urban location      Plovdiv       Bulgaria  75 female
## 860   310 627.2325 urban location      Plovdiv       Bulgaria  17   male
## 861   310 627.2325 urban location      Plovdiv       Bulgaria  17   male
## 862   310 627.2325 urban location      Plovdiv       Bulgaria  30   male
## 863   310 627.2325           <NA>      Plovdiv       Bulgaria   5   male
## 864   311 627.2325 urban location      Plovdiv       Bulgaria  45 female
## 865   311 627.2325 urban location      Plovdiv       Bulgaria  48   male
## 866   311 627.2325 urban location      Plovdiv       Bulgaria  25 female
## 867   311 627.2325 urban location      Plovdiv       Bulgaria  19   male
## 868   312 627.2325 urban location      Plovdiv       Bulgaria  38   male
## 869   312 627.2325 urban location      Plovdiv       Bulgaria  38 female
## 870   312 627.2325 urban location      Plovdiv       Bulgaria  18 female
## 871   312 627.2325 urban location      Plovdiv       Bulgaria  15 female
## 872   312 627.2325 urban location      Plovdiv       Bulgaria  11 female
## 873   313 627.2325 urban location      Plovdiv       Bulgaria  48   male
## 874   313 627.2325 urban location      Plovdiv       Bulgaria  35 female
## 875   314 627.2325 urban location      Plovdiv       Bulgaria  77   male
## 876   314 627.2325 urban location      Plovdiv       Bulgaria  73 female
## 877   315 627.2325 urban location       Rousse       Bulgaria  78   male
## 878   315 627.2325 urban location       Rousse       Bulgaria  72 female
## 879   316 627.2325 urban location       Rousse          Turks  63 female
## 880   316 627.2325 urban location       Rousse          Turks  71   male
## 881   316 627.2325 urban location       Rousse          Turks  84 female
## 882   317 627.2325 urban location       Rousse       Bulgaria  51   male
## 883   317 627.2325 urban location       Rousse       Bulgaria  46 female
## 884   317 627.2325 urban location       Rousse       Bulgaria  26 female
## 885   317 627.2325 urban location       Rousse       Bulgaria  24   male
## 886   317 627.2325 urban location       Rousse       Bulgaria  77 female
## 887   318 627.2325 urban location       Rousse       Bulgaria  57   male
## 888   318 627.2325 urban location       Rousse       Bulgaria  53 female
## 889   318 627.2325 urban location       Rousse       Bulgaria  22 female
## 890   319 627.2325 urban location       Rousse       Bulgaria  78   male
## 891   320 627.2325 urban location     Bourgass       Bulgaria  34 female
## 892   320 627.2325 urban location     Bourgass       Bulgaria  36   male
## 893   320 627.2325 urban location     Bourgass       Bulgaria  14 female
## 894   320 627.2325 urban location     Bourgass       Bulgaria  61 female
## 895   321 627.2325 urban location     Bourgass       Bulgaria  23 female
## 896   321 627.2325 urban location     Bourgass       Bulgaria  37   male
## 897   321 627.2325           <NA>     Bourgass       Bulgaria   2 female
## 898   322 627.2325 urban location     Bourgass       Bulgaria  52 female
## 899   322 627.2325 urban location     Bourgass       Bulgaria  52   male
## 900   322 627.2325 urban location     Bourgass       Bulgaria  27   male
## 901   323 627.2325 urban location     Bourgass       Bulgaria  78 female
## 902   323 627.2325 urban location     Bourgass       Bulgaria  76   male
## 903   324 627.2325 urban location     Bourgass       Bulgaria  38 female
## 904   324 627.2325 urban location     Bourgass       Bulgaria  41   male
## 905   324 627.2325 urban location     Bourgass       Bulgaria  17 female
## 906   324 627.2325 urban location     Bourgass       Bulgaria  10   male
## 907   325 627.2325 urban location     Bourgass       Bulgaria  25   male
## 908   325 627.2325 urban location     Bourgass       Bulgaria  25 female
## 909   326 627.2325 urban location     Bourgass       Bulgaria  36   male
## 910   326 627.2325 urban location     Bourgass       Bulgaria  30 female
## 911   326 627.2325           <NA>     Bourgass       Bulgaria   5   male
## 912   327 627.2325 urban location     Bourgass       Bulgaria  64   male
## 913   327 627.2325 urban location     Bourgass       Bulgaria  56 female
## 914   328 627.2325 rural location       Rousse       Bulgaria  67 female
## 915   329 627.2325 rural location       Rousse       Bulgaria  73   male
## 916   330 627.2325 rural location       Rousse       Bulgaria  70 female
## 917   331 627.2325 rural location       Rousse       Bulgaria  73   male
## 918   332 627.2325 urban location      Lovetch          Other  51 female
## 919   332 627.2325           <NA>      Lovetch          Other  30   male
## 920   333 627.2325 urban location      Lovetch       Bulgaria  60   male
## 921   333 627.2325           <NA>      Lovetch       Bulgaria  58 female
## 922   334 627.2325 urban location      Lovetch       Bulgaria  47   male
## 923   334 627.2325 urban location      Lovetch       Bulgaria  42 female
## 924   334 627.2325 urban location      Lovetch       Bulgaria  21 female
## 925   334 627.2325 urban location      Lovetch       Bulgaria  12   male
## 926   335 627.2325 urban location      Montana       Bulgaria  31   male
## 927   335 627.2325 urban location      Montana       Bulgaria  32 female
## 928   335 627.2325           <NA>      Montana       Bulgaria   7 female
## 929   335 627.2325           <NA>      Montana       Bulgaria   2 female
## 930   336 627.2325 urban location      Montana       Bulgaria  80   male
## 931   336 627.2325 urban location      Montana       Bulgaria  77 female
## 932   337 627.2325 urban location      Montana       Bulgaria  53   male
## 933   337 627.2325 urban location      Montana       Bulgaria  51 female
## 934   337 627.2325 urban location      Montana       Bulgaria  75 female
## 935   338 627.2325 urban location Sofia region       Bulgaria  73   male
## 936   338 627.2325 urban location Sofia region       Bulgaria  66 female
## 937   338 627.2325 urban location Sofia region       Bulgaria  36 female
## 938   339 627.2325 urban location Sofia region       Bulgaria  38   male
## 939   339 627.2325 urban location Sofia region       Bulgaria  38 female
## 940   339 627.2325 urban location Sofia region       Bulgaria  12   male
## 941   339 627.2325           <NA> Sofia region       Bulgaria   3 female
## 942   340 627.2325 urban location Sofia region       Bulgaria  50   male
## 943   340 627.2325 urban location Sofia region       Bulgaria  49 female
## 944   340 627.2325 urban location Sofia region       Bulgaria  24 female
## 945   341 627.2325 urban location Sofia region       Bulgaria  62   male
## 946   341 627.2325 urban location Sofia region       Bulgaria  59 female
## 947   342 627.2325 urban location      Haskovo       Bulgaria  74   male
## 948   342 627.2325 urban location      Haskovo       Bulgaria  73 female
## 949   343 627.2325 urban location      Haskovo       Bulgaria  72   male
## 950   343 627.2325 urban location      Haskovo       Bulgaria  66 female
## 951   344 627.2325 urban location      Haskovo       Bulgaria  40   male
## 952   344 627.2325 urban location      Haskovo       Bulgaria  40 female
## 953   344 627.2325 urban location      Haskovo       Bulgaria  67 female
## 954   344 627.2325 urban location      Haskovo       Bulgaria  12   male
## 955   344 627.2325           <NA>      Haskovo       Bulgaria   7 female
## 956   345 627.2325 urban location      Haskovo       Bulgaria  62   male
## 957   345 627.2325 urban location      Haskovo       Bulgaria  64 female
## 958   346 627.2325 urban location      Haskovo       Bulgaria  74   male
## 959   346 627.2325 urban location      Haskovo       Bulgaria  78 female
## 960   347 627.2325 urban location      Plovdiv       Bulgaria  59   male
## 961   347 627.2325 urban location      Plovdiv       Bulgaria  50 female
## 962   348 627.2325 urban location      Plovdiv       Bulgaria  54   male
## 963   348 627.2325 urban location      Plovdiv       Bulgaria  50 female
## 964   349 627.2325 urban location       Rousse       Bulgaria  68   male
## 965   349 627.2325 urban location       Rousse       Bulgaria  68 female
## 966   350 627.2325 urban location       Rousse           Roma  70 female
## 967   350 627.2325 urban location       Rousse           Roma  39 female
## 968   350 627.2325 urban location       Rousse           Roma  35   male
## 969   350 627.2325           <NA>       Rousse           Roma   5 female
## 970   350 627.2325           <NA>       Rousse           Roma  18   male
## 971   351 627.2325 rural location      Montana       Bulgaria  74   male
## 972   351 627.2325 rural location      Montana       Bulgaria  69 female
## 973   352 627.2325 urban location       Rousse       Bulgaria  41 female
## 974   352 627.2325 urban location       Rousse       Bulgaria  22   male
## 975   352 627.2325 urban location       Rousse       Bulgaria  57   male
## 976   353 627.2325 urban location     Bourgass           Roma  24   male
## 977   353 627.2325 urban location     Bourgass           Roma  25 female
## 978   353 627.2325 urban location     Bourgass           Roma   8 female
## 979   353 627.2325           <NA>     Bourgass           Roma   3 female
## 980   354 627.2325 urban location     Bourgass           Roma  52 female
## 981   355 627.2325 urban location     Bourgass           Roma  45   male
## 982   355 627.2325 urban location     Bourgass           Roma  40 female
## 983   355 627.2325 urban location     Bourgass           Roma  15 female
## 984   356 627.2325 rural location     Bourgass       Bulgaria  71 female
## 985   356 627.2325 rural location     Bourgass       Bulgaria  77   male
## 986   357 627.2325 rural location     Bourgass       Bulgaria  65 female
## 987   357 627.2325 rural location     Bourgass       Bulgaria  39   male
## 988   357 627.2325 rural location     Bourgass       Bulgaria  16   male
## 989   357 627.2325 rural location     Bourgass       Bulgaria  13 female
## 990   358 627.2325 rural location     Bourgass       Bulgaria  72 female
## 991   359 627.2325 urban location        Varna       Bulgaria  66   male
## 992   359 627.2325 urban location        Varna       Bulgaria  70 female
## 993   360 627.2325 urban location        Varna       Bulgaria  65 female
## 994   360 627.2325 urban location        Varna       Bulgaria  43   male
## 995   360 627.2325 urban location        Varna       Bulgaria  34 female
## 996   360 627.2325 urban location        Varna       Bulgaria  30   male
## 997   361 627.2325 urban location        Varna       Bulgaria  77 female
## 998   361 627.2325 urban location        Varna       Bulgaria  34 female
## 999   361 627.2325 urban location        Varna       Bulgaria  13 female
## 1000  362 627.2325 urban location        Varna       Bulgaria  65 female
## 1001  362 627.2325 urban location        Varna       Bulgaria  34   male
## 1002  363 627.2325 rural location       Rousse       Bulgaria  71   male
## 1003  363 627.2325 rural location       Rousse       Bulgaria  68 female
## 1004  364 627.2325 urban location        Varna           Roma  36   male
## 1005  364 627.2325 urban location        Varna           Roma  44 female
## 1006  364 627.2325 urban location        Varna           Roma  23   male
## 1007  364 627.2325 urban location        Varna           Roma  25   male
## 1008  365 627.2325 urban location        Varna          Other  62 female
## 1009  365 627.2325 urban location        Varna          Other  36   male
## 1010  365 627.2325 urban location        Varna          Other  33   male
## 1011  366 627.2325 urban location      Lovetch       Bulgaria  31   male
## 1012  366 627.2325 urban location      Lovetch       Bulgaria  28 female
## 1013  366 627.2325 urban location      Lovetch       Bulgaria   7 female
## 1014  366 627.2325           <NA>      Lovetch       Bulgaria   6   male
## 1015  367 627.2325 urban location      Lovetch       Bulgaria  73   male
## 1016  367 627.2325 urban location      Lovetch       Bulgaria  63 female
## 1017  367 627.2325 urban location      Lovetch       Bulgaria  33   male
## 1018  367 627.2325           <NA>      Lovetch       Bulgaria   5 female
## 1019  368 627.2325 urban location     Bourgass       Bulgaria  49   male
## 1020  368 627.2325 urban location     Bourgass       Bulgaria  74 female
## 1021  368 627.2325 urban location     Bourgass       Bulgaria  30 female
## 1022  368 627.2325 urban location     Bourgass       Bulgaria  28 female
## 1023  368 627.2325 urban location     Bourgass       Bulgaria  22   male
## 1024  368 627.2325 urban location     Bourgass       Bulgaria  10 female
## 1025  368 627.2325 urban location     Bourgass       Bulgaria   8 female
## 1026  369 627.2325 urban location       Rousse       Bulgaria  79   male
## 1027  369 627.2325 urban location       Rousse       Bulgaria  80 female
## 1028  369 627.2325 urban location       Rousse       Bulgaria  49   male
## 1029  369 627.2325 urban location       Rousse       Bulgaria  38 female
## 1030  369 627.2325 urban location       Rousse       Bulgaria  25 female
## 1031  370 627.2325 urban location        Varna       Bulgaria  47   male
## 1032  370 627.2325 urban location        Varna       Bulgaria  40 female
## 1033  370 627.2325 urban location        Varna       Bulgaria  21 female
## 1034  370 627.2325 urban location        Varna       Bulgaria  19 female
## 1035  371 627.2325 urban location        Varna       Bulgaria  44   male
## 1036  371 627.2325 urban location        Varna       Bulgaria  29 female
## 1037  371 627.2325           <NA>        Varna       Bulgaria   1   male
## 1038  371 627.2325 urban location        Varna       Bulgaria  61 female
## 1039  371 627.2325 urban location        Varna       Bulgaria  58   male
## 1040  372 627.2325 urban location       Rousse       Bulgaria  60   male
## 1041  372 627.2325 urban location       Rousse       Bulgaria  58 female
## 1042  372 627.2325 urban location       Rousse       Bulgaria  86 female
## 1043  372 627.2325           <NA>       Rousse       Bulgaria  33 female
## 1044  373 627.2325 urban location        Varna       Bulgaria  47   male
## 1045  373 627.2325 urban location        Varna       Bulgaria  41 female
## 1046  374 627.2325 urban location        Varna       Bulgaria  63   male
## 1047  374 627.2325 urban location        Varna       Bulgaria  61 female
## 1048  375 627.2325 urban location        Varna       Bulgaria  76 female
## 1049  376 627.2325 urban location        Varna       Bulgaria  80 female
## 1050  377 627.2325 urban location        Varna       Bulgaria  55   male
## 1051  377 627.2325 urban location        Varna       Bulgaria  51 female
## 1052  377 627.2325 urban location        Varna       Bulgaria  30 female
## 1053  378 627.2325 urban location      Haskovo       Bulgaria  52   male
## 1054  378 627.2325 urban location      Haskovo       Bulgaria  46 female
## 1055  378 627.2325 urban location      Haskovo       Bulgaria  76 female
## 1056  378 627.2325 urban location      Haskovo       Bulgaria  10   male
## 1057  379 627.2325 urban location      Lovetch       Bulgaria  53   male
## 1058  379 627.2325 urban location      Lovetch       Bulgaria  50 female
## 1059  379 627.2325 urban location      Lovetch       Bulgaria  25   male
## 1060  379 627.2325 urban location      Lovetch       Bulgaria  25   male
## 1061  380 627.2325 rural location      Plovdiv       Bulgaria  55   male
## 1062  380 627.2325 rural location      Plovdiv       Bulgaria  52 female
## 1063  380 627.2325 rural location      Plovdiv       Bulgaria  24   male
## 1064  381 627.2325 rural location      Lovetch       Bulgaria  56   male
## 1065  381 627.2325 rural location      Lovetch       Bulgaria  50 female
## 1066  381 627.2325 rural location      Lovetch       Bulgaria  19   male
## 1067  381 627.2325 rural location      Lovetch       Bulgaria  74 female
## 1068  382 627.2325 urban location        Varna       Bulgaria  51   male
## 1069  382 627.2325 urban location        Varna       Bulgaria  49 female
## 1070  382 627.2325 urban location        Varna       Bulgaria  23 female
## 1071  383 627.2325 urban location        Varna       Bulgaria  73   male
## 1072  383 627.2325 urban location        Varna       Bulgaria  66 female
## 1073  383 627.2325 urban location        Varna       Bulgaria  40 female
## 1074  384 627.2325 rural location Sofia region       Bulgaria  38   male
## 1075  384 627.2325 rural location Sofia region       Bulgaria  37 female
## 1076  384 627.2325 rural location Sofia region       Bulgaria  15 female
## 1077  384 627.2325 rural location Sofia region       Bulgaria  13 female
## 1078  384 627.2325 rural location Sofia region       Bulgaria  10   male
## 1079  385 627.2325 rural location Sofia region       Bulgaria  66   male
## 1080  385 627.2325 rural location Sofia region       Bulgaria  61 female
## 1081  386 627.2325 rural location Sofia region           Roma  66   male
## 1082  386 627.2325 rural location Sofia region           Roma  62 female
## 1083  387 627.2325 urban location Sofia region       Bulgaria  74 female
## 1084  388 627.2325 urban location        Varna          Turks  32   male
## 1085  388 627.2325 urban location        Varna          Turks  35 female
## 1086  388 627.2325           <NA>        Varna          Turks   4   male
## 1087  389 627.2325 urban location        Varna          Turks  75 female
## 1088  389 627.2325 urban location        Varna          Turks  17 female
## 1089  390 627.2325 rural location        Varna          Turks  74 female
## 1090  391 627.2325 rural location     Bourgass       Bulgaria  85 female
## 1091  392 627.2325 rural location     Bourgass       Bulgaria  80   male
## 1092  393 627.2325 rural location     Bourgass       Bulgaria  57   male
## 1093  393 627.2325 rural location     Bourgass       Bulgaria  52 female
## 1094  393 627.2325 rural location     Bourgass       Bulgaria  27   male
## 1095  394 627.2325 rural location        Varna          Turks  30   male
## 1096  394 627.2325 rural location        Varna          Turks  26 female
## 1097  394 627.2325           <NA>        Varna          Turks   4 female
## 1098  395 627.2325 urban location        Varna           Roma  49   male
## 1099  395 627.2325 urban location        Varna           Roma  49 female
## 1100  395 627.2325 urban location        Varna           Roma  26   male
## 1101  395 627.2325 urban location        Varna           Roma  24   male
## 1102  395 627.2325 urban location        Varna           Roma  21 female
## 1103  396 627.2325 rural location        Varna          Turks  49 female
## 1104  396 627.2325 rural location        Varna          Turks  47   male
## 1105  396 627.2325 rural location        Varna          Turks  19   male
## 1106  397 627.2325 urban location        Varna           Roma  49   male
## 1107  397 627.2325 urban location        Varna           Roma  48 female
## 1108  397 627.2325 urban location        Varna           Roma  28   male
## 1109  397 627.2325 urban location        Varna           Roma  27   male
## 1110  397 627.2325 urban location        Varna           Roma  26 female
## 1111  397 627.2325 urban location        Varna           Roma  24 female
## 1112  397 627.2325           <NA>        Varna           Roma   6   male
## 1113  397 627.2325           <NA>        Varna           Roma   4   male
## 1114  398 627.2325 rural location        Varna          Turks  71   male
## 1115  398 627.2325 rural location        Varna          Turks  66 female
## 1116  399 627.2325 urban location     Bourgass       Bulgaria  66   male
## 1117  399 627.2325 urban location     Bourgass       Bulgaria  61 female
## 1118  399 627.2325 urban location     Bourgass       Bulgaria  36 female
## 1119  400 627.2325 rural location      Montana       Bulgaria  74   male
## 1120  400 627.2325 rural location      Montana       Bulgaria  73 female
## 1121  401 627.2325 rural location      Plovdiv       Bulgaria  54   male
## 1122  401 627.2325 rural location      Plovdiv       Bulgaria  49 female
## 1123  402 627.2325 urban location        Varna       Bulgaria  55   male
## 1124  402 627.2325 urban location        Varna       Bulgaria  53 female
## 1125  403 627.2325 urban location        Varna       Bulgaria  32   male
## 1126  403 627.2325 urban location        Varna       Bulgaria  34 female
## 1127  404 627.2325 urban location Sofia region       Bulgaria  54   male
## 1128  404 627.2325 urban location Sofia region       Bulgaria  50 female
## 1129  404 627.2325 urban location Sofia region       Bulgaria  27   male
## 1130  404 627.2325 urban location Sofia region       Bulgaria  25 female
## 1131  404 627.2325           <NA> Sofia region       Bulgaria   3   male
## 1132  405 627.2325 urban location     Bourgass       Bulgaria  60 female
## 1133  406 627.2325 urban location      Plovdiv       Bulgaria  27   male
## 1134  406 627.2325 urban location      Plovdiv       Bulgaria  25 female
## 1135  406 627.2325           <NA>      Plovdiv       Bulgaria   1 female
## 1136  407 627.2325 urban location      Plovdiv       Bulgaria  53   male
## 1137  407 627.2325 urban location      Plovdiv       Bulgaria  51 female
## 1138  407 627.2325 urban location      Plovdiv       Bulgaria  24   male
## 1139  408 627.2325 urban location   Sofia city       Bulgaria  57 female
## 1140  408 627.2325 urban location   Sofia city       Bulgaria  57   male
## 1141  408 627.2325 urban location   Sofia city       Bulgaria  28   male
## 1142  408 627.2325 urban location   Sofia city       Bulgaria  21   male
## 1143  409 627.2325 urban location       Rousse       Bulgaria  60   male
## 1144  409 627.2325 urban location       Rousse       Bulgaria  56 female
## 1145  409 627.2325 urban location       Rousse       Bulgaria  22   male
## 1146  410 627.2325 rural location       Rousse           Roma  30   male
## 1147  410 627.2325 rural location       Rousse           Roma  32 female
## 1148  410 627.2325           <NA>       Rousse           Roma   5 female
## 1149  411 627.2325 rural location Sofia region       Bulgaria  55   male
## 1150  411 627.2325 rural location Sofia region       Bulgaria  46 female
## 1151  411 627.2325 rural location Sofia region       Bulgaria  18 female
## 1152  412 627.2325 rural location       Rousse           Roma  71   male
## 1153  412 627.2325 rural location       Rousse           Roma  69 female
## 1154  412 627.2325           <NA>       Rousse           Roma  39   male
## 1155  412 627.2325           <NA>       Rousse           Roma  41   male
## 1156  413 627.2325 rural location       Rousse           Roma  65   male
## 1157  413 627.2325 rural location       Rousse           Roma  54 female
## 1158  413 627.2325 rural location       Rousse           Roma  11 female
## 1159  413 627.2325 rural location       Rousse           Roma   8   male
## 1160  414 627.2325 urban location      Lovetch       Bulgaria  61   male
## 1161  414 627.2325 urban location      Lovetch       Bulgaria  61 female
## 1162  414 627.2325 urban location      Lovetch       Bulgaria  34 female
## 1163  415 627.2325 urban location       Rousse       Bulgaria  45   male
## 1164  415 627.2325 urban location       Rousse       Bulgaria  45 female
## 1165  415 627.2325 urban location       Rousse       Bulgaria  25 female
## 1166  415 627.2325 urban location       Rousse       Bulgaria  21 female
## 1167  416 627.2325 urban location      Lovetch       Bulgaria  74   male
## 1168  416 627.2325 urban location      Lovetch       Bulgaria  62 female
## 1169  416 627.2325 urban location      Lovetch       Bulgaria  26   male
## 1170  417 627.2325 urban location       Rousse       Bulgaria  57   male
## 1171  417 627.2325 urban location       Rousse       Bulgaria  55 female
## 1172  418 627.2325 urban location      Plovdiv       Bulgaria  64   male
## 1173  418 627.2325 urban location      Plovdiv       Bulgaria  61 female
## 1174  419 627.2325 urban location       Rousse       Bulgaria  34   male
## 1175  419 627.2325 urban location       Rousse       Bulgaria  36 female
## 1176  419 627.2325 urban location       Rousse       Bulgaria  19   male
## 1177  419 627.2325           <NA>       Rousse       Bulgaria   3 female
## 1178  419 627.2325 urban location       Rousse       Bulgaria  76 female
## 1179  420 627.2325 urban location        Varna       Bulgaria  56   male
## 1180  420 627.2325 urban location        Varna       Bulgaria  54 female
## 1181  420 627.2325 urban location        Varna       Bulgaria  34 female
## 1182  420 627.2325 urban location        Varna       Bulgaria  32   male
## 1183  420 627.2325           <NA>        Varna       Bulgaria   7   male
## 1184  421 627.2325 rural location       Rousse       Bulgaria  61 female
## 1185  422 627.2325 urban location       Rousse       Bulgaria  71 female
## 1186  422 627.2325 urban location       Rousse       Bulgaria  41 female
## 1187  422 627.2325 urban location       Rousse       Bulgaria  22   male
## 1188  423 627.2325 urban location       Rousse       Bulgaria  74   male
## 1189  423 627.2325 urban location       Rousse       Bulgaria  70 female
## 1190  424 627.2325 urban location      Plovdiv       Bulgaria  74 female
## 1191  425 627.2325 rural location        Varna           Roma  75   male
## 1192  425 627.2325 rural location        Varna           Roma  73 female
## 1193  426 627.2325 urban location        Varna       Bulgaria  33   male
## 1194  426 627.2325 urban location        Varna       Bulgaria  26 female
## 1195  426 627.2325           <NA>        Varna       Bulgaria   4   male
## 1196  426 627.2325           <NA>        Varna       Bulgaria   1 female
## 1197  427 627.2325 urban location      Plovdiv       Bulgaria  80 female
## 1198  427 627.2325 urban location      Plovdiv       Bulgaria  53   male
## 1199  428 627.2325 urban location       Rousse       Bulgaria  46   male
## 1200  428 627.2325 urban location       Rousse       Bulgaria  41 female
## 1201  428 627.2325 urban location       Rousse       Bulgaria  22 female
## 1202  428 627.2325 urban location       Rousse       Bulgaria  16 female
## 1203  429 627.2325 urban location        Varna       Bulgaria  60 female
## 1204  430 627.2325 urban location       Rousse       Bulgaria  46   male
## 1205  430 627.2325 urban location       Rousse       Bulgaria  45 female
## 1206  430 627.2325 urban location       Rousse       Bulgaria  22 female
## 1207  431 627.2325 urban location        Varna       Bulgaria  36   male
## 1208  431 627.2325 urban location        Varna       Bulgaria  28 female
## 1209  431 627.2325           <NA>        Varna       Bulgaria   6 female
## 1210  431 627.2325           <NA>        Varna       Bulgaria   2 female
## 1211  432 627.2325 urban location        Varna       Bulgaria  37   male
## 1212  432 627.2325 urban location        Varna       Bulgaria  32 female
## 1213  432 627.2325 urban location        Varna       Bulgaria  13   male
## 1214  432 627.2325 urban location        Varna       Bulgaria  10   male
## 1215  433 627.2325 urban location        Varna       Bulgaria  69   male
## 1216  433 627.2325 urban location        Varna       Bulgaria  66 female
## 1217  434 627.2325 urban location        Varna       Bulgaria  65 female
## 1218  435 627.2325 urban location        Varna       Bulgaria  66   male
## 1219  435 627.2325 urban location        Varna       Bulgaria  66 female
## 1220  436 627.2325 urban location        Varna       Bulgaria  82   male
## 1221  436 627.2325 urban location        Varna       Bulgaria  81 female
## 1222  437 627.2325 urban location      Lovetch       Bulgaria  51   male
## 1223  437 627.2325 urban location      Lovetch       Bulgaria  58 female
## 1224  437 627.2325 urban location      Lovetch       Bulgaria  27   male
## 1225  438 627.2325 urban location        Varna       Bulgaria  70   male
## 1226  438 627.2325 urban location        Varna       Bulgaria  62 female
## 1227  438 627.2325 urban location        Varna       Bulgaria  33   male
## 1228  439 627.2325 rural location       Rousse       Bulgaria  71   male
## 1229  439 627.2325 rural location       Rousse       Bulgaria  66 female
## 1230  440 627.2325 urban location      Lovetch       Bulgaria  25   male
## 1231  440 627.2325 urban location      Lovetch       Bulgaria  25 female
## 1232  441 627.2325 urban location        Varna       Bulgaria  53   male
## 1233  441 627.2325 urban location        Varna       Bulgaria  47 female
## 1234  441 627.2325 urban location        Varna       Bulgaria  25   male
## 1235  441 627.2325 urban location        Varna       Bulgaria  23 female
## 1236  442 627.2325 urban location        Varna       Bulgaria  54   male
## 1237  442 627.2325 urban location        Varna       Bulgaria  45 female
## 1238  442 627.2325 urban location        Varna       Bulgaria  20 female
## 1239  442 627.2325 urban location        Varna       Bulgaria  16 female
## 1240  442 627.2325 urban location        Varna       Bulgaria  15   male
## 1241  443 627.2325 urban location      Lovetch       Bulgaria  45   male
## 1242  443 627.2325 urban location      Lovetch       Bulgaria  36 female
## 1243  443 627.2325 urban location      Lovetch       Bulgaria   9   male
## 1244  444 627.2325 rural location       Rousse          Turks  50   male
## 1245  444 627.2325 rural location       Rousse          Turks  48 female
## 1246  444 627.2325 rural location       Rousse          Turks  20   male
## 1247  444 627.2325 rural location       Rousse          Turks  19   male
## 1248  444 627.2325 rural location       Rousse          Turks  16 female
## 1249  444 627.2325           <NA>       Rousse          Turks   0 female
## 1250  445 627.2325 urban location        Varna       Bulgaria  52   male
## 1251  445 627.2325 urban location        Varna       Bulgaria  39 female
## 1252  445 627.2325 urban location        Varna       Bulgaria  21   male
## 1253  445 627.2325 urban location        Varna       Bulgaria  11 female
## 1254  445 627.2325           <NA>        Varna       Bulgaria   3   male
## 1255  446 627.2325 rural location Sofia region       Bulgaria  69 female
## 1256  447 627.2325 rural location       Rousse       Bulgaria  69   male
## 1257  447 627.2325 rural location       Rousse       Bulgaria  69 female
## 1258  448 627.2325 urban location       Rousse       Bulgaria  49   male
## 1259  448 627.2325 urban location       Rousse       Bulgaria  45 female
## 1260  448 627.2325 urban location       Rousse       Bulgaria  24 female
## 1261  448 627.2325 urban location       Rousse       Bulgaria  18   male
## 1262  449 627.2325 urban location      Lovetch       Bulgaria  34 female
## 1263  449 627.2325 urban location      Lovetch       Bulgaria  12 female
## 1264  449 627.2325 urban location      Lovetch       Bulgaria  60 female
## 1265  450 627.2325 urban location        Varna       Bulgaria  70 female
## 1266  451 627.2325 rural location     Bourgass       Bulgaria  32   male
## 1267  451 627.2325 rural location     Bourgass       Bulgaria  57 female
## 1268  451 627.2325 rural location     Bourgass       Bulgaria  21   male
## 1269  452 627.2325 urban location       Rousse       Bulgaria  44   male
## 1270  452 627.2325 urban location       Rousse       Bulgaria  42 female
## 1271  452 627.2325 urban location       Rousse       Bulgaria  21 female
## 1272  452 627.2325 urban location       Rousse       Bulgaria  19   male
## 1273  453 627.2325 urban location       Rousse       Bulgaria  35   male
## 1274  453 627.2325 urban location       Rousse       Bulgaria  35 female
## 1275  453 627.2325 urban location       Rousse       Bulgaria   9   male
## 1276  454 627.2325 urban location       Rousse       Bulgaria  59 female
## 1277  454 627.2325 urban location       Rousse       Bulgaria  31   male
## 1278  455 627.2325 urban location       Rousse       Bulgaria  78   male
## 1279  455 627.2325 urban location       Rousse       Bulgaria  75 female
## 1280  455 627.2325 urban location       Rousse       Bulgaria  50   male
## 1281  456 627.2325 urban location       Rousse          Turks  37   male
## 1282  456 627.2325 urban location       Rousse          Turks  38 female
## 1283  456 627.2325 urban location       Rousse          Turks  16   male
## 1284  456 627.2325 urban location       Rousse          Turks   9 female
## 1285  457 627.2325 rural location Sofia region       Bulgaria  70   male
## 1286  457 627.2325 rural location Sofia region       Bulgaria  74 female
## 1287  458 627.2325 rural location Sofia region       Bulgaria  58   male
## 1288  458 627.2325 rural location Sofia region       Bulgaria  54 female
## 1289  459 627.2325 rural location Sofia region       Bulgaria  67   male
## 1290  459 627.2325 rural location Sofia region       Bulgaria  76 female
## 1291  460 627.2325 rural location Sofia region       Bulgaria  47   male
## 1292  460 627.2325 rural location Sofia region       Bulgaria  43 female
## 1293  460 627.2325 rural location Sofia region       Bulgaria  18 female
## 1294  460 627.2325 rural location Sofia region       Bulgaria  73   male
## 1295  461 627.2325 rural location Sofia region       Bulgaria  50   male
## 1296  461 627.2325 rural location Sofia region       Bulgaria  48 female
## 1297  461 627.2325 rural location Sofia region       Bulgaria  25   male
## 1298  461 627.2325 rural location Sofia region       Bulgaria  20 female
## 1299  462 627.2325 rural location       Rousse       Bulgaria  72 female
## 1300  463 627.2325 urban location     Bourgass       Bulgaria  49   male
## 1301  463 627.2325 urban location     Bourgass       Bulgaria  45 female
## 1302  463 627.2325 urban location     Bourgass       Bulgaria  73 female
## 1303  464 627.2325 urban location     Bourgass       Bulgaria  63 female
## 1304  465 627.2325 urban location     Bourgass       Bulgaria  48   male
## 1305  465 627.2325 urban location     Bourgass       Bulgaria  42 female
## 1306  465 627.2325 urban location     Bourgass       Bulgaria  18 female
## 1307  465 627.2325 urban location     Bourgass       Bulgaria  14 female
## 1308  466 627.2325 urban location     Bourgass       Bulgaria  80   male
## 1309  466 627.2325 urban location     Bourgass       Bulgaria  70 female
## 1310  467 627.2325 urban location     Bourgass       Bulgaria  82 female
## 1311  468 627.2325 urban location     Bourgass       Bulgaria  40   male
## 1312  468 627.2325 urban location     Bourgass       Bulgaria  37 female
## 1313  468 627.2325 urban location     Bourgass       Bulgaria  14   male
## 1314  468 627.2325           <NA>     Bourgass       Bulgaria   1 female
## 1315  468 627.2325 urban location     Bourgass       Bulgaria  67 female
## 1316  469 627.2325 rural location        Varna       Bulgaria  74   male
## 1317  469 627.2325 rural location        Varna       Bulgaria  68 female
## 1318  470 627.2325 rural location        Varna       Bulgaria  73   male
## 1319  470 627.2325 rural location        Varna       Bulgaria  68 female
## 1320  471 627.2325 urban location       Rousse          Turks  60   male
## 1321  471 627.2325 urban location       Rousse          Turks  59 female
## 1322  471 627.2325 urban location       Rousse          Turks  36   male
## 1323  471 627.2325 urban location       Rousse          Turks  31 female
## 1324  471 627.2325 urban location       Rousse          Turks   9   male
## 1325  471 627.2325           <NA>       Rousse          Turks   1 female
## 1326  472 627.2325 urban location       Rousse          Turks  66   male
## 1327  472 627.2325 urban location       Rousse          Turks  66 female
## 1328  472 627.2325 urban location       Rousse          Turks  41   male
## 1329  472 627.2325 urban location       Rousse          Turks  40 female
## 1330  472 627.2325 urban location       Rousse          Turks  20   male
## 1331  472 627.2325 urban location       Rousse          Turks  17 female
## 1332  473 627.2325 urban location       Rousse          Turks  62   male
## 1333  473 627.2325 urban location       Rousse          Turks  62 female
## 1334  473 627.2325 urban location       Rousse          Turks  40   male
## 1335  473 627.2325 urban location       Rousse          Turks  40 female
## 1336  473 627.2325 urban location       Rousse          Turks  16 female
## 1337  473 627.2325 urban location       Rousse          Turks  14 female
## 1338  474 627.2325 urban location        Varna       Bulgaria  75 female
## 1339  475 627.2325 urban location        Varna       Bulgaria  21   male
## 1340  475 627.2325 urban location        Varna       Bulgaria  22 female
## 1341  476 627.2325 urban location        Varna       Bulgaria  50 female
## 1342  476 627.2325 urban location        Varna       Bulgaria  30   male
## 1343  476 627.2325 urban location        Varna       Bulgaria  19   male
## 1344  477 627.2325 urban location        Varna       Bulgaria  23   male
## 1345  477 627.2325 urban location        Varna       Bulgaria  45 female
## 1346  477 627.2325 urban location        Varna       Bulgaria  70 female
## 1347  478 627.2325 urban location        Varna       Bulgaria  58   male
## 1348  478 627.2325 urban location        Varna       Bulgaria  57 female
## 1349  479 627.2325 urban location        Varna       Bulgaria  47   male
## 1350  479 627.2325 urban location        Varna       Bulgaria  40 female
## 1351  479 627.2325 urban location        Varna       Bulgaria  12   male
## 1352  480 627.2325 urban location        Varna          Other  31   male
## 1353  480 627.2325 urban location        Varna          Other  33 female
## 1354  480 627.2325           <NA>        Varna          Other   4   male
## 1355  481 627.2325 rural location        Varna       Bulgaria  82   male
## 1356  481 627.2325 rural location        Varna       Bulgaria  73 female
## 1357  482 627.2325 rural location        Varna       Bulgaria  70 female
## 1358  483 627.2325 rural location        Varna       Bulgaria  69   male
## 1359  483 627.2325 rural location        Varna       Bulgaria  64 female
## 1360  483 627.2325 rural location        Varna       Bulgaria  40   male
## 1361  484 627.2325 urban location      Lovetch       Bulgaria  82 female
## 1362  485 627.2325 urban location        Varna       Bulgaria  39   male
## 1363  485 627.2325 urban location        Varna       Bulgaria  33 female
## 1364  485 627.2325 urban location        Varna       Bulgaria  13   male
## 1365  485 627.2325 urban location        Varna       Bulgaria  10   male
## 1366  485 627.2325 urban location        Varna       Bulgaria  65   male
## 1367  486 627.2325 urban location        Varna       Bulgaria  55   male
## 1368  486 627.2325 urban location        Varna       Bulgaria  52 female
## 1369  486 627.2325 urban location        Varna       Bulgaria  30 female
## 1370  487 627.2325 urban location        Varna           Roma  40   male
## 1371  487 627.2325 urban location        Varna           Roma  39 female
## 1372  487 627.2325 urban location        Varna           Roma  18 female
## 1373  488 627.2325 urban location        Varna          Other  28   male
## 1374  488 627.2325 urban location        Varna          Other  26 female
## 1375  488 627.2325           <NA>        Varna          Other   5 female
## 1376  488 627.2325           <NA>        Varna          Other   1 female
## 1377  489 627.2325 urban location        Varna          Other  54   male
## 1378  489 627.2325 urban location        Varna          Other  54 female
## 1379  489 627.2325 urban location        Varna          Other  24   male
## 1380  489 627.2325 urban location        Varna          Other  22 female
## 1381  489 627.2325           <NA>        Varna          Other   1   male
## 1382  489 627.2325 urban location        Varna          Other  24   male
## 1383  490 627.2325 urban location        Varna           Roma  19   male
## 1384  490 627.2325 urban location        Varna           Roma  22 female
## 1385  490 627.2325           <NA>        Varna           Roma   5 female
## 1386  490 627.2325 urban location        Varna           Roma  15   male
## 1387  491 627.2325 urban location        Varna       Bulgaria  73 female
## 1388  491 627.2325 urban location        Varna       Bulgaria  51 female
## 1389  492 627.2325 urban location        Varna       Bulgaria  73 female
## 1390  493 627.2325 urban location        Varna       Bulgaria  41   male
## 1391  494 627.2325 urban location        Varna       Bulgaria  51   male
## 1392  494 627.2325 urban location        Varna       Bulgaria  50 female
## 1393  494 627.2325 urban location        Varna       Bulgaria  22 female
## 1394  495 627.2325 urban location        Varna       Bulgaria  74   male
## 1395  495 627.2325 urban location        Varna       Bulgaria  69 female
## 1396  496 627.2325 urban location     Bourgass       Bulgaria  39 female
## 1397  496 627.2325           <NA>     Bourgass       Bulgaria   6 female
## 1398  497 627.2325 urban location        Varna       Bulgaria  30   male
## 1399  497 627.2325 urban location        Varna       Bulgaria  31 female
## 1400  497 627.2325 urban location        Varna       Bulgaria   9   male
## 1401  497 627.2325           <NA>        Varna       Bulgaria   2   male
## 1402  497 627.2325 urban location        Varna       Bulgaria  63   male
## 1403  498 627.2325 urban location        Varna       Bulgaria  61   male
## 1404  498 627.2325 urban location        Varna       Bulgaria  57 female
## 1405  499 627.2325 urban location      Lovetch       Bulgaria  28   male
## 1406  499 627.2325 urban location      Lovetch       Bulgaria  23 female
## 1407  499 627.2325           <NA>      Lovetch       Bulgaria   3   male
## 1408  500 627.2325 urban location     Bourgass          Other  43 female
## 1409  501 627.2325 urban location     Bourgass       Bulgaria  74   male
## 1410  501 627.2325 urban location     Bourgass       Bulgaria  69 female
## 1411  502 627.2325 rural location      Plovdiv       Bulgaria  31   male
## 1412  502 627.2325 rural location      Plovdiv       Bulgaria  30 female
## 1413  502 627.2325 rural location      Plovdiv       Bulgaria   8   male
## 1414  503 627.2325 rural location     Bourgass       Bulgaria  20   male
## 1415  503 627.2325 rural location     Bourgass       Bulgaria  29   male
## 1416  504 627.2325 rural location     Bourgass       Bulgaria  76 female
## 1417  505 627.2325 urban location        Varna       Bulgaria  29   male
## 1418  505 627.2325 urban location        Varna       Bulgaria  27 female
## 1419  505 627.2325 urban location        Varna       Bulgaria  51 female
## 1420  506 627.2325 rural location      Montana       Bulgaria  73   male
## 1421  506 627.2325 rural location      Montana       Bulgaria  37   male
## 1422  507 627.2325 rural location      Montana       Bulgaria  76   male
## 1423  507 627.2325 rural location      Montana       Bulgaria  73 female
## 1424  508 627.2325 urban location        Varna       Bulgaria  55 female
## 1425  508 627.2325 urban location        Varna       Bulgaria  57   male
## 1426  508 627.2325 urban location        Varna       Bulgaria  85   male
## 1427  508 627.2325 urban location        Varna       Bulgaria  82 female
## 1428  508 627.2325 urban location        Varna       Bulgaria  27 female
## 1429  508 627.2325 urban location        Varna       Bulgaria  22   male
## 1430  509 627.2325 rural location      Montana       Bulgaria  56   male
## 1431  509 627.2325 rural location      Montana       Bulgaria  79 female
## 1432  510 627.2325 rural location      Montana       Bulgaria  82   male
## 1433  510 627.2325 rural location      Montana       Bulgaria  82 female
## 1434  511 627.2325 urban location        Varna       Bulgaria  55   male
## 1435  511 627.2325 urban location        Varna       Bulgaria  53 female
## 1436  512 627.2325 rural location      Plovdiv       Bulgaria  58   male
## 1437  512 627.2325 rural location      Plovdiv       Bulgaria  58 female
## 1438  513 627.2325 urban location      Lovetch       Bulgaria  62   male
## 1439  513 627.2325 urban location      Lovetch       Bulgaria  58 female
## 1440  513 627.2325 urban location      Lovetch       Bulgaria  39   male
## 1441  513 627.2325 urban location      Lovetch       Bulgaria  37 female
## 1442  513 627.2325 urban location      Lovetch       Bulgaria  17   male
## 1443  514 627.2325 rural location      Montana       Bulgaria  58   male
## 1444  514 627.2325 rural location      Montana       Bulgaria  51 female
## 1445  515 627.2325 rural location      Montana           Roma  48   male
## 1446  515 627.2325 rural location      Montana           Roma  46 female
## 1447  515 627.2325 rural location      Montana           Roma  25   male
## 1448  515 627.2325 rural location      Montana           Roma  24 female
## 1449  515 627.2325 rural location      Montana           Roma  22   male
## 1450  516 627.2325 urban location      Haskovo          Turks  82   male
## 1451  516 627.2325 urban location      Haskovo          Turks  77 female
## 1452  517 627.2325 urban location      Haskovo       Bulgaria  58   male
## 1453  518 627.2325 urban location      Haskovo          Turks  48   male
## 1454  518 627.2325 urban location      Haskovo          Turks  46 female
## 1455  518 627.2325 urban location      Haskovo          Turks  25   male
## 1456  518 627.2325 urban location      Haskovo          Turks  21 female
## 1457  519 627.2325 urban location      Haskovo       Bulgaria  48   male
## 1458  519 627.2325 urban location      Haskovo       Bulgaria  49 female
## 1459  519 627.2325 urban location      Haskovo       Bulgaria  27 female
## 1460  519 627.2325 urban location      Haskovo       Bulgaria  25 female
## 1461  519 627.2325 urban location      Haskovo       Bulgaria   8 female
## 1462  520 627.2325 urban location      Haskovo       Bulgaria  58   male
## 1463  520 627.2325 urban location      Haskovo       Bulgaria  47 female
## 1464  520 627.2325 urban location      Haskovo       Bulgaria  18 female
## 1465  520 627.2325 urban location      Haskovo       Bulgaria  15 female
## 1466  521 627.2325 urban location      Plovdiv       Bulgaria  65   male
## 1467  521 627.2325 urban location      Plovdiv       Bulgaria  61 female
## 1468  522 627.2325 urban location      Plovdiv       Bulgaria  60   male
## 1469  522 627.2325 urban location      Plovdiv       Bulgaria  59 female
## 1470  522 627.2325 urban location      Plovdiv       Bulgaria  29   male
## 1471  522 627.2325           <NA>      Plovdiv       Bulgaria   3   male
## 1472  523 627.2325 urban location      Plovdiv       Bulgaria  29   male
## 1473  523 627.2325 urban location      Plovdiv       Bulgaria  28 female
## 1474  523 627.2325           <NA>      Plovdiv       Bulgaria   5   male
## 1475  524 627.2325 urban location      Plovdiv       Bulgaria  46   male
## 1476  524 627.2325 urban location      Plovdiv       Bulgaria  44 female
## 1477  524 627.2325 urban location      Plovdiv       Bulgaria  19 female
## 1478  524 627.2325 urban location      Plovdiv       Bulgaria  20   male
## 1479  524 627.2325 urban location      Plovdiv       Bulgaria  19 female
## 1480  524 627.2325 urban location      Plovdiv       Bulgaria  88 female
## 1481  525 627.2325 urban location      Plovdiv       Bulgaria  56 female
## 1482  526 627.2325 urban location      Plovdiv       Bulgaria  55   male
## 1483  526 627.2325 urban location      Plovdiv       Bulgaria  51 female
## 1484  526 627.2325 urban location      Plovdiv       Bulgaria  20   male
## 1485  527 627.2325 urban location        Varna          Turks  64 female
## 1486  527 627.2325 urban location        Varna          Turks  41   male
## 1487  527 627.2325 urban location        Varna          Turks  38 female
## 1488  527 627.2325 urban location        Varna          Turks  17 female
## 1489  527 627.2325 urban location        Varna          Turks  16   male
## 1490  528 627.2325 urban location        Varna       Bulgaria  57 female
## 1491  528 627.2325 urban location        Varna       Bulgaria  31 female
## 1492  528 627.2325 urban location        Varna       Bulgaria  30   male
## 1493  529 627.2325 urban location        Varna       Bulgaria  36   male
## 1494  529 627.2325 urban location        Varna       Bulgaria  36 female
## 1495  529 627.2325 urban location        Varna       Bulgaria  14 female
## 1496  529 627.2325 urban location        Varna       Bulgaria   9 female
## 1497  530 627.2325 urban location        Varna       Bulgaria  49   male
## 1498  530 627.2325 urban location        Varna       Bulgaria  45 female
## 1499  530 627.2325 urban location        Varna       Bulgaria  26   male
## 1500  531 627.2325 urban location      Montana       Bulgaria  67   male
## 1501  531 627.2325 urban location      Montana       Bulgaria  59 female
## 1502  531 627.2325 urban location      Montana       Bulgaria  35   male
## 1503  532 627.2325 urban location      Montana       Bulgaria  44   male
## 1504  533 627.2325 urban location      Montana       Bulgaria  52 female
## 1505  533 627.2325 urban location      Montana       Bulgaria  19   male
## 1506  534 627.2325 urban location      Montana       Bulgaria  73   male
## 1507  534 627.2325 urban location      Montana       Bulgaria  71 female
## 1508  535 627.2325 urban location      Plovdiv       Bulgaria  44   male
## 1509  535 627.2325 urban location      Plovdiv       Bulgaria  40 female
## 1510  535 627.2325 urban location      Plovdiv       Bulgaria  29 female
## 1511  535 627.2325 urban location      Plovdiv       Bulgaria  16 female
## 1512  536 627.2325 urban location      Montana       Bulgaria  49   male
## 1513  536 627.2325 urban location      Montana       Bulgaria  46 female
## 1514  536 627.2325 urban location      Montana       Bulgaria  24   male
## 1515  537 627.2325 urban location        Varna       Bulgaria  31 female
## 1516  537 627.2325 urban location        Varna       Bulgaria   9 female
## 1517  538       NA urban location         <NA>           <NA>  50   male
## 1518  538       NA urban location         <NA>           <NA>  50 female
## 1519  538       NA urban location         <NA>           <NA>  13   male
## 1520  539 627.2325 rural location     Bourgass       Bulgaria  66   male
## 1521  539 627.2325 rural location     Bourgass       Bulgaria  63 female
## 1522  539 627.2325 rural location     Bourgass       Bulgaria  24 female
## 1523  540       NA urban location         <NA>           <NA>  45 female
## 1524  540       NA urban location         <NA>           <NA>  28   male
## 1525  540       NA urban location         <NA>           <NA>  25   male
## 1526  541 627.2325 rural location      Lovetch       Bulgaria  76   male
## 1527  541 627.2325 rural location      Lovetch       Bulgaria  69 female
## 1528  541 627.2325 rural location      Lovetch       Bulgaria  49   male
## 1529  541 627.2325 rural location      Lovetch       Bulgaria  41 female
## 1530  542 627.2325 urban location      Montana           Roma  29   male
## 1531  542 627.2325 urban location      Montana           Roma  22 female
## 1532  542 627.2325           <NA>      Montana           Roma   7   male
## 1533  542 627.2325           <NA>      Montana           Roma   5   male
## 1534  542 627.2325 urban location      Montana           Roma  31   male
## 1535  542 627.2325 urban location      Montana           Roma  28   male
## 1536  542 627.2325 urban location      Montana           Roma  23   male
## 1537  543 627.2325 rural location     Bourgass       Bulgaria  69   male
## 1538  543 627.2325 rural location     Bourgass       Bulgaria  66 female
## 1539  544 627.2325 urban location        Varna       Bulgaria  43   male
## 1540  544 627.2325 urban location        Varna       Bulgaria  30 female
## 1541  544 627.2325           <NA>        Varna       Bulgaria   4   male
## 1542  544 627.2325           <NA>        Varna       Bulgaria   2 female
## 1543  545 627.2325 urban location        Varna       Bulgaria  52 female
## 1544  545 627.2325 urban location        Varna       Bulgaria  24   male
## 1545  545 627.2325 urban location        Varna       Bulgaria  22 female
## 1546  545 627.2325           <NA>        Varna       Bulgaria   0   male
## 1547  546 627.2325 urban location        Varna       Bulgaria  38   male
## 1548  546 627.2325 urban location        Varna       Bulgaria  34 female
## 1549  546 627.2325 urban location        Varna       Bulgaria  15   male
## 1550  546 627.2325           <NA>        Varna       Bulgaria   3 female
## 1551  547 627.2325 urban location        Varna       Bulgaria  38   male
## 1552  547 627.2325 urban location        Varna       Bulgaria  35 female
## 1553  547 627.2325           <NA>        Varna       Bulgaria   2   male
## 1554  548 627.2325 rural location      Montana       Bulgaria  71   male
## 1555  548 627.2325 rural location      Montana       Bulgaria  71 female
## 1556  549 627.2325 rural location      Montana       Bulgaria  82 female
## 1557  550 627.2325 rural location      Montana       Bulgaria  47 female
## 1558  550 627.2325 rural location      Montana       Bulgaria  56   male
## 1559  550 627.2325 rural location      Montana       Bulgaria  10   male
## 1560  551 627.2325 urban location      Montana       Bulgaria  57   male
## 1561  551 627.2325 urban location      Montana       Bulgaria  54 female
## 1562  552 627.2325 rural location Sofia region       Bulgaria  57   male
## 1563  552 627.2325 rural location Sofia region       Bulgaria  55 female
## 1564  553 627.2325 rural location Sofia region       Bulgaria  64   male
## 1565  553 627.2325 rural location Sofia region       Bulgaria  63 female
## 1566  553 627.2325 rural location Sofia region       Bulgaria  45   male
## 1567  553 627.2325 rural location Sofia region       Bulgaria  40 female
## 1568  553 627.2325 rural location Sofia region       Bulgaria  20   male
## 1569  553 627.2325 rural location Sofia region       Bulgaria  16   male
## 1570  554 627.2325 urban location       Rousse       Bulgaria  35   male
## 1571  554 627.2325 urban location       Rousse       Bulgaria  35 female
## 1572  554 627.2325 urban location       Rousse       Bulgaria  14   male
## 1573  554 627.2325 urban location       Rousse       Bulgaria  70 female
## 1574  554 627.2325 urban location       Rousse       Bulgaria  72   male
## 1575  555 627.2325 urban location       Rousse       Bulgaria  81   male
## 1576  555 627.2325 urban location       Rousse       Bulgaria  82 female
## 1577  556 627.2325 urban location      Montana       Bulgaria  73   male
## 1578  556 627.2325 urban location      Montana       Bulgaria  65 female
## 1579  556 627.2325 urban location      Montana       Bulgaria  35 female
## 1580  556 627.2325 urban location      Montana       Bulgaria  42   male
## 1581  556 627.2325 urban location      Montana       Bulgaria  17   male
## 1582  557 627.2325 rural location       Rousse          Turks  65 female
## 1583  557 627.2325 rural location       Rousse          Turks  41 female
## 1584  557 627.2325           <NA>       Rousse          Turks  43   male
## 1585  558 627.2325 rural location       Rousse           Roma  72 female
## 1586  558 627.2325 rural location       Rousse           Roma  28   male
## 1587  558 627.2325 rural location       Rousse           Roma  18   male
## 1588  558 627.2325 rural location       Rousse           Roma  16   male
## 1589  558 627.2325 rural location       Rousse           Roma  11   male
## 1590  559 627.2325 rural location       Rousse          Turks  89 female
## 1591  559 627.2325 rural location       Rousse          Turks  39   male
## 1592  559 627.2325 rural location       Rousse          Turks  38 female
## 1593  559 627.2325 rural location       Rousse          Turks  15 female
## 1594  559 627.2325 rural location       Rousse          Turks  12   male
## 1595  560 627.2325 urban location        Varna       Bulgaria  80   male
## 1596  561 627.2325 urban location        Varna           Roma  72   male
## 1597  562 627.2325 rural location Sofia region           Roma  26   male
## 1598  562 627.2325 rural location Sofia region           Roma  25 female
## 1599  562 627.2325           <NA> Sofia region           Roma   6 female
## 1600  562 627.2325           <NA> Sofia region           Roma   2   male
## 1601  563 627.2325 urban location        Varna       Bulgaria  46 female
## 1602  563 627.2325 urban location        Varna       Bulgaria  80 female
## 1603  563 627.2325 urban location        Varna       Bulgaria  24 female
## 1604  563 627.2325 urban location        Varna       Bulgaria  21 female
## 1605  564 627.2325 urban location       Rousse       Bulgaria  59   male
## 1606  564 627.2325 urban location       Rousse       Bulgaria  52 female
## 1607  564 627.2325 urban location       Rousse       Bulgaria  19 female
## 1608  565 627.2325 urban location        Varna       Bulgaria  46   male
## 1609  566 627.2325 rural location Sofia region       Bulgaria  76   male
## 1610  566 627.2325 rural location Sofia region       Bulgaria  80 female
## 1611  567 627.2325 rural location Sofia region       Bulgaria  75 female
## 1612  567 627.2325 rural location Sofia region       Bulgaria  52   male
## 1613  568 627.2325 rural location     Bourgass       Bulgaria  70   male
## 1614  568 627.2325 rural location     Bourgass       Bulgaria  71 female
## 1615  569 627.2325 rural location     Bourgass       Bulgaria  86   male
## 1616  570 627.2325 urban location       Rousse       Bulgaria  64   male
## 1617  570 627.2325 urban location       Rousse       Bulgaria  42   male
## 1618  571 627.2325 urban location      Lovetch       Bulgaria  50   male
## 1619  571 627.2325 urban location      Lovetch       Bulgaria  44 female
## 1620  571 627.2325 urban location      Lovetch       Bulgaria  17 female
## 1621  571 627.2325 urban location      Lovetch       Bulgaria  12   male
## 1622  572 627.2325 urban location      Montana       Bulgaria  30   male
## 1623  572 627.2325 urban location      Montana       Bulgaria  61 female
## 1624  572 627.2325 urban location      Montana       Bulgaria  53   male
## 1625  573 627.2325 urban location      Montana       Bulgaria  80 female
## 1626  573 627.2325 urban location      Montana       Bulgaria  53   male
## 1627  573 627.2325 urban location      Montana       Bulgaria  27   male
## 1628  573 627.2325 urban location      Montana       Bulgaria  25   male
## 1629  574 627.2325 urban location      Lovetch       Bulgaria  77   male
## 1630  574 627.2325 urban location      Lovetch       Bulgaria  74 female
## 1631  574 627.2325 urban location      Lovetch       Bulgaria  74   male
## 1632  575 627.2325 urban location      Lovetch       Bulgaria  30   male
## 1633  576 627.2325 urban location       Rousse          Turks  40 female
## 1634  576 627.2325 urban location       Rousse          Turks  44   male
## 1635  576 627.2325 urban location       Rousse          Turks  19   male
## 1636  577 627.2325 rural location Sofia region       Bulgaria  49   male
## 1637  577 627.2325 rural location Sofia region       Bulgaria  44 female
## 1638  578 627.2325 rural location     Bourgass       Bulgaria  51   male
## 1639  578 627.2325 rural location     Bourgass       Bulgaria  53 female
## 1640  579 627.2325 rural location     Bourgass       Bulgaria  65 female
## 1641  579 627.2325 rural location     Bourgass       Bulgaria  70   male
## 1642  579 627.2325 rural location     Bourgass       Bulgaria  42   male
## 1643  580 627.2325 urban location      Montana           Roma  24   male
## 1644  580 627.2325 urban location      Montana           Roma  21 female
## 1645  580 627.2325           <NA>      Montana           Roma   0 female
## 1646  581 627.2325 urban location      Plovdiv       Bulgaria  49   male
## 1647  581 627.2325 urban location      Plovdiv       Bulgaria  40 female
## 1648  581 627.2325 urban location      Plovdiv       Bulgaria  26 female
## 1649  581 627.2325 urban location      Plovdiv       Bulgaria  13   male
## 1650  581 627.2325           <NA>      Plovdiv       Bulgaria   5 female
## 1651  582 627.2325 urban location       Rousse       Bulgaria  72 female
## 1652  583 627.2325 urban location      Lovetch       Bulgaria  69 female
## 1653  583 627.2325 urban location      Lovetch       Bulgaria  47 female
## 1654  584 627.2325 rural location Sofia region       Bulgaria  50   male
## 1655  584 627.2325 rural location Sofia region       Bulgaria  47 female
## 1656  585 627.2325 rural location Sofia region       Bulgaria  76   male
## 1657  585 627.2325 rural location Sofia region       Bulgaria  72 female
## 1658  586 627.2325 urban location      Plovdiv       Bulgaria  48   male
## 1659  586 627.2325 urban location      Plovdiv       Bulgaria  48 female
## 1660  586 627.2325 urban location      Plovdiv       Bulgaria  19   male
## 1661  587 627.2325 urban location       Rousse       Bulgaria  69   male
## 1662  587 627.2325 urban location       Rousse       Bulgaria  66 female
## 1663  588 627.2325 rural location Sofia region       Bulgaria  57   male
## 1664  588 627.2325 rural location Sofia region       Bulgaria  51 female
## 1665  588 627.2325 rural location Sofia region       Bulgaria  28   male
## 1666  589 627.2325 rural location Sofia region       Bulgaria  69   male
## 1667  589 627.2325 rural location Sofia region       Bulgaria  66 female
## 1668  590 627.2325 rural location Sofia region       Bulgaria  87 female
## 1669  591 627.2325 urban location Sofia region       Bulgaria  46   male
## 1670  591 627.2325 urban location Sofia region       Bulgaria  44 female
## 1671  591 627.2325 urban location Sofia region       Bulgaria  21 female
## 1672  591 627.2325 urban location Sofia region       Bulgaria  19 female
## 1673  592 627.2325 urban location Sofia region       Bulgaria  70   male
## 1674  592 627.2325 urban location Sofia region       Bulgaria  62 female
## 1675  592 627.2325 urban location Sofia region       Bulgaria  41 female
## 1676  592 627.2325 urban location Sofia region       Bulgaria  14 female
## 1677  593 627.2325 urban location       Rousse       Bulgaria  66   male
## 1678  593 627.2325 urban location       Rousse       Bulgaria  64 female
## 1679  593 627.2325 urban location       Rousse       Bulgaria  40   male
## 1680  594 627.2325 urban location       Rousse       Bulgaria  60   male
## 1681  594 627.2325 urban location       Rousse       Bulgaria  57 female
## 1682  594 627.2325 urban location       Rousse       Bulgaria  28   male
## 1683  594 627.2325 urban location       Rousse       Bulgaria  74 female
## 1684  595 627.2325 rural location Sofia region       Bulgaria  69   male
## 1685  595 627.2325 rural location Sofia region       Bulgaria  69 female
## 1686  596 627.2325 urban location      Montana       Bulgaria  41   male
## 1687  596 627.2325 urban location      Montana       Bulgaria  34 female
## 1688  596 627.2325           <NA>      Montana       Bulgaria   7 female
## 1689  597 627.2325 urban location      Montana           Roma  54   male
## 1690  597 627.2325 urban location      Montana           Roma  51 female
## 1691  598 627.2325 urban location      Montana           Roma  39   male
## 1692  598 627.2325 urban location      Montana           Roma  39 female
## 1693  598 627.2325 urban location      Montana           Roma  14   male
## 1694  598 627.2325 urban location      Montana           Roma  12   male
## 1695  599 627.2325 urban location        Varna       Bulgaria  53   male
## 1696  599 627.2325 urban location        Varna       Bulgaria  46 female
## 1697  599 627.2325 urban location        Varna       Bulgaria  12 female
## 1698  600 627.2325 urban location        Varna          Turks  25 female
## 1699  600 627.2325 urban location        Varna          Turks  25   male
## 1700  600 627.2325 urban location        Varna          Turks  23   male
## 1701  601 627.2325 urban location Sofia region       Bulgaria  39   male
## 1702  601 627.2325 urban location Sofia region       Bulgaria  35 female
## 1703  602 627.2325 urban location Sofia region       Bulgaria  51   male
## 1704  602 627.2325 urban location Sofia region       Bulgaria  48 female
## 1705  602 627.2325 urban location Sofia region       Bulgaria  22   male
## 1706  603 627.2325 rural location      Lovetch       Bulgaria  77   male
## 1707  603 627.2325 rural location      Lovetch       Bulgaria  74 female
## 1708  603 627.2325 rural location      Lovetch       Bulgaria  57   male
## 1709  603 627.2325 rural location      Lovetch       Bulgaria  52 female
## 1710  603 627.2325 rural location      Lovetch       Bulgaria  31 female
## 1711  603 627.2325 rural location      Lovetch       Bulgaria  38   male
## 1712  603 627.2325 rural location      Lovetch       Bulgaria   9 female
## 1713  604 627.2325 rural location Sofia region       Bulgaria  73 female
## 1714  604 627.2325 rural location Sofia region       Bulgaria  43   male
## 1715  604 627.2325 rural location Sofia region       Bulgaria  43   male
## 1716  605 627.2325 urban location       Rousse       Bulgaria  44   male
## 1717  605 627.2325 urban location       Rousse       Bulgaria  38 female
## 1718  605 627.2325 urban location       Rousse       Bulgaria  19   male
## 1719  605 627.2325 urban location       Rousse       Bulgaria  14 female
## 1720  606 627.2325 urban location       Rousse       Bulgaria  46   male
## 1721  606 627.2325 urban location       Rousse       Bulgaria  40 female
## 1722  606 627.2325 urban location       Rousse       Bulgaria  20   male
## 1723  606 627.2325 urban location       Rousse       Bulgaria  16 female
## 1724  606 627.2325 urban location       Rousse       Bulgaria  68   male
## 1725  606 627.2325 urban location       Rousse       Bulgaria  66 female
## 1726  607       NA urban location         <NA>           <NA>  70   male
## 1727  607       NA urban location         <NA>           <NA>  60 female
## 1728  608 627.2325 urban location      Plovdiv       Bulgaria  29   male
## 1729  608 627.2325 urban location      Plovdiv       Bulgaria  26 female
## 1730  609 627.2325 urban location      Montana           Roma  59 female
## 1731  609 627.2325 urban location      Montana           Roma  31   male
## 1732  609 627.2325 urban location      Montana           Roma  27 female
## 1733  609 627.2325           <NA>      Montana           Roma   5 female
## 1734  609 627.2325           <NA>      Montana           Roma   2   male
## 1735  610 627.2325 rural location       Rousse       Bulgaria  67   male
## 1736  610 627.2325 rural location       Rousse       Bulgaria  60 female
## 1737  611 627.2325 urban location       Rousse       Bulgaria  60 female
## 1738  611 627.2325 urban location       Rousse       Bulgaria  35   male
## 1739  612 627.2325 rural location Sofia region       Bulgaria  69   male
## 1740  612 627.2325 rural location Sofia region       Bulgaria  68 female
## 1741  612 627.2325 rural location Sofia region       Bulgaria  42   male
## 1742  613 627.2325 urban location        Varna       Bulgaria  36   male
## 1743  613 627.2325 urban location        Varna       Bulgaria  35 female
## 1744  613 627.2325 urban location        Varna       Bulgaria   9   male
## 1745  614 627.2325 urban location        Varna       Bulgaria  45   male
## 1746  614 627.2325 urban location        Varna       Bulgaria  43 female
## 1747  614 627.2325 urban location        Varna       Bulgaria  16 female
## 1748  615 627.2325 urban location        Varna       Bulgaria  34   male
## 1749  615 627.2325 urban location        Varna       Bulgaria  34 female
## 1750  615 627.2325           <NA>        Varna       Bulgaria   7 female
## 1751  615 627.2325 urban location        Varna       Bulgaria  57 female
## 1752  615 627.2325 urban location        Varna       Bulgaria  57   male
## 1753  616 627.2325 rural location       Rousse           Roma  54   male
## 1754  616 627.2325 rural location       Rousse           Roma  55 female
## 1755  616 627.2325 rural location       Rousse           Roma  31   male
## 1756  616 627.2325 rural location       Rousse           Roma  30 female
## 1757  616 627.2325 rural location       Rousse           Roma   8   male
## 1758  616 627.2325 rural location       Rousse           Roma  79 female
## 1759  616 627.2325 rural location       Rousse           Roma  14   male
## 1760  617 627.2325 rural location Sofia region       Bulgaria  69   male
## 1761  617 627.2325 rural location Sofia region       Bulgaria  59 female
## 1762  618 627.2325 rural location       Rousse          Turks  59   male
## 1763  618 627.2325 rural location       Rousse          Turks  59 female
## 1764  618 627.2325 rural location       Rousse          Turks  40 female
## 1765  619 627.2325 rural location      Plovdiv       Bulgaria  37   male
## 1766  619 627.2325 rural location      Plovdiv       Bulgaria  33 female
## 1767  619 627.2325 rural location      Plovdiv       Bulgaria  14 female
## 1768  619 627.2325           <NA>      Plovdiv       Bulgaria   5   male
## 1769  620 627.2325 urban location       Rousse       Bulgaria  30   male
## 1770  620 627.2325 urban location       Rousse       Bulgaria  31 female
## 1771  620 627.2325           <NA>       Rousse       Bulgaria   3   male
## 1772  620 627.2325           <NA>       Rousse       Bulgaria   1 female
## 1773  621 627.2325 rural location      Plovdiv       Bulgaria  43   male
## 1774  621 627.2325 rural location      Plovdiv       Bulgaria  41 female
## 1775  621 627.2325 rural location      Plovdiv       Bulgaria  19   male
## 1776  621 627.2325 rural location      Plovdiv       Bulgaria  65   male
## 1777  621 627.2325 rural location      Plovdiv       Bulgaria  62 female
## 1778  622 627.2325 rural location      Plovdiv       Bulgaria  77   male
## 1779  622 627.2325 rural location      Plovdiv       Bulgaria  76 female
## 1780  622 627.2325 rural location      Plovdiv       Bulgaria  52   male
## 1781  622 627.2325 rural location      Plovdiv       Bulgaria  48 female
## 1782  622 627.2325 rural location      Plovdiv       Bulgaria  28   male
## 1783  622 627.2325 rural location      Plovdiv       Bulgaria  26   male
## 1784  622 627.2325 rural location      Plovdiv       Bulgaria  25 female
## 1785  622 627.2325           <NA>      Plovdiv       Bulgaria   5   male
## 1786  623 627.2325 rural location       Rousse          Turks  47   male
## 1787  623 627.2325 rural location       Rousse          Turks  47 female
## 1788  623 627.2325 rural location       Rousse          Turks  24 female
## 1789  623 627.2325 rural location       Rousse          Turks  29   male
## 1790  623 627.2325           <NA>       Rousse          Turks   1   male
## 1791  623 627.2325 rural location       Rousse          Turks  19 female
## 1792  624 627.2325 rural location      Lovetch       Bulgaria  72   male
## 1793  624 627.2325 rural location      Lovetch       Bulgaria  71 female
## 1794  625 627.2325 rural location       Rousse          Turks  60   male
## 1795  625 627.2325 rural location       Rousse          Turks  56 female
## 1796  625 627.2325 rural location       Rousse          Turks  35   male
## 1797  626 627.2325 rural location       Rousse          Turks  70   male
## 1798  626 627.2325 rural location       Rousse          Turks  68 female
## 1799  626 627.2325 rural location       Rousse          Turks  40   male
## 1800  627 627.2325 rural location Sofia region       Bulgaria  75 female
## 1801  628 627.2325 urban location Sofia region       Bulgaria  23   male
## 1802  628 627.2325 urban location Sofia region       Bulgaria  23 female
## 1803  629 627.2325 urban location       Rousse          Turks  45   male
## 1804  629 627.2325 urban location       Rousse          Turks  45 female
## 1805  629 627.2325 urban location       Rousse          Turks  20 female
## 1806  630 627.2325 urban location       Rousse          Turks  61   male
## 1807  630 627.2325 urban location       Rousse          Turks  61 female
## 1808  631 627.2325 urban location      Lovetch          Turks  65 female
## 1809  632 627.2325 urban location       Rousse           Roma  51   male
## 1810  632 627.2325 urban location       Rousse           Roma  52 female
## 1811  632 627.2325 urban location       Rousse           Roma  25   male
## 1812  632 627.2325 urban location       Rousse           Roma  20 female
## 1813  633 627.2325 urban location        Varna          Turks  44 female
## 1814  633 627.2325 urban location        Varna          Turks  45   male
## 1815  633 627.2325 urban location        Varna          Turks  22 female
## 1816  633 627.2325 urban location        Varna          Turks  19   male
## 1817  634 627.2325 urban location        Varna       Bulgaria  47 female
## 1818  634 627.2325 urban location        Varna       Bulgaria  20   male
## 1819  635       NA rural location         <NA>           <NA>  46   male
## 1820  635       NA rural location         <NA>           <NA>  30 female
## 1821  635       NA rural location         <NA>           <NA>  10 female
## 1822  635       NA rural location         <NA>           <NA>   8 female
## 1823  636 627.2325 rural location      Lovetch          Turks  69   male
## 1824  636 627.2325 rural location      Lovetch          Turks  62 female
## 1825  636 627.2325 rural location      Lovetch          Turks  36   male
## 1826  636 627.2325 rural location      Lovetch          Turks  37 female
## 1827  636 627.2325 rural location      Lovetch          Turks  14   male
## 1828  636 627.2325 rural location      Lovetch          Turks  12 female
## 1829  636 627.2325 rural location      Lovetch          Turks  39 female
## 1830  637 627.2325 urban location     Bourgass       Bulgaria  33   male
## 1831  637 627.2325 urban location     Bourgass       Bulgaria  31 female
## 1832  637 627.2325 urban location     Bourgass       Bulgaria  14 female
## 1833  637 627.2325 urban location     Bourgass       Bulgaria   8 female
## 1834  638 627.2325 urban location     Bourgass       Bulgaria  70   male
## 1835  638 627.2325 urban location     Bourgass       Bulgaria  36   male
## 1836  638 627.2325 urban location     Bourgass       Bulgaria  43   male
## 1837  638 627.2325 urban location     Bourgass       Bulgaria  40 female
## 1838  638 627.2325 urban location     Bourgass       Bulgaria  30 female
## 1839  638 627.2325           <NA>     Bourgass       Bulgaria   5   male
## 1840  639 627.2325 urban location     Bourgass       Bulgaria  70   male
## 1841  639 627.2325 urban location     Bourgass       Bulgaria  69 female
## 1842  640       NA rural location         <NA>           <NA>  28 female
## 1843  640       NA rural location         <NA>           <NA>  48 female
## 1844  640       NA rural location         <NA>           <NA>  26 female
## 1845  641 627.2325 urban location      Haskovo           Roma  34   male
## 1846  641 627.2325 urban location      Haskovo           Roma  33 female
## 1847  641 627.2325 urban location      Haskovo           Roma  15 female
## 1848  641 627.2325           <NA>      Haskovo           Roma   7   male
## 1849  642 627.2325 urban location        Varna       Bulgaria  52   male
## 1850  642 627.2325 urban location        Varna       Bulgaria  50 female
## 1851  642 627.2325 urban location        Varna       Bulgaria  21 female
## 1852  642 627.2325 urban location        Varna       Bulgaria  18   male
## 1853  642 627.2325 urban location        Varna       Bulgaria  78   male
## 1854  642 627.2325 urban location        Varna       Bulgaria  73 female
## 1855  643 627.2325 urban location        Varna       Bulgaria  62   male
## 1856  643 627.2325 urban location        Varna       Bulgaria  56 female
## 1857  644 627.2325 rural location       Rousse          Turks  52   male
## 1858  644 627.2325 rural location       Rousse          Turks  51 female
## 1859  644 627.2325 rural location       Rousse          Turks  29   male
## 1860  644 627.2325 rural location       Rousse          Turks  26 female
## 1861  644 627.2325           <NA>       Rousse          Turks   5 female
## 1862  645 627.2325 rural location       Rousse          Turks  46   male
## 1863  645 627.2325 rural location       Rousse          Turks  41 female
## 1864  645 627.2325 rural location       Rousse          Turks  22   male
## 1865  645 627.2325 rural location       Rousse          Turks  20 female
## 1866  646 627.2325 rural location      Montana       Bulgaria  84 female
## 1867  647 627.2325 rural location      Montana       Bulgaria  87 female
## 1868  648 627.2325 rural location      Montana       Bulgaria  79   male
## 1869  649 627.2325 urban location       Rousse       Bulgaria  35   male
## 1870  649 627.2325 urban location       Rousse       Bulgaria  32 female
## 1871  649 627.2325 urban location       Rousse       Bulgaria   9 female
## 1872  650 627.2325 urban location       Rousse       Bulgaria  41   male
## 1873  650 627.2325 urban location       Rousse       Bulgaria  38 female
## 1874  650 627.2325 urban location       Rousse       Bulgaria  18   male
## 1875  651 627.2325 urban location        Varna       Bulgaria  38   male
## 1876  651 627.2325 urban location        Varna       Bulgaria  32 female
## 1877  651 627.2325 urban location        Varna       Bulgaria  13 female
## 1878  651 627.2325 urban location        Varna       Bulgaria  10   male
## 1879  651 627.2325 urban location        Varna       Bulgaria  62 female
## 1880  652 627.2325 rural location      Lovetch       Bulgaria  85   male
## 1881  652 627.2325 rural location      Lovetch       Bulgaria  55   male
## 1882  652 627.2325 rural location      Lovetch       Bulgaria  51 female
## 1883  652 627.2325 rural location      Lovetch       Bulgaria  30   male
## 1884  653 627.2325 urban location      Montana           Roma  60   male
## 1885  653 627.2325 urban location      Montana           Roma  53 female
## 1886  653 627.2325 urban location      Montana           Roma  30   male
## 1887  653 627.2325 urban location      Montana           Roma  30 female
## 1888  653 627.2325 urban location      Montana           Roma  10   male
## 1889  653 627.2325           <NA>      Montana           Roma   6   male
## 1890  654 627.2325 rural location      Montana       Bulgaria  47   male
## 1891  654 627.2325 rural location      Montana       Bulgaria  31 female
## 1892  654 627.2325 rural location      Montana       Bulgaria  10   male
## 1893  654 627.2325           <NA>      Montana       Bulgaria   5 female
## 1894  655 627.2325 rural location      Montana       Bulgaria  82   male
## 1895  655 627.2325 rural location      Montana       Bulgaria  78 female
## 1896  656 627.2325 rural location      Lovetch       Bulgaria  76   male
## 1897  656 627.2325 rural location      Lovetch       Bulgaria  52   male
## 1898  656 627.2325 rural location      Lovetch       Bulgaria  45 female
## 1899  656 627.2325           <NA>      Lovetch       Bulgaria  27   male
## 1900  656 627.2325 rural location      Lovetch       Bulgaria  25 female
## 1901  656 627.2325           <NA>      Lovetch       Bulgaria   1 female
## 1902  657 627.2325 rural location      Lovetch       Bulgaria  79 female
## 1903  657 627.2325 rural location      Lovetch       Bulgaria  55   male
## 1904  658 627.2325 rural location      Lovetch       Bulgaria  66 female
## 1905  659 627.2325 urban location      Montana           Roma  55   male
## 1906  659 627.2325 urban location      Montana           Roma  52 female
## 1907  660 627.2325 urban location      Montana           Roma  34   male
## 1908  660 627.2325 urban location      Montana           Roma  22 female
## 1909  660 627.2325 urban location      Montana           Roma  59 female
## 1910  660 627.2325 urban location      Montana           Roma  81 female
## 1911  660 627.2325           <NA>      Montana           Roma   2   male
## 1912  661 627.2325 rural location      Haskovo          Turks  55   male
## 1913  661 627.2325 rural location      Haskovo          Turks  56 female
## 1914  661 627.2325 rural location      Haskovo          Turks  22   male
## 1915  662 627.2325 urban location      Lovetch       Bulgaria  54   male
## 1916  662 627.2325 urban location      Lovetch       Bulgaria  46 female
## 1917  662 627.2325 urban location      Lovetch       Bulgaria  26   male
## 1918  663 627.2325 urban location      Haskovo           Roma  44   male
## 1919  663 627.2325 urban location      Haskovo           Roma  44 female
## 1920  663 627.2325 urban location      Haskovo           Roma  22   male
## 1921  663 627.2325 urban location      Haskovo           Roma  21 female
## 1922  663 627.2325 urban location      Haskovo           Roma  19 female
## 1923  664 627.2325 urban location      Haskovo           Roma  41 female
## 1924  664 627.2325 urban location      Haskovo           Roma  22   male
## 1925  665 627.2325 urban location        Varna       Bulgaria  62   male
## 1926  665 627.2325 urban location        Varna       Bulgaria  57 female
## 1927  665 627.2325 urban location        Varna       Bulgaria  36 female
## 1928  666 627.2325 rural location      Haskovo          Turks  28   male
## 1929  666 627.2325 rural location      Haskovo          Turks  26 female
## 1930  667 627.2325 rural location      Haskovo          Turks  51   male
## 1931  667 627.2325 rural location      Haskovo          Turks  48 female
## 1932  667 627.2325 rural location      Haskovo          Turks  28   male
## 1933  667 627.2325 rural location      Haskovo          Turks  23 female
## 1934  667 627.2325           <NA>      Haskovo          Turks   6 female
## 1935  668 627.2325 urban location     Bourgass       Bulgaria  38   male
## 1936  668 627.2325 urban location     Bourgass       Bulgaria  36 female
## 1937  668 627.2325 urban location     Bourgass       Bulgaria  15   male
## 1938  669 627.2325 urban location     Bourgass       Bulgaria  57 female
## 1939  669 627.2325 urban location     Bourgass       Bulgaria  28   male
## 1940  670 627.2325 urban location      Montana           Roma  30   male
## 1941  670 627.2325 urban location      Montana           Roma  38   male
## 1942  670 627.2325 urban location      Montana           Roma  34 female
## 1943  670 627.2325 urban location      Montana           Roma  15 female
## 1944  670 627.2325 urban location      Montana           Roma   9 female
## 1945  671 627.2325 rural location     Bourgass       Bulgaria  49 female
## 1946  671 627.2325 rural location     Bourgass       Bulgaria  74 female
## 1947  672 627.2325 urban location      Montana       Bulgaria  66   male
## 1948  672 627.2325 urban location      Montana       Bulgaria  63 female
## 1949  672 627.2325 urban location      Montana       Bulgaria  33   male
## 1950  672 627.2325 urban location      Montana       Bulgaria  30 female
## 1951  672 627.2325 urban location      Montana       Bulgaria   7   male
## 1952  672 627.2325 urban location      Montana       Bulgaria  82 female
## 1953  673 627.2325 urban location      Lovetch       Bulgaria  62   male
## 1954  673 627.2325 urban location      Lovetch       Bulgaria  62 female
## 1955  674 627.2325 urban location      Haskovo           Roma  46   male
## 1956  674 627.2325 urban location      Haskovo           Roma  33 female
## 1957  674 627.2325 urban location      Haskovo           Roma  15   male
## 1958  674 627.2325           <NA>      Haskovo           Roma   5 female
## 1959  675 627.2325 urban location      Haskovo           Roma  68 female
## 1960  675 627.2325 urban location      Haskovo           Roma  18   male
## 1961  676 627.2325 rural location      Haskovo          Turks  31   male
## 1962  676 627.2325 rural location      Haskovo          Turks  30 female
## 1963  676 627.2325 rural location      Haskovo          Turks   9 female
## 1964  677 627.2325 rural location      Haskovo          Turks  29   male
## 1965  677 627.2325 rural location      Haskovo          Turks  26 female
## 1966  677 627.2325           <NA>      Haskovo          Turks   4   male
## 1967  678 627.2325 urban location Sofia region       Bulgaria  82 female
## 1968  679 627.2325 urban location Sofia region       Bulgaria  33   male
## 1969  679 627.2325 urban location Sofia region       Bulgaria  20 female
## 1970  680 627.2325 urban location Sofia region       Bulgaria  50   male
## 1971  680 627.2325 urban location Sofia region       Bulgaria  35 female
## 1972  680 627.2325 urban location Sofia region       Bulgaria   7   male
## 1973  680 627.2325           <NA> Sofia region       Bulgaria   0 female
## 1974  681 627.2325 urban location        Varna       Bulgaria  61   male
## 1975  682 627.2325 urban location      Lovetch       Bulgaria  73 female
## 1976  683 627.2325 urban location       Rousse       Bulgaria  83 female
## 1977  684 627.2325 urban location      Lovetch          Turks  34   male
## 1978  684 627.2325 urban location      Lovetch          Turks  28 female
## 1979  684 627.2325           <NA>      Lovetch          Turks   2 female
## 1980  685 627.2325 urban location Sofia region       Bulgaria  88   male
## 1981  686 627.2325 urban location      Lovetch       Bulgaria  79 female
## 1982  687 627.2325 urban location      Lovetch       Bulgaria  56   male
## 1983  687 627.2325 urban location      Lovetch       Bulgaria  46 female
## 1984  687 627.2325 urban location      Lovetch       Bulgaria  19   male
## 1985  687 627.2325 urban location      Lovetch       Bulgaria  83 female
## 1986  688 627.2325 urban location      Lovetch       Bulgaria  45   male
## 1987  688 627.2325 urban location      Lovetch       Bulgaria  41 female
## 1988  688 627.2325           <NA>      Lovetch       Bulgaria  21   male
## 1989  689 627.2325 urban location      Lovetch       Bulgaria  63 female
## 1990  689 627.2325 urban location      Lovetch       Bulgaria  34   male
## 1991  689 627.2325 urban location      Lovetch       Bulgaria  29 female
## 1992  689 627.2325           <NA>      Lovetch       Bulgaria   2   male
## 1993  690 627.2325 rural location      Haskovo          Turks  23   male
## 1994  690 627.2325 rural location      Haskovo          Turks  21 female
## 1995  690 627.2325           <NA>      Haskovo          Turks   1 female
## 1996  691 627.2325 rural location      Montana       Bulgaria  74   male
## 1997  691 627.2325 rural location      Montana       Bulgaria  69 female
## 1998  692 627.2325 urban location      Montana       Bulgaria  75 female
## 1999  693 627.2325 urban location      Montana       Bulgaria  79 female
## 2000  693 627.2325 urban location      Montana       Bulgaria  85   male
## 2001  694 627.2325 urban location      Montana       Bulgaria  76 female
## 2002  695 627.2325 urban location      Montana       Bulgaria  79 female
## 2003  696 627.2325 rural location      Lovetch           Roma  44   male
## 2004  696 627.2325 rural location      Lovetch           Roma  50 female
## 2005  696 627.2325 rural location      Lovetch           Roma  17   male
## 2006  696 627.2325 rural location      Lovetch           Roma  17   male
## 2007  697 627.2325 rural location      Lovetch          Turks  64   male
## 2008  697 627.2325 rural location      Lovetch          Turks  54 female
## 2009  697 627.2325 rural location      Lovetch          Turks  35   male
## 2010  697 627.2325 rural location      Lovetch          Turks  80 female
## 2011  698 627.2325 urban location        Varna       Bulgaria  78 female
## 2012  699 627.2325 urban location        Varna       Bulgaria  58   male
## 2013  699 627.2325 urban location        Varna       Bulgaria  48 female
## 2014  699 627.2325 urban location        Varna       Bulgaria  28   male
## 2015  699 627.2325 urban location        Varna       Bulgaria  25 female
## 2016  700 627.2325 rural location      Montana       Bulgaria  38   male
## 2017  700 627.2325 rural location      Montana       Bulgaria  31 female
## 2018  700 627.2325 rural location      Montana       Bulgaria  11   male
## 2019  701 627.2325 rural location        Varna          Turks  66   male
## 2020  701 627.2325 rural location        Varna          Turks  63 female
## 2021  701 627.2325 rural location        Varna          Turks  44   male
## 2022  702 627.2325 rural location Sofia region       Bulgaria  59   male
## 2023  702 627.2325 rural location Sofia region       Bulgaria  57 female
## 2024  702 627.2325 rural location Sofia region       Bulgaria  33   male
## 2025  702 627.2325 rural location Sofia region       Bulgaria  29   male
## 2026  703 627.2325 rural location        Varna          Other  31   male
## 2027  704 627.2325 rural location        Varna       Bulgaria  80 female
## 2028  704 627.2325 rural location        Varna       Bulgaria  49   male
## 2029  705 627.2325 rural location        Varna       Bulgaria  56   male
## 2030  705 627.2325 rural location        Varna       Bulgaria  49 female
## 2031  705 627.2325 rural location        Varna       Bulgaria  27   male
## 2032  705 627.2325 rural location        Varna       Bulgaria  25   male
## 2033  706 627.2325 rural location        Varna          Turks  32   male
## 2034  706 627.2325 rural location        Varna          Turks  30 female
## 2035  706 627.2325 rural location        Varna          Turks   8 female
## 2036  706 627.2325           <NA>        Varna          Turks   6 female
## 2037  707 627.2325 urban location      Plovdiv       Bulgaria  62   male
## 2038  707 627.2325 urban location      Plovdiv       Bulgaria  61 female
## 2039  707 627.2325 urban location      Plovdiv       Bulgaria  37 female
## 2040  707 627.2325 urban location      Plovdiv       Bulgaria  46   male
## 2041  707 627.2325 urban location      Plovdiv       Bulgaria  14   male
## 2042  708 627.2325 urban location      Plovdiv       Bulgaria  51   male
## 2043  708 627.2325 urban location      Plovdiv       Bulgaria  52 female
## 2044  708 627.2325 urban location      Plovdiv       Bulgaria  73 female
## 2045  708 627.2325 urban location      Plovdiv       Bulgaria  23 female
## 2046  709 627.2325 urban location      Plovdiv       Bulgaria  35   male
## 2047  709 627.2325 urban location      Plovdiv       Bulgaria  34 female
## 2048  709 627.2325 urban location      Plovdiv       Bulgaria  11 female
## 2049  710 627.2325 rural location Sofia region       Bulgaria  66 female
## 2050  711 627.2325 rural location        Varna          Turks  60   male
## 2051  711 627.2325 rural location        Varna          Turks  51 female
## 2052  711 627.2325 rural location        Varna          Turks  24   male
## 2053  712 627.2325 rural location      Haskovo          Turks  57   male
## 2054  712 627.2325 rural location      Haskovo          Turks  58 female
## 2055  712 627.2325 rural location      Haskovo          Turks  33   male
## 2056  713 627.2325 rural location      Montana       Bulgaria  74   male
## 2057  713 627.2325 rural location      Montana       Bulgaria  71 female
## 2058  714 627.2325 urban location      Montana       Bulgaria  44   male
## 2059  714 627.2325 urban location      Montana       Bulgaria  42 female
## 2060  715 627.2325 rural location      Montana       Bulgaria  53   male
## 2061  715 627.2325 rural location      Montana       Bulgaria  51 female
## 2062  716 627.2325 urban location        Varna       Bulgaria  56   male
## 2063  716 627.2325 urban location        Varna       Bulgaria  33 female
## 2064  716 627.2325 urban location        Varna       Bulgaria  35   male
## 2065  716 627.2325 urban location        Varna       Bulgaria   7 female
## 2066  717 627.2325 rural location        Varna          Turks  57   male
## 2067  717 627.2325 rural location        Varna          Turks  57 female
## 2068  717 627.2325 rural location        Varna          Turks  26   male
## 2069  718 627.2325 urban location        Varna       Bulgaria  64   male
## 2070  718 627.2325 urban location        Varna       Bulgaria  60 female
## 2071  718 627.2325 urban location        Varna       Bulgaria  41 female
## 2072  718 627.2325 urban location        Varna       Bulgaria  16 female
## 2073  719 627.2325 rural location        Varna          Other  65   male
## 2074  720 627.2325 rural location        Varna          Turks  67   male
## 2075  720 627.2325 rural location        Varna          Turks  59 female
## 2076  720 627.2325 rural location        Varna          Turks  37   male
## 2077  720 627.2325 rural location        Varna          Turks  31 female
## 2078  720 627.2325           <NA>        Varna          Turks   2   male
## 2079  721 627.2325 rural location      Montana       Bulgaria  69   male
## 2080  721 627.2325 rural location      Montana       Bulgaria  62 female
## 2081  721 627.2325 rural location      Montana       Bulgaria  87 female
## 2082  722 627.2325 urban location        Varna       Bulgaria  64   male
## 2083  722 627.2325 urban location        Varna       Bulgaria  55 female
## 2084  723 627.2325 urban location        Varna       Bulgaria  56 female
## 2085  723 627.2325 urban location        Varna       Bulgaria  82 female
## 2086  724 627.2325 rural location Sofia region       Bulgaria  57   male
## 2087  724 627.2325 rural location Sofia region       Bulgaria  52 female
## 2088  725 627.2325 rural location Sofia region       Bulgaria  72 female
## 2089  726 627.2325 urban location      Plovdiv       Bulgaria  34   male
## 2090  726 627.2325 urban location      Plovdiv       Bulgaria  29 female
## 2091  726 627.2325 urban location      Plovdiv       Bulgaria   8 female
## 2092  727 627.2325 urban location      Plovdiv       Bulgaria  56   male
## 2093  727 627.2325 urban location      Plovdiv       Bulgaria  57 female
## 2094  727 627.2325 urban location      Plovdiv       Bulgaria  30   male
## 2095  727 627.2325           <NA>      Plovdiv       Bulgaria  32   male
## 2096  728 627.2325 rural location        Varna          Turks  57   male
## 2097  728 627.2325 rural location        Varna          Turks  56 female
## 2098  728 627.2325 rural location        Varna          Turks  29 female
## 2099  728 627.2325 rural location        Varna          Turks  81 female
## 2100  729 627.2325 rural location Sofia region       Bulgaria  64   male
## 2101  729 627.2325 rural location Sofia region       Bulgaria  65 female
## 2102  730 627.2325 urban location       Rousse       Bulgaria  48   male
## 2103  730 627.2325 urban location       Rousse       Bulgaria  45 female
## 2104  730 627.2325 urban location       Rousse       Bulgaria  25 female
## 2105  730 627.2325 urban location       Rousse       Bulgaria  23 female
## 2106  730 627.2325 urban location       Rousse       Bulgaria  71   male
## 2107  730 627.2325 urban location       Rousse       Bulgaria  67 female
## 2108  731 627.2325 urban location       Rousse       Bulgaria  56   male
## 2109  731 627.2325 urban location       Rousse       Bulgaria  51 female
## 2110  731 627.2325 urban location       Rousse       Bulgaria  70 female
## 2111  732 627.2325 rural location        Varna          Turks  65 female
## 2112  732 627.2325 rural location        Varna          Turks  44   male
## 2113  732 627.2325 rural location        Varna          Turks  40   male
## 2114  733 627.2325 rural location        Varna       Bulgaria  70 female
## 2115  734 627.2325 urban location        Varna       Bulgaria  65   male
## 2116  734 627.2325 urban location        Varna       Bulgaria  64 female
## 2117  734 627.2325 urban location        Varna       Bulgaria  42   male
## 2118  735 627.2325 urban location        Varna       Bulgaria  67   male
## 2119  735 627.2325 urban location        Varna       Bulgaria  44   male
## 2120  735 627.2325 urban location        Varna       Bulgaria  12 female
## 2121  736 627.2325 rural location        Varna       Bulgaria  66   male
## 2122  736 627.2325 rural location        Varna       Bulgaria  64 female
## 2123  737 627.2325 rural location      Montana       Bulgaria  52 female
## 2124  737 627.2325 rural location      Montana       Bulgaria  34   male
## 2125  738 627.2325 rural location      Montana       Bulgaria  71   male
## 2126  738 627.2325 rural location      Montana       Bulgaria  70 female
## 2127  739 627.2325 urban location Sofia region       Bulgaria  36   male
## 2128  739 627.2325 urban location Sofia region       Bulgaria  34 female
## 2129  740 627.2325 urban location      Haskovo       Bulgaria  29   male
## 2130  740 627.2325 urban location      Haskovo       Bulgaria  34 female
## 2131  740 627.2325           <NA>      Haskovo       Bulgaria   3   male
## 2132  740 627.2325 urban location      Haskovo       Bulgaria  23 female
## 2133  741 627.2325 urban location       Rousse       Bulgaria  57   male
## 2134  741 627.2325 urban location       Rousse       Bulgaria  50 female
## 2135  741 627.2325 urban location       Rousse       Bulgaria  28 female
## 2136  742 627.2325 urban location      Haskovo       Bulgaria  52   male
## 2137  742 627.2325 urban location      Haskovo       Bulgaria  47 female
## 2138  742 627.2325 urban location      Haskovo       Bulgaria  26   male
## 2139  743 627.2325 urban location      Haskovo       Bulgaria  77   male
## 2140  743 627.2325 urban location      Haskovo       Bulgaria  80 female
## 2141  744 627.2325 urban location      Haskovo       Bulgaria  53   male
## 2142  744 627.2325 urban location      Haskovo       Bulgaria  47 female
## 2143  744 627.2325 urban location      Haskovo       Bulgaria  83 female
## 2144  745 627.2325 urban location      Haskovo       Bulgaria  48   male
## 2145  745 627.2325 urban location      Haskovo       Bulgaria  47 female
## 2146  745 627.2325 urban location      Haskovo       Bulgaria  24   male
## 2147  745 627.2325 urban location      Haskovo       Bulgaria  83   male
## 2148  746 627.2325 urban location       Rousse       Bulgaria  49   male
## 2149  746 627.2325 urban location       Rousse       Bulgaria  43 female
## 2150  746 627.2325 urban location       Rousse       Bulgaria  20   male
## 2151  747 627.2325 rural location        Varna       Bulgaria  43   male
## 2152  747 627.2325 rural location        Varna       Bulgaria  77 female
## 2153  748 627.2325 urban location        Varna       Bulgaria  46   male
## 2154  748 627.2325 urban location        Varna       Bulgaria  47 female
## 2155  748 627.2325 urban location        Varna       Bulgaria  23   male
## 2156  748 627.2325 urban location        Varna       Bulgaria  21   male
## 2157  749 627.2325 urban location      Plovdiv       Bulgaria  38   male
## 2158  749 627.2325 urban location      Plovdiv       Bulgaria  42 female
## 2159  749 627.2325 urban location      Plovdiv       Bulgaria  23 female
## 2160  749 627.2325 urban location      Plovdiv       Bulgaria  22 female
## 2161  749 627.2325           <NA>      Plovdiv       Bulgaria   3   male
## 2162  750 627.2325 rural location     Bourgass       Bulgaria  50   male
## 2163  750 627.2325 rural location     Bourgass       Bulgaria  21 female
## 2164  750 627.2325 rural location     Bourgass       Bulgaria  19 female
## 2165  751 627.2325 urban location       Rousse          Turks  51 female
## 2166  751 627.2325           <NA>       Rousse          Turks  25   male
## 2167  752 627.2325 rural location       Rousse          Turks  50   male
## 2168  752 627.2325 rural location       Rousse          Turks  48 female
## 2169  752 627.2325 rural location       Rousse          Turks  21 female
## 2170  752 627.2325 rural location       Rousse          Turks  73   male
## 2171  753 627.2325 rural location       Rousse          Turks  45   male
## 2172  753 627.2325 rural location       Rousse          Turks  42 female
## 2173  753 627.2325 rural location       Rousse          Turks  15 female
## 2174  753 627.2325 rural location       Rousse          Turks  69 female
## 2175  754 627.2325 urban location     Bourgass       Bulgaria  39   male
## 2176  754 627.2325 urban location     Bourgass       Bulgaria  36 female
## 2177  754 627.2325 urban location     Bourgass       Bulgaria  15   male
## 2178  755 627.2325 rural location     Bourgass       Bulgaria  61   male
## 2179  755 627.2325 rural location     Bourgass       Bulgaria  55 female
## 2180  756 627.2325 rural location      Lovetch           Roma  39   male
## 2181  756 627.2325 rural location      Lovetch           Roma  27 female
## 2182  756 627.2325 rural location      Lovetch           Roma  10   male
## 2183  756 627.2325 rural location      Lovetch           Roma   8 female
## 2184  756 627.2325           <NA>      Lovetch           Roma   3   male
## 2185  756 627.2325 rural location      Lovetch           Roma  72 female
## 2186  756 627.2325 rural location      Lovetch           Roma  24   male
## 2187  757 627.2325 rural location       Rousse          Turks  57   male
## 2188  757 627.2325 rural location       Rousse          Turks  58 female
## 2189  758 627.2325 rural location       Rousse          Turks  73   male
## 2190  758 627.2325 rural location       Rousse          Turks  63 female
## 2191  758 627.2325 rural location       Rousse          Turks  37   male
## 2192  758 627.2325 rural location       Rousse          Turks  36 female
## 2193  758 627.2325           <NA>       Rousse          Turks   6   male
## 2194  758 627.2325           <NA>       Rousse          Turks   4 female
## 2195  758 627.2325 rural location       Rousse          Turks  87 female
## 2196  759 627.2325 urban location     Bourgass       Bulgaria  46   male
## 2197  759 627.2325 urban location     Bourgass       Bulgaria  46 female
## 2198  759 627.2325 urban location     Bourgass       Bulgaria  18 female
## 2199  759 627.2325 urban location     Bourgass       Bulgaria  15   male
## 2200  760 627.2325 urban location      Plovdiv       Bulgaria  63   male
## 2201  760 627.2325 urban location      Plovdiv       Bulgaria  62 female
## 2202  760 627.2325 urban location      Plovdiv       Bulgaria  37   male
## 2203  760 627.2325 urban location      Plovdiv       Bulgaria  35 female
## 2204  760 627.2325           <NA>      Plovdiv       Bulgaria   5 female
## 2205  761 627.2325 rural location       Rousse       Bulgaria  46   male
## 2206  761 627.2325 rural location       Rousse       Bulgaria  36 female
## 2207  761 627.2325 rural location       Rousse       Bulgaria  18 female
## 2208  761 627.2325 rural location       Rousse       Bulgaria  16 female
## 2209  761 627.2325 rural location       Rousse       Bulgaria  63 female
## 2210  762 627.2325 urban location        Varna           Roma  50 female
## 2211  762 627.2325 urban location        Varna           Roma  27   male
## 2212  762 627.2325 urban location        Varna           Roma  28 female
## 2213  762 627.2325 urban location        Varna           Roma  10   male
## 2214  762 627.2325           <NA>        Varna           Roma   3   male
## 2215  763 627.2325 urban location   Sofia city       Bulgaria  52   male
## 2216  763 627.2325 urban location   Sofia city       Bulgaria  50 female
## 2217  763 627.2325 urban location   Sofia city       Bulgaria  28   male
## 2218  763 627.2325 urban location   Sofia city       Bulgaria  23   male
## 2219  764 627.2325 rural location       Rousse          Turks  56   male
## 2220  764 627.2325 rural location       Rousse          Turks  56 female
## 2221  765 627.2325 rural location       Rousse           Roma  54   male
## 2222  765 627.2325 rural location       Rousse           Roma  49 female
## 2223  765 627.2325 rural location       Rousse           Roma  30   male
## 2224  765 627.2325 rural location       Rousse           Roma  28 female
## 2225  766 627.2325 urban location       Rousse       Bulgaria  67   male
## 2226  766 627.2325 urban location       Rousse       Bulgaria  62 female
## 2227  766 627.2325 urban location       Rousse       Bulgaria  39 female
## 2228  767 627.2325 urban location      Haskovo       Bulgaria  31   male
## 2229  767 627.2325 urban location      Haskovo       Bulgaria  23 female
## 2230  767 627.2325           <NA>      Haskovo       Bulgaria   2 female
## 2231  768 627.2325 rural location Sofia region       Bulgaria  55   male
## 2232  768 627.2325 rural location Sofia region       Bulgaria  49 female
## 2233  769 627.2325 rural location       Rousse       Bulgaria  71 female
## 2234  770 627.2325 urban location     Bourgass       Bulgaria  56   male
## 2235  770 627.2325 urban location     Bourgass       Bulgaria  56 female
## 2236  771 627.2325 rural location      Haskovo       Bulgaria  69 female
## 2237  771 627.2325 rural location      Haskovo       Bulgaria  48   male
## 2238  771 627.2325 rural location      Haskovo       Bulgaria  44   male
## 2239  772 627.2325 urban location       Rousse       Bulgaria  61   male
## 2240  772 627.2325 urban location       Rousse       Bulgaria  56 female
## 2241  772 627.2325 urban location       Rousse       Bulgaria  31   male
## 2242  773 627.2325 rural location       Rousse          Turks  54   male
## 2243  773 627.2325 rural location       Rousse          Turks  50 female
## 2244  774 627.2325 rural location       Rousse          Turks  35   male
## 2245  774 627.2325 rural location       Rousse          Turks  31 female
## 2246  774 627.2325 rural location       Rousse          Turks  11 female
## 2247  774 627.2325 rural location       Rousse          Turks   9 female
## 2248  775 627.2325 urban location        Varna       Bulgaria  73   male
## 2249  775 627.2325 urban location        Varna       Bulgaria  72 female
## 2250  776 627.2325 urban location       Rousse       Bulgaria  52   male
## 2251  776 627.2325 urban location       Rousse       Bulgaria  51 female
## 2252  776 627.2325 urban location       Rousse       Bulgaria  24   male
## 2253  777 627.2325 rural location       Rousse          Turks  67   male
## 2254  777 627.2325 rural location       Rousse          Turks  66 female
## 2255  778 627.2325 rural location      Haskovo          Turks  40   male
## 2256  778 627.2325 rural location      Haskovo          Turks  44 female
## 2257  778 627.2325 rural location      Haskovo          Turks  18   male
## 2258  778 627.2325 rural location      Haskovo          Turks  11 female
## 2259  779 627.2325 urban location       Rousse       Bulgaria  40 female
## 2260  779 627.2325 urban location       Rousse       Bulgaria  21   male
## 2261  779 627.2325 urban location       Rousse       Bulgaria  17   male
## 2262  780 627.2325 urban location       Rousse       Bulgaria  53   male
## 2263  780 627.2325 urban location       Rousse       Bulgaria  49 female
## 2264  780 627.2325 urban location       Rousse       Bulgaria  17   male
## 2265  781 627.2325 urban location        Varna       Bulgaria  66 female
## 2266  782 627.2325 rural location       Rousse          Turks  40   male
## 2267  782 627.2325 rural location       Rousse          Turks  39 female
## 2268  782 627.2325 rural location       Rousse          Turks  18 female
## 2269  782 627.2325 rural location       Rousse          Turks  16   male
## 2270  782 627.2325 rural location       Rousse          Turks  58 female
## 2271  782 627.2325 rural location       Rousse          Turks  84 female
## 2272  783 627.2325 rural location       Rousse       Bulgaria  85   male
## 2273  783 627.2325 rural location       Rousse       Bulgaria  77 female
## 2274  784 627.2325 rural location      Lovetch           Roma  28   male
## 2275  784 627.2325 rural location      Lovetch           Roma  28 female
## 2276  784 627.2325 rural location      Lovetch           Roma  11   male
## 2277  784 627.2325 rural location      Lovetch           Roma  10   male
## 2278  784 627.2325 rural location      Lovetch           Roma   8 female
## 2279  784 627.2325           <NA>      Lovetch           Roma   5 female
## 2280  785 627.2325 rural location      Lovetch          Turks  58 female
## 2281  785 627.2325 rural location      Lovetch          Turks  35 female
## 2282  785 627.2325           <NA>      Lovetch          Turks   1 female
## 2283  785 627.2325 rural location      Lovetch          Turks   9   male
## 2284  785 627.2325           <NA>      Lovetch          Turks   7 female
## 2285  786 627.2325 urban location        Varna       Bulgaria  33   male
## 2286  786 627.2325 urban location        Varna       Bulgaria  29 female
## 2287  786 627.2325           <NA>        Varna       Bulgaria   7   male
## 2288  787 627.2325 rural location       Rousse           Roma  58   male
## 2289  787 627.2325 rural location       Rousse           Roma  23   male
## 2290  788 627.2325 rural location      Haskovo       Bulgaria  57   male
## 2291  788 627.2325 rural location      Haskovo       Bulgaria  51 female
## 2292  788 627.2325 rural location      Haskovo       Bulgaria  80 female
## 2293  789 627.2325 urban location       Rousse       Bulgaria  35   male
## 2294  789 627.2325 urban location       Rousse       Bulgaria  31 female
## 2295  789 627.2325 urban location       Rousse       Bulgaria  12   male
## 2296  789 627.2325 urban location       Rousse       Bulgaria   9 female
## 2297  790 627.2325 urban location       Rousse       Bulgaria  50   male
## 2298  790 627.2325 urban location       Rousse       Bulgaria  40 female
## 2299  790 627.2325 urban location       Rousse       Bulgaria  20 female
## 2300  791 627.2325 urban location      Haskovo       Bulgaria  50   male
## 2301  791 627.2325 urban location      Haskovo       Bulgaria  43 female
## 2302  791 627.2325 urban location      Haskovo       Bulgaria  21 female
## 2303  791 627.2325 urban location      Haskovo       Bulgaria  79   male
## 2304  791 627.2325 urban location      Haskovo       Bulgaria  78 female
## 2305  792 627.2325 urban location        Varna       Bulgaria  56 female
## 2306  792 627.2325 urban location        Varna       Bulgaria  85 female
## 2307  793 627.2325 urban location      Plovdiv       Bulgaria  49   male
## 2308  793 627.2325 urban location      Plovdiv       Bulgaria  48 female
## 2309  793 627.2325 urban location      Plovdiv       Bulgaria  24   male
## 2310  793 627.2325 urban location      Plovdiv       Bulgaria  23 female
## 2311  794 627.2325 urban location       Rousse          Turks  26   male
## 2312  794 627.2325 urban location       Rousse          Turks  20 female
## 2313  794 627.2325           <NA>       Rousse          Turks   2 female
## 2314  795 627.2325 urban location        Varna       Bulgaria  57   male
## 2315  795 627.2325 urban location        Varna       Bulgaria  55 female
## 2316  795 627.2325 urban location        Varna       Bulgaria  29   male
## 2317  795 627.2325 urban location        Varna       Bulgaria  25 female
## 2318  796 627.2325 rural location     Bourgass       Bulgaria  43   male
## 2319  796 627.2325 rural location     Bourgass       Bulgaria  36 female
## 2320  796 627.2325           <NA>     Bourgass       Bulgaria   5 female
## 2321  796 627.2325 rural location     Bourgass       Bulgaria  64 female
## 2322  797 627.2325 urban location      Haskovo       Bulgaria  39   male
## 2323  797 627.2325 urban location      Haskovo       Bulgaria  33 female
## 2324  797 627.2325 urban location      Haskovo       Bulgaria  12 female
## 2325  797 627.2325 urban location      Haskovo       Bulgaria  58 female
## 2326  798 627.2325 urban location        Varna       Bulgaria  52 female
## 2327  799 627.2325 rural location     Bourgass       Bulgaria  82   male
## 2328  799 627.2325 rural location     Bourgass       Bulgaria  79 female
## 2329  800 627.2325 rural location     Bourgass           Roma  25   male
## 2330  800 627.2325 rural location     Bourgass           Roma  22 female
## 2331  800 627.2325           <NA>     Bourgass           Roma   4   male
## 2332  800 627.2325           <NA>     Bourgass           Roma   3 female
## 2333  801 627.2325 rural location      Haskovo       Bulgaria  72   male
## 2334  801 627.2325 rural location      Haskovo       Bulgaria  51 female
## 2335  802 627.2325 urban location      Haskovo          Turks  46 female
## 2336  803 627.2325 rural location      Haskovo       Bulgaria  63 female
## 2337  804 627.2325 urban location      Plovdiv       Bulgaria  65 female
## 2338  805 627.2325 urban location       Rousse       Bulgaria  42   male
## 2339  805 627.2325 urban location       Rousse       Bulgaria  41 female
## 2340  805 627.2325 urban location       Rousse       Bulgaria  22   male
## 2341  805 627.2325 urban location       Rousse       Bulgaria  19 female
## 2342  806 627.2325 urban location      Plovdiv       Bulgaria  56   male
## 2343  806 627.2325 urban location      Plovdiv       Bulgaria  57 female
## 2344  806 627.2325 urban location      Plovdiv       Bulgaria  34 female
## 2345  806 627.2325 urban location      Plovdiv       Bulgaria  76 female
## 2346  807 627.2325 urban location      Plovdiv       Bulgaria  58   male
## 2347  807 627.2325 urban location      Plovdiv       Bulgaria  61 female
## 2348  807 627.2325 urban location      Plovdiv       Bulgaria  26   male
## 2349  808 627.2325 urban location      Plovdiv       Bulgaria  69 female
## 2350  809 627.2325 urban location      Haskovo       Bulgaria  46   male
## 2351  809 627.2325 urban location      Haskovo       Bulgaria  42 female
## 2352  809 627.2325 urban location      Haskovo       Bulgaria  22 female
## 2353  809 627.2325           <NA>      Haskovo       Bulgaria   5   male
## 2354  810 627.2325 urban location      Haskovo       Bulgaria  48   male
## 2355  810 627.2325 urban location      Haskovo       Bulgaria  40 female
## 2356  810 627.2325 urban location      Haskovo       Bulgaria  15   male
## 2357  811 627.2325 rural location      Haskovo          Turks  61   male
## 2358  811 627.2325 rural location      Haskovo          Turks  64 female
## 2359  812 627.2325 urban location      Haskovo           Roma  43   male
## 2360  812 627.2325 urban location      Haskovo           Roma  40 female
## 2361  812 627.2325 urban location      Haskovo           Roma  19 female
## 2362  812 627.2325 urban location      Haskovo           Roma  18 female
## 2363  813 627.2325 urban location      Haskovo       Bulgaria  61   male
## 2364  813 627.2325 urban location      Haskovo       Bulgaria  63 female
## 2365  814 627.2325 urban location      Haskovo       Bulgaria  70   male
## 2366  814 627.2325 urban location      Haskovo       Bulgaria  65 female
## 2367  815 627.2325 urban location      Haskovo       Bulgaria  49   male
## 2368  815 627.2325 urban location      Haskovo       Bulgaria  45 female
## 2369  815 627.2325 urban location      Haskovo       Bulgaria  22   male
## 2370  816 627.2325 urban location      Haskovo       Bulgaria  73   male
## 2371  816 627.2325 urban location      Haskovo       Bulgaria  70 female
## 2372  816 627.2325 urban location      Haskovo       Bulgaria  44 female
## 2373  817 627.2325 urban location      Haskovo       Bulgaria  38   male
## 2374  817 627.2325 urban location      Haskovo       Bulgaria  32 female
## 2375  817 627.2325 urban location      Haskovo       Bulgaria  11 female
## 2376  817 627.2325 urban location      Haskovo       Bulgaria   9   male
## 2377  817 627.2325 urban location      Haskovo       Bulgaria  74   male
## 2378  817 627.2325 urban location      Haskovo       Bulgaria  72 female
## 2379  818 627.2325 urban location       Rousse       Bulgaria  71   male
## 2380  818 627.2325 urban location       Rousse       Bulgaria  69 female
## 2381  819 627.2325 urban location       Rousse       Bulgaria  48   male
## 2382  819 627.2325 urban location       Rousse       Bulgaria  38 female
## 2383  819 627.2325 urban location       Rousse       Bulgaria  15 female
## 2384  819 627.2325 urban location       Rousse       Bulgaria   9 female
## 2385  819 627.2325 urban location       Rousse       Bulgaria  81 female
## 2386  820 627.2325 urban location      Haskovo       Bulgaria  74   male
## 2387  820 627.2325 urban location      Haskovo       Bulgaria  73 female
## 2388  821 627.2325 urban location      Plovdiv       Bulgaria  53   male
## 2389  821 627.2325 urban location      Plovdiv       Bulgaria  50 female
## 2390  821 627.2325 urban location      Plovdiv       Bulgaria  25 female
## 2391  821 627.2325 urban location      Plovdiv       Bulgaria  25   male
## 2392  822 627.2325 urban location      Plovdiv       Bulgaria  79 female
## 2393  822 627.2325 urban location      Plovdiv       Bulgaria  57 female
## 2394  823 627.2325 urban location      Plovdiv       Bulgaria  77 female
## 2395  823 627.2325 urban location      Plovdiv       Bulgaria  48 female
## 2396  824 627.2325 rural location      Montana       Bulgaria  65   male
## 2397  824 627.2325 rural location      Montana       Bulgaria  65 female
## 2398  825 627.2325 rural location        Varna          Turks  73   male
## 2399  825 627.2325 rural location        Varna          Turks  49 female
## 2400  825 627.2325 rural location        Varna          Turks  27   male
## 2401  825 627.2325 rural location        Varna          Turks  29 female
## 2402  825 627.2325           <NA>        Varna          Turks   2   male
## 2403  826 627.2325 urban location       Rousse          Turks  52   male
## 2404  826 627.2325 urban location       Rousse          Turks  35   male
## 2405  826 627.2325 urban location       Rousse          Turks  30 female
## 2406  826 627.2325 urban location       Rousse          Turks   9 female
## 2407  826 627.2325           <NA>       Rousse          Turks   6 female
## 2408  827 627.2325 urban location      Plovdiv       Bulgaria  74 female
## 2409  827 627.2325 urban location      Plovdiv       Bulgaria  71 female
## 2410  828 627.2325 urban location      Haskovo           Roma  70 female
## 2411  828 627.2325 urban location      Haskovo           Roma  51 female
## 2412  829 627.2325 urban location      Haskovo       Bulgaria  57   male
## 2413  830 627.2325 urban location      Plovdiv       Bulgaria  54   male
## 2414  830 627.2325 urban location      Plovdiv       Bulgaria  55 female
## 2415  830 627.2325 urban location      Plovdiv       Bulgaria  19 female
## 2416  831 627.2325 urban location      Haskovo       Bulgaria  51 female
## 2417  831 627.2325 urban location      Haskovo       Bulgaria  30 female
## 2418  831 627.2325 urban location      Haskovo       Bulgaria  25 female
## 2419  831 627.2325           <NA>      Haskovo       Bulgaria   7   male
## 2420  832 627.2325 rural location       Rousse          Turks  43   male
## 2421  832 627.2325 rural location       Rousse          Turks  43 female
## 2422  832 627.2325 rural location       Rousse          Turks  21 female
## 2423  832 627.2325 rural location       Rousse          Turks  19   male
## 2424  833 627.2325 rural location Sofia region       Bulgaria  70 female
## 2425  834 627.2325 urban location      Montana       Bulgaria  63   male
## 2426  835 627.2325 rural location Sofia region       Bulgaria  69   male
## 2427  835 627.2325 rural location Sofia region       Bulgaria  69 female
## 2428  836 627.2325 rural location Sofia region       Bulgaria  68   male
## 2429  836 627.2325 rural location Sofia region       Bulgaria  69 female
## 2430  836 627.2325 rural location Sofia region       Bulgaria  40   male
## 2431  837 627.2325 urban location      Plovdiv       Bulgaria  58   male
## 2432  837 627.2325 urban location      Plovdiv       Bulgaria  59 female
## 2433  838 627.2325 urban location        Varna          Turks  47 female
## 2434  839 627.2325 urban location        Varna       Bulgaria  47   male
## 2435  839 627.2325 urban location        Varna       Bulgaria  47   male
## 2436  840 627.2325 rural location        Varna       Bulgaria  72   male
## 2437  841 627.2325 urban location        Varna       Bulgaria  67   male
## 2438  841 627.2325 urban location        Varna       Bulgaria  68 female
## 2439  842 627.2325 urban location      Montana       Bulgaria  81   male
## 2440  843 627.2325 rural location        Varna           Roma  66   male
## 2441  843 627.2325 rural location        Varna           Roma  40   male
## 2442  843 627.2325 rural location        Varna           Roma  35 female
## 2443  843 627.2325 rural location        Varna           Roma  17   male
## 2444  843 627.2325 rural location        Varna           Roma  14 female
## 2445  843 627.2325           <NA>        Varna           Roma   4   male
## 2446  844 627.2325 rural location      Montana       Bulgaria  59 female
## 2447  844 627.2325 rural location      Montana       Bulgaria  38   male
## 2448  844 627.2325 rural location      Montana       Bulgaria  22 female
## 2449  844 627.2325           <NA>      Montana       Bulgaria   7 female
## 2450  844 627.2325           <NA>      Montana       Bulgaria   4   male
## 2451  845 627.2325 rural location      Montana       Bulgaria  48   male
## 2452  845 627.2325 rural location      Montana       Bulgaria  43 female
## 2453  846 627.2325 rural location      Montana       Bulgaria  75 female
## 2454  847 627.2325 rural location        Varna       Bulgaria  59   male
## 2455  847 627.2325 rural location        Varna       Bulgaria  54 female
## 2456  847 627.2325 rural location        Varna       Bulgaria  11 female
## 2457  848 627.2325 rural location        Varna       Bulgaria  65   male
## 2458  848 627.2325 rural location        Varna       Bulgaria  62 female
## 2459  849 627.2325 rural location Sofia region       Bulgaria  75   male
## 2460  849 627.2325 rural location Sofia region       Bulgaria  71 female
## 2461  850 627.2325 rural location      Haskovo          Turks  50 female
## 2462  850 627.2325 rural location      Haskovo          Turks  78 female
## 2463  851 627.2325 rural location      Montana       Bulgaria  56   male
## 2464  851 627.2325 rural location      Montana       Bulgaria  51 female
## 2465  852 627.2325 urban location        Varna       Bulgaria  86 female
## 2466  853 627.2325 urban location        Varna       Bulgaria  77 female
## 2467  854 627.2325 urban location      Haskovo           Roma  28   male
## 2468  854 627.2325 urban location      Haskovo           Roma  25 female
## 2469  855 627.2325 rural location      Haskovo       Bulgaria  55   male
## 2470  855 627.2325 rural location      Haskovo       Bulgaria  48 female
## 2471  855 627.2325 rural location      Haskovo       Bulgaria  73 female
## 2472  855 627.2325 rural location      Haskovo       Bulgaria  31   male
## 2473  856 627.2325 rural location      Haskovo       Bulgaria  61   male
## 2474  856 627.2325 rural location      Haskovo       Bulgaria  50 female
## 2475  857 627.2325 rural location Sofia region       Bulgaria  84   male
## 2476  857 627.2325 rural location Sofia region       Bulgaria  82 female
## 2477  858 627.2325 urban location     Bourgass       Bulgaria  56   male
## 2478  858 627.2325 urban location     Bourgass       Bulgaria  59 female
## 2479  858 627.2325 urban location     Bourgass       Bulgaria  27   male
## 2480  859 627.2325 urban location      Montana       Bulgaria  50   male
## 2481  860 627.2325 urban location       Rousse       Bulgaria  27   male
## 2482  860 627.2325 urban location       Rousse       Bulgaria  31 female
## 2483  860 627.2325           <NA>       Rousse       Bulgaria   5   male
## 2484  861 627.2325 urban location       Rousse       Bulgaria  69   male
## 2485  861 627.2325 urban location       Rousse       Bulgaria  62 female
## 2486  862 627.2325 rural location      Haskovo          Turks  67   male
## 2487  862 627.2325 rural location      Haskovo          Turks  62 female
## 2488  862 627.2325 rural location      Haskovo          Turks  39   male
## 2489  862 627.2325 rural location      Haskovo          Turks  34 female
## 2490  862 627.2325 rural location      Haskovo          Turks  12   male
## 2491  863 627.2325 urban location      Montana       Bulgaria  47   male
## 2492  863 627.2325 urban location      Montana       Bulgaria  46 female
## 2493  863 627.2325 urban location      Montana       Bulgaria  18   male
## 2494  864 627.2325 rural location      Lovetch       Bulgaria  51   male
## 2495  864 627.2325 rural location      Lovetch       Bulgaria  46 female
## 2496  864 627.2325 rural location      Lovetch       Bulgaria  25   male
## 2497  864 627.2325 rural location      Lovetch       Bulgaria  22 female
## 2498  864 627.2325 rural location      Lovetch       Bulgaria  82 female
## 2499  865 627.2325 urban location        Varna       Bulgaria  33   male
## 2500  865 627.2325 urban location        Varna       Bulgaria  29 female
## 2501  865 627.2325           <NA>        Varna       Bulgaria   6 female
## 2502  865 627.2325           <NA>        Varna       Bulgaria   5 female
## 2503  866 627.2325 urban location        Varna       Bulgaria  31   male
## 2504  866 627.2325 urban location        Varna       Bulgaria  28 female
## 2505  866 627.2325           <NA>        Varna       Bulgaria   7   male
## 2506  867 627.2325 urban location        Varna       Bulgaria  57   male
## 2507  867 627.2325 urban location        Varna       Bulgaria  58 female
## 2508  868 627.2325 urban location        Varna       Bulgaria  71   male
## 2509  868 627.2325 urban location        Varna       Bulgaria  65 female
## 2510  869 627.2325 rural location        Varna       Bulgaria  71   male
## 2511  869 627.2325 rural location        Varna       Bulgaria  67 female
## 2512  870 627.2326 rural location      Haskovo          Turks  50   male
## 2513  870 627.2326 rural location      Haskovo          Turks  50 female
## 2514  870 627.2326 rural location      Haskovo          Turks  28   male
## 2515  870 627.2326 rural location      Haskovo          Turks  27 female
## 2516  870 627.2326 rural location      Haskovo          Turks  24 female
## 2517  870 627.2326 rural location      Haskovo          Turks  69   male
## 2518  870 627.2326 rural location      Haskovo          Turks  71 female
## 2519  870 627.2326           <NA>      Haskovo          Turks   3 female
## 2520  870 627.2326           <NA>      Haskovo          Turks   1 female
## 2521  871 627.2325 urban location       Rousse       Bulgaria  48   male
## 2522  871 627.2325 urban location       Rousse       Bulgaria  47 female
## 2523  871 627.2325 urban location       Rousse       Bulgaria  25 female
## 2524  871 627.2325 urban location       Rousse       Bulgaria  21   male
## 2525  871 627.2325 urban location       Rousse       Bulgaria  25   male
## 2526  872 627.2325 urban location       Rousse          Turks  52   male
## 2527  872 627.2325 urban location       Rousse          Turks  48 female
## 2528  872 627.2325 urban location       Rousse          Turks  25   male
## 2529  872 627.2325 urban location       Rousse          Turks  27 female
## 2530  872 627.2325           <NA>       Rousse          Turks   1 female
## 2531  873 627.2325 urban location      Montana       Bulgaria  50 female
## 2532  873 627.2325           <NA>      Montana       Bulgaria  49   male
## 2533  873 627.2325 urban location      Montana       Bulgaria  29   male
## 2534  873 627.2325 urban location      Montana       Bulgaria  27 female
## 2535  873 627.2325 urban location      Montana       Bulgaria  33   male
## 2536  873 627.2325           <NA>      Montana       Bulgaria   2 female
## 2537  874 627.2325 urban location        Varna       Bulgaria  73 female
## 2538  875 627.2325 urban location        Varna       Bulgaria  60   male
## 2539  875 627.2325 urban location        Varna       Bulgaria  55 female
## 2540  875 627.2325 urban location        Varna       Bulgaria  30   male
## 2541  876 627.2325 urban location        Varna       Bulgaria  75 female
## 2542  877 627.2325 rural location        Varna       Bulgaria  73   male
## 2543  878 627.2325 rural location        Varna       Bulgaria  72   male
## 2544  878 627.2325 rural location        Varna       Bulgaria  66 female
## 2545  878 627.2325 rural location        Varna       Bulgaria  38   male
## 2546  879 627.2325 urban location        Varna       Bulgaria  30   male
## 2547  879 627.2325 urban location        Varna       Bulgaria  51 female
## 2548  880 627.2325 rural location        Varna       Bulgaria  69   male
## 2549  880 627.2325 rural location        Varna       Bulgaria  69 female
## 2550  881 627.2325 urban location        Varna       Bulgaria  51   male
## 2551  881 627.2325 urban location        Varna       Bulgaria  55 female
## 2552  881 627.2325 urban location        Varna       Bulgaria  22 female
## 2553  881 627.2325 urban location        Varna       Bulgaria  75 female
## 2554  882 627.2325 urban location        Varna       Bulgaria  43   male
## 2555  882 627.2325 urban location        Varna       Bulgaria  38 female
## 2556  882 627.2325 urban location        Varna       Bulgaria  18   male
## 2557  883 627.2325 urban location        Varna       Bulgaria  59 female
## 2558  883 627.2325 urban location        Varna       Bulgaria  83 female
## 2559  883 627.2325 urban location        Varna       Bulgaria  25 female
## 2560  884 627.2325 urban location        Varna       Bulgaria  66   male
## 2561  884 627.2325 urban location        Varna       Bulgaria  63 female
## 2562  885 627.2325 urban location        Varna       Bulgaria  71   male
## 2563  885 627.2325 urban location        Varna       Bulgaria  72 female
## 2564  886 627.2325 urban location        Varna       Bulgaria  64   male
## 2565  886 627.2325 urban location        Varna       Bulgaria  55 female
## 2566  887 627.2325 urban location        Varna       Bulgaria  80   male
## 2567  887 627.2325 urban location        Varna       Bulgaria  78 female
## 2568  888 627.2325 urban location        Varna       Bulgaria  44   male
## 2569  888 627.2325 urban location        Varna       Bulgaria  40 female
## 2570  888 627.2325 urban location        Varna       Bulgaria  20 female
## 2571  889 627.2325 rural location        Varna       Bulgaria  66   male
## 2572  889 627.2325 rural location        Varna       Bulgaria  56 female
## 2573  890 627.2325 rural location        Varna       Bulgaria  57   male
## 2574  890 627.2325 rural location        Varna       Bulgaria  53 female
## 2575  890 627.2325 rural location        Varna       Bulgaria  24   male
## 2576  890 627.2325 rural location        Varna       Bulgaria  74 female
## 2577  891 627.2325 urban location        Varna       Bulgaria  26   male
## 2578  891 627.2325 urban location        Varna       Bulgaria  25 female
## 2579  891 627.2325 urban location        Varna       Bulgaria   9 female
## 2580  892 627.2325 rural location      Haskovo       Bulgaria  54   male
## 2581  892 627.2325 rural location      Haskovo       Bulgaria  54 female
## 2582  892 627.2325 rural location      Haskovo       Bulgaria  80 female
## 2583  893 627.2325 rural location        Varna       Bulgaria  61   male
## 2584  893 627.2325 rural location        Varna       Bulgaria  62 female
## 2585  893 627.2325 rural location        Varna       Bulgaria  36   male
## 2586  893 627.2325 rural location        Varna       Bulgaria  34   male
## 2587  893 627.2325 rural location        Varna       Bulgaria  22 female
## 2588  894 627.2325 urban location        Varna       Bulgaria  44   male
## 2589  895 627.2325 urban location       Rousse       Bulgaria  82 female
## 2590  895 627.2325 urban location       Rousse       Bulgaria  52   male
## 2591  896 627.2325 rural location        Varna       Bulgaria  67   male
## 2592  896 627.2325 rural location        Varna       Bulgaria  66 female
## 2593  897 627.2325 urban location      Haskovo       Bulgaria  58   male
## 2594  897 627.2325 urban location      Haskovo       Bulgaria  36   male
## 2595  897 627.2325 urban location      Haskovo       Bulgaria  32   male
## 2596  898 627.2325 rural location      Haskovo          Turks  66   male
## 2597  898 627.2325 rural location      Haskovo          Turks  68 female
## 2598  899 627.2325 rural location      Haskovo       Bulgaria  60   male
## 2599  899 627.2325 rural location      Haskovo       Bulgaria  61 female
## 2600  900 627.2325 rural location        Varna          Turks  64 female
## 2601  900 627.2325 rural location        Varna          Turks  24 female
## 2602  901 627.2325 rural location        Varna       Bulgaria  41   male
## 2603  901 627.2325 rural location        Varna       Bulgaria  38 female
## 2604  901 627.2325 rural location        Varna       Bulgaria  18   male
## 2605  901 627.2325 rural location        Varna       Bulgaria  11   male
## 2606  901 627.2325 rural location        Varna       Bulgaria  62 female
## 2607  902 627.2325 rural location        Varna          Turks  64   male
## 2608  902 627.2325 rural location        Varna          Turks  61 female
## 2609  903 627.2325 rural location        Varna       Bulgaria  69   male
## 2610  903 627.2325 rural location        Varna       Bulgaria  63 female
## 2611  904 627.2325 urban location        Varna       Bulgaria  73 female
## 2612  905 627.2325 urban location      Haskovo       Bulgaria  43   male
## 2613  905 627.2325 urban location      Haskovo       Bulgaria  37 female
## 2614  905 627.2325 urban location      Haskovo       Bulgaria  19   male
## 2615  906 627.2325 rural location       Rousse          Turks  65   male
## 2616  906 627.2325 rural location       Rousse          Turks  56 female
## 2617  906 627.2325 rural location       Rousse          Turks  40   male
## 2618  907 627.2325 urban location       Rousse       Bulgaria  44   male
## 2619  907 627.2325 urban location       Rousse       Bulgaria  41 female
## 2620  907 627.2325 urban location       Rousse       Bulgaria  19   male
## 2621  907 627.2325 urban location       Rousse       Bulgaria  12 female
## 2622  908 627.2325 urban location       Rousse       Bulgaria  32   male
## 2623  908 627.2325 urban location       Rousse       Bulgaria  32 female
## 2624  908 627.2325           <NA>       Rousse       Bulgaria   7 female
## 2625  909 627.2325 rural location        Varna          Turks  67 female
## 2626  910 627.2325 rural location        Varna       Bulgaria  50   male
## 2627  910 627.2325 rural location        Varna       Bulgaria  45 female
## 2628  911 627.2325 rural location      Plovdiv       Bulgaria  54   male
## 2629  911 627.2325 rural location      Plovdiv       Bulgaria  50 female
## 2630  911 627.2325 rural location      Plovdiv       Bulgaria  26   male
## 2631  912 627.2325 urban location      Montana       Bulgaria  78   male
## 2632  912 627.2325 urban location      Montana       Bulgaria  74 female
## 2633  912 627.2325 urban location      Montana       Bulgaria  54   male
## 2634  912 627.2325 urban location      Montana       Bulgaria  38 female
## 2635  912 627.2325 urban location      Montana       Bulgaria  21   male
## 2636  912 627.2325 urban location      Montana       Bulgaria  19   male
## 2637  913 627.2325 urban location        Varna       Bulgaria  53   male
## 2638  913 627.2325 urban location        Varna       Bulgaria  54 female
## 2639  913 627.2325 urban location        Varna       Bulgaria  30 female
## 2640  913 627.2325 urban location        Varna       Bulgaria  79 female
## 2641  914 627.2325 urban location      Montana       Bulgaria  81   male
## 2642  914 627.2325 urban location      Montana       Bulgaria  82 female
## 2643  914 627.2325 urban location      Montana       Bulgaria  52   male
## 2644  914 627.2325 urban location      Montana       Bulgaria  24 female
## 2645  915 627.2325 urban location Sofia region       Bulgaria  48   male
## 2646  915 627.2325 urban location Sofia region       Bulgaria  57 female
## 2647  915 627.2325 urban location Sofia region       Bulgaria  21   male
## 2648  916 627.2325 urban location Sofia region       Bulgaria  42   male
## 2649  916 627.2325 urban location Sofia region       Bulgaria  42 female
## 2650  916 627.2325 urban location Sofia region       Bulgaria  18   male
## 2651  917 627.2325 urban location Sofia region       Bulgaria  32 female
## 2652  917 627.2325 urban location Sofia region       Bulgaria  57 female
## 2653  917 627.2325 urban location Sofia region       Bulgaria  76 female
## 2654  918 627.2325 urban location Sofia region       Bulgaria  70   male
## 2655  918 627.2325 urban location Sofia region       Bulgaria  45   male
## 2656  919 627.2325 rural location      Lovetch       Bulgaria  62   male
## 2657  919 627.2325 rural location      Lovetch       Bulgaria  51 female
## 2658  919 627.2325 rural location      Lovetch       Bulgaria  21   male
## 2659  919 627.2325 rural location      Lovetch       Bulgaria  18   male
## 2660  920 627.2325 rural location     Bourgass           Roma  40   male
## 2661  920 627.2325 rural location     Bourgass           Roma  36 female
## 2662  920 627.2325 rural location     Bourgass           Roma  20   male
## 2663  920 627.2325 rural location     Bourgass           Roma  18   male
## 2664  920 627.2325           <NA>     Bourgass           Roma   5 female
## 2665  921 627.2325 urban location      Montana       Bulgaria  44 female
## 2666  921 627.2325 urban location      Montana       Bulgaria  49   male
## 2667  921 627.2325 urban location      Montana       Bulgaria  24   male
## 2668  921 627.2325 urban location      Montana       Bulgaria  22   male
## 2669  922 627.2325 urban location      Montana       Bulgaria  34   male
## 2670  922 627.2325 urban location      Montana       Bulgaria  30 female
## 2671  922 627.2325           <NA>      Montana       Bulgaria   5 female
## 2672  923 627.2325 rural location        Varna       Bulgaria  82 female
## 2673  924 627.2325 urban location     Bourgass       Bulgaria  50   male
## 2674  924 627.2325 urban location     Bourgass       Bulgaria  45 female
## 2675  925 627.2325 urban location     Bourgass       Bulgaria  71 female
## 2676  926 627.2325 rural location       Rousse          Turks  48   male
## 2677  926 627.2325 rural location       Rousse          Turks  46 female
## 2678  926 627.2325 rural location       Rousse          Turks  23   male
## 2679  926 627.2325 rural location       Rousse          Turks  23 female
## 2680  926 627.2325           <NA>       Rousse          Turks   1   male
## 2681  927 627.2325 urban location     Bourgass       Bulgaria  70   male
## 2682  928 627.2325 rural location       Rousse          Turks  57   male
## 2683  928 627.2325 rural location       Rousse          Turks  53 female
## 2684  928 627.2325 rural location       Rousse          Turks  31   male
## 2685  928 627.2325 rural location       Rousse          Turks  28   male
## 2686  928 627.2325 rural location       Rousse          Turks  27 female
## 2687  928 627.2325           <NA>       Rousse          Turks   1 female
## 2688  929 627.2325 rural location       Rousse          Turks  52 female
## 2689  929 627.2325 rural location       Rousse          Turks  29   male
## 2690  929 627.2325 rural location       Rousse          Turks  28   male
## 2691  929 627.2325 rural location       Rousse          Turks  24 female
## 2692  929 627.2325           <NA>       Rousse          Turks   6   male
## 2693  930 627.2325 urban location      Montana       Bulgaria  80 female
## 2694  931 627.2325 urban location      Montana       Bulgaria  74   male
## 2695  931 627.2325 urban location      Montana       Bulgaria  78 female
## 2696  932 627.2325 urban location        Varna       Bulgaria  63   male
## 2697  932 627.2325 urban location        Varna       Bulgaria  59 female
## 2698  933 627.2325 rural location      Montana       Bulgaria  82   male
## 2699  933 627.2325 rural location      Montana       Bulgaria  60   male
## 2700  934 627.2325 urban location      Montana       Bulgaria  63   male
## 2701  934 627.2325 urban location      Montana       Bulgaria  63 female
## 2702  935 627.2325 urban location      Montana       Bulgaria  79 female
## 2703  936 627.2325 urban location        Varna       Bulgaria  51   male
## 2704  936 627.2325 urban location        Varna       Bulgaria  51 female
## 2705  936 627.2325 urban location        Varna       Bulgaria  28   male
## 2706  936 627.2325 urban location        Varna       Bulgaria  23 female
## 2707  937 627.2325 rural location       Rousse           Roma  48   male
## 2708  937 627.2325 rural location       Rousse           Roma  53 female
## 2709  937 627.2325 rural location       Rousse           Roma  19   male
## 2710  937 627.2325 rural location       Rousse           Roma  21 female
## 2711  938 627.2325 urban location       Rousse       Bulgaria  59 female
## 2712  938 627.2325 urban location       Rousse       Bulgaria  38   male
## 2713  938 627.2325 urban location       Rousse       Bulgaria  32 female
## 2714  938 627.2325           <NA>       Rousse       Bulgaria   2   male
## 2715  939 627.2325 rural location        Varna          Turks  40   male
## 2716  939 627.2325 rural location        Varna          Turks  39 female
## 2717  939 627.2325 rural location        Varna          Turks  20   male
## 2718  939 627.2325 rural location        Varna          Turks  19 female
## 2719  939 627.2325 rural location        Varna          Turks  15   male
## 2720  940 627.2325 urban location        Varna       Bulgaria  48   male
## 2721  940 627.2325 urban location        Varna       Bulgaria  46 female
## 2722  940 627.2325 urban location        Varna       Bulgaria  21   male
## 2723  941 627.2325 urban location Sofia region       Bulgaria  73 female
## 2724  942 627.2325 urban location Sofia region       Bulgaria  72   male
## 2725  942 627.2325 urban location Sofia region       Bulgaria  69 female
## 2726  943 627.2325 rural location      Plovdiv       Bulgaria  44   male
## 2727  943 627.2325 rural location      Plovdiv       Bulgaria  39 female
## 2728  943 627.2325 rural location      Plovdiv       Bulgaria  20 female
## 2729  943 627.2325 rural location      Plovdiv       Bulgaria  18   male
## 2730  944 627.2325 rural location      Plovdiv       Bulgaria  66   male
## 2731  944 627.2325 rural location      Plovdiv       Bulgaria  64 female
## 2732  945 627.2325 urban location Sofia region       Bulgaria  76   male
## 2733  945 627.2325 urban location Sofia region       Bulgaria  75 female
## 2734  946 627.2325 rural location      Montana       Bulgaria  25   male
## 2735  946 627.2325 rural location      Montana       Bulgaria  24 female
## 2736  946 627.2325           <NA>      Montana       Bulgaria   1   male
## 2737  947 627.2325 urban location      Montana       Bulgaria  38 female
## 2738  947 627.2325 urban location      Montana       Bulgaria  58 female
## 2739  947 627.2325 urban location      Montana       Bulgaria  58   male
## 2740  947 627.2325 urban location      Montana       Bulgaria  36   male
## 2741  947 627.2325 urban location      Montana       Bulgaria  12   male
## 2742  947 627.2325 urban location      Montana       Bulgaria  37 female
## 2743  948 627.2325 rural location Sofia region       Bulgaria  72   male
## 2744  949 627.2325 rural location      Plovdiv       Bulgaria  61   male
## 2745  949 627.2325 rural location      Plovdiv       Bulgaria  58 female
## 2746  950 627.2325 rural location      Plovdiv       Bulgaria  49   male
## 2747  950 627.2325 rural location      Plovdiv       Bulgaria  38 female
## 2748  950 627.2325 rural location      Plovdiv       Bulgaria  18 female
## 2749  951 627.2325 urban location      Haskovo       Bulgaria  52   male
## 2750  951 627.2325 urban location      Haskovo       Bulgaria  50 female
## 2751  951 627.2325 urban location      Haskovo       Bulgaria  21 female
## 2752  951 627.2325 urban location      Haskovo       Bulgaria  18 female
## 2753  952 627.2325 urban location     Bourgass       Bulgaria  49 female
## 2754  952 627.2325 urban location     Bourgass       Bulgaria  53   male
## 2755  952 627.2325 urban location     Bourgass       Bulgaria  25   male
## 2756  952 627.2325 urban location     Bourgass       Bulgaria  21 female
## 2757  952 627.2325           <NA>     Bourgass       Bulgaria   6   male
## 2758  953 627.2325 urban location   Sofia city       Bulgaria  62 female
## 2759  954 627.2325 urban location     Bourgass           Roma  52   male
## 2760  954 627.2325 urban location     Bourgass           Roma  52 female
## 2761  954 627.2325 urban location     Bourgass           Roma  27   male
## 2762  954 627.2325 urban location     Bourgass           Roma  24 female
## 2763  954 627.2325           <NA>     Bourgass           Roma   5 female
## 2764  955 627.2325 urban location     Bourgass       Bulgaria  70 female
## 2765  955 627.2325 urban location     Bourgass       Bulgaria  72   male
## 2766  956 627.2325 urban location Sofia region       Bulgaria  45 female
## 2767  956 627.2325 urban location Sofia region       Bulgaria  83 female
## 2768  956 627.2325 urban location Sofia region       Bulgaria  16 female
## 2769  956 627.2325 urban location Sofia region       Bulgaria  13   male
## 2770  957 627.2325 urban location        Varna       Bulgaria  45   male
## 2771  957 627.2325 urban location        Varna       Bulgaria  42 female
## 2772  957 627.2325 urban location        Varna       Bulgaria  20 female
## 2773  957 627.2325 urban location        Varna       Bulgaria  14   male
## 2774  958 627.2325 rural location        Varna          Turks  63   male
## 2775  958 627.2325 rural location        Varna          Turks  59 female
## 2776  958 627.2325 rural location        Varna          Turks  35   male
## 2777  958 627.2325 rural location        Varna          Turks  25 female
## 2778  958 627.2325           <NA>        Varna          Turks   6 female
## 2779  958 627.2325           <NA>        Varna          Turks   4 female
## 2780  959 627.2325 urban location   Sofia city       Bulgaria  59   male
## 2781  959 627.2325 urban location   Sofia city       Bulgaria  55 female
## 2782  959 627.2325 urban location   Sofia city       Bulgaria  23 female
## 2783  959 627.2325 urban location   Sofia city       Bulgaria  81 female
## 2784  960 627.2325 urban location     Bourgass       Bulgaria  31   male
## 2785  960 627.2325 urban location     Bourgass       Bulgaria  29 female
## 2786  960 627.2325 urban location     Bourgass       Bulgaria   8 female
## 2787  961 627.2325 urban location     Bourgass          Turks  30   male
## 2788  961 627.2325 urban location     Bourgass          Turks  27 female
## 2789  961 627.2325 urban location     Bourgass          Turks  11 female
## 2790  961 627.2325 urban location     Bourgass          Turks   8   male
## 2791  962 627.2325 urban location   Sofia city       Bulgaria  52   male
## 2792  962 627.2325 urban location   Sofia city       Bulgaria  56 female
## 2793  963 627.2325 urban location   Sofia city       Bulgaria  52   male
## 2794  963 627.2325 urban location   Sofia city       Bulgaria  46 female
## 2795  963 627.2325 urban location   Sofia city       Bulgaria  15 female
## 2796  963 627.2325 urban location   Sofia city       Bulgaria  79 female
## 2797  964 627.2325 urban location      Plovdiv       Bulgaria  62 female
## 2798  965 627.2325 urban location   Sofia city       Bulgaria  75   male
## 2799  965 627.2325 urban location   Sofia city       Bulgaria  75 female
## 2800  965 627.2325 urban location   Sofia city       Bulgaria  82 female
## 2801  966 627.2325 urban location     Bourgass       Bulgaria  69 female
## 2802  966 627.2325 urban location     Bourgass       Bulgaria  47   male
## 2803  967 627.2325 rural location      Lovetch       Bulgaria  60   male
## 2804  967 627.2325 rural location      Lovetch       Bulgaria  57 female
## 2805  967 627.2325 rural location      Lovetch       Bulgaria  84 female
## 2806  968 627.2325 urban location Sofia region       Bulgaria  40   male
## 2807  968 627.2325 urban location Sofia region       Bulgaria  32 female
## 2808  968 627.2325 urban location Sofia region       Bulgaria   9 female
## 2809  969 627.2325 urban location        Varna       Bulgaria  74 female
## 2810  970 627.2325 rural location       Rousse          Turks  66 female
## 2811  970 627.2325 rural location       Rousse          Turks  47   male
## 2812  970 627.2325 rural location       Rousse          Turks  44   male
## 2813  970 627.2325 rural location       Rousse          Turks  47 female
## 2814  970 627.2325 rural location       Rousse          Turks  18 female
## 2815  970 627.2325 rural location       Rousse          Turks  24   male
## 2816  971 627.2325 urban location      Lovetch       Bulgaria  51   male
## 2817  971 627.2325 urban location      Lovetch       Bulgaria  50 female
## 2818  971 627.2325           <NA>      Lovetch       Bulgaria  25   male
## 2819  971 627.2325 urban location      Lovetch       Bulgaria  16 female
## 2820  972 627.2325 rural location       Rousse          Turks  53   male
## 2821  972 627.2325 rural location       Rousse          Turks  47 female
## 2822  972 627.2325 rural location       Rousse          Turks  87   male
## 2823  972 627.2325           <NA>       Rousse          Turks  28 female
## 2824  972 627.2325           <NA>       Rousse          Turks  25   male
## 2825  972 627.2325 rural location       Rousse          Turks   8 female
## 2826  973 627.2325 urban location       Rousse       Bulgaria  60 female
## 2827  974 627.2325 urban location Sofia region       Bulgaria  33   male
## 2828  974 627.2325 urban location Sofia region       Bulgaria  31 female
## 2829  974 627.2325           <NA> Sofia region       Bulgaria   1 female
## 2830  975 627.2325 urban location       Rousse       Bulgaria  57   male
## 2831  975 627.2325 urban location       Rousse       Bulgaria  53 female
## 2832  976 627.2325 urban location        Varna       Bulgaria  47   male
## 2833  976 627.2325 urban location        Varna       Bulgaria  44 female
## 2834  976 627.2325 urban location        Varna       Bulgaria  22 female
## 2835  977 627.2325 urban location     Bourgass       Bulgaria  61   male
## 2836  977 627.2325 urban location     Bourgass       Bulgaria  63 female
## 2837  977 627.2325 urban location     Bourgass       Bulgaria  19 female
## 2838  977 627.2325 urban location     Bourgass       Bulgaria  21   male
## 2839  977 627.2325           <NA>     Bourgass       Bulgaria   1   male
## 2840  978 627.2325 rural location        Varna          Turks  68   male
## 2841  978 627.2325 rural location        Varna          Turks  60 female
## 2842  979 627.2325 rural location        Varna       Bulgaria  49   male
## 2843  979 627.2325 rural location        Varna       Bulgaria  73 female
## 2844  980 627.2325 urban location       Rousse       Bulgaria  58   male
## 2845  980 627.2325 urban location       Rousse       Bulgaria  56 female
## 2846  981 627.2325 urban location       Rousse          Turks  46   male
## 2847  981 627.2325 urban location       Rousse          Turks  48 female
## 2848  981 627.2325 urban location       Rousse          Turks  26   male
## 2849  981 627.2325 urban location       Rousse          Turks  25 female
## 2850  981 627.2325           <NA>       Rousse          Turks   1   male
## 2851  982 627.2325 urban location      Haskovo       Bulgaria  44   male
## 2852  982 627.2325 urban location      Haskovo       Bulgaria  39 female
## 2853  982 627.2325 urban location      Haskovo       Bulgaria  18 female
## 2854  982 627.2325 urban location      Haskovo       Bulgaria  17 female
## 2855  982 627.2325 urban location      Haskovo       Bulgaria  76   male
## 2856  982 627.2325 urban location      Haskovo       Bulgaria  70 female
## 2857  983 627.2325 urban location      Haskovo          Turks  42   male
## 2858  983 627.2325 urban location      Haskovo          Turks  41 female
## 2859  983 627.2325 urban location      Haskovo          Turks  22   male
## 2860  983 627.2325 urban location      Haskovo          Turks  19   male
## 2861  984 627.2325 urban location      Haskovo          Turks  76   male
## 2862  984 627.2325 urban location      Haskovo          Turks  70 female
## 2863  985 627.2325 rural location      Montana       Bulgaria  63   male
## 2864  985 627.2325 rural location      Montana       Bulgaria  57 female
## 2865  985 627.2325 rural location      Montana       Bulgaria  80 female
## 2866  986 627.2325 rural location      Montana           Roma  61   male
## 2867  986 627.2325 rural location      Montana           Roma  62 female
## 2868  986 627.2325 rural location      Montana           Roma  37 female
## 2869  987 627.2325 rural location Sofia region       Bulgaria  77 female
## 2870  988 627.2325 rural location Sofia region       Bulgaria  86   male
## 2871  989 627.2325 rural location Sofia region       Bulgaria  34   male
## 2872  989 627.2325 rural location Sofia region       Bulgaria  30 female
## 2873  989 627.2325 rural location Sofia region       Bulgaria  13   male
## 2874  990 627.2325 rural location Sofia region       Bulgaria  46   male
## 2875  990 627.2325 rural location Sofia region       Bulgaria  70 female
## 2876  991 627.2325 urban location      Lovetch       Bulgaria  57   male
## 2877  991 627.2325 urban location      Lovetch       Bulgaria  56 female
## 2878  991 627.2325 urban location      Lovetch       Bulgaria  91   male
## 2879  992 627.2325 rural location       Rousse          Turks  72   male
## 2880  992 627.2325 rural location       Rousse          Turks  66 female
## 2881  993 627.2325 rural location Sofia region       Bulgaria  85   male
## 2882  994 627.2325 rural location Sofia region       Bulgaria  46   male
## 2883  995 627.2325 rural location Sofia region       Bulgaria  76   male
## 2884  995 627.2325 rural location Sofia region       Bulgaria  73 female
## 2885  996 627.2325 rural location Sofia region       Bulgaria  62   male
## 2886  996 627.2325 rural location Sofia region       Bulgaria  65 female
## 2887  997 627.2325 rural location Sofia region       Bulgaria  56   male
## 2888  997 627.2325 rural location Sofia region       Bulgaria  54 female
## 2889  998 627.2325 urban location      Lovetch           Roma  38   male
## 2890  998 627.2325 urban location      Lovetch           Roma  32 female
## 2891  998 627.2325 urban location      Lovetch           Roma  14 female
## 2892  998 627.2325           <NA>      Lovetch           Roma   5 female
## 2893  999 627.2325 urban location      Lovetch       Bulgaria  37   male
## 2894  999 627.2325 urban location      Lovetch       Bulgaria  34 female
## 2895  999 627.2325 urban location      Lovetch       Bulgaria  10   male
## 2896 1000 627.2325 rural location      Plovdiv       Bulgaria  60 female
## 2897 1000 627.2325 rural location      Plovdiv       Bulgaria  15   male
## 2898 1001 627.2325 rural location Sofia region       Bulgaria  62   male
## 2899 1001 627.2325 rural location Sofia region       Bulgaria  58 female
## 2900 1002 627.2325 urban location      Lovetch       Bulgaria  51   male
## 2901 1002 627.2325 urban location      Lovetch       Bulgaria  45 female
## 2902 1002 627.2325 urban location      Lovetch       Bulgaria  26   male
## 2903 1002 627.2325 urban location      Lovetch       Bulgaria  22 female
## 2904 1003 627.2325 urban location      Lovetch           Roma  57 female
## 2905 1003 627.2325 urban location      Lovetch           Roma  19 female
## 2906 1004 627.2325 urban location      Lovetch       Bulgaria  36   male
## 2907 1004 627.2325 urban location      Lovetch       Bulgaria  32 female
## 2908 1004 627.2325 urban location      Lovetch       Bulgaria  10   male
## 2909 1005 627.2325 urban location      Lovetch       Bulgaria  51 female
## 2910 1006 627.2325 urban location        Varna          Turks  64   male
## 2911 1006 627.2325 urban location        Varna          Turks  62 female
## 2912 1006 627.2325 urban location        Varna          Turks  34   male
## 2913 1007 627.2325 urban location      Montana       Bulgaria  42 female
## 2914 1007 627.2325 urban location      Montana       Bulgaria  42   male
## 2915 1007 627.2325 urban location      Montana       Bulgaria  21   male
## 2916 1007 627.2325           <NA>      Montana       Bulgaria   7   male
## 2917 1008 627.2325 rural location      Montana       Bulgaria  66   male
## 2918 1008 627.2325 rural location      Montana       Bulgaria  62 female
## 2919 1008 627.2325 rural location      Montana       Bulgaria  38   male
## 2920 1008 627.2325 rural location      Montana       Bulgaria  36 female
## 2921 1008 627.2325           <NA>      Montana       Bulgaria   7   male
## 2922 1008 627.2325 rural location      Montana       Bulgaria  31   male
## 2923 1008 627.2325 rural location      Montana       Bulgaria  32 female
## 2924 1008 627.2325           <NA>      Montana       Bulgaria   0 female
## 2925 1008 627.2325 rural location      Montana       Bulgaria  31   male
## 2926 1008 627.2325 rural location      Montana       Bulgaria  90 female
## 2927 1009 627.2325 urban location       Rousse       Bulgaria  32   male
## 2928 1009 627.2325 urban location       Rousse       Bulgaria  31 female
## 2929 1009 627.2325           <NA>       Rousse       Bulgaria   2 female
## 2930 1010 627.2325 urban location       Rousse       Bulgaria  53   male
## 2931 1010 627.2325 urban location       Rousse       Bulgaria  56 female
## 2932 1010 627.2325 urban location       Rousse       Bulgaria  32   male
## 2933 1010 627.2325 urban location       Rousse       Bulgaria  31   male
## 2934 1010 627.2325 urban location       Rousse       Bulgaria  72 female
## 2935 1011 627.2325 urban location       Rousse       Bulgaria  70   male
## 2936 1011 627.2325 urban location       Rousse       Bulgaria  61 female
## 2937 1011 627.2325 urban location       Rousse       Bulgaria  38 female
## 2938 1011 627.2325 urban location       Rousse       Bulgaria  16 female
## 2939 1011 627.2325 urban location       Rousse       Bulgaria  12 female
## 2940 1011 627.2325 urban location       Rousse       Bulgaria  12 female
## 2941 1012 627.2325 urban location       Rousse       Bulgaria  73 female
## 2942 1013 627.2325 urban location       Rousse       Bulgaria  71 female
## 2943 1014 627.2325 urban location       Rousse       Bulgaria  68   male
## 2944 1014 627.2325 urban location       Rousse       Bulgaria  62 female
## 2945 1015 627.2325 urban location       Rousse       Bulgaria  52   male
## 2946 1015 627.2325 urban location       Rousse       Bulgaria  47 female
## 2947 1016 627.2325 urban location       Rousse       Bulgaria  60   male
## 2948 1016 627.2325 urban location       Rousse       Bulgaria  55 female
## 2949 1017 627.2325 urban location       Rousse       Bulgaria  51   male
## 2950 1017 627.2325 urban location       Rousse       Bulgaria  50 female
## 2951 1018 627.2325 urban location       Rousse          Turks  53   male
## 2952 1018 627.2325 urban location       Rousse          Turks  53 female
## 2953 1018 627.2325 urban location       Rousse          Turks  27   male
## 2954 1019 627.2325 urban location       Rousse       Bulgaria  48   male
## 2955 1019 627.2325 urban location       Rousse       Bulgaria  47 female
## 2956 1019 627.2325 urban location       Rousse       Bulgaria  20   male
## 2957 1020 627.2325 urban location       Rousse       Bulgaria  73 female
## 2958 1021 627.2325 urban location       Rousse       Bulgaria  60   male
## 2959 1021 627.2325 urban location       Rousse       Bulgaria  59 female
## 2960 1022 627.2325 urban location       Rousse       Bulgaria  57   male
## 2961 1022 627.2325 urban location       Rousse       Bulgaria  56 female
## 2962 1023 627.2325 urban location       Rousse       Bulgaria  64 female
## 2963 1023 627.2325 urban location       Rousse       Bulgaria  73 female
## 2964 1024 627.2325 urban location       Rousse       Bulgaria  56   male
## 2965 1024 627.2325 urban location       Rousse       Bulgaria  54 female
## 2966 1025 627.2325 rural location      Montana       Bulgaria  43   male
## 2967 1025 627.2325 rural location      Montana       Bulgaria  43 female
## 2968 1025 627.2325 rural location      Montana       Bulgaria  18 female
## 2969 1025 627.2325 rural location      Montana       Bulgaria  16   male
## 2970 1025 627.2325 rural location      Montana       Bulgaria  13 female
## 2971 1026 627.2325 urban location       Rousse       Bulgaria  65   male
## 2972 1026 627.2325 urban location       Rousse       Bulgaria  61 female
## 2973 1027 627.2325 urban location       Rousse       Bulgaria  61   male
## 2974 1027 627.2325 urban location       Rousse       Bulgaria  60 female
## 2975 1028 627.2325 rural location      Montana       Bulgaria  68   male
## 2976 1028 627.2325 rural location      Montana       Bulgaria  67 female
## 2977 1029 627.2325 rural location      Montana       Bulgaria  80   male
## 2978 1029 627.2325 rural location      Montana       Bulgaria  77 female
## 2979 1030 627.2325 urban location       Rousse       Bulgaria  37   male
## 2980 1030 627.2325 urban location       Rousse       Bulgaria  34 female
## 2981 1030 627.2325 urban location       Rousse       Bulgaria  10 female
## 2982 1031 627.2325 urban location        Varna       Bulgaria  52   male
## 2983 1031 627.2325 urban location        Varna       Bulgaria  44 female
## 2984 1031 627.2325 urban location        Varna       Bulgaria  17   male
## 2985 1032 627.2325 urban location     Bourgass       Bulgaria  47   male
## 2986 1032 627.2325 urban location     Bourgass       Bulgaria  38 female
## 2987 1032 627.2325 urban location     Bourgass       Bulgaria  17   male
## 2988 1032 627.2325 urban location     Bourgass       Bulgaria  12 female
## 2989 1033 627.2325 urban location     Bourgass       Bulgaria  79   male
## 2990 1033 627.2325 urban location     Bourgass       Bulgaria  80 female
## 2991 1034 627.2325 urban location        Varna       Bulgaria  44   male
## 2992 1034 627.2325 urban location        Varna       Bulgaria  42 female
## 2993 1034 627.2325 urban location        Varna       Bulgaria  20   male
## 2994 1034 627.2325 urban location        Varna       Bulgaria  16   male
## 2995 1035 627.2325 rural location      Montana       Bulgaria  45 female
## 2996 1035 627.2325 rural location      Montana       Bulgaria  21 female
## 2997 1035 627.2325           <NA>      Montana       Bulgaria   5   male
## 2998 1036 627.2325 rural location      Lovetch       Bulgaria  76 female
## 2999 1037 627.2325 urban location       Rousse          Turks  48   male
## 3000 1037 627.2325 urban location       Rousse          Turks  48 female
## 3001 1037 627.2325 urban location       Rousse          Turks  25 female
## 3002 1038 627.2325 urban location       Rousse       Bulgaria  74   male
## 3003 1039 627.2325 rural location      Montana       Bulgaria  77   male
## 3004 1039 627.2325 rural location      Montana       Bulgaria  77 female
## 3005 1040 627.2325 rural location      Montana       Bulgaria  66 female
## 3006 1041 627.2325 rural location       Rousse          Turks  68   male
## 3007 1042 627.2325 urban location     Bourgass       Bulgaria  45   male
## 3008 1042 627.2325 urban location     Bourgass       Bulgaria  42 female
## 3009 1042 627.2325 urban location     Bourgass       Bulgaria  19 female
## 3010 1042 627.2325 urban location     Bourgass       Bulgaria  23   male
## 3011 1043 627.2325 rural location       Rousse          Turks  63 female
## 3012 1044 627.2325 rural location       Rousse          Turks  73   male
## 3013 1044 627.2325 rural location       Rousse          Turks  67 female
## 3014 1045 627.2325 urban location       Rousse       Bulgaria  61   male
## 3015 1045 627.2325 urban location       Rousse       Bulgaria  51 female
## 3016 1045 627.2325 urban location       Rousse       Bulgaria  10   male
## 3017 1046 627.2325 rural location       Rousse          Turks  67   male
## 3018 1046 627.2325 rural location       Rousse          Turks  61 female
## 3019 1046 627.2325 rural location       Rousse          Turks  86   male
## 3020 1047 627.2325 rural location       Rousse          Turks  54   male
## 3021 1047 627.2325 rural location       Rousse          Turks  30 female
## 3022 1048 627.2325 urban location      Lovetch       Bulgaria  42   male
## 3023 1048 627.2325 urban location      Lovetch       Bulgaria  35 female
## 3024 1048 627.2325 urban location      Lovetch       Bulgaria  13   male
## 3025 1049 627.2325 rural location       Rousse       Bulgaria  64 female
## 3026 1050 627.2325 rural location       Rousse          Turks  82 female
## 3027 1051 627.2325 urban location      Lovetch       Bulgaria  57   male
## 3028 1051 627.2325 urban location      Lovetch       Bulgaria  56 female
## 3029 1052 627.2325 urban location      Lovetch       Bulgaria  38   male
## 3030 1052 627.2325 urban location      Lovetch       Bulgaria  39 female
## 3031 1052 627.2325 urban location      Lovetch       Bulgaria  14   male
## 3032 1052 627.2325 urban location      Lovetch       Bulgaria  61 female
## 3033 1053 627.2325 urban location      Lovetch       Bulgaria  58   male
## 3034 1053 627.2325 urban location      Lovetch       Bulgaria  59 female
## 3035 1053 627.2325 urban location      Lovetch       Bulgaria  32   male
## 3036 1054 627.2325 urban location      Lovetch       Bulgaria  46   male
## 3037 1054 627.2325 urban location      Lovetch       Bulgaria  46 female
## 3038 1054 627.2325 urban location      Lovetch       Bulgaria  26   male
## 3039 1054 627.2325 urban location      Lovetch       Bulgaria  21   male
## 3040 1055 627.2325 urban location      Lovetch           Roma  50   male
## 3041 1055 627.2325 urban location      Lovetch           Roma  48 female
## 3042 1055 627.2325           <NA>      Lovetch           Roma  24   male
## 3043 1055 627.2325 urban location      Lovetch           Roma  17   male
## 3044 1056 627.2325 urban location      Lovetch       Bulgaria  46   male
## 3045 1056 627.2325 urban location      Lovetch       Bulgaria  42 female
## 3046 1056 627.2325 urban location      Lovetch       Bulgaria  22   male
## 3047 1056 627.2325 urban location      Lovetch       Bulgaria  12   male
## 3048 1057 627.2325 urban location       Rousse       Bulgaria  63 female
## 3049 1058 627.2325 urban location        Varna       Bulgaria  62   male
## 3050 1058 627.2325 urban location        Varna       Bulgaria  58 female
## 3051 1059 627.2325 urban location      Lovetch       Bulgaria  39   male
## 3052 1059 627.2325 urban location      Lovetch       Bulgaria  41 female
## 3053 1059 627.2325 urban location      Lovetch       Bulgaria  13 female
## 3054 1060 627.2325 urban location      Haskovo       Bulgaria  58   male
## 3055 1060 627.2325 urban location      Haskovo       Bulgaria  57 female
## 3056 1061 627.2325 urban location       Rousse       Bulgaria  58   male
## 3057 1061 627.2325 urban location       Rousse       Bulgaria  55 female
## 3058 1061 627.2325 urban location       Rousse       Bulgaria  34   male
## 3059 1061 627.2325 urban location       Rousse       Bulgaria  56   male
## 3060 1062 627.2325 rural location       Rousse          Turks  74   male
## 3061 1062 627.2325 rural location       Rousse          Turks  68 female
## 3062 1062 627.2325 rural location       Rousse          Turks  31   male
## 3063 1063 627.2325 urban location        Varna       Bulgaria  56   male
## 3064 1063 627.2325 urban location        Varna       Bulgaria  50 female
## 3065 1063 627.2325 urban location        Varna       Bulgaria  29   male
## 3066 1063 627.2325 urban location        Varna       Bulgaria  27   male
## 3067 1064 627.2325 urban location        Varna           Roma  53   male
## 3068 1064 627.2325 urban location        Varna           Roma  52 female
## 3069 1064 627.2325 urban location        Varna           Roma  21   male
## 3070 1065 627.2325 urban location        Varna       Bulgaria  60   male
## 3071 1065 627.2325 urban location        Varna       Bulgaria  58 female
## 3072 1066 627.2325 rural location Sofia region       Bulgaria  57   male
## 3073 1066 627.2325 rural location Sofia region       Bulgaria  56 female
## 3074 1067 627.2325 urban location      Haskovo       Bulgaria  88   male
## 3075 1068 627.2325 rural location      Haskovo       Bulgaria  70 female
## 3076 1069 627.2325 rural location      Haskovo       Bulgaria  64   male
## 3077 1069 627.2325 rural location      Haskovo       Bulgaria  62 female
## 3078 1070 627.2325 rural location      Haskovo       Bulgaria  61   male
## 3079 1070 627.2325 rural location      Haskovo       Bulgaria  58 female
## 3080 1071 627.2326 urban location      Haskovo       Bulgaria  71   male
## 3081 1071 627.2326 urban location      Haskovo       Bulgaria  71 female
## 3082 1071 627.2326 urban location      Haskovo       Bulgaria  47   male
## 3083 1071 627.2326 urban location      Haskovo       Bulgaria  42 female
## 3084 1071 627.2326 urban location      Haskovo       Bulgaria  22 female
## 3085 1071 627.2326 urban location      Haskovo       Bulgaria  19 female
## 3086 1071 627.2326 urban location      Haskovo       Bulgaria  38   male
## 3087 1071 627.2326 urban location      Haskovo       Bulgaria  31 female
## 3088 1071 627.2326 urban location      Haskovo       Bulgaria  11 female
## 3089 1072 627.2325 urban location      Haskovo       Bulgaria  65   male
## 3090 1072 627.2325 urban location      Haskovo       Bulgaria  59 female
## 3091 1073 627.2325 urban location      Haskovo       Bulgaria  81 female
## 3092 1074 627.2325 urban location      Haskovo       Bulgaria  59   male
## 3093 1074 627.2325 urban location      Haskovo       Bulgaria  58 female
## 3094 1075 627.2325 rural location      Haskovo       Bulgaria  63   male
## 3095 1075 627.2325 rural location      Haskovo       Bulgaria  61 female
## 3096 1076 627.2325 rural location      Haskovo       Bulgaria  74   male
## 3097 1076 627.2325 rural location      Haskovo       Bulgaria  72 female
## 3098 1076 627.2325 rural location      Haskovo       Bulgaria  43 female
## 3099 1077 627.2325 rural location      Haskovo       Bulgaria  62   male
## 3100 1077 627.2325 rural location      Haskovo       Bulgaria  57 female
## 3101 1078 627.2325 rural location      Haskovo       Bulgaria  40   male
## 3102 1078 627.2325 rural location      Haskovo       Bulgaria  33 female
## 3103 1078 627.2325 rural location      Haskovo       Bulgaria  14   male
## 3104 1078 627.2325 rural location      Haskovo       Bulgaria  11   male
## 3105 1079 627.2325 urban location      Haskovo       Bulgaria  77 female
## 3106 1079 627.2325 urban location      Haskovo       Bulgaria  45 female
## 3107 1079 627.2325 urban location      Haskovo       Bulgaria  24 female
## 3108 1080 627.2325 urban location      Haskovo       Bulgaria  49 female
## 3109 1080 627.2325 urban location      Haskovo       Bulgaria  20   male
## 3110 1080 627.2325 urban location      Haskovo       Bulgaria  17 female
## 3111 1081 627.2325 urban location      Haskovo       Bulgaria  56   male
## 3112 1081 627.2325 urban location      Haskovo       Bulgaria  44 female
## 3113 1082 627.2325 urban location      Haskovo       Bulgaria  45   male
## 3114 1082 627.2325 urban location      Haskovo       Bulgaria  42 female
## 3115 1082 627.2325 urban location      Haskovo       Bulgaria  21   male
## 3116 1082 627.2325 urban location      Haskovo       Bulgaria  19   male
## 3117 1083 627.2325 urban location       Rousse          Turks  58   male
## 3118 1083 627.2325 urban location       Rousse          Turks  61 female
## 3119 1083 627.2325 urban location       Rousse          Turks  83 female
## 3120 1084 627.2325 rural location      Haskovo          Turks  33   male
## 3121 1084 627.2325 rural location      Haskovo          Turks  36 female
## 3122 1084 627.2325 rural location      Haskovo          Turks  16   male
## 3123 1084 627.2325 rural location      Haskovo          Turks  13   male
## 3124 1085 627.2325 rural location      Haskovo          Turks  68   male
## 3125 1085 627.2325 rural location      Haskovo          Turks  41   male
## 3126 1085 627.2325 rural location      Haskovo          Turks  28   male
## 3127 1086 627.2325 urban location      Haskovo       Bulgaria  50 female
## 3128 1086 627.2325 urban location      Haskovo       Bulgaria  23   male
## 3129 1086 627.2325 urban location      Haskovo       Bulgaria  15 female
## 3130 1086 627.2325 urban location      Haskovo       Bulgaria  84 female
## 3131 1087 627.2325 urban location       Rousse       Bulgaria  74   male
## 3132 1087 627.2325 urban location       Rousse       Bulgaria  47   male
## 3133 1088 627.2325 urban location      Haskovo       Bulgaria  55   male
## 3134 1088 627.2325 urban location      Haskovo       Bulgaria  49 female
## 3135 1088 627.2325 urban location      Haskovo       Bulgaria  20   male
## 3136 1088 627.2325 urban location      Haskovo       Bulgaria  16   male
## 3137 1089 627.2325 urban location      Haskovo       Bulgaria  53   male
## 3138 1089 627.2325 urban location      Haskovo       Bulgaria  49 female
## 3139 1089 627.2325 urban location      Haskovo       Bulgaria  23   male
## 3140 1090 627.2325 rural location      Haskovo       Bulgaria  63   male
## 3141 1090 627.2325 rural location      Haskovo       Bulgaria  57 female
## 3142 1091 627.2325 urban location     Bourgass       Bulgaria  73 female
## 3143 1092 627.2325 rural location      Haskovo          Turks  56   male
## 3144 1093 627.2325 rural location      Plovdiv       Bulgaria  59   male
## 3145 1093 627.2325 rural location      Plovdiv       Bulgaria  56 female
## 3146 1093 627.2325 rural location      Plovdiv       Bulgaria  49   male
## 3147 1093 627.2325 rural location      Plovdiv       Bulgaria  35 female
## 3148 1094 627.2325 rural location      Plovdiv       Bulgaria  68   male
## 3149 1094 627.2325 rural location      Plovdiv       Bulgaria  71 female
## 3150 1095 627.2325 rural location      Haskovo       Bulgaria  66 female
## 3151 1096 627.2325 urban location      Haskovo       Bulgaria  27 female
## 3152 1096 627.2325 urban location      Haskovo       Bulgaria  33   male
## 3153 1097 627.2325 urban location       Rousse       Bulgaria  40   male
## 3154 1097 627.2325 urban location       Rousse       Bulgaria  38 female
## 3155 1097 627.2325 urban location       Rousse       Bulgaria  18   male
## 3156 1097 627.2325 urban location       Rousse       Bulgaria  14 female
## 3157 1098 627.2325 urban location      Haskovo       Bulgaria  45   male
## 3158 1098 627.2325 urban location      Haskovo       Bulgaria  40 female
## 3159 1098 627.2325 urban location      Haskovo       Bulgaria  14   male
## 3160 1099 627.2325 urban location       Rousse          Turks  41   male
## 3161 1099 627.2325 urban location       Rousse          Turks  43 female
## 3162 1099 627.2325 urban location       Rousse          Turks  21 female
## 3163 1099 627.2325 urban location       Rousse          Turks  16   male
## 3164 1100 627.2325 rural location      Haskovo          Turks  37   male
## 3165 1100 627.2325 rural location      Haskovo          Turks  34   male
## 3166 1100 627.2325 rural location      Haskovo          Turks  29   male
## 3167 1100 627.2325 rural location      Haskovo          Turks  25 female
## 3168 1100 627.2325 rural location      Haskovo          Turks   8 female
## 3169 1100 627.2325           <NA>      Haskovo          Turks   6   male
## 3170 1101 627.2325 rural location     Bourgass       Bulgaria  41   male
## 3171 1101 627.2325 rural location     Bourgass       Bulgaria  75 female
## 3172 1102 627.2325 rural location     Bourgass       Bulgaria  66   male
## 3173 1102 627.2325 rural location     Bourgass       Bulgaria  62 female
## 3174 1102 627.2325 rural location     Bourgass       Bulgaria  86   male
## 3175 1103 627.2325 rural location      Montana       Bulgaria  78   male
## 3176 1104 627.2325 urban location     Bourgass       Bulgaria  72   male
## 3177 1104 627.2325 urban location     Bourgass       Bulgaria  68 female
## 3178 1105 627.2325 urban location        Varna       Bulgaria  59   male
## 3179 1105 627.2325 urban location        Varna       Bulgaria  56 female
## 3180 1105 627.2325 urban location        Varna       Bulgaria  28 female
## 3181 1105 627.2325 urban location        Varna       Bulgaria  27 female
## 3182 1105 627.2325           <NA>        Varna       Bulgaria   4 female
## 3183 1106 627.2325 rural location       Rousse          Turks  47   male
## 3184 1106 627.2325 rural location       Rousse          Turks  45 female
## 3185 1106 627.2325 rural location       Rousse          Turks  81 female
## 3186 1106 627.2325           <NA>       Rousse          Turks  24   male
## 3187 1106 627.2325           <NA>       Rousse          Turks  18   male
## 3188 1107 627.2325 urban location       Rousse       Bulgaria  71   male
## 3189 1107 627.2325 urban location       Rousse       Bulgaria  70 female
## 3190 1108 627.2325 urban location        Varna       Bulgaria  53 female
## 3191 1108 627.2325 urban location        Varna       Bulgaria  50   male
## 3192 1109 627.2325 urban location       Rousse       Bulgaria  53   male
## 3193 1109 627.2325 urban location       Rousse       Bulgaria  51 female
## 3194 1109 627.2325 urban location       Rousse       Bulgaria  30 female
## 3195 1110 627.2325 rural location      Montana       Bulgaria  48   male
## 3196 1110 627.2325 rural location      Montana       Bulgaria  81   male
## 3197 1111 627.2325 rural location       Rousse       Bulgaria  67 female
## 3198 1111 627.2325 rural location       Rousse       Bulgaria  39   male
## 3199 1111 627.2325 rural location       Rousse       Bulgaria  36 female
## 3200 1111 627.2325 rural location       Rousse       Bulgaria  10   male
## 3201 1111 627.2325           <NA>       Rousse       Bulgaria   3 female
## 3202 1112 627.2325 urban location        Varna       Bulgaria  47   male
## 3203 1112 627.2325 urban location        Varna       Bulgaria  46 female
## 3204 1112 627.2325 urban location        Varna       Bulgaria  22   male
## 3205 1113       NA urban location         <NA>           <NA>  33   male
## 3206 1113       NA urban location         <NA>           <NA>  32 female
## 3207 1113       NA           <NA>         <NA>           <NA>   6 female
## 3208 1113       NA           <NA>         <NA>           <NA>   4 female
## 3209 1114 627.2325 urban location      Haskovo       Bulgaria  42   male
## 3210 1114 627.2325 urban location      Haskovo       Bulgaria  36 female
## 3211 1114 627.2325 urban location      Haskovo       Bulgaria  14   male
## 3212 1114 627.2325 urban location      Haskovo       Bulgaria  10   male
## 3213 1115 627.2325 rural location      Haskovo          Turks  63   male
## 3214 1115 627.2325 rural location      Haskovo          Turks  63 female
## 3215 1115 627.2325 rural location      Haskovo          Turks  29   male
## 3216 1115 627.2325 rural location      Haskovo          Turks  24 female
## 3217 1115 627.2325           <NA>      Haskovo          Turks   1 female
## 3218 1116 627.2325 rural location      Haskovo          Turks  58 female
## 3219 1116 627.2325 rural location      Haskovo          Turks  38 female
## 3220 1117 627.2325 urban location      Haskovo       Bulgaria  50   male
## 3221 1117 627.2325 urban location      Haskovo       Bulgaria  47 female
## 3222 1118 627.2325 rural location      Haskovo          Turks  53   male
## 3223 1118 627.2325 rural location      Haskovo          Turks  49 female
## 3224 1118 627.2325 rural location      Haskovo          Turks  28   male
## 3225 1118 627.2325 rural location      Haskovo          Turks  26 female
## 3226 1118 627.2325           <NA>      Haskovo          Turks   3   male
## 3227 1119 627.2325 urban location      Lovetch       Bulgaria  38   male
## 3228 1119 627.2325 urban location      Lovetch       Bulgaria  34 female
## 3229 1120 627.2325 urban location      Haskovo       Bulgaria  46   male
## 3230 1120 627.2325 urban location      Haskovo       Bulgaria  40 female
## 3231 1120 627.2325 urban location      Haskovo       Bulgaria  20 female
## 3232 1120 627.2325 urban location      Haskovo       Bulgaria  18   male
## 3233 1121 627.2325 urban location      Haskovo       Bulgaria  65   male
## 3234 1121 627.2325 urban location      Haskovo       Bulgaria  57 female
## 3235 1121 627.2325 urban location      Haskovo       Bulgaria  30   male
## 3236 1121 627.2325 urban location      Haskovo       Bulgaria  24 female
## 3237 1122 627.2325 urban location       Rousse          Turks  48   male
## 3238 1122 627.2325 urban location       Rousse          Turks  24 female
## 3239 1122 627.2325 urban location       Rousse          Turks  22 female
## 3240 1123 627.2325 urban location       Rousse       Bulgaria  74 female
## 3241 1124 627.2325 rural location      Montana       Bulgaria  75   male
## 3242 1124 627.2325 rural location      Montana       Bulgaria  73 female
## 3243 1125 627.2325 rural location     Bourgass       Bulgaria  57   male
## 3244 1125 627.2325 rural location     Bourgass       Bulgaria  44 female
## 3245 1126 627.2325 urban location      Montana       Bulgaria  66   male
## 3246 1126 627.2325 urban location      Montana       Bulgaria  70 female
## 3247 1126 627.2325 urban location      Montana       Bulgaria  42 female
## 3248 1127 627.2325 urban location Sofia region       Bulgaria  54   male
## 3249 1127 627.2325 urban location Sofia region       Bulgaria  53 female
## 3250 1127 627.2325 urban location Sofia region       Bulgaria  24 female
## 3251 1128 627.2325 rural location     Bourgass       Bulgaria  68   male
## 3252 1129 627.2325 urban location      Montana       Bulgaria  55   male
## 3253 1129 627.2325 urban location      Montana       Bulgaria  52 female
## 3254 1129 627.2325 urban location      Montana       Bulgaria  21   male
## 3255 1130 627.2325 urban location     Bourgass       Bulgaria  53   male
## 3256 1130 627.2325 urban location     Bourgass       Bulgaria  49 female
## 3257 1130 627.2325 urban location     Bourgass       Bulgaria  28 female
## 3258 1130 627.2325 urban location     Bourgass       Bulgaria  25   male
## 3259 1131 627.2325 urban location      Lovetch       Bulgaria  54   male
## 3260 1131 627.2325 urban location      Lovetch       Bulgaria  55 female
## 3261 1131 627.2325 urban location      Lovetch       Bulgaria  24   male
## 3262 1132 627.2325 urban location      Lovetch       Bulgaria  65   male
## 3263 1132 627.2325 urban location      Lovetch       Bulgaria  59 female
## 3264 1133 627.2325 urban location      Lovetch       Bulgaria  60   male
## 3265 1133 627.2325 urban location      Lovetch       Bulgaria  58 female
## 3266 1133 627.2325 urban location      Lovetch       Bulgaria  86 female
## 3267 1134 627.2325 urban location      Lovetch       Bulgaria  45   male
## 3268 1134 627.2325 urban location      Lovetch       Bulgaria  39 female
## 3269 1134 627.2325 urban location      Lovetch       Bulgaria   9   male
## 3270 1135 627.2325 urban location     Bourgass       Bulgaria  30   male
## 3271 1135 627.2325 urban location     Bourgass       Bulgaria  26 female
## 3272 1135 627.2325           <NA>     Bourgass       Bulgaria   2   male
## 3273 1136       NA rural location         <NA>           <NA>  53   male
## 3274 1136       NA rural location         <NA>           <NA>  50 female
## 3275 1136       NA rural location         <NA>           <NA>  33 female
## 3276 1137 627.2325 urban location       Rousse       Bulgaria  61 female
## 3277 1137 627.2325 urban location       Rousse       Bulgaria  38   male
## 3278 1138 627.2325 rural location        Varna       Bulgaria  81 female
## 3279 1139 627.2325 rural location        Varna       Bulgaria  36   male
## 3280 1139 627.2325 rural location        Varna       Bulgaria  31 female
## 3281 1139 627.2325 rural location        Varna       Bulgaria  13 female
## 3282 1139 627.2325 rural location        Varna       Bulgaria  11 female
## 3283 1140 627.2325 urban location        Varna       Bulgaria  46   male
## 3284 1140 627.2325 urban location        Varna       Bulgaria  47 female
## 3285 1140 627.2325 urban location        Varna       Bulgaria  22   male
## 3286 1140 627.2325 urban location        Varna       Bulgaria  21   male
## 3287 1141 627.2325 urban location       Rousse       Bulgaria  43   male
## 3288 1141 627.2325 urban location       Rousse       Bulgaria  40 female
## 3289 1141 627.2325 urban location       Rousse       Bulgaria  18   male
## 3290 1142 627.2325 urban location      Plovdiv       Bulgaria  41   male
## 3291 1142 627.2325 urban location      Plovdiv       Bulgaria  38 female
## 3292 1142 627.2325 urban location      Plovdiv       Bulgaria  16   male
## 3293 1142 627.2325           <NA>      Plovdiv       Bulgaria   6 female
## 3294 1143 627.2325 rural location      Lovetch       Bulgaria  60   male
## 3295 1143 627.2325 rural location      Lovetch       Bulgaria  57 female
## 3296 1143 627.2325 rural location      Lovetch       Bulgaria  86 female
## 3297 1144 627.2325 rural location      Lovetch       Bulgaria  48   male
## 3298 1144 627.2325 rural location      Lovetch       Bulgaria  42 female
## 3299 1144 627.2325 rural location      Lovetch       Bulgaria  74   male
## 3300 1144 627.2325 rural location      Lovetch       Bulgaria  73 female
## 3301 1145 627.2325 rural location      Lovetch       Bulgaria  55   male
## 3302 1145 627.2325 rural location      Lovetch       Bulgaria  51 female
## 3303 1145 627.2325 rural location      Lovetch       Bulgaria  21 female
## 3304 1146 627.2325 rural location      Lovetch       Bulgaria  59   male
## 3305 1146 627.2325 rural location      Lovetch       Bulgaria  86 female
## 3306 1147 627.2325 urban location      Plovdiv       Bulgaria  36   male
## 3307 1147 627.2325 urban location      Plovdiv       Bulgaria  27 female
## 3308 1148 627.2325 urban location     Bourgass       Bulgaria  26   male
## 3309 1148 627.2325 urban location     Bourgass       Bulgaria  20 female
## 3310 1148 627.2325           <NA>     Bourgass       Bulgaria   3 female
## 3311 1149 627.2325 urban location      Lovetch       Bulgaria  33   male
## 3312 1149 627.2325 urban location      Lovetch       Bulgaria  29 female
## 3313 1149 627.2325           <NA>      Lovetch       Bulgaria   5   male
## 3314 1150 627.2325 urban location      Lovetch       Bulgaria  55   male
## 3315 1150 627.2325           <NA>      Lovetch       Bulgaria  51 female
## 3316 1150 627.2325 urban location      Lovetch       Bulgaria  32   male
## 3317 1151 627.2325 urban location      Haskovo       Bulgaria  61   male
## 3318 1151 627.2325 urban location      Haskovo       Bulgaria  62 female
## 3319 1151 627.2325 urban location      Haskovo       Bulgaria  37   male
## 3320 1151 627.2325 urban location      Haskovo       Bulgaria  29 female
## 3321 1151 627.2325           <NA>      Haskovo       Bulgaria   4   male
## 3322 1151 627.2325           <NA>      Haskovo       Bulgaria   2   male
## 3323 1152 627.2325 urban location        Varna          Turks  50 female
## 3324 1152 627.2325 urban location        Varna          Turks  50   male
## 3325 1152 627.2325 urban location        Varna          Turks  29   male
## 3326 1152 627.2325 urban location        Varna          Turks  29 female
## 3327 1152 627.2325 urban location        Varna          Turks   8 female
## 3328 1152 627.2325           <NA>        Varna          Turks   2 female
## 3329 1153 627.2325 rural location        Varna       Bulgaria  62   male
## 3330 1153 627.2325 rural location        Varna       Bulgaria  63 female
## 3331 1153 627.2325 rural location        Varna       Bulgaria  42   male
## 3332 1153 627.2325 rural location        Varna       Bulgaria  37 female
## 3333 1153 627.2325 rural location        Varna       Bulgaria  16   male
## 3334 1153 627.2325 rural location        Varna       Bulgaria  10   male
## 3335 1154 627.2325 urban location        Varna           Roma  55 female
## 3336 1154 627.2325 urban location        Varna           Roma  59   male
## 3337 1155 627.2325 urban location        Varna           Roma  59 female
## 3338 1155 627.2325 urban location        Varna           Roma  63   male
## 3339 1155 627.2325 urban location        Varna           Roma  34 female
## 3340 1155 627.2325 urban location        Varna           Roma  14   male
## 3341 1155 627.2325           <NA>        Varna           Roma   2   male
## 3342 1156 627.2325 urban location      Lovetch       Bulgaria  60   male
## 3343 1156 627.2325 urban location      Lovetch       Bulgaria  55 female
## 3344 1156 627.2325 urban location      Lovetch       Bulgaria  36   male
## 3345 1156 627.2325 urban location      Lovetch       Bulgaria  11   male
## 3346 1156 627.2325 urban location      Lovetch       Bulgaria  34 female
## 3347 1156 627.2325 urban location      Lovetch       Bulgaria  13 female
## 3348 1157 627.2325 rural location      Lovetch       Bulgaria  37   male
## 3349 1157 627.2325 rural location      Lovetch       Bulgaria  33 female
## 3350 1157 627.2325 rural location      Lovetch       Bulgaria  13 female
## 3351 1157 627.2325 rural location      Lovetch       Bulgaria   9 female
## 3352 1158 627.2325 rural location      Lovetch       Bulgaria  52   male
## 3353 1158 627.2325 rural location      Lovetch       Bulgaria  81   male
## 3354 1159 627.2325 urban location      Lovetch       Bulgaria  54   male
## 3355 1159 627.2325 urban location      Lovetch       Bulgaria  58 female
## 3356 1159 627.2325           <NA>      Lovetch       Bulgaria  24 female
## 3357 1159 627.2325 urban location      Lovetch       Bulgaria  21   male
## 3358 1160 627.2325 urban location        Varna       Bulgaria  47 female
## 3359 1160 627.2325 urban location        Varna       Bulgaria  50   male
## 3360 1160 627.2325 urban location        Varna       Bulgaria  24   male
## 3361 1160 627.2325 urban location        Varna       Bulgaria  22   male
## 3362 1161 627.2325 urban location     Bourgass       Bulgaria  50   male
## 3363 1161 627.2325 urban location     Bourgass       Bulgaria  50 female
## 3364 1161 627.2325 urban location     Bourgass       Bulgaria  18   male
## 3365 1162 627.2325 urban location        Varna       Bulgaria  41   male
## 3366 1162 627.2325 urban location        Varna       Bulgaria  27 female
## 3367 1162 627.2325           <NA>        Varna       Bulgaria   4   male
## 3368 1162 627.2325           <NA>        Varna       Bulgaria   3 female
## 3369 1163 627.2325 urban location        Varna           Roma  42   male
## 3370 1163 627.2325 urban location        Varna           Roma  38 female
## 3371 1163 627.2325 urban location        Varna           Roma  11 female
## 3372 1164 627.2325 rural location        Varna       Bulgaria  48 female
## 3373 1164 627.2325 rural location        Varna       Bulgaria  67 female
## 3374 1165 627.2325 urban location        Varna           Roma  34 female
## 3375 1165 627.2325 urban location        Varna           Roma  43   male
## 3376 1165 627.2325 urban location        Varna           Roma  25   male
## 3377 1165 627.2325 urban location        Varna           Roma  15 female
## 3378 1165 627.2325           <NA>        Varna           Roma   7 female
## 3379 1166 627.2325 rural location        Varna       Bulgaria  51   male
## 3380 1166 627.2325 rural location        Varna       Bulgaria  75 female
## 3381 1166 627.2325 rural location        Varna       Bulgaria  46 female
## 3382 1166 627.2325 rural location        Varna       Bulgaria  53   male
## 3383 1166 627.2325 rural location        Varna       Bulgaria  29   male
## 3384 1166 627.2325 rural location        Varna       Bulgaria  26   male
## 3385 1167 627.2325 urban location        Varna       Bulgaria  43   male
## 3386 1167 627.2325 urban location        Varna       Bulgaria  33 female
## 3387 1167 627.2325 urban location        Varna       Bulgaria  13 female
## 3388 1167 627.2325 urban location        Varna       Bulgaria   8   male
## 3389 1168       NA urban location         <NA>           <NA>  34   male
## 3390 1168       NA urban location         <NA>           <NA>  30 female
## 3391 1168       NA urban location         <NA>           <NA>  20 female
## 3392 1168       NA urban location         <NA>           <NA>  16   male
## 3393 1168       NA urban location         <NA>           <NA>   8   male
## 3394 1169 627.2325 rural location        Varna       Bulgaria  49   male
## 3395 1169 627.2325 rural location        Varna       Bulgaria  48 female
## 3396 1169 627.2325 rural location        Varna       Bulgaria  19 female
## 3397 1169 627.2325 rural location        Varna       Bulgaria  74 female
## 3398 1170 627.2325 urban location      Haskovo       Bulgaria  60   male
## 3399 1170 627.2325 urban location      Haskovo       Bulgaria  59 female
## 3400 1170 627.2325 urban location      Haskovo       Bulgaria  27   male
## 3401 1171 627.2325 rural location       Rousse       Bulgaria  66 female
## 3402 1172 627.2325 rural location       Rousse          Turks  65   male
## 3403 1172 627.2325 rural location       Rousse          Turks  64 female
## 3404 1172 627.2325 rural location       Rousse          Turks  12   male
## 3405 1173 627.2325 urban location        Varna       Bulgaria  28 female
## 3406 1174 627.2325 urban location        Varna       Bulgaria  74 female
## 3407 1174 627.2325 urban location        Varna       Bulgaria  42 female
## 3408 1174 627.2325 urban location        Varna       Bulgaria  24   male
## 3409 1174 627.2325 urban location        Varna       Bulgaria  22   male
## 3410 1174 627.2325 urban location        Varna       Bulgaria  20   male
## 3411 1175 627.2325 urban location        Varna       Bulgaria  28   male
## 3412 1175 627.2325 urban location        Varna       Bulgaria  23 female
## 3413 1176 627.2325 urban location        Varna       Bulgaria  31   male
## 3414 1176 627.2325 urban location        Varna       Bulgaria  24 female
## 3415 1177 627.2325 urban location        Varna       Bulgaria  24   male
## 3416 1177 627.2325 urban location        Varna       Bulgaria  21 female
## 3417 1178 627.2325 urban location        Varna       Bulgaria  67   male
## 3418 1178 627.2325 urban location        Varna       Bulgaria  63 female
## 3419 1178 627.2325 urban location        Varna       Bulgaria  40   male
## 3420 1179 627.2325 urban location        Varna       Bulgaria  41 female
## 3421 1179 627.2325 urban location        Varna       Bulgaria  23   male
## 3422 1179 627.2325 urban location        Varna       Bulgaria  12 female
## 3423 1180 627.2325 urban location Sofia region       Bulgaria  81   male
## 3424 1181 627.2325 urban location Sofia region       Bulgaria  76   male
## 3425 1181 627.2325 urban location Sofia region       Bulgaria  35   male
## 3426 1182 627.2325 urban location Sofia region       Bulgaria  74   male
## 3427 1183 627.2325 urban location Sofia region       Bulgaria  53   male
## 3428 1183 627.2325 urban location Sofia region       Bulgaria  54 female
## 3429 1184 627.2325 rural location      Haskovo          Turks  37   male
## 3430 1184 627.2325 rural location      Haskovo          Turks  31 female
## 3431 1184 627.2325 rural location      Haskovo          Turks  11   male
## 3432 1184 627.2325 rural location      Haskovo          Turks   9   male
## 3433 1185 627.2325 rural location      Haskovo          Turks  72   male
## 3434 1185 627.2325 rural location      Haskovo          Turks  69 female
## 3435 1186 627.2325 rural location      Haskovo          Turks  45   male
## 3436 1186 627.2325 rural location      Haskovo          Turks  42 female
## 3437 1186 627.2325 rural location      Haskovo          Turks  19   male
## 3438 1186 627.2325 rural location      Haskovo          Turks  15 female
## 3439 1187 627.2325 rural location      Haskovo          Turks  47   male
## 3440 1187 627.2325 rural location      Haskovo          Turks  45 female
## 3441 1187 627.2325 rural location      Haskovo          Turks  19 female
## 3442 1188 627.2325 rural location      Haskovo          Turks  40   male
## 3443 1188 627.2325 rural location      Haskovo          Turks  40 female
## 3444 1188 627.2325 rural location      Haskovo          Turks  16 female
## 3445 1188 627.2325 rural location      Haskovo          Turks  14 female
## 3446 1189 627.2325 urban location Sofia region       Bulgaria  37   male
## 3447 1189 627.2325 urban location Sofia region       Bulgaria  30 female
## 3448 1189 627.2325           <NA> Sofia region       Bulgaria   6   male
## 3449 1189 627.2325           <NA> Sofia region       Bulgaria   1 female
## 3450 1190 627.2325 urban location Sofia region           Roma  50   male
## 3451 1190 627.2325 urban location Sofia region           Roma  44 female
## 3452 1190 627.2325 urban location Sofia region           Roma  21 female
## 3453 1190 627.2325 urban location Sofia region           Roma  18 female
## 3454 1191 627.2325 urban location Sofia region       Bulgaria  64   male
## 3455 1191 627.2325 urban location Sofia region       Bulgaria  59 female
## 3456 1192 627.2325 urban location      Haskovo       Bulgaria  76   male
## 3457 1192 627.2325 urban location      Haskovo       Bulgaria  72 female
## 3458 1193 627.2325 urban location      Haskovo       Bulgaria  72 female
## 3459 1194 627.2325 rural location       Rousse          Turks  54 female
## 3460 1194 627.2325 rural location       Rousse          Turks  35   male
## 3461 1194 627.2325 rural location       Rousse          Turks  27 female
## 3462 1194 627.2325           <NA>       Rousse          Turks   6   male
## 3463 1194 627.2325           <NA>       Rousse          Turks   2   male
## 3464 1195 627.2325 urban location     Bourgass       Bulgaria  31 female
## 3465 1196 627.2325 urban location Sofia region           Roma  29   male
## 3466 1196 627.2325 urban location Sofia region           Roma  31 female
## 3467 1196 627.2325           <NA> Sofia region           Roma   7   male
## 3468 1196 627.2325           <NA> Sofia region           Roma   1   male
## 3469 1197 627.2325 urban location      Haskovo       Bulgaria  68   male
## 3470 1197 627.2325 urban location      Haskovo       Bulgaria  67 female
## 3471 1198 627.2325 urban location      Haskovo       Bulgaria  54 female
## 3472 1198 627.2325 urban location      Haskovo       Bulgaria  17   male
## 3473 1199 627.2325 urban location      Haskovo       Bulgaria  68 female
## 3474 1200 627.2325 urban location Sofia region           Roma  49   male
## 3475 1200 627.2325 urban location Sofia region           Roma  46 female
## 3476 1200 627.2325 urban location Sofia region           Roma  27 female
## 3477 1200 627.2325           <NA> Sofia region           Roma   1 female
## 3478 1201 627.2325 rural location      Haskovo          Turks  54   male
## 3479 1201 627.2325 rural location      Haskovo          Turks  52 female
## 3480 1201 627.2325 rural location      Haskovo          Turks  79 female
## 3481 1202 627.2325 rural location      Haskovo          Turks  61   male
## 3482 1202 627.2325 rural location      Haskovo          Turks  59 female
## 3483 1202 627.2325 rural location      Haskovo          Turks  16   male
## 3484 1203 627.2325 rural location      Haskovo          Turks  73   male
## 3485 1203 627.2325 rural location      Haskovo          Turks  71 female
## 3486 1204 627.2325 rural location      Haskovo          Turks  51   male
## 3487 1204 627.2325 rural location      Haskovo          Turks  46 female
## 3488 1204 627.2325 rural location      Haskovo          Turks  25   male
## 3489 1205 627.2325 urban location     Bourgass       Bulgaria  63   male
## 3490 1205 627.2325 urban location     Bourgass       Bulgaria  59 female
## 3491 1206 627.2325 urban location     Bourgass       Bulgaria  34 female
## 3492 1207 627.2325 urban location Sofia region       Bulgaria  65   male
## 3493 1207 627.2325 urban location Sofia region       Bulgaria  61 female
## 3494 1207 627.2325 urban location Sofia region       Bulgaria  29   male
## 3495 1207 627.2325 urban location Sofia region       Bulgaria  25 female
## 3496 1207 627.2325           <NA> Sofia region       Bulgaria   5 female
## 3497 1208 627.2325 rural location       Rousse          Turks  63   male
## 3498 1208 627.2325 rural location       Rousse          Turks  59 female
## 3499 1208 627.2325 rural location       Rousse          Turks  40   male
## 3500 1208 627.2325 rural location       Rousse          Turks  37 female
## 3501 1208 627.2325 rural location       Rousse          Turks  15 female
## 3502 1208 627.2325 rural location       Rousse          Turks  11   male
## 3503 1209 627.2325 rural location      Haskovo          Turks  52   male
## 3504 1209 627.2325 rural location      Haskovo          Turks  50 female
## 3505 1210 627.2325 rural location      Haskovo          Turks  73   male
## 3506 1210 627.2325 rural location      Haskovo          Turks  44   male
## 3507 1210 627.2325 rural location      Haskovo          Turks  40 female
## 3508 1210 627.2325 rural location      Haskovo          Turks  16   male
## 3509 1210 627.2325 rural location      Haskovo          Turks  14   male
## 3510 1211 627.2325 rural location        Varna       Bulgaria  64   male
## 3511 1211 627.2325 rural location        Varna       Bulgaria  61 female
## 3512 1212 627.2325 urban location      Haskovo       Bulgaria  45 female
## 3513 1212 627.2325 urban location      Haskovo       Bulgaria  27   male
## 3514 1212 627.2325 urban location      Haskovo       Bulgaria  22   male
## 3515 1213 627.2325 urban location      Haskovo       Bulgaria  48   male
## 3516 1213 627.2325 urban location      Haskovo       Bulgaria  47 female
## 3517 1213 627.2325 urban location      Haskovo       Bulgaria  27   male
## 3518 1213 627.2325 urban location      Haskovo       Bulgaria  23 female
## 3519 1214 627.2325 urban location Sofia region       Bulgaria  80   male
## 3520 1214 627.2325 urban location Sofia region       Bulgaria  75 female
## 3521 1214 627.2325 urban location Sofia region       Bulgaria  52 female
## 3522 1215 627.2325 rural location        Varna           Roma  51   male
## 3523 1215 627.2325 rural location        Varna           Roma  48 female
## 3524 1215 627.2325 rural location        Varna           Roma  24 female
## 3525 1215 627.2325           <NA>        Varna           Roma   5   male
## 3526 1216 627.2325 rural location      Plovdiv       Bulgaria  60   male
## 3527 1216 627.2325 rural location      Plovdiv       Bulgaria  53 female
## 3528 1217 627.2325 urban location     Bourgass       Bulgaria  29 female
## 3529 1217 627.2325 urban location     Bourgass       Bulgaria   8   male
## 3530 1218 627.2325 urban location      Montana       Bulgaria  88   male
## 3531 1218 627.2325 urban location      Montana       Bulgaria  81 female
## 3532 1219 627.2325 rural location        Varna       Bulgaria  69 female
## 3533 1220 627.2325 urban location Sofia region       Bulgaria  58   male
## 3534 1220 627.2325 urban location Sofia region       Bulgaria  53 female
## 3535 1220 627.2325           <NA> Sofia region       Bulgaria  24 female
## 3536 1220 627.2325           <NA> Sofia region       Bulgaria  23 female
## 3537 1221 627.2325 urban location      Lovetch       Bulgaria  74   male
## 3538 1221 627.2325 urban location      Lovetch       Bulgaria  71 female
## 3539 1222 627.2325 urban location      Montana       Bulgaria  52   male
## 3540 1222 627.2325 urban location      Montana       Bulgaria  48 female
## 3541 1222 627.2325 urban location      Montana       Bulgaria  14 female
## 3542 1222 627.2325           <NA>      Montana       Bulgaria   7 female
## 3543 1222 627.2325 urban location      Montana       Bulgaria  72 female
## 3544 1223 627.2325 urban location      Montana       Bulgaria  67   male
## 3545 1223 627.2325 urban location      Montana       Bulgaria  65 female
## 3546 1223 627.2325 urban location      Montana       Bulgaria  34 female
## 3547 1223 627.2325 urban location      Montana       Bulgaria  11 female
## 3548 1224 627.2325 rural location      Plovdiv       Bulgaria  47   male
## 3549 1224 627.2325 rural location      Plovdiv       Bulgaria  44 female
## 3550 1224 627.2325 rural location      Plovdiv       Bulgaria  23   male
## 3551 1224 627.2325 rural location      Plovdiv       Bulgaria  19   male
## 3552 1224 627.2325 rural location      Plovdiv       Bulgaria  72 female
## 3553 1225 627.2325 urban location      Montana       Bulgaria  37   male
## 3554 1225 627.2325 urban location      Montana       Bulgaria  34 female
## 3555 1225 627.2325 urban location      Montana       Bulgaria   8   male
## 3556 1226 627.2325 rural location      Plovdiv       Bulgaria  49   male
## 3557 1226 627.2325 rural location      Plovdiv       Bulgaria  39 female
## 3558 1226 627.2325 rural location      Plovdiv       Bulgaria  19   male
## 3559 1226 627.2325 rural location      Plovdiv       Bulgaria  80 female
## 3560 1227 627.2325 rural location        Varna       Bulgaria  64   male
## 3561 1227 627.2325 rural location        Varna       Bulgaria  58 female
## 3562 1228 627.2325 urban location Sofia region       Bulgaria  37   male
## 3563 1228 627.2325 urban location Sofia region       Bulgaria  37 female
## 3564 1228 627.2325 urban location Sofia region       Bulgaria  15   male
## 3565 1229 627.2325 urban location Sofia region       Bulgaria  59   male
## 3566 1229 627.2325 urban location Sofia region       Bulgaria  58 female
## 3567 1230 627.2325 urban location Sofia region       Bulgaria  54   male
## 3568 1230 627.2325 urban location Sofia region       Bulgaria  49 female
## 3569 1230 627.2325 urban location Sofia region       Bulgaria  28   male
## 3570 1231 627.2325 urban location      Lovetch       Bulgaria  54   male
## 3571 1231 627.2325 urban location      Lovetch       Bulgaria  54 female
## 3572 1232 627.2325 urban location      Lovetch       Bulgaria  44   male
## 3573 1232 627.2325 urban location      Lovetch       Bulgaria  40 female
## 3574 1232 627.2325 urban location      Lovetch       Bulgaria  17   male
## 3575 1232 627.2325           <NA>      Lovetch       Bulgaria   4   male
## 3576 1233 627.2325 rural location      Lovetch       Bulgaria  42 female
## 3577 1234 627.2325 urban location      Montana       Bulgaria  59   male
## 3578 1234 627.2325 urban location      Montana       Bulgaria  60 female
## 3579 1234 627.2325 urban location      Montana       Bulgaria  37 female
## 3580 1234 627.2325 urban location      Montana       Bulgaria  37   male
## 3581 1234 627.2325 urban location      Montana       Bulgaria  10 female
## 3582 1234 627.2325           <NA>      Montana       Bulgaria   6 female
## 3583 1235 627.2325 rural location      Montana       Bulgaria  58 female
## 3584 1235 627.2325 rural location      Montana       Bulgaria  37 female
## 3585 1235 627.2325 rural location      Montana       Bulgaria  56   male
## 3586 1235 627.2325 rural location      Montana       Bulgaria  13 female
## 3587 1235 627.2325 rural location      Montana       Bulgaria  10   male
## 3588 1235 627.2325           <NA>      Montana       Bulgaria   4 female
## 3589 1236 627.2325 urban location      Montana       Bulgaria  82 female
## 3590 1237 627.2325 rural location      Montana       Bulgaria  77   male
## 3591 1237 627.2325 rural location      Montana       Bulgaria  75 female
## 3592 1238 627.2325 rural location      Montana       Bulgaria  39   male
## 3593 1238 627.2325 rural location      Montana       Bulgaria  36 female
## 3594 1238 627.2325 rural location      Montana       Bulgaria  16 female
## 3595 1239 627.2325 rural location      Montana       Bulgaria  55   male
## 3596 1239 627.2325 rural location      Montana       Bulgaria  56 female
## 3597 1239 627.2325 rural location      Montana       Bulgaria   8   male
## 3598 1239 627.2325           <NA>      Montana       Bulgaria   4 female
## 3599 1239 627.2325 rural location      Montana       Bulgaria  84   male
## 3600 1240 627.2325 rural location      Montana       Bulgaria  54   male
## 3601 1240 627.2325 rural location      Montana       Bulgaria  53 female
## 3602 1240 627.2325 rural location      Montana       Bulgaria  80   male
## 3603 1240 627.2325 rural location      Montana       Bulgaria  80 female
## 3604 1241 627.2325 rural location      Montana       Bulgaria  66   male
## 3605 1241 627.2325 rural location      Montana       Bulgaria  62 female
## 3606 1241 627.2325 rural location      Montana       Bulgaria  92   male
## 3607 1242 627.2325 rural location      Montana       Bulgaria  73   male
## 3608 1243 627.2325 urban location      Lovetch       Bulgaria  63   male
## 3609 1243 627.2325 urban location      Lovetch       Bulgaria  64 female
## 3610 1243 627.2325 urban location      Lovetch       Bulgaria  20 female
## 3611 1244 627.2325 urban location      Lovetch       Bulgaria  51   male
## 3612 1244 627.2325 urban location      Lovetch       Bulgaria  50 female
## 3613 1244 627.2325 urban location      Lovetch       Bulgaria  22   male
## 3614 1245 627.2325 rural location      Montana       Bulgaria  69   male
## 3615 1245 627.2325 rural location      Montana       Bulgaria  69 female
## 3616 1246 627.2325 rural location      Montana       Bulgaria  45   male
## 3617 1246 627.2325 rural location      Montana       Bulgaria  41 female
## 3618 1246 627.2325 rural location      Montana       Bulgaria  22   male
## 3619 1246 627.2325 rural location      Montana       Bulgaria  19   male
## 3620 1246 627.2325 rural location      Montana       Bulgaria  13   male
## 3621 1246 627.2325 rural location      Montana       Bulgaria  69 female
## 3622 1247 627.2325 rural location       Rousse           Roma  65   male
## 3623 1247 627.2325 rural location       Rousse           Roma  59 female
## 3624 1248 627.2325 rural location       Rousse          Other  54   male
## 3625 1248 627.2325 rural location       Rousse          Other  32   male
## 3626 1248 627.2325 rural location       Rousse          Other  24 female
## 3627 1248 627.2325           <NA>       Rousse          Other   6   male
## 3628 1248 627.2325           <NA>       Rousse          Other   3   male
## 3629 1249 627.2325 rural location      Haskovo          Turks  52   male
## 3630 1249 627.2325 rural location      Haskovo          Turks  55 female
## 3631 1249 627.2325 rural location      Haskovo          Turks  24 female
## 3632 1250 627.2325 urban location      Lovetch       Bulgaria  59   male
## 3633 1250 627.2325 urban location      Lovetch       Bulgaria  55 female
## 3634 1250 627.2325 urban location      Lovetch       Bulgaria  21   male
## 3635 1251 627.2325 rural location      Montana       Bulgaria  54   male
## 3636 1251 627.2325 rural location      Montana       Bulgaria  31   male
## 3637 1252 627.2325 rural location      Lovetch       Bulgaria  39   male
## 3638 1252 627.2325 rural location      Lovetch       Bulgaria  31 female
## 3639 1252 627.2325 rural location      Lovetch       Bulgaria  12   male
## 3640 1252 627.2325 rural location      Lovetch       Bulgaria   7   male
## 3641 1253 627.2325 rural location      Lovetch       Bulgaria  68   male
## 3642 1253 627.2325 rural location      Lovetch       Bulgaria  66 female
## 3643 1253 627.2325 rural location      Lovetch       Bulgaria  45 female
## 3644 1254 627.2325 urban location      Montana       Bulgaria  53   male
## 3645 1254 627.2325 urban location      Montana       Bulgaria  60 female
## 3646 1254 627.2325 urban location      Montana       Bulgaria  28   male
## 3647 1255 627.2325 urban location Sofia region       Bulgaria  61   male
## 3648 1255 627.2325 urban location Sofia region       Bulgaria  57 female
## 3649 1256 627.2325 urban location Sofia region       Bulgaria  50   male
## 3650 1256 627.2325 urban location Sofia region       Bulgaria  46 female
## 3651 1256 627.2325 urban location Sofia region       Bulgaria  25   male
## 3652 1257 627.2325 urban location      Lovetch       Bulgaria  70 female
## 3653 1257 627.2325 urban location      Lovetch       Bulgaria  47 female
## 3654 1258 627.2325 rural location       Rousse          Turks  71 female
## 3655 1259 627.2325 urban location        Varna       Bulgaria  36   male
## 3656 1259 627.2325 urban location        Varna       Bulgaria  32 female
## 3657 1259 627.2325 urban location        Varna       Bulgaria  13   male
## 3658 1259 627.2325 urban location        Varna       Bulgaria   7 female
## 3659 1260 627.2325 rural location       Rousse          Turks  73   male
## 3660 1260 627.2325 rural location       Rousse          Turks  74 female
## 3661 1260 627.2325 rural location       Rousse          Turks  40   male
## 3662 1260 627.2325 rural location       Rousse          Turks  39 female
## 3663 1260 627.2325 rural location       Rousse          Turks  17   male
## 3664 1260 627.2325 rural location       Rousse          Turks  12 female
## 3665 1261 627.2325 urban location        Varna       Bulgaria  62   male
## 3666 1262 627.2325 urban location        Varna       Bulgaria  80 female
## 3667 1263 627.2325 urban location        Varna       Bulgaria  71   male
## 3668 1263 627.2325 urban location        Varna       Bulgaria  70 female
## 3669 1263 627.2325 urban location        Varna       Bulgaria  92   male
## 3670 1264 627.2325 urban location        Varna          Turks  65   male
## 3671 1264 627.2325 urban location        Varna          Turks  59 female
## 3672 1264 627.2325 urban location        Varna          Turks  42   male
## 3673 1264 627.2325 urban location        Varna          Turks  41 female
## 3674 1264 627.2325 urban location        Varna          Turks  18   male
## 3675 1265 627.2325 rural location        Varna           Roma  50 female
## 3676 1265 627.2325 rural location        Varna           Roma  14 female
## 3677 1265 627.2325 rural location        Varna           Roma  10   male
## 3678 1266 627.2325 urban location Sofia region       Bulgaria  77 female
## 3679 1267 627.2325 urban location      Plovdiv       Bulgaria  84   male
## 3680 1267 627.2325 urban location      Plovdiv       Bulgaria  73 female
## 3681 1268 627.2325 urban location        Varna       Bulgaria  36   male
## 3682 1268 627.2325 urban location        Varna       Bulgaria  36 female
## 3683 1269 627.2325 rural location        Varna           Roma  42   male
## 3684 1269 627.2325 rural location        Varna           Roma  41 female
## 3685 1269 627.2325 rural location        Varna           Roma  21   male
## 3686 1269 627.2325 rural location        Varna           Roma  21 female
## 3687 1270 627.2325 urban location        Varna       Bulgaria  48   male
## 3688 1270 627.2325 urban location        Varna       Bulgaria  46 female
## 3689 1270 627.2325 urban location        Varna       Bulgaria  70 female
## 3690 1271 627.2325 urban location      Lovetch       Bulgaria  30   male
## 3691 1272 627.2325 urban location      Lovetch       Bulgaria  50   male
## 3692 1273 627.2325 urban location      Lovetch       Bulgaria  68   male
## 3693 1273 627.2325 urban location      Lovetch       Bulgaria  58 female
## 3694 1273 627.2325 urban location      Lovetch       Bulgaria  35   male
## 3695 1274 627.2325 rural location       Rousse       Bulgaria  48   male
## 3696 1274 627.2325           <NA>       Rousse       Bulgaria  38 female
## 3697 1274 627.2325 rural location       Rousse       Bulgaria  17   male
## 3698 1274 627.2325 rural location       Rousse       Bulgaria  16 female
## 3699 1275 627.2325 urban location      Lovetch       Bulgaria  72   male
## 3700 1275 627.2325 urban location      Lovetch       Bulgaria  58 female
## 3701 1276 627.2325 urban location       Rousse       Bulgaria  74   male
## 3702 1276 627.2325 urban location       Rousse       Bulgaria  49   male
## 3703 1277 627.2325 urban location Sofia region       Bulgaria  52   male
##                        relation literate  income_mnt      income
## 1    head                             no   13.333333   160.00000
## 2    child                           yes   13.333333   160.00000
## 3    child                           yes   13.333333   160.00000
## 4    head                            yes  142.500000  1710.00000
## 5    spouse/partner                  yes  142.500000  1710.00000
## 6    head                            yes  123.333328  1480.00000
## 7    head                            yes   98.333328  1180.00000
## 8    spouse/partner                  yes   98.333328  1180.00000
## 9    head                            yes  169.666672  2036.00000
## 10   head                            yes  111.666664  1340.00000
## 11   head                            yes   83.083336   997.00000
## 12   spouse/partner                  yes   83.083336   997.00000
## 13   head                            yes  215.000000  2580.00000
## 14   spouse/partner                  yes  215.000000  2580.00000
## 15   head                            yes  106.666664  1280.00000
## 16   parent, parent-in-law           yes  106.666664  1280.00000
## 17   child                           yes  106.666664  1280.00000
## 18   head                            yes  495.555573  5946.66699
## 19   spouse/partner                  yes  495.555573  5946.66699
## 20   child                           yes  495.555573  5946.66699
## 21   head                            yes  175.000000  2100.00000
## 22   spouse/partner                  yes  175.000000  2100.00000
## 23   head                            yes   94.166672  1130.00000
## 24   spouse/partner                   no   94.166672  1130.00000
## 25   head                            yes  127.900002  1534.80005
## 26   spouse/partner                  yes  127.900002  1534.80005
## 27   grandchild                      yes  127.900002  1534.80005
## 28   other relative                  yes  127.900002  1534.80005
## 29   other relative                 <NA>  127.900002  1534.80005
## 30   head                            yes  110.000000  1320.00000
## 31   spouse/partner                  yes  110.000000  1320.00000
## 32   child                           yes  110.000000  1320.00000
## 33   head                            yes   91.666664  1100.00000
## 34   spouse/partner                  yes   91.666664  1100.00000
## 35   head                            yes  205.833328  2470.00000
## 36   spouse/partner                  yes  205.833328  2470.00000
## 37   head                            yes  185.333328  2224.00000
## 38   head                            yes  172.666672  2072.00000
## 39   spouse/partner                  yes  172.666672  2072.00000
## 40   child                           yes  172.666672  2072.00000
## 41   head                            yes  146.555557  1758.66675
## 42   spouse/partner                  yes  146.555557  1758.66675
## 43   child                           yes  146.555557  1758.66675
## 44   head                            yes  149.291656  1791.49988
## 45   spouse/partner                  yes  149.291656  1791.49988
## 46   child                           yes  149.291656  1791.49988
## 47   parent, parent-in-law           yes  149.291656  1791.49988
## 48   head                            yes  186.111099  2233.33325
## 49   spouse/partner                  yes  186.111099  2233.33325
## 50   parent, parent-in-law           yes  186.111099  2233.33325
## 51   head                            yes   48.138889   577.66669
## 52   child                           yes   48.138889   577.66669
## 53   son/daughter-in-law             yes   48.138889   577.66669
## 54   grandchild                      yes   48.138889   577.66669
## 55   grandchild                     <NA>   48.138889   577.66669
## 56   grandchild                     <NA>   48.138889   577.66669
## 57   head                            yes  159.166672  1910.00000
## 58   spouse/partner                  yes  159.166672  1910.00000
## 59   child                           yes  159.166672  1910.00000
## 60   child                           yes  159.166672  1910.00000
## 61   head                            yes  148.000000  1776.00000
## 62   spouse/partner                  yes  148.000000  1776.00000
## 63   head                            yes  191.166656  2294.00000
## 64   spouse/partner                  yes  191.166656  2294.00000
## 65   child                           yes  191.166656  2294.00000
## 66   child                          <NA>  191.166656  2294.00000
## 67   child                          <NA>  191.166656  2294.00000
## 68   head                            yes  106.388885  1276.66663
## 69   spouse/partner                  yes  106.388885  1276.66663
## 70   child                          <NA>  106.388885  1276.66663
## 71   head                            yes  138.750000  1665.00000
## 72   spouse/partner                  yes  138.750000  1665.00000
## 73   child                           yes  138.750000  1665.00000
## 74   parent, parent-in-law           yes  138.750000  1665.00000
## 75   head                            yes  575.000000  6900.00000
## 76   head                            yes  201.666672  2420.00000
## 77   spouse/partner                  yes  201.666672  2420.00000
## 78   parent, parent-in-law           yes  201.666672  2420.00000
## 79   head                            yes  105.041672  1260.50000
## 80   spouse/partner                  yes  105.041672  1260.50000
## 81   child                           yes  105.041672  1260.50000
## 82   child                          <NA>  105.041672  1260.50000
## 83   head                            yes   75.000000   900.00000
## 84   spouse/partner                  yes   75.000000   900.00000
## 85   head                            yes  154.500000  1854.00000
## 86   spouse/partner                  yes  154.500000  1854.00000
## 87   head                            yes  264.333344  3172.00000
## 88   spouse/partner                  yes  264.333344  3172.00000
## 89   child                           yes  264.333344  3172.00000
## 90   head                            yes  175.750000  2109.00000
## 91   spouse/partner                  yes  175.750000  2109.00000
## 92   head                            yes  151.666656  1819.99988
## 93   spouse/partner                  yes  151.666656  1819.99988
## 94   child                           yes  151.666656  1819.99988
## 95   son/daughter-in-law             yes  151.666656  1819.99988
## 96   grandchild                      yes  151.666656  1819.99988
## 97   head                            yes  215.000000  2580.00000
## 98   spouse/partner                  yes  215.000000  2580.00000
## 99   head                            yes  112.333336  1348.00000
## 100  head                            yes  176.000000  2112.00000
## 101  spouse/partner                  yes  176.000000  2112.00000
## 102  head                            yes  139.000000  1668.00000
## 103  spouse/partner                  yes  139.000000  1668.00000
## 104  head                            yes  106.250000  1275.00000
## 105  spouse/partner                  yes  106.250000  1275.00000
## 106  head                            yes  185.666672  2228.00000
## 107  head                            yes   84.375000  1012.50000
## 108  spouse/partner                  yes   84.375000  1012.50000
## 109  child                           yes   84.375000  1012.50000
## 110  child                          <NA>   84.375000  1012.50000
## 111  head                            yes  125.000000  1500.00000
## 112  spouse/partner                  yes  125.000000  1500.00000
## 113  child                           yes  125.000000  1500.00000
## 114  child                           yes  125.000000  1500.00000
## 115  head                            yes  200.000000  2400.00000
## 116  spouse/partner                  yes  200.000000  2400.00000
## 117  head                            yes  303.888885  3646.66650
## 118  spouse/partner                  yes  303.888885  3646.66650
## 119  child                           yes  303.888885  3646.66650
## 120  head                            yes  235.000000  2820.00000
## 121  parent, parent-in-law           yes  235.000000  2820.00000
## 122  head                            yes  176.000000  2112.00000
## 123  spouse/partner                  yes  176.000000  2112.00000
## 124  child                          <NA>  176.000000  2112.00000
## 125  head                            yes  199.166672  2390.00000
## 126  spouse/partner                  yes  199.166672  2390.00000
## 127  head                            yes  466.666656  5600.00000
## 128  spouse/partner                  yes  466.666656  5600.00000
## 129  child                           yes  466.666656  5600.00000
## 130  child                          <NA>  466.666656  5600.00000
## 131  head                            yes  457.222198  5486.66650
## 132  spouse/partner                  yes  457.222198  5486.66650
## 133  child                           yes  457.222198  5486.66650
## 134  head                            yes  318.333344  3820.00000
## 135  spouse/partner                  yes  318.333344  3820.00000
## 136  head                            yes    0.000000     0.00000
## 137  child                           yes    0.000000     0.00000
## 138  child                           yes    0.000000     0.00000
## 139  head                            yes  283.333344  3400.00000
## 140  head                             no  112.000000  1344.00000
## 141  head                            yes   18.888889   226.66667
## 142  parent, parent-in-law           yes   18.888889   226.66667
## 143  spouse/partner                   no   18.888889   226.66667
## 144  child                           yes   18.888889   226.66667
## 145  child                           yes   18.888889   226.66667
## 146  child                            no   18.888889   226.66667
## 147  head                             no   57.619045   691.42853
## 148  parent, parent-in-law            no   57.619045   691.42853
## 149  spouse/partner                  yes   57.619045   691.42853
## 150  child                          <NA>   57.619045   691.42853
## 151  child                          <NA>   57.619045   691.42853
## 152  child                          <NA>   57.619045   691.42853
## 153  other relative                 <NA>   57.619045   691.42853
## 154  head                            yes  112.500000  1350.00000
## 155  spouse/partner                  yes  112.500000  1350.00000
## 156  head                            yes  145.000000  1740.00000
## 157  head                            yes  229.222214  2750.66650
## 158  child                           yes  229.222214  2750.66650
## 159  grandchild                      yes  229.222214  2750.66650
## 160  head                            yes   96.000000  1152.00000
## 161  spouse/partner                  yes   96.000000  1152.00000
## 162  head                            yes  175.000000  2100.00000
## 163  child                           yes  175.000000  2100.00000
## 164  head                            yes  522.000000  6264.00000
## 165  head                            yes  333.750000  4005.00000
## 166  spouse/partner                  yes  333.750000  4005.00000
## 167  child                           yes  333.750000  4005.00000
## 168  child                           yes  333.750000  4005.00000
## 169  head                            yes  173.333328  2080.00000
## 170  spouse/partner                  yes  173.333328  2080.00000
## 171  child                           yes  173.333328  2080.00000
## 172  head                            yes   86.500000  1038.00000
## 173  child                           yes   86.500000  1038.00000
## 174  son/daughter-in-law             yes   86.500000  1038.00000
## 175  grandchild                      yes   86.500000  1038.00000
## 176  other relative                  yes   86.500000  1038.00000
## 177  other relative                  yes   86.500000  1038.00000
## 178  other relative                 <NA>   86.500000  1038.00000
## 179  head                            yes  141.666656  1699.99988
## 180  head                            yes   72.833336   874.00000
## 181  parent, parent-in-law           yes   72.833336   874.00000
## 182  head                            yes   60.000000   720.00000
## 183  spouse/partner                  yes   60.000000   720.00000
## 184  child                          <NA>   60.000000   720.00000
## 185  head                            yes  490.000000  5880.00000
## 186  spouse/partner                  yes  490.000000  5880.00000
## 187  child                           yes  490.000000  5880.00000
## 188  parent, parent-in-law           yes  490.000000  5880.00000
## 189  parent, parent-in-law           yes  490.000000  5880.00000
## 190  head                            yes  187.500000  2250.00000
## 191  spouse/partner                  yes  187.500000  2250.00000
## 192  child                           yes  187.500000  2250.00000
## 193  child                           yes  187.500000  2250.00000
## 194  head                            yes  266.500000  3198.00000
## 195  spouse/partner                  yes  266.500000  3198.00000
## 196  head                            yes  697.222168  8366.66602
## 197  spouse/partner                  yes  697.222168  8366.66602
## 198  child                           yes  697.222168  8366.66602
## 199  head                            yes  261.666656  3140.00000
## 200  child                           yes  261.666656  3140.00000
## 201  son/daughter-in-law             yes  261.666656  3140.00000
## 202  grandchild                      yes  261.666656  3140.00000
## 203  other relative                  yes  261.666656  3140.00000
## 204  other relative                 <NA>  261.666656  3140.00000
## 205  head                            yes  165.833328  1990.00000
## 206  head                            yes  441.666656  5300.00000
## 207  spouse/partner                  yes  441.666656  5300.00000
## 208  child                          <NA>  441.666656  5300.00000
## 209  head                            yes  140.000000  1680.00000
## 210  head                            yes  164.000000  1968.00000
## 211  spouse/partner                  yes  164.000000  1968.00000
## 212  child                           yes  164.000000  1968.00000
## 213  head                            yes  325.000000  3900.00000
## 214  spouse/partner                  yes  325.000000  3900.00000
## 215  head                            yes   60.000000   720.00000
## 216  spouse/partner                  yes   60.000000   720.00000
## 217  child                           yes   60.000000   720.00000
## 218  child                          <NA>   60.000000   720.00000
## 219  parent, parent-in-law           yes   60.000000   720.00000
## 220  head                            yes   37.500000   450.00000
## 221  spouse/partner                  yes   37.500000   450.00000
## 222  child                           yes   37.500000   450.00000
## 223  child                           yes   37.500000   450.00000
## 224  head                            yes   30.000000   360.00000
## 225  spouse/partner                  yes   30.000000   360.00000
## 226  child                           yes   30.000000   360.00000
## 227  child                           yes   30.000000   360.00000
## 228  child                          <NA>   30.000000   360.00000
## 229  head                            yes  144.250000  1731.00000
## 230  spouse/partner                  yes  144.250000  1731.00000
## 231  head                            yes  113.433334  1361.19995
## 232  spouse/partner                  yes  113.433334  1361.19995
## 233  child                           yes  113.433334  1361.19995
## 234  son/daughter-in-law             yes  113.433334  1361.19995
## 235  grandchild                      yes  113.433334  1361.19995
## 236  head                            yes  210.833328  2530.00000
## 237  spouse/partner                  yes  210.833328  2530.00000
## 238  head                            yes  175.500000  2106.00000
## 239  head                            yes  290.833344  3490.00000
## 240  head                            yes  194.166672  2330.00000
## 241  spouse/partner                  yes  194.166672  2330.00000
## 242  head                            yes  125.833336  1510.00000
## 243  spouse/partner                  yes  125.833336  1510.00000
## 244  head                            yes   73.125000   877.50000
## 245  spouse/partner                  yes   73.125000   877.50000
## 246  child                          <NA>   73.125000   877.50000
## 247  child                          <NA>   73.125000   877.50000
## 248  head                             no   65.000000   780.00000
## 249  head                            yes  180.000000  2160.00000
## 250  head                            yes  122.666664  1472.00000
## 251  spouse/partner                  yes  122.666664  1472.00000
## 252  child                           yes  122.666664  1472.00000
## 253  child                           yes  122.666664  1472.00000
## 254  grandchild                     <NA>  122.666664  1472.00000
## 255  head                            yes  134.166672  1610.00000
## 256  spouse/partner                  yes  134.166672  1610.00000
## 257  head                            yes  101.000000  1212.00000
## 258  spouse/partner                  yes  101.000000  1212.00000
## 259  head                            yes  127.599998  1531.19995
## 260  child                           yes  127.599998  1531.19995
## 261  son/daughter-in-law             yes  127.599998  1531.19995
## 262  grandchild                      yes  127.599998  1531.19995
## 263  grandchild                      yes  127.599998  1531.19995
## 264  head                            yes  325.000000  3900.00000
## 265  spouse/partner                  yes  325.000000  3900.00000
## 266  head                            yes  175.000000  2100.00000
## 267  spouse/partner                  yes  175.000000  2100.00000
## 268  head                            yes  222.000000  2664.00000
## 269  spouse/partner                  yes  222.000000  2664.00000
## 270  head                            yes  121.833336  1462.00000
## 271  head                            yes  466.666656  5600.00000
## 272  spouse/partner                  yes  466.666656  5600.00000
## 273  child                           yes  466.666656  5600.00000
## 274  head                            yes  225.000000  2700.00000
## 275  spouse/partner                  yes  225.000000  2700.00000
## 276  head                            yes  203.333328  2440.00000
## 277  head                            yes  150.000000  1800.00000
## 278  head                            yes  305.041656  3660.50000
## 279  parent, parent-in-law           yes  305.041656  3660.50000
## 280  parent, parent-in-law           yes  305.041656  3660.50000
## 281  child                           yes  305.041656  3660.50000
## 282  head                            yes  325.000000  3900.00000
## 283  head                            yes  165.444443  1985.33325
## 284  spouse/partner                  yes  165.444443  1985.33325
## 285  child                           yes  165.444443  1985.33325
## 286  head                            yes  197.000000  2364.00000
## 287  head                            yes   94.000000  1128.00000
## 288  spouse/partner                  yes   94.000000  1128.00000
## 289  head                            yes  207.000000  2484.00000
## 290  spouse/partner                  yes  207.000000  2484.00000
## 291  parent, parent-in-law           yes  207.000000  2484.00000
## 292  child                           yes  207.000000  2484.00000
## 293  child                           yes  207.000000  2484.00000
## 294  son/daughter-in-law             yes  207.000000  2484.00000
## 295  grandchild                     <NA>  207.000000  2484.00000
## 296  head                            yes  217.555557  2610.66675
## 297  child                          <NA>  217.555557  2610.66675
## 298  child                          <NA>  217.555557  2610.66675
## 299  head                            yes  160.000000  1920.00000
## 300  spouse/partner                  yes  160.000000  1920.00000
## 301  head                            yes  182.500000  2190.00000
## 302  head                            yes   90.357140  1084.28564
## 303  spouse/partner                  yes   90.357140  1084.28564
## 304  child                           yes   90.357140  1084.28564
## 305  other relative                   no   90.357140  1084.28564
## 306  parent, parent-in-law           yes   90.357140  1084.28564
## 307  other relative                  yes   90.357140  1084.28564
## 308  son/daughter-in-law             yes   90.357140  1084.28564
## 309  head                            yes  141.000000  1692.00000
## 310  child                           yes  141.000000  1692.00000
## 311  head                            yes  115.000000  1380.00000
## 312  spouse/partner                  yes  115.000000  1380.00000
## 313  head                            yes  400.000000  4800.00000
## 314  head                            yes  226.166672  2714.00000
## 315  spouse/partner                  yes  226.166672  2714.00000
## 316  child                           yes  226.166672  2714.00000
## 317  son/daughter-in-law             yes  226.166672  2714.00000
## 318  grandchild                     <NA>  226.166672  2714.00000
## 319  head                            yes  230.000000  2760.00000
## 320  spouse/partner                  yes  230.000000  2760.00000
## 321  head                            yes  130.000000  1560.00000
## 322  parent, parent-in-law           yes  130.000000  1560.00000
## 323  head                            yes  186.041672  2232.50000
## 324  spouse/partner                  yes  186.041672  2232.50000
## 325  child                           yes  186.041672  2232.50000
## 326  child                           yes  186.041672  2232.50000
## 327  head                            yes   90.000000  1080.00000
## 328  child                           yes   90.000000  1080.00000
## 329  head                            yes  165.000000  1980.00000
## 330  head                            yes  316.000000  3792.00000
## 331  head                            yes  157.500000  1890.00000
## 332  spouse/partner                  yes  157.500000  1890.00000
## 333  child                           yes  157.500000  1890.00000
## 334  child                           yes  157.500000  1890.00000
## 335  head                            yes   65.599998   787.19995
## 336  spouse/partner                  yes   65.599998   787.19995
## 337  child                          <NA>   65.599998   787.19995
## 338  child                          <NA>   65.599998   787.19995
## 339  child                          <NA>   65.599998   787.19995
## 340  head                            yes  231.933319  2783.19971
## 341  spouse/partner                  yes  231.933319  2783.19971
## 342  child                           yes  231.933319  2783.19971
## 343  son/daughter-in-law             yes  231.933319  2783.19971
## 344  grandchild                     <NA>  231.933319  2783.19971
## 345  head                            yes  179.166672  2150.00000
## 346  spouse/partner                  yes  179.166672  2150.00000
## 347  head                            yes  413.333344  4960.00000
## 348  spouse/partner                  yes  413.333344  4960.00000
## 349  child                           yes  413.333344  4960.00000
## 350  head                            yes  112.916664  1355.00000
## 351  head                            yes  500.000000  6000.00000
## 352  spouse/partner                  yes  500.000000  6000.00000
## 353  head                            yes  153.750000  1845.00000
## 354  spouse/partner                 <NA>  153.750000  1845.00000
## 355  child                           yes  153.750000  1845.00000
## 356  child                           yes  153.750000  1845.00000
## 357  parent, parent-in-law           yes  153.750000  1845.00000
## 358  parent, parent-in-law           yes  153.750000  1845.00000
## 359  head                             no  205.555557  2466.66675
## 360  son/daughter-in-law              no  205.555557  2466.66675
## 361  grandchild                      yes  205.555557  2466.66675
## 362  head                            yes  150.694443  1808.33325
## 363  spouse/partner                  yes  150.694443  1808.33325
## 364  child                           yes  150.694443  1808.33325
## 365  head                            yes  345.625000  4147.50000
## 366  spouse/partner                  yes  345.625000  4147.50000
## 367  head                            yes  329.000000  3948.00000
## 368  spouse/partner                  yes  329.000000  3948.00000
## 369  child                           yes  329.000000  3948.00000
## 370  son/daughter-in-law             yes  329.000000  3948.00000
## 371  grandchild                      yes  329.000000  3948.00000
## 372  head                            yes  347.500000  4170.00000
## 373  child                           yes  347.500000  4170.00000
## 374  child                           yes  347.500000  4170.00000
## 375  head                            yes  141.333328  1696.00000
## 376  spouse/partner                  yes  141.333328  1696.00000
## 377  child                           yes  141.333328  1696.00000
## 378  son/daughter-in-law             yes  141.333328  1696.00000
## 379  grandchild                     <NA>  141.333328  1696.00000
## 380  grandchild                     <NA>  141.333328  1696.00000
## 381  head                            yes  169.714279  2036.57129
## 382  spouse/partner                  yes  169.714279  2036.57129
## 383  son/daughter-in-law             yes  169.714279  2036.57129
## 384  child                           yes  169.714279  2036.57129
## 385  child                           yes  169.714279  2036.57129
## 386  grandchild                      yes  169.714279  2036.57129
## 387  grandchild                     <NA>  169.714279  2036.57129
## 388  head                            yes  323.222229  3878.66675
## 389  spouse/partner                  yes  323.222229  3878.66675
## 390  child                           yes  323.222229  3878.66675
## 391  son/daughter-in-law             yes  323.222229  3878.66675
## 392  grandchild                     <NA>  323.222229  3878.66675
## 393  grandchild                     <NA>  323.222229  3878.66675
## 394  head                            yes  430.000000  5160.00000
## 395  spouse/partner                  yes  430.000000  5160.00000
## 396  head                            yes  103.500000  1242.00000
## 397  grandchild                       no  103.500000  1242.00000
## 398  head                            yes  377.500000  4530.00000
## 399  spouse/partner                  yes  377.500000  4530.00000
## 400  head                            yes  255.833328  3070.00000
## 401  spouse/partner                  yes  255.833328  3070.00000
## 402  head                            yes  272.333344  3268.00000
## 403  spouse/partner                  yes  272.333344  3268.00000
## 404  head                            yes  350.000000  4200.00000
## 405  spouse/partner                  yes  350.000000  4200.00000
## 406  head                            yes  312.500000  3750.00000
## 407  spouse/partner                  yes  312.500000  3750.00000
## 408  child                           yes  312.500000  3750.00000
## 409  child                           yes  312.500000  3750.00000
## 410  head                            yes  850.000000 10200.00000
## 411  other relative                  yes  850.000000 10200.00000
## 412  head                            yes  152.000000  1824.00000
## 413  head                            yes  105.000000  1260.00000
## 414  spouse/partner                  yes  105.000000  1260.00000
## 415  head                            yes  126.000000  1512.00000
## 416  spouse/partner                  yes  126.000000  1512.00000
## 417  head                            yes  183.500000  2202.00000
## 418  spouse/partner                  yes  183.500000  2202.00000
## 419  head                            yes  786.666626  9440.00000
## 420  spouse/partner                  yes  786.666626  9440.00000
## 421  child                           yes  786.666626  9440.00000
## 422  child                           yes  786.666626  9440.00000
## 423  head                            yes  218.833344  2626.00000
## 424  spouse/partner                  yes  218.833344  2626.00000
## 425  child                           yes  218.833344  2626.00000
## 426  parent, parent-in-law           yes  218.833344  2626.00000
## 427  head                            yes  158.500000  1902.00000
## 428  spouse/partner                  yes  158.500000  1902.00000
## 429  child                           yes  158.500000  1902.00000
## 430  parent, parent-in-law           yes  158.500000  1902.00000
## 431  head                            yes  283.000000  3396.00000
## 432  child                           yes  283.000000  3396.00000
## 433  head                            yes  122.833336  1474.00000
## 434  child                           yes  122.833336  1474.00000
## 435  child                           yes  122.833336  1474.00000
## 436  spouse/partner                  yes  122.833336  1474.00000
## 437  head                            yes  178.000000  2136.00000
## 438  head                            yes  174.583344  2095.00000
## 439  spouse/partner                  yes  174.583344  2095.00000
## 440  child                           yes  174.583344  2095.00000
## 441  parent, parent-in-law           yes  174.583344  2095.00000
## 442  head                            yes  113.250000  1359.00000
## 443  spouse/partner                  yes  113.250000  1359.00000
## 444  child                           yes  113.250000  1359.00000
## 445  child                          <NA>  113.250000  1359.00000
## 446  head                            yes  327.500000  3930.00000
## 447  child                           yes  327.500000  3930.00000
## 448  head                            yes  200.000000  2400.00000
## 449  spouse/partner                  yes  200.000000  2400.00000
## 450  child                           yes  200.000000  2400.00000
## 451  grandchild                     <NA>  200.000000  2400.00000
## 452  head                            yes  202.250000  2427.00000
## 453  spouse/partner                  yes  202.250000  2427.00000
## 454  head                            yes  618.333313  7420.00000
## 455  spouse/partner                  yes  618.333313  7420.00000
## 456  head                            yes  245.125000  2941.50000
## 457  spouse/partner                  yes  245.125000  2941.50000
## 458  child                           yes  245.125000  2941.50000
## 459  parent, parent-in-law           yes  245.125000  2941.50000
## 460  head                            yes  169.722229  2036.66675
## 461  spouse/partner                  yes  169.722229  2036.66675
## 462  child                           yes  169.722229  2036.66675
## 463  head                            yes  123.875000  1486.50000
## 464  child                           yes  123.875000  1486.50000
## 465  head                            yes  271.000000  3252.00000
## 466  child                           yes  271.000000  3252.00000
## 467  child                           yes  271.000000  3252.00000
## 468  head                            yes  200.000000  2400.00000
## 469  head                            yes  363.888885  4366.66650
## 470  spouse/partner                  yes  363.888885  4366.66650
## 471  parent, parent-in-law            no  363.888885  4366.66650
## 472  head                            yes  103.000000  1236.00000
## 473  spouse/partner                  yes  103.000000  1236.00000
## 474  parent, parent-in-law           yes  103.000000  1236.00000
## 475  other relative                  yes  103.000000  1236.00000
## 476  head                            yes  169.366669  2032.40002
## 477  spouse/partner                  yes  169.366669  2032.40002
## 478  child                           yes  169.366669  2032.40002
## 479  child                           yes  169.366669  2032.40002
## 480  child                          <NA>  169.366669  2032.40002
## 481  head                            yes  338.944427  4067.33301
## 482  spouse/partner                  yes  338.944427  4067.33301
## 483  child                          <NA>  338.944427  4067.33301
## 484  head                            yes   86.500000  1038.00000
## 485  spouse/partner                  yes   86.500000  1038.00000
## 486  head                            yes  239.291672  2871.50000
## 487  spouse/partner                  yes  239.291672  2871.50000
## 488  child                          <NA>  239.291672  2871.50000
## 489  child                          <NA>  239.291672  2871.50000
## 490  head                            yes  214.583344  2575.00000
## 491  spouse/partner                  yes  214.583344  2575.00000
## 492  head                            yes  189.333328  2272.00000
## 493  spouse/partner                  yes  189.333328  2272.00000
## 494  child                          <NA>  189.333328  2272.00000
## 495  head                            yes  867.333313 10408.00000
## 496  child                          <NA>  867.333313 10408.00000
## 497  head                            yes  265.000000  3180.00000
## 498  spouse/partner                  yes  265.000000  3180.00000
## 499  head                            yes  909.416687 10913.00000
## 500  spouse/partner                  yes  909.416687 10913.00000
## 501  head                            yes  150.000000  1800.00000
## 502  spouse/partner                  yes  150.000000  1800.00000
## 503  child                           yes  150.000000  1800.00000
## 504  head                            yes  150.000000  1800.00000
## 505  child                           yes  150.000000  1800.00000
## 506  head                            yes  189.444443  2273.33325
## 507  spouse/partner                  yes  189.444443  2273.33325
## 508  child                           yes  189.444443  2273.33325
## 509  head                            yes  125.000000  1500.00000
## 510  parent, parent-in-law            no  125.000000  1500.00000
## 511  head                            yes  127.222221  1526.66663
## 512  spouse/partner                  yes  127.222221  1526.66663
## 513  child                           yes  127.222221  1526.66663
## 514  son/daughter-in-law             yes  127.222221  1526.66663
## 515  grandchild                      yes  127.222221  1526.66663
## 516  grandchild                     <NA>  127.222221  1526.66663
## 517  head                            yes  206.875000  2482.50000
## 518  spouse/partner                  yes  206.875000  2482.50000
## 519  head                            yes  326.833344  3922.00000
## 520  parent, parent-in-law            no  326.833344  3922.00000
## 521  head                            yes  327.638885  3931.66650
## 522  spouse/partner                  yes  327.638885  3931.66650
## 523  grandchild                     <NA>  327.638885  3931.66650
## 524  head                            yes  149.583328  1795.00000
## 525  spouse/partner                  yes  149.583328  1795.00000
## 526  head                            yes  145.250000  1743.00000
## 527  spouse/partner                  yes  145.250000  1743.00000
## 528  child                           yes  145.250000  1743.00000
## 529  child                           yes  145.250000  1743.00000
## 530  head                            yes  143.333344  1720.00012
## 531  spouse/partner                  yes  143.333344  1720.00012
## 532  head                            yes  361.666656  4340.00000
## 533  spouse/partner                  yes  361.666656  4340.00000
## 534  head                            yes  162.875000  1954.50000
## 535  spouse/partner                  yes  162.875000  1954.50000
## 536  head                            yes    0.000000     0.00000
## 537  head                            yes  163.833328  1966.00000
## 538  spouse/partner                  yes  163.833328  1966.00000
## 539  parent, parent-in-law           yes  163.833328  1966.00000
## 540  parent, parent-in-law           yes  163.833328  1966.00000
## 541  head                            yes  130.000000  1560.00000
## 542  head                            yes  126.000000  1512.00000
## 543  child                           yes  126.000000  1512.00000
## 544  grandchild                      yes  126.000000  1512.00000
## 545  head                            yes  118.875000  1426.50000
## 546  spouse/partner                  yes  118.875000  1426.50000
## 547  head                            yes  170.000000  2040.00000
## 548  spouse/partner                  yes  170.000000  2040.00000
## 549  child                           yes  170.000000  2040.00000
## 550  parent, parent-in-law           yes  170.000000  2040.00000
## 551  head                            yes   45.000000   540.00000
## 552  parent, parent-in-law           yes   45.000000   540.00000
## 553  head                            yes   94.333336  1132.00000
## 554  head                            yes  433.333344  5200.00000
## 555  spouse/partner                  yes  433.333344  5200.00000
## 556  child                           yes  433.333344  5200.00000
## 557  head                            yes  202.000000  2424.00000
## 558  head                            yes  385.000000  4620.00000
## 559  spouse/partner                  yes  385.000000  4620.00000
## 560  parent, parent-in-law           yes  385.000000  4620.00000
## 561  parent, parent-in-law           yes  385.000000  4620.00000
## 562  child                          <NA>  385.000000  4620.00000
## 563  head                            yes  166.666672  2000.00000
## 564  parent, parent-in-law           yes  166.666672  2000.00000
## 565  child                           yes  166.666672  2000.00000
## 566  child                           yes  166.666672  2000.00000
## 567  child                           yes  166.666672  2000.00000
## 568  head                            yes  450.000000  5400.00000
## 569  spouse/partner                  yes  450.000000  5400.00000
## 570  child                           yes  450.000000  5400.00000
## 571  head                            yes   98.333328  1180.00000
## 572  spouse/partner                  yes   98.333328  1180.00000
## 573  head                            yes  376.875000  4522.50000
## 574  spouse/partner                  yes  376.875000  4522.50000
## 575  head                            yes  304.444427  3653.33301
## 576  spouse/partner                  yes  304.444427  3653.33301
## 577  child                           yes  304.444427  3653.33301
## 578  head                            yes  288.888885  3466.66650
## 579  spouse/partner                  yes  288.888885  3466.66650
## 580  parent, parent-in-law           yes  288.888885  3466.66650
## 581  head                            yes  179.444443  2153.33325
## 582  spouse/partner                  yes  179.444443  2153.33325
## 583  child                           yes  179.444443  2153.33325
## 584  head                            yes  335.416687  4025.00024
## 585  spouse/partner                  yes  335.416687  4025.00024
## 586  head                             no   66.666664   800.00000
## 587  spouse/partner                   no   66.666664   800.00000
## 588  grandchild                      yes   66.666664   800.00000
## 589  child                           yes   66.666664   800.00000
## 590  other relative                 <NA>   66.666664   800.00000
## 591  grandchild                     <NA>   66.666664   800.00000
## 592  head                            yes  160.000000  1920.00000
## 593  spouse/partner                  yes  160.000000  1920.00000
## 594  child                          <NA>  160.000000  1920.00000
## 595  child                          <NA>  160.000000  1920.00000
## 596  head                            yes  916.666687 11000.00000
## 597  spouse/partner                  yes  916.666687 11000.00000
## 598  head                            yes   80.000000   960.00000
## 599  spouse/partner                  yes   80.000000   960.00000
## 600  child                           yes   80.000000   960.00000
## 601  child                           yes   80.000000   960.00000
## 602  head                            yes  250.000000  3000.00000
## 603  head                            yes  100.000000  1200.00000
## 604  spouse/partner                  yes  100.000000  1200.00000
## 605  child                           yes  100.000000  1200.00000
## 606  head                            yes  145.666672  1748.00000
## 607  spouse/partner                  yes  145.666672  1748.00000
## 608  parent, parent-in-law           yes  145.666672  1748.00000
## 609  head                            yes  249.000000  2988.00000
## 610  spouse/partner                  yes  249.000000  2988.00000
## 611  child                          <NA>  249.000000  2988.00000
## 612  parent, parent-in-law           yes  249.000000  2988.00000
## 613  parent, parent-in-law           yes  249.000000  2988.00000
## 614  head                            yes  271.666656  3260.00000
## 615  spouse/partner                  yes  271.666656  3260.00000
## 616  child                           yes  271.666656  3260.00000
## 617  head                            yes  129.583328  1555.00000
## 618  spouse/partner                  yes  129.583328  1555.00000
## 619  child                           yes  129.583328  1555.00000
## 620  child                           yes  129.583328  1555.00000
## 621  head                            yes  325.416687  3905.00024
## 622  spouse/partner                  yes  325.416687  3905.00024
## 623  head                            yes  225.000000  2700.00000
## 624  spouse/partner                  yes  225.000000  2700.00000
## 625  head                            yes  305.000000  3660.00000
## 626  spouse/partner                  yes  305.000000  3660.00000
## 627  child                          <NA>  305.000000  3660.00000
## 628  parent, parent-in-law           yes  305.000000  3660.00000
## 629  head                            yes  120.000000  1440.00000
## 630  spouse/partner                  yes  120.000000  1440.00000
## 631  head                            yes  136.000000  1632.00000
## 632  child                           yes  136.000000  1632.00000
## 633  child                           yes  136.000000  1632.00000
## 634  head                            yes  306.250000  3675.00000
## 635  spouse/partner                  yes  306.250000  3675.00000
## 636  head                            yes   62.625000   751.50000
## 637  spouse/partner                  yes   62.625000   751.50000
## 638  child                           yes   62.625000   751.50000
## 639  child                           yes   62.625000   751.50000
## 640  head                            yes  323.375000  3880.50000
## 641  spouse/partner                  yes  323.375000  3880.50000
## 642  child                           yes  323.375000  3880.50000
## 643  child                           yes  323.375000  3880.50000
## 644  head                            yes   89.666664  1076.00000
## 645  head                            yes   29.888887   358.66666
## 646  child                           yes   29.888887   358.66666
## 647  son/daughter-in-law             yes   29.888887   358.66666
## 648  head                            yes  202.083344  2425.00000
## 649  spouse/partner                  yes  202.083344  2425.00000
## 650  child                           yes  202.083344  2425.00000
## 651  child                          <NA>  202.083344  2425.00000
## 652  head                            yes   66.333336   796.00000
## 653  child                           yes   66.333336   796.00000
## 654  son/daughter-in-law             yes   66.333336   796.00000
## 655  grandchild                     <NA>   66.333336   796.00000
## 656  grandchild                     <NA>   66.333336   796.00000
## 657  spouse/partner                  yes   66.333336   796.00000
## 658  head                            yes  100.000000  1200.00000
## 659  spouse/partner                  yes  100.000000  1200.00000
## 660  child                           yes  100.000000  1200.00000
## 661  head                            yes  217.500000  2610.00000
## 662  child                           yes  217.500000  2610.00000
## 663  son/daughter-in-law             yes  217.500000  2610.00000
## 664  grandchild                      yes  217.500000  2610.00000
## 665  head                            yes  308.333344  3700.00000
## 666  spouse/partner                  yes  308.333344  3700.00000
## 667  child                           yes  308.333344  3700.00000
## 668  son/daughter-in-law             yes  308.333344  3700.00000
## 669  grandchild                      yes  308.333344  3700.00000
## 670  child                           yes  308.333344  3700.00000
## 671  head                            yes 1020.833313 12250.00000
## 672  child                           yes 1020.833313 12250.00000
## 673  head                            yes  282.500000  3390.00000
## 674  spouse/partner                  yes  282.500000  3390.00000
## 675  child                           yes  282.500000  3390.00000
## 676  child                           yes  282.500000  3390.00000
## 677  head                            yes   68.250000   819.00000
## 678  spouse/partner                  yes   68.250000   819.00000
## 679  grandchild                      yes   68.250000   819.00000
## 680  grandchild                      yes   68.250000   819.00000
## 681  head                            yes  228.000000  2736.00000
## 682  spouse/partner                  yes  228.000000  2736.00000
## 683  child                           yes  228.000000  2736.00000
## 684  parent, parent-in-law           yes  228.000000  2736.00000
## 685  head                            yes  160.000000  1920.00000
## 686  parent, parent-in-law           yes  160.000000  1920.00000
## 687  head                            yes  345.833313  4150.00000
## 688  spouse/partner                  yes  345.833313  4150.00000
## 689  child                           yes  345.833313  4150.00000
## 690  child                           yes  345.833313  4150.00000
## 691  head                            yes  453.750000  5445.00000
## 692  spouse/partner                  yes  453.750000  5445.00000
## 693  head                            yes  248.666656  2984.00000
## 694  head                            yes  116.000000  1392.00000
## 695  head                            yes  255.833328  3070.00000
## 696  parent, parent-in-law           yes  255.833328  3070.00000
## 697  head                            yes  159.000000  1908.00000
## 698  spouse/partner                  yes  159.000000  1908.00000
## 699  head                            yes  100.000000  1200.00000
## 700  head                            yes  117.500000  1410.00000
## 701  child                           yes  117.500000  1410.00000
## 702  head                            yes  193.916672  2327.00000
## 703  parent, parent-in-law           yes  193.916672  2327.00000
## 704  head                            yes  757.500000  9090.00000
## 705  spouse/partner                  yes  757.500000  9090.00000
## 706  child                           yes  757.500000  9090.00000
## 707  child                           yes  757.500000  9090.00000
## 708  head                            yes   90.000000  1080.00000
## 709  child                          <NA>   90.000000  1080.00000
## 710  head                            yes  228.333344  2740.00000
## 711  spouse/partner                  yes  228.333344  2740.00000
## 712  head                            yes  105.000000  1260.00000
## 713  head                            yes  120.000000  1440.00000
## 714  head                            yes  246.000000  2952.00000
## 715  head                            yes  122.083328  1465.00000
## 716  parent, parent-in-law           yes  122.083328  1465.00000
## 717  head                            yes  298.333344  3580.00000
## 718  spouse/partner                  yes  298.333344  3580.00000
## 719  child                           yes  298.333344  3580.00000
## 720  head                            yes  103.666672  1244.00000
## 721  spouse/partner                  yes  103.666672  1244.00000
## 722  child                           yes  103.666672  1244.00000
## 723  grandchild                      yes  103.666672  1244.00000
## 724  head                            yes  389.166687  4670.00000
## 725  spouse/partner                  yes  389.166687  4670.00000
## 726  head                            yes  754.166687  9050.00000
## 727  spouse/partner                  yes  754.166687  9050.00000
## 728  child                           yes  754.166687  9050.00000
## 729  head                            yes  717.566650  8610.79980
## 730  spouse/partner                  yes  717.566650  8610.79980
## 731  parent, parent-in-law           yes  717.566650  8610.79980
## 732  child                           yes  717.566650  8610.79980
## 733  child                           yes  717.566650  8610.79980
## 734  head                            yes  118.000000  1416.00000
## 735  spouse/partner                   no  118.000000  1416.00000
## 736  head                            yes  134.166672  1610.00000
## 737  spouse/partner                  yes  134.166672  1610.00000
## 738  head                            yes   83.333336  1000.00000
## 739  head                            yes  126.916664  1523.00000
## 740  spouse/partner                  yes  126.916664  1523.00000
## 741  head                            yes  160.000000  1920.00000
## 742  spouse/partner                  yes  160.000000  1920.00000
## 743  head                             no   56.166668   674.00000
## 744  spouse/partner                  yes   56.166668   674.00000
## 745  other relative                   no   56.166668   674.00000
## 746  head                            yes  178.333328  2140.00000
## 747  spouse/partner                  yes  178.333328  2140.00000
## 748  parent, parent-in-law           yes  178.333328  2140.00000
## 749  head                            yes  205.333344  2464.00000
## 750  spouse/partner                  yes  205.333344  2464.00000
## 751  parent, parent-in-law           yes  205.333344  2464.00000
## 752  child                           yes  205.333344  2464.00000
## 753  child                           yes  205.333344  2464.00000
## 754  head                            yes  273.333344  3280.00000
## 755  child                           yes  273.333344  3280.00000
## 756  parent, parent-in-law           yes  273.333344  3280.00000
## 757  head                            yes 1149.333374 13792.00000
## 758  head                            yes   59.333332   712.00000
## 759  parent, parent-in-law           yes   59.333332   712.00000
## 760  head                            yes  121.250000  1455.00000
## 761  child                           yes  121.250000  1455.00000
## 762  son/daughter-in-law             yes  121.250000  1455.00000
## 763  grandchild                      yes  121.250000  1455.00000
## 764  head                            yes  122.500000  1470.00000
## 765  spouse/partner                  yes  122.500000  1470.00000
## 766  head                            yes  612.222229  7346.66699
## 767  spouse/partner                  yes  612.222229  7346.66699
## 768  child                           yes  612.222229  7346.66699
## 769  head                            yes  132.666672  1592.00000
## 770  child                           yes  132.666672  1592.00000
## 771  head                            yes  293.333344  3520.00000
## 772  spouse/partner                  yes  293.333344  3520.00000
## 773  head                             no  147.500000  1770.00000
## 774  head                            yes  347.250000  4167.00000
## 775  spouse/partner                  yes  347.250000  4167.00000
## 776  head                            yes  245.833328  2950.00000
## 777  spouse/partner                  yes  245.833328  2950.00000
## 778  head                            yes  286.666687  3440.00024
## 779  head                            yes  314.166687  3770.00024
## 780  spouse/partner                  yes  314.166687  3770.00024
## 781  head                            yes  354.000000  4248.00000
## 782  head                            yes  233.333344  2800.00000
## 783  spouse/partner                  yes  233.333344  2800.00000
## 784  head                            yes  122.000000  1464.00000
## 785  spouse/partner                  yes  122.000000  1464.00000
## 786  head                            yes  177.333328  2128.00000
## 787  head                            yes  247.444443  2969.33325
## 788  parent, parent-in-law           yes  247.444443  2969.33325
## 789  grandchild                      yes  247.444443  2969.33325
## 790  head                            yes    0.000000     0.00000
## 791  spouse/partner                  yes    0.000000     0.00000
## 792  child                           yes    0.000000     0.00000
## 793  child                           yes    0.000000     0.00000
## 794  head                            yes  252.777771  3033.33325
## 795  spouse/partner                  yes  252.777771  3033.33325
## 796  child                           yes  252.777771  3033.33325
## 797  head                            yes  273.611115  3283.33350
## 798  spouse/partner                  yes  273.611115  3283.33350
## 799  child                           yes  273.611115  3283.33350
## 800  head                            yes  140.000000  1680.00000
## 801  head                            yes  122.500000  1470.00000
## 802  child                          <NA>  122.500000  1470.00000
## 803  head                            yes  121.666664  1460.00000
## 804  spouse/partner                  yes  121.666664  1460.00000
## 805  head                            yes  155.666672  1868.00000
## 806  head                            yes  158.833328  1906.00000
## 807  spouse/partner                  yes  158.833328  1906.00000
## 808  head                            yes  185.555557  2226.66675
## 809  spouse/partner                  yes  185.555557  2226.66675
## 810  child                            no  185.555557  2226.66675
## 811  head                            yes  276.277771  3315.33325
## 812  spouse/partner                  yes  276.277771  3315.33325
## 813  child                           yes  276.277771  3315.33325
## 814  head                            yes  155.000000  1860.00000
## 815  spouse/partner                  yes  155.000000  1860.00000
## 816  head                            yes  183.333344  2200.00000
## 817  spouse/partner                  yes  183.333344  2200.00000
## 818  child                           yes  183.333344  2200.00000
## 819  child                           yes  183.333344  2200.00000
## 820  head                            yes  279.444458  3353.33350
## 821  spouse/partner                  yes  279.444458  3353.33350
## 822  child                           yes  279.444458  3353.33350
## 823  head                            yes   90.833328  1090.00000
## 824  spouse/partner                  yes   90.833328  1090.00000
## 825  child                          <NA>   90.833328  1090.00000
## 826  child                          <NA>   90.833328  1090.00000
## 827  head                             no  170.166656  2041.99988
## 828  spouse/partner                   no  170.166656  2041.99988
## 829  child                           yes  170.166656  2041.99988
## 830  son/daughter-in-law             yes  170.166656  2041.99988
## 831  grandchild                      yes  170.166656  2041.99988
## 832  head                             no   42.000000   504.00000
## 833  spouse/partner                   no   42.000000   504.00000
## 834  child                            no   42.000000   504.00000
## 835  child                            no   42.000000   504.00000
## 836  grandchild                       no   42.000000   504.00000
## 837  head                            yes   98.500000  1182.00000
## 838  spouse/partner                  yes   98.500000  1182.00000
## 839  head                            yes  150.000000  1800.00000
## 840  spouse/partner                  yes  150.000000  1800.00000
## 841  child                           yes  150.000000  1800.00000
## 842  child                           yes  150.000000  1800.00000
## 843  head                            yes   29.666666   356.00000
## 844  spouse/partner                  yes   29.666666   356.00000
## 845  child                           yes   29.666666   356.00000
## 846  head                            yes  425.000000  5100.00000
## 847  head                            yes   30.000000   360.00000
## 848  spouse/partner                  yes   30.000000   360.00000
## 849  child                           yes   30.000000   360.00000
## 850  son/daughter-in-law             yes   30.000000   360.00000
## 851  child                           yes   30.000000   360.00000
## 852  son/daughter-in-law             yes   30.000000   360.00000
## 853  grandchild                      yes   30.000000   360.00000
## 854  grandchild                      yes   30.000000   360.00000
## 855  grandchild                      yes   30.000000   360.00000
## 856  child                           yes   30.000000   360.00000
## 857  head                            yes  128.857147  1546.28577
## 858  spouse/partner                  yes  128.857147  1546.28577
## 859  parent, parent-in-law           yes  128.857147  1546.28577
## 860  other relative                  yes  128.857147  1546.28577
## 861  other relative                  yes  128.857147  1546.28577
## 862  other relative                  yes  128.857147  1546.28577
## 863  child                          <NA>  128.857147  1546.28577
## 864  head                            yes   82.500000   990.00000
## 865  spouse/partner                  yes   82.500000   990.00000
## 866  child                           yes   82.500000   990.00000
## 867  child                           yes   82.500000   990.00000
## 868  head                            yes  201.916656  2423.00000
## 869  spouse/partner                  yes  201.916656  2423.00000
## 870  child                           yes  201.916656  2423.00000
## 871  child                           yes  201.916656  2423.00000
## 872  child                           yes  201.916656  2423.00000
## 873  head                            yes  392.500000  4710.00000
## 874  spouse/partner                  yes  392.500000  4710.00000
## 875  head                            yes  112.500000  1350.00000
## 876  spouse/partner                  yes  112.500000  1350.00000
## 877  head                            yes  325.250000  3903.00000
## 878  spouse/partner                  yes  325.250000  3903.00000
## 879  head                            yes  155.833328  1870.00000
## 880  spouse/partner                   no  155.833328  1870.00000
## 881  parent, parent-in-law            no  155.833328  1870.00000
## 882  head                            yes  130.266663  1563.19995
## 883  spouse/partner                  yes  130.266663  1563.19995
## 884  child                           yes  130.266663  1563.19995
## 885  child                           yes  130.266663  1563.19995
## 886  parent, parent-in-law           yes  130.266663  1563.19995
## 887  head                            yes  401.111115  4813.33350
## 888  spouse/partner                  yes  401.111115  4813.33350
## 889  child                           yes  401.111115  4813.33350
## 890  head                            yes  380.000000  4560.00000
## 891  head                            yes  154.500000  1854.00000
## 892  spouse/partner                  yes  154.500000  1854.00000
## 893  child                           yes  154.500000  1854.00000
## 894  parent, parent-in-law           yes  154.500000  1854.00000
## 895  head                            yes  128.222214  1538.66650
## 896  spouse/partner                  yes  128.222214  1538.66650
## 897  child                          <NA>  128.222214  1538.66650
## 898  head                            yes  240.000000  2880.00000
## 899  spouse/partner                  yes  240.000000  2880.00000
## 900  child                           yes  240.000000  2880.00000
## 901  head                            yes  130.000000  1560.00000
## 902  spouse/partner                  yes  130.000000  1560.00000
## 903  head                            yes  176.041656  2112.50000
## 904  spouse/partner                  yes  176.041656  2112.50000
## 905  child                           yes  176.041656  2112.50000
## 906  child                           yes  176.041656  2112.50000
## 907  head                            yes    0.000000     0.00000
## 908  spouse/partner                  yes    0.000000     0.00000
## 909  head                            yes  213.888901  2566.66675
## 910  spouse/partner                  yes  213.888901  2566.66675
## 911  child                          <NA>  213.888901  2566.66675
## 912  head                            yes  283.500000  3402.00000
## 913  spouse/partner                  yes  283.500000  3402.00000
## 914  head                            yes 1127.000000 13524.00000
## 915  head                            yes  155.000000  1860.00000
## 916  head                            yes  115.000000  1380.00000
## 917  head                            yes  176.666672  2120.00000
## 918  head                            yes  226.666672  2720.00000
## 919  child                          <NA>  226.666672  2720.00000
## 920  head                            yes  715.833313  8590.00000
## 921  spouse/partner                 <NA>  715.833313  8590.00000
## 922  head                            yes  269.916656  3239.00000
## 923  spouse/partner                  yes  269.916656  3239.00000
## 924  child                           yes  269.916656  3239.00000
## 925  child                           yes  269.916656  3239.00000
## 926  head                            yes  139.083328  1669.00000
## 927  spouse/partner                  yes  139.083328  1669.00000
## 928  child                          <NA>  139.083328  1669.00000
## 929  child                          <NA>  139.083328  1669.00000
## 930  head                            yes  203.958344  2447.50000
## 931  spouse/partner                  yes  203.958344  2447.50000
## 932  head                            yes  104.000000  1248.00000
## 933  spouse/partner                  yes  104.000000  1248.00000
## 934  parent, parent-in-law           yes  104.000000  1248.00000
## 935  head                            yes  209.444458  2513.33350
## 936  spouse/partner                  yes  209.444458  2513.33350
## 937  child                           yes  209.444458  2513.33350
## 938  head                            yes   93.750000  1125.00000
## 939  spouse/partner                  yes   93.750000  1125.00000
## 940  child                           yes   93.750000  1125.00000
## 941  child                          <NA>   93.750000  1125.00000
## 942  head                            yes  235.555542  2826.66650
## 943  spouse/partner                  yes  235.555542  2826.66650
## 944  child                           yes  235.555542  2826.66650
## 945  head                            yes  271.666687  3260.00024
## 946  spouse/partner                  yes  271.666687  3260.00024
## 947  head                            yes  150.000000  1800.00000
## 948  spouse/partner                  yes  150.000000  1800.00000
## 949  head                            yes  156.166672  1874.00000
## 950  spouse/partner                  yes  156.166672  1874.00000
## 951  head                            yes  172.199997  2066.39990
## 952  spouse/partner                  yes  172.199997  2066.39990
## 953  parent, parent-in-law           yes  172.199997  2066.39990
## 954  child                           yes  172.199997  2066.39990
## 955  child                          <NA>  172.199997  2066.39990
## 956  head                            yes  217.083328  2605.00000
## 957  spouse/partner                  yes  217.083328  2605.00000
## 958  head                            yes  137.500000  1650.00000
## 959  spouse/partner                  yes  137.500000  1650.00000
## 960  head                            yes  139.583344  1675.00012
## 961  spouse/partner                  yes  139.583344  1675.00012
## 962  head                            yes  377.083313  4525.00000
## 963  spouse/partner                  yes  377.083313  4525.00000
## 964  head                            yes  188.125000  2257.50000
## 965  spouse/partner                  yes  188.125000  2257.50000
## 966  head                            yes  111.933334  1343.19995
## 967  child                           yes  111.933334  1343.19995
## 968  son/daughter-in-law             yes  111.933334  1343.19995
## 969  grandchild                     <NA>  111.933334  1343.19995
## 970  grandchild                     <NA>  111.933334  1343.19995
## 971  head                            yes  101.500000  1218.00000
## 972  spouse/partner                  yes  101.500000  1218.00000
## 973  head                            yes  155.000000  1860.00000
## 974  child                           yes  155.000000  1860.00000
## 975  spouse/partner                  yes  155.000000  1860.00000
## 976  head                            yes   51.958336   623.50000
## 977  spouse/partner                  yes   51.958336   623.50000
## 978  child                           yes   51.958336   623.50000
## 979  child                          <NA>   51.958336   623.50000
## 980  head                            yes   50.833332   610.00000
## 981  head                            yes  157.111115  1885.33337
## 982  spouse/partner                  yes  157.111115  1885.33337
## 983  child                           yes  157.111115  1885.33337
## 984  head                            yes  143.529160  1722.34985
## 985  spouse/partner                  yes  143.529160  1722.34985
## 986  head                            yes   26.000000   312.00000
## 987  child                           yes   26.000000   312.00000
## 988  grandchild                      yes   26.000000   312.00000
## 989  grandchild                      yes   26.000000   312.00000
## 990  head                            yes  147.524994  1770.29993
## 991  head                            yes  101.666672  1220.00000
## 992  spouse/partner                  yes  101.666672  1220.00000
## 993  head                            yes  211.250000  2535.00000
## 994  child                           yes  211.250000  2535.00000
## 995  child                           yes  211.250000  2535.00000
## 996  child                           yes  211.250000  2535.00000
## 997  head                            yes  338.611115  4063.33350
## 998  grandchild                      yes  338.611115  4063.33350
## 999  other relative                  yes  338.611115  4063.33350
## 1000 head                            yes  297.333344  3568.00000
## 1001 child                           yes  297.333344  3568.00000
## 1002 head                            yes  142.500000  1710.00000
## 1003 spouse/partner                  yes  142.500000  1710.00000
## 1004 head                            yes   91.145836  1093.75000
## 1005 parent, parent-in-law           yes   91.145836  1093.75000
## 1006 other relative                  yes   91.145836  1093.75000
## 1007 other relative                  yes   91.145836  1093.75000
## 1008 head                            yes  368.888885  4426.66650
## 1009 child                           yes  368.888885  4426.66650
## 1010 child                           yes  368.888885  4426.66650
## 1011 head                            yes  138.250000  1659.00000
## 1012 spouse/partner                  yes  138.250000  1659.00000
## 1013 child                           yes  138.250000  1659.00000
## 1014 child                          <NA>  138.250000  1659.00000
## 1015 head                            yes  132.083328  1585.00000
## 1016 spouse/partner                  yes  132.083328  1585.00000
## 1017 child                           yes  132.083328  1585.00000
## 1018 grandchild                     <NA>  132.083328  1585.00000
## 1019 head                            yes   92.857140  1114.28564
## 1020 parent, parent-in-law           yes   92.857140  1114.28564
## 1021 child                           yes   92.857140  1114.28564
## 1022 child                           yes   92.857140  1114.28564
## 1023 child                           yes   92.857140  1114.28564
## 1024 grandchild                      yes   92.857140  1114.28564
## 1025 grandchild                      yes   92.857140  1114.28564
## 1026 head                            yes  227.166672  2726.00000
## 1027 spouse/partner                  yes  227.166672  2726.00000
## 1028 child                           yes  227.166672  2726.00000
## 1029 son/daughter-in-law             yes  227.166672  2726.00000
## 1030 grandchild                      yes  227.166672  2726.00000
## 1031 head                            yes  233.750000  2805.00000
## 1032 spouse/partner                  yes  233.750000  2805.00000
## 1033 child                           yes  233.750000  2805.00000
## 1034 child                           yes  233.750000  2805.00000
## 1035 head                            yes  232.166672  2786.00000
## 1036 spouse/partner                  yes  232.166672  2786.00000
## 1037 child                          <NA>  232.166672  2786.00000
## 1038 parent, parent-in-law           yes  232.166672  2786.00000
## 1039 parent, parent-in-law           yes  232.166672  2786.00000
## 1040 head                            yes  175.000000  2100.00000
## 1041 spouse/partner                  yes  175.000000  2100.00000
## 1042 parent, parent-in-law           yes  175.000000  2100.00000
## 1043 child                          <NA>  175.000000  2100.00000
## 1044 head                            yes  333.333344  4000.00000
## 1045 spouse/partner                  yes  333.333344  4000.00000
## 1046 head                            yes  426.666656  5120.00000
## 1047 spouse/partner                  yes  426.666656  5120.00000
## 1048 head                            yes  226.666656  2720.00000
## 1049 head                            yes  286.666656  3440.00000
## 1050 head                            yes  537.500000  6450.00000
## 1051 spouse/partner                  yes  537.500000  6450.00000
## 1052 child                           yes  537.500000  6450.00000
## 1053 head                            yes  170.000000  2040.00000
## 1054 spouse/partner                  yes  170.000000  2040.00000
## 1055 parent, parent-in-law           yes  170.000000  2040.00000
## 1056 child                           yes  170.000000  2040.00000
## 1057 head                            yes  393.750000  4725.00000
## 1058 spouse/partner                  yes  393.750000  4725.00000
## 1059 child                           yes  393.750000  4725.00000
## 1060 child                           yes  393.750000  4725.00000
## 1061 head                            yes  275.138885  3301.66650
## 1062 spouse/partner                  yes  275.138885  3301.66650
## 1063 child                           yes  275.138885  3301.66650
## 1064 head                            yes  280.208344  3362.50000
## 1065 spouse/partner                  yes  280.208344  3362.50000
## 1066 child                           yes  280.208344  3362.50000
## 1067 parent, parent-in-law           yes  280.208344  3362.50000
## 1068 head                            yes  481.666656  5780.00000
## 1069 spouse/partner                  yes  481.666656  5780.00000
## 1070 child                           yes  481.666656  5780.00000
## 1071 head                            yes  105.000000  1260.00000
## 1072 spouse/partner                  yes  105.000000  1260.00000
## 1073 child                           yes  105.000000  1260.00000
## 1074 head                            yes   77.000000   924.00000
## 1075 spouse/partner                  yes   77.000000   924.00000
## 1076 child                           yes   77.000000   924.00000
## 1077 child                           yes   77.000000   924.00000
## 1078 child                           yes   77.000000   924.00000
## 1079 head                            yes  136.666672  1640.00000
## 1080 spouse/partner                  yes  136.666672  1640.00000
## 1081 head                            yes  115.000000  1380.00000
## 1082 spouse/partner                  yes  115.000000  1380.00000
## 1083 head                            yes  151.166672  1814.00000
## 1084 head                            yes   65.555557   786.66669
## 1085 spouse/partner                  yes   65.555557   786.66669
## 1086 child                          <NA>   65.555557   786.66669
## 1087 head                            yes   66.666664   800.00000
## 1088 grandchild                      yes   66.666664   800.00000
## 1089 head                             no  140.000000  1680.00000
## 1090 head                            yes  135.000000  1620.00000
## 1091 head                            yes  120.000000  1440.00000
## 1092 head                            yes  290.000000  3480.00000
## 1093 spouse/partner                  yes  290.000000  3480.00000
## 1094 child                           yes  290.000000  3480.00000
## 1095 head                            yes  222.666672  2672.00000
## 1096 spouse/partner                  yes  222.666672  2672.00000
## 1097 child                          <NA>  222.666672  2672.00000
## 1098 head                            yes  103.066666  1236.80005
## 1099 spouse/partner                  yes  103.066666  1236.80005
## 1100 child                           yes  103.066666  1236.80005
## 1101 child                           yes  103.066666  1236.80005
## 1102 son/daughter-in-law             yes  103.066666  1236.80005
## 1103 head                            yes  189.666672  2276.00000
## 1104 spouse/partner                  yes  189.666672  2276.00000
## 1105 child                           yes  189.666672  2276.00000
## 1106 head                            yes  125.250000  1503.00000
## 1107 spouse/partner                  yes  125.250000  1503.00000
## 1108 child                           yes  125.250000  1503.00000
## 1109 child                           yes  125.250000  1503.00000
## 1110 son/daughter-in-law             yes  125.250000  1503.00000
## 1111 son/daughter-in-law             yes  125.250000  1503.00000
## 1112 grandchild                     <NA>  125.250000  1503.00000
## 1113 grandchild                     <NA>  125.250000  1503.00000
## 1114 head                            yes  127.500000  1530.00000
## 1115 spouse/partner                  yes  127.500000  1530.00000
## 1116 head                            yes  178.888870  2146.66650
## 1117 spouse/partner                  yes  178.888870  2146.66650
## 1118 child                           yes  178.888870  2146.66650
## 1119 head                            yes  117.708336  1412.50000
## 1120 spouse/partner                  yes  117.708336  1412.50000
## 1121 head                            yes  866.666626 10400.00000
## 1122 spouse/partner                  yes  866.666626 10400.00000
## 1123 head                            yes  455.000000  5460.00000
## 1124 spouse/partner                  yes  455.000000  5460.00000
## 1125 head                            yes  308.333344  3700.00000
## 1126 spouse/partner                  yes  308.333344  3700.00000
## 1127 head                            yes  257.933319  3095.19971
## 1128 spouse/partner                  yes  257.933319  3095.19971
## 1129 child                           yes  257.933319  3095.19971
## 1130 son/daughter-in-law             yes  257.933319  3095.19971
## 1131 grandchild                     <NA>  257.933319  3095.19971
## 1132 head                            yes  130.000000  1560.00000
## 1133 head                            yes  207.666672  2492.00000
## 1134 spouse/partner                  yes  207.666672  2492.00000
## 1135 child                          <NA>  207.666672  2492.00000
## 1136 head                            yes  310.277771  3723.33325
## 1137 spouse/partner                  yes  310.277771  3723.33325
## 1138 child                           yes  310.277771  3723.33325
## 1139 head                            yes  395.833344  4750.00000
## 1140 spouse/partner                  yes  395.833344  4750.00000
## 1141 child                           yes  395.833344  4750.00000
## 1142 child                           yes  395.833344  4750.00000
## 1143 head                            yes  256.666656  3080.00000
## 1144 spouse/partner                  yes  256.666656  3080.00000
## 1145 child                           yes  256.666656  3080.00000
## 1146 head                            yes  136.111115  1633.33337
## 1147 spouse/partner                  yes  136.111115  1633.33337
## 1148 child                          <NA>  136.111115  1633.33337
## 1149 head                            yes  150.000000  1800.00000
## 1150 spouse/partner                  yes  150.000000  1800.00000
## 1151 child                           yes  150.000000  1800.00000
## 1152 head                            yes   19.645834   235.75000
## 1153 spouse/partner                   no   19.645834   235.75000
## 1154 child                          <NA>   19.645834   235.75000
## 1155 child                          <NA>   19.645834   235.75000
## 1156 head                             no   92.020828  1104.25000
## 1157 spouse/partner                  yes   92.020828  1104.25000
## 1158 grandchild                      yes   92.020828  1104.25000
## 1159 grandchild                      yes   92.020828  1104.25000
## 1160 head                            yes  445.000000  5340.00000
## 1161 spouse/partner                  yes  445.000000  5340.00000
## 1162 child                           yes  445.000000  5340.00000
## 1163 head                            yes  691.250000  8295.00000
## 1164 spouse/partner                  yes  691.250000  8295.00000
## 1165 child                           yes  691.250000  8295.00000
## 1166 child                           yes  691.250000  8295.00000
## 1167 head                            yes  180.000000  2160.00000
## 1168 spouse/partner                  yes  180.000000  2160.00000
## 1169 child                           yes  180.000000  2160.00000
## 1170 head                            yes  425.000000  5100.00000
## 1171 spouse/partner                  yes  425.000000  5100.00000
## 1172 head                            yes  139.583328  1675.00000
## 1173 spouse/partner                  yes  139.583328  1675.00000
## 1174 head                            yes  258.799988  3105.59985
## 1175 spouse/partner                  yes  258.799988  3105.59985
## 1176 child                           yes  258.799988  3105.59985
## 1177 child                          <NA>  258.799988  3105.59985
## 1178 other relative                  yes  258.799988  3105.59985
## 1179 head                            yes  236.000000  2832.00000
## 1180 spouse/partner                  yes  236.000000  2832.00000
## 1181 child                           yes  236.000000  2832.00000
## 1182 child                           yes  236.000000  2832.00000
## 1183 grandchild                     <NA>  236.000000  2832.00000
## 1184 head                            yes  119.500000  1434.00000
## 1185 head                            yes  136.638885  1639.66663
## 1186 child                           yes  136.638885  1639.66663
## 1187 grandchild                      yes  136.638885  1639.66663
## 1188 head                            yes  193.791672  2325.50000
## 1189 spouse/partner                  yes  193.791672  2325.50000
## 1190 head                            yes  150.000000  1800.00000
## 1191 head                             no  100.000000  1200.00000
## 1192 spouse/partner                   no  100.000000  1200.00000
## 1193 head                            yes  286.666656  3440.00000
## 1194 spouse/partner                  yes  286.666656  3440.00000
## 1195 child                          <NA>  286.666656  3440.00000
## 1196 child                          <NA>  286.666656  3440.00000
## 1197 head                            yes  210.000000  2520.00000
## 1198 child                           yes  210.000000  2520.00000
## 1199 head                            yes  235.625000  2827.50000
## 1200 spouse/partner                  yes  235.625000  2827.50000
## 1201 child                           yes  235.625000  2827.50000
## 1202 child                           yes  235.625000  2827.50000
## 1203 head                            yes  144.000000  1728.00000
## 1204 head                            yes  340.833344  4090.00000
## 1205 spouse/partner                  yes  340.833344  4090.00000
## 1206 child                           yes  340.833344  4090.00000
## 1207 head                            yes  139.375000  1672.50000
## 1208 spouse/partner                  yes  139.375000  1672.50000
## 1209 child                          <NA>  139.375000  1672.50000
## 1210 child                          <NA>  139.375000  1672.50000
## 1211 head                            yes  411.500000  4938.00000
## 1212 spouse/partner                  yes  411.500000  4938.00000
## 1213 child                           yes  411.500000  4938.00000
## 1214 child                           yes  411.500000  4938.00000
## 1215 head                            yes  113.333328  1360.00000
## 1216 spouse/partner                  yes  113.333328  1360.00000
## 1217 head                            yes  147.000000  1764.00000
## 1218 head                            yes  256.000000  3072.00000
## 1219 spouse/partner                  yes  256.000000  3072.00000
## 1220 head                            yes  245.000000  2940.00000
## 1221 spouse/partner                  yes  245.000000  2940.00000
## 1222 head                            yes  288.222229  3458.66675
## 1223 spouse/partner                  yes  288.222229  3458.66675
## 1224 child                           yes  288.222229  3458.66675
## 1225 head                            yes  316.666656  3800.00000
## 1226 spouse/partner                  yes  316.666656  3800.00000
## 1227 child                           yes  316.666656  3800.00000
## 1228 head                            yes  177.833328  2134.00000
## 1229 spouse/partner                  yes  177.833328  2134.00000
## 1230 head                            yes  418.333344  5020.00000
## 1231 spouse/partner                  yes  418.333344  5020.00000
## 1232 head                            yes  388.958344  4667.50000
## 1233 spouse/partner                  yes  388.958344  4667.50000
## 1234 child                           yes  388.958344  4667.50000
## 1235 child                           yes  388.958344  4667.50000
## 1236 head                            yes  263.399994  3160.79980
## 1237 spouse/partner                  yes  263.399994  3160.79980
## 1238 child                           yes  263.399994  3160.79980
## 1239 child                           yes  263.399994  3160.79980
## 1240 child                           yes  263.399994  3160.79980
## 1241 head                            yes  739.333313  8872.00000
## 1242 spouse/partner                  yes  739.333313  8872.00000
## 1243 child                           yes  739.333313  8872.00000
## 1244 head                            yes    0.000000     0.00000
## 1245 spouse/partner                  yes    0.000000     0.00000
## 1246 child                           yes    0.000000     0.00000
## 1247 child                           yes    0.000000     0.00000
## 1248 son/daughter-in-law             yes    0.000000     0.00000
## 1249 grandchild                     <NA>    0.000000     0.00000
## 1250 head                            yes  238.000000  2856.00000
## 1251 spouse/partner                  yes  238.000000  2856.00000
## 1252 child                           yes  238.000000  2856.00000
## 1253 child                           yes  238.000000  2856.00000
## 1254 child                          <NA>  238.000000  2856.00000
## 1255 head                            yes  266.666687  3200.00024
## 1256 head                            yes  138.166672  1658.00000
## 1257 spouse/partner                  yes  138.166672  1658.00000
## 1258 head                            yes  282.000000  3384.00000
## 1259 spouse/partner                  yes  282.000000  3384.00000
## 1260 child                           yes  282.000000  3384.00000
## 1261 child                           yes  282.000000  3384.00000
## 1262 head                            yes  236.555557  2838.66675
## 1263 child                           yes  236.555557  2838.66675
## 1264 parent, parent-in-law           yes  236.555557  2838.66675
## 1265 head                            yes  211.666672  2540.00000
## 1266 head                            yes  345.000000  4140.00000
## 1267 parent, parent-in-law           yes  345.000000  4140.00000
## 1268 other relative                  yes  345.000000  4140.00000
## 1269 head                            yes  365.833344  4390.00000
## 1270 spouse/partner                  yes  365.833344  4390.00000
## 1271 child                           yes  365.833344  4390.00000
## 1272 child                           yes  365.833344  4390.00000
## 1273 head                            yes  261.555573  3138.66699
## 1274 spouse/partner                  yes  261.555573  3138.66699
## 1275 child                           yes  261.555573  3138.66699
## 1276 head                            yes  295.458344  3545.50000
## 1277 child                           yes  295.458344  3545.50000
## 1278 head                            yes  150.666672  1808.00000
## 1279 spouse/partner                  yes  150.666672  1808.00000
## 1280 child                           yes  150.666672  1808.00000
## 1281 head                            yes   90.250000  1083.00000
## 1282 spouse/partner                  yes   90.250000  1083.00000
## 1283 child                           yes   90.250000  1083.00000
## 1284 child                           yes   90.250000  1083.00000
## 1285 head                            yes   90.000000  1080.00000
## 1286 spouse/partner                  yes   90.000000  1080.00000
## 1287 head                            yes  335.000000  4020.00000
## 1288 spouse/partner                  yes  335.000000  4020.00000
## 1289 head                            yes  113.000000  1356.00000
## 1290 spouse/partner                  yes  113.000000  1356.00000
## 1291 head                            yes  255.000000  3060.00000
## 1292 spouse/partner                  yes  255.000000  3060.00000
## 1293 child                           yes  255.000000  3060.00000
## 1294 parent, parent-in-law           yes  255.000000  3060.00000
## 1295 head                            yes  306.250000  3675.00000
## 1296 spouse/partner                  yes  306.250000  3675.00000
## 1297 child                           yes  306.250000  3675.00000
## 1298 child                           yes  306.250000  3675.00000
## 1299 head                            yes  119.166664  1430.00000
## 1300 head                            yes  138.888885  1666.66663
## 1301 spouse/partner                  yes  138.888885  1666.66663
## 1302 parent, parent-in-law           yes  138.888885  1666.66663
## 1303 head                            yes  793.333313  9520.00000
## 1304 head                            yes  314.208344  3770.50000
## 1305 spouse/partner                  yes  314.208344  3770.50000
## 1306 child                           yes  314.208344  3770.50000
## 1307 child                           yes  314.208344  3770.50000
## 1308 head                            yes  114.166664  1370.00000
## 1309 spouse/partner                  yes  114.166664  1370.00000
## 1310 head                            yes  107.333336  1288.00000
## 1311 head                            yes   99.866669  1198.40002
## 1312 spouse/partner                  yes   99.866669  1198.40002
## 1313 child                           yes   99.866669  1198.40002
## 1314 child                          <NA>   99.866669  1198.40002
## 1315 parent, parent-in-law           yes   99.866669  1198.40002
## 1316 head                            yes  224.291656  2691.50000
## 1317 spouse/partner                  yes  224.291656  2691.50000
## 1318 head                            yes  245.666672  2948.00000
## 1319 spouse/partner                  yes  245.666672  2948.00000
## 1320 head                            yes  223.055542  2676.66650
## 1321 spouse/partner                   no  223.055542  2676.66650
## 1322 child                           yes  223.055542  2676.66650
## 1323 son/daughter-in-law             yes  223.055542  2676.66650
## 1324 grandchild                      yes  223.055542  2676.66650
## 1325 grandchild                     <NA>  223.055542  2676.66650
## 1326 head                            yes  158.125000  1897.50000
## 1327 spouse/partner                   no  158.125000  1897.50000
## 1328 child                           yes  158.125000  1897.50000
## 1329 son/daughter-in-law             yes  158.125000  1897.50000
## 1330 grandchild                      yes  158.125000  1897.50000
## 1331 grandchild                      yes  158.125000  1897.50000
## 1332 head                            yes  110.000000  1320.00000
## 1333 spouse/partner                   no  110.000000  1320.00000
## 1334 child                           yes  110.000000  1320.00000
## 1335 son/daughter-in-law             yes  110.000000  1320.00000
## 1336 grandchild                      yes  110.000000  1320.00000
## 1337 grandchild                      yes  110.000000  1320.00000
## 1338 head                            yes  133.000000  1596.00000
## 1339 head                            yes  324.166656  3890.00000
## 1340 spouse/partner                  yes  324.166656  3890.00000
## 1341 head                            yes  199.444443  2393.33325
## 1342 child                           yes  199.444443  2393.33325
## 1343 child                           yes  199.444443  2393.33325
## 1344 head                            yes  286.944427  3443.33301
## 1345 parent, parent-in-law           yes  286.944427  3443.33301
## 1346 other relative                  yes  286.944427  3443.33301
## 1347 head                            yes  326.666656  3920.00000
## 1348 spouse/partner                  yes  326.666656  3920.00000
## 1349 head                            yes  416.666656  5000.00000
## 1350 spouse/partner                  yes  416.666656  5000.00000
## 1351 child                           yes  416.666656  5000.00000
## 1352 head                            yes  172.722229  2072.66675
## 1353 spouse/partner                  yes  172.722229  2072.66675
## 1354 child                          <NA>  172.722229  2072.66675
## 1355 head                            yes  140.000000  1680.00000
## 1356 spouse/partner                  yes  140.000000  1680.00000
## 1357 head                            yes  147.000000  1764.00000
## 1358 head                            yes  335.000000  4020.00000
## 1359 spouse/partner                  yes  335.000000  4020.00000
## 1360 child                           yes  335.000000  4020.00000
## 1361 head                            yes  161.000000  1932.00000
## 1362 head                            yes  242.300003  2907.60010
## 1363 spouse/partner                  yes  242.300003  2907.60010
## 1364 child                           yes  242.300003  2907.60010
## 1365 child                           yes  242.300003  2907.60010
## 1366 parent, parent-in-law           yes  242.300003  2907.60010
## 1367 head                            yes    0.000000     0.00000
## 1368 spouse/partner                  yes    0.000000     0.00000
## 1369 child                           yes    0.000000     0.00000
## 1370 head                            yes  207.277771  2487.33325
## 1371 spouse/partner                  yes  207.277771  2487.33325
## 1372 child                           yes  207.277771  2487.33325
## 1373 head                            yes  142.208328  1706.50000
## 1374 spouse/partner                  yes  142.208328  1706.50000
## 1375 child                          <NA>  142.208328  1706.50000
## 1376 child                          <NA>  142.208328  1706.50000
## 1377 head                            yes  203.694443  2444.33325
## 1378 spouse/partner                  yes  203.694443  2444.33325
## 1379 child                           yes  203.694443  2444.33325
## 1380 son/daughter-in-law             yes  203.694443  2444.33325
## 1381 grandchild                     <NA>  203.694443  2444.33325
## 1382 child                           yes  203.694443  2444.33325
## 1383 head                            yes   75.000000   900.00000
## 1384 spouse/partner                  yes   75.000000   900.00000
## 1385 child                          <NA>   75.000000   900.00000
## 1386 other relative                  yes   75.000000   900.00000
## 1387 head                            yes  328.333344  3940.00000
## 1388 child                           yes  328.333344  3940.00000
## 1389 head                            yes  208.000000  2496.00000
## 1390 head                            yes  280.000000  3360.00000
## 1391 head                            yes  241.333328  2896.00000
## 1392 spouse/partner                  yes  241.333328  2896.00000
## 1393 child                           yes  241.333328  2896.00000
## 1394 head                            yes  213.666672  2564.00000
## 1395 spouse/partner                  yes  213.666672  2564.00000
## 1396 head                            yes  204.166672  2450.00000
## 1397 child                          <NA>  204.166672  2450.00000
## 1398 head                            yes  357.000000  4284.00000
## 1399 spouse/partner                  yes  357.000000  4284.00000
## 1400 child                           yes  357.000000  4284.00000
## 1401 child                          <NA>  357.000000  4284.00000
## 1402 parent, parent-in-law           yes  357.000000  4284.00000
## 1403 head                            yes  277.500000  3330.00000
## 1404 spouse/partner                  yes  277.500000  3330.00000
## 1405 head                            yes  195.722229  2348.66675
## 1406 spouse/partner                  yes  195.722229  2348.66675
## 1407 child                          <NA>  195.722229  2348.66675
## 1408 head                            yes  766.666687  9200.00000
## 1409 head                            yes  205.000000  2460.00000
## 1410 spouse/partner                  yes  205.000000  2460.00000
## 1411 head                            yes  327.777771  3933.33325
## 1412 spouse/partner                  yes  327.777771  3933.33325
## 1413 child                           yes  327.777771  3933.33325
## 1414 head                            yes  715.000000  8580.00000
## 1415 other relative                  yes  715.000000  8580.00000
## 1416 head                            yes  170.333328  2044.00000
## 1417 head                            yes  383.333344  4600.00000
## 1418 spouse/partner                  yes  383.333344  4600.00000
## 1419 parent, parent-in-law           yes  383.333344  4600.00000
## 1420 head                            yes   70.000000   840.00000
## 1421 child                           yes   70.000000   840.00000
## 1422 head                            yes  135.833328  1630.00000
## 1423 spouse/partner                  yes  135.833328  1630.00000
## 1424 head                            yes  163.666672  1964.00000
## 1425 spouse/partner                  yes  163.666672  1964.00000
## 1426 parent, parent-in-law           yes  163.666672  1964.00000
## 1427 parent, parent-in-law           yes  163.666672  1964.00000
## 1428 child                           yes  163.666672  1964.00000
## 1429 child                            no  163.666672  1964.00000
## 1430 head                            yes  148.333328  1780.00000
## 1431 parent, parent-in-law           yes  148.333328  1780.00000
## 1432 head                            yes  112.500000  1350.00000
## 1433 spouse/partner                  yes  112.500000  1350.00000
## 1434 head                            yes  240.000000  2880.00000
## 1435 spouse/partner                  yes  240.000000  2880.00000
## 1436 head                            yes  236.916672  2843.00000
## 1437 spouse/partner                  yes  236.916672  2843.00000
## 1438 head                            yes  277.000000  3324.00000
## 1439 spouse/partner                  yes  277.000000  3324.00000
## 1440 child                           yes  277.000000  3324.00000
## 1441 son/daughter-in-law             yes  277.000000  3324.00000
## 1442 grandchild                      yes  277.000000  3324.00000
## 1443 head                            yes  171.000000  2052.00000
## 1444 spouse/partner                  yes  171.000000  2052.00000
## 1445 head                            yes   38.233334   458.79999
## 1446 spouse/partner                  yes   38.233334   458.79999
## 1447 child                           yes   38.233334   458.79999
## 1448 child                           yes   38.233334   458.79999
## 1449 child                           yes   38.233334   458.79999
## 1450 head                             no  106.000000  1272.00000
## 1451 spouse/partner                   no  106.000000  1272.00000
## 1452 head                            yes  270.833344  3250.00000
## 1453 head                            yes  237.500000  2850.00000
## 1454 spouse/partner                  yes  237.500000  2850.00000
## 1455 child                           yes  237.500000  2850.00000
## 1456 child                           yes  237.500000  2850.00000
## 1457 head                            yes  243.933319  2927.19971
## 1458 spouse/partner                  yes  243.933319  2927.19971
## 1459 child                           yes  243.933319  2927.19971
## 1460 child                           yes  243.933319  2927.19971
## 1461 grandchild                      yes  243.933319  2927.19971
## 1462 head                            yes  106.250000  1275.00000
## 1463 spouse/partner                  yes  106.250000  1275.00000
## 1464 child                           yes  106.250000  1275.00000
## 1465 child                           yes  106.250000  1275.00000
## 1466 head                            yes  147.916672  1775.00000
## 1467 spouse/partner                  yes  147.916672  1775.00000
## 1468 head                            yes  330.625000  3967.50000
## 1469 spouse/partner                  yes  330.625000  3967.50000
## 1470 child                           yes  330.625000  3967.50000
## 1471 grandchild                     <NA>  330.625000  3967.50000
## 1472 head                            yes    5.555555    66.66666
## 1473 spouse/partner                  yes    5.555555    66.66666
## 1474 child                          <NA>    5.555555    66.66666
## 1475 head                            yes  104.000000  1248.00000
## 1476 spouse/partner                  yes  104.000000  1248.00000
## 1477 child                           yes  104.000000  1248.00000
## 1478 child                           yes  104.000000  1248.00000
## 1479 son/daughter-in-law             yes  104.000000  1248.00000
## 1480 parent, parent-in-law            no  104.000000  1248.00000
## 1481 head                            yes  170.000000  2040.00000
## 1482 head                            yes  160.833328  1930.00000
## 1483 spouse/partner                  yes  160.833328  1930.00000
## 1484 child                           yes  160.833328  1930.00000
## 1485 head                            yes  148.000000  1776.00000
## 1486 child                           yes  148.000000  1776.00000
## 1487 son/daughter-in-law             yes  148.000000  1776.00000
## 1488 grandchild                      yes  148.000000  1776.00000
## 1489 grandchild                      yes  148.000000  1776.00000
## 1490 head                            yes  306.666656  3680.00000
## 1491 child                           yes  306.666656  3680.00000
## 1492 son/daughter-in-law             yes  306.666656  3680.00000
## 1493 head                            yes  128.375000  1540.50000
## 1494 spouse/partner                  yes  128.375000  1540.50000
## 1495 child                           yes  128.375000  1540.50000
## 1496 child                           yes  128.375000  1540.50000
## 1497 head                            yes  462.500000  5550.00000
## 1498 spouse/partner                  yes  462.500000  5550.00000
## 1499 child                           yes  462.500000  5550.00000
## 1500 head                            yes  378.888885  4546.66650
## 1501 spouse/partner                  yes  378.888885  4546.66650
## 1502 child                           yes  378.888885  4546.66650
## 1503 head                            yes  249.999985  2999.99976
## 1504 head                            yes  221.250000  2655.00000
## 1505 child                           yes  221.250000  2655.00000
## 1506 head                            yes  175.000000  2100.00000
## 1507 spouse/partner                  yes  175.000000  2100.00000
## 1508 head                            yes  166.666656  1999.99988
## 1509 spouse/partner                  yes  166.666656  1999.99988
## 1510 child                           yes  166.666656  1999.99988
## 1511 child                           yes  166.666656  1999.99988
## 1512 head                            yes  237.777771  2853.33325
## 1513 spouse/partner                  yes  237.777771  2853.33325
## 1514 child                           yes  237.777771  2853.33325
## 1515 head                            yes  141.416672  1697.00000
## 1516 child                           yes  141.416672  1697.00000
## 1517 head                            yes          NA          NA
## 1518 spouse/partner                  yes          NA          NA
## 1519 child                           yes          NA          NA
## 1520 head                            yes  155.333328  1864.00000
## 1521 spouse/partner                  yes  155.333328  1864.00000
## 1522 child                           yes  155.333328  1864.00000
## 1523 head                             no          NA          NA
## 1524 child                            no          NA          NA
## 1525 child                           yes          NA          NA
## 1526 head                            yes  114.166664  1370.00000
## 1527 spouse/partner                  yes  114.166664  1370.00000
## 1528 child                           yes  114.166664  1370.00000
## 1529 son/daughter-in-law             yes  114.166664  1370.00000
## 1530 head                            yes   17.738096   212.85715
## 1531 spouse/partner                  yes   17.738096   212.85715
## 1532 child                          <NA>   17.738096   212.85715
## 1533 child                          <NA>   17.738096   212.85715
## 1534 other relative                  yes   17.738096   212.85715
## 1535 other relative                   no   17.738096   212.85715
## 1536 other relative                   no   17.738096   212.85715
## 1537 head                            yes  176.000000  2112.00000
## 1538 spouse/partner                  yes  176.000000  2112.00000
## 1539 head                            yes   88.708336  1064.50000
## 1540 spouse/partner                  yes   88.708336  1064.50000
## 1541 child                          <NA>   88.708336  1064.50000
## 1542 child                          <NA>   88.708336  1064.50000
## 1543 head                            yes   89.812500  1077.75000
## 1544 child                           yes   89.812500  1077.75000
## 1545 child                           yes   89.812500  1077.75000
## 1546 grandchild                     <NA>   89.812500  1077.75000
## 1547 head                            yes  192.833328  2314.00000
## 1548 spouse/partner                  yes  192.833328  2314.00000
## 1549 child                           yes  192.833328  2314.00000
## 1550 child                          <NA>  192.833328  2314.00000
## 1551 head                            yes   60.444447   725.33337
## 1552 spouse/partner                  yes   60.444447   725.33337
## 1553 child                          <NA>   60.444447   725.33337
## 1554 head                            yes  126.000000  1512.00000
## 1555 spouse/partner                  yes  126.000000  1512.00000
## 1556 head                            yes  147.500000  1770.00000
## 1557 head                            yes  194.055557  2328.66675
## 1558 spouse/partner                  yes  194.055557  2328.66675
## 1559 grandchild                      yes  194.055557  2328.66675
## 1560 head                            yes  244.166672  2930.00000
## 1561 spouse/partner                  yes  244.166672  2930.00000
## 1562 head                            yes  211.458328  2537.50000
## 1563 spouse/partner                  yes  211.458328  2537.50000
## 1564 head                            yes  304.375000  3652.50000
## 1565 spouse/partner                  yes  304.375000  3652.50000
## 1566 child                           yes  304.375000  3652.50000
## 1567 son/daughter-in-law             yes  304.375000  3652.50000
## 1568 grandchild                      yes  304.375000  3652.50000
## 1569 grandchild                      yes  304.375000  3652.50000
## 1570 head                            yes  185.000000  2220.00000
## 1571 spouse/partner                  yes  185.000000  2220.00000
## 1572 child                           yes  185.000000  2220.00000
## 1573 parent, parent-in-law           yes  185.000000  2220.00000
## 1574 parent, parent-in-law           yes  185.000000  2220.00000
## 1575 head                            yes  146.000000  1752.00000
## 1576 spouse/partner                  yes  146.000000  1752.00000
## 1577 head                            yes  141.000000  1692.00000
## 1578 spouse/partner                  yes  141.000000  1692.00000
## 1579 child                           yes  141.000000  1692.00000
## 1580 son/daughter-in-law             yes  141.000000  1692.00000
## 1581 grandchild                      yes  141.000000  1692.00000
## 1582 head                            yes   48.888889   586.66669
## 1583 child                           yes   48.888889   586.66669
## 1584 child                          <NA>   48.888889   586.66669
## 1585 head                             no  297.399994  3568.79980
## 1586 child                           yes  297.399994  3568.79980
## 1587 grandchild                      yes  297.399994  3568.79980
## 1588 grandchild                      yes  297.399994  3568.79980
## 1589 grandchild                      yes  297.399994  3568.79980
## 1590 head                             no   51.250000   615.00000
## 1591 child                           yes   51.250000   615.00000
## 1592 son/daughter-in-law             yes   51.250000   615.00000
## 1593 grandchild                      yes   51.250000   615.00000
## 1594 grandchild                      yes   51.250000   615.00000
## 1595 head                            yes  452.000000  5424.00000
## 1596 head                            yes   90.000000  1080.00000
## 1597 head                            yes  403.166656  4838.00000
## 1598 spouse/partner                  yes  403.166656  4838.00000
## 1599 child                          <NA>  403.166656  4838.00000
## 1600 child                          <NA>  403.166656  4838.00000
## 1601 head                            yes  209.416672  2513.00000
## 1602 parent, parent-in-law           yes  209.416672  2513.00000
## 1603 child                           yes  209.416672  2513.00000
## 1604 child                           yes  209.416672  2513.00000
## 1605 head                            yes  244.444443  2933.33325
## 1606 spouse/partner                  yes  244.444443  2933.33325
## 1607 child                           yes  244.444443  2933.33325
## 1608 head                            yes  900.000000 10800.00000
## 1609 head                            yes   95.000000  1140.00000
## 1610 spouse/partner                   no   95.000000  1140.00000
## 1611 head                            yes  225.000000  2700.00000
## 1612 child                           yes  225.000000  2700.00000
## 1613 head                            yes  310.500000  3726.00000
## 1614 spouse/partner                  yes  310.500000  3726.00000
## 1615 head                            yes  139.000000  1668.00000
## 1616 head                            yes  255.000000  3060.00000
## 1617 child                           yes  255.000000  3060.00000
## 1618 head                            yes  175.541656  2106.50000
## 1619 spouse/partner                  yes  175.541656  2106.50000
## 1620 child                           yes  175.541656  2106.50000
## 1621 child                           yes  175.541656  2106.50000
## 1622 head                            yes  250.000000  3000.00000
## 1623 parent, parent-in-law           yes  250.000000  3000.00000
## 1624 parent, parent-in-law           yes  250.000000  3000.00000
## 1625 head                            yes  247.500000  2970.00000
## 1626 child                           yes  247.500000  2970.00000
## 1627 grandchild                      yes  247.500000  2970.00000
## 1628 grandchild                      yes  247.500000  2970.00000
## 1629 head                            yes  213.888901  2566.66675
## 1630 spouse/partner                  yes  213.888901  2566.66675
## 1631 child                            no  213.888901  2566.66675
## 1632 head                            yes  400.000000  4800.00000
## 1633 head                            yes  320.277802  3843.33350
## 1634 spouse/partner                  yes  320.277802  3843.33350
## 1635 child                           yes  320.277802  3843.33350
## 1636 head                            yes  300.000000  3600.00000
## 1637 spouse/partner                  yes  300.000000  3600.00000
## 1638 head                            yes    0.000000     0.00000
## 1639 spouse/partner                  yes    0.000000     0.00000
## 1640 head                            yes   85.000000  1020.00000
## 1641 spouse/partner                  yes   85.000000  1020.00000
## 1642 child                           yes   85.000000  1020.00000
## 1643 head                            yes   59.944447   719.33337
## 1644 spouse/partner                  yes   59.944447   719.33337
## 1645 child                          <NA>   59.944447   719.33337
## 1646 head                            yes  181.316666  2175.80005
## 1647 spouse/partner                  yes  181.316666  2175.80005
## 1648 child                           yes  181.316666  2175.80005
## 1649 child                           yes  181.316666  2175.80005
## 1650 child                          <NA>  181.316666  2175.80005
## 1651 head                            yes  135.000000  1620.00000
## 1652 head                            yes   88.333328  1060.00000
## 1653 child                           yes   88.333328  1060.00000
## 1654 head                            yes  330.833344  3970.00000
## 1655 spouse/partner                  yes  330.833344  3970.00000
## 1656 head                            yes  158.833328  1906.00000
## 1657 spouse/partner                  yes  158.833328  1906.00000
## 1658 head                            yes  252.777786  3033.33350
## 1659 spouse/partner                  yes  252.777786  3033.33350
## 1660 child                           yes  252.777786  3033.33350
## 1661 head                            yes  130.500000  1566.00000
## 1662 spouse/partner                  yes  130.500000  1566.00000
## 1663 head                            yes  183.333328  2200.00000
## 1664 spouse/partner                  yes  183.333328  2200.00000
## 1665 child                           yes  183.333328  2200.00000
## 1666 head                            yes  145.833328  1750.00000
## 1667 spouse/partner                  yes  145.833328  1750.00000
## 1668 head                            yes  150.833328  1810.00000
## 1669 head                            yes    0.000000     0.00000
## 1670 spouse/partner                  yes    0.000000     0.00000
## 1671 child                           yes    0.000000     0.00000
## 1672 child                           yes    0.000000     0.00000
## 1673 head                            yes  254.166656  3050.00000
## 1674 spouse/partner                  yes  254.166656  3050.00000
## 1675 child                           yes  254.166656  3050.00000
## 1676 grandchild                      yes  254.166656  3050.00000
## 1677 head                            yes  420.250000  5043.00000
## 1678 spouse/partner                  yes  420.250000  5043.00000
## 1679 child                           yes  420.250000  5043.00000
## 1680 head                            yes  162.000000  1944.00000
## 1681 spouse/partner                  yes  162.000000  1944.00000
## 1682 child                           yes  162.000000  1944.00000
## 1683 parent, parent-in-law           yes  162.000000  1944.00000
## 1684 head                            yes  176.375000  2116.50000
## 1685 spouse/partner                  yes  176.375000  2116.50000
## 1686 head                            yes  233.333328  2800.00000
## 1687 spouse/partner                  yes  233.333328  2800.00000
## 1688 child                          <NA>  233.333328  2800.00000
## 1689 head                            yes   70.000000   840.00000
## 1690 spouse/partner                  yes   70.000000   840.00000
## 1691 head                            yes   97.000000  1164.00000
## 1692 spouse/partner                  yes   97.000000  1164.00000
## 1693 child                           yes   97.000000  1164.00000
## 1694 child                           yes   97.000000  1164.00000
## 1695 head                            yes  184.333328  2212.00000
## 1696 spouse/partner                  yes  184.333328  2212.00000
## 1697 child                           yes  184.333328  2212.00000
## 1698 head                            yes   60.000000   720.00000
## 1699 spouse/partner                  yes   60.000000   720.00000
## 1700 other relative                  yes   60.000000   720.00000
## 1701 head                            yes  325.000000  3900.00000
## 1702 spouse/partner                  yes  325.000000  3900.00000
## 1703 head                            yes  300.000000  3600.00000
## 1704 spouse/partner                  yes  300.000000  3600.00000
## 1705 child                           yes  300.000000  3600.00000
## 1706 head                            yes  151.071426  1812.85718
## 1707 spouse/partner                  yes  151.071426  1812.85718
## 1708 child                           yes  151.071426  1812.85718
## 1709 son/daughter-in-law             yes  151.071426  1812.85718
## 1710 grandchild                      yes  151.071426  1812.85718
## 1711 son/daughter-in-law             yes  151.071426  1812.85718
## 1712 grandchild                      yes  151.071426  1812.85718
## 1713 head                            yes  203.388901  2440.66675
## 1714 child                           yes  203.388901  2440.66675
## 1715 child                           yes  203.388901  2440.66675
## 1716 head                            yes  125.000000  1500.00000
## 1717 spouse/partner                  yes  125.000000  1500.00000
## 1718 child                           yes  125.000000  1500.00000
## 1719 child                           yes  125.000000  1500.00000
## 1720 head                            yes  137.361115  1648.33337
## 1721 spouse/partner                  yes  137.361115  1648.33337
## 1722 child                           yes  137.361115  1648.33337
## 1723 child                           yes  137.361115  1648.33337
## 1724 parent, parent-in-law           yes  137.361115  1648.33337
## 1725 parent, parent-in-law           yes  137.361115  1648.33337
## 1726 head                            yes          NA          NA
## 1727 spouse/partner                  yes          NA          NA
## 1728 head                            yes  333.333313  3999.99976
## 1729 spouse/partner                  yes  333.333313  3999.99976
## 1730 head                             no  113.833336  1366.00000
## 1731 child                           yes  113.833336  1366.00000
## 1732 son/daughter-in-law             yes  113.833336  1366.00000
## 1733 grandchild                     <NA>  113.833336  1366.00000
## 1734 grandchild                     <NA>  113.833336  1366.00000
## 1735 head                            yes  213.000000  2556.00000
## 1736 spouse/partner                  yes  213.000000  2556.00000
## 1737 head                            yes  181.333328  2176.00000
## 1738 child                           yes  181.333328  2176.00000
## 1739 head                            yes  285.333344  3424.00000
## 1740 spouse/partner                  yes  285.333344  3424.00000
## 1741 child                           yes  285.333344  3424.00000
## 1742 head                            yes  182.777771  2193.33325
## 1743 spouse/partner                  yes  182.777771  2193.33325
## 1744 child                           yes  182.777771  2193.33325
## 1745 head                            yes  206.666672  2480.00000
## 1746 spouse/partner                  yes  206.666672  2480.00000
## 1747 child                           yes  206.666672  2480.00000
## 1748 head                            yes  232.000000  2784.00000
## 1749 spouse/partner                  yes  232.000000  2784.00000
## 1750 child                          <NA>  232.000000  2784.00000
## 1751 parent, parent-in-law           yes  232.000000  2784.00000
## 1752 parent, parent-in-law           yes  232.000000  2784.00000
## 1753 head                            yes  184.238083  2210.85693
## 1754 spouse/partner                  yes  184.238083  2210.85693
## 1755 child                           yes  184.238083  2210.85693
## 1756 son/daughter-in-law             yes  184.238083  2210.85693
## 1757 grandchild                      yes  184.238083  2210.85693
## 1758 parent, parent-in-law            no  184.238083  2210.85693
## 1759 grandchild                      yes  184.238083  2210.85693
## 1760 head                            yes  186.500000  2238.00000
## 1761 spouse/partner                  yes  186.500000  2238.00000
## 1762 head                            yes  246.000000  2952.00000
## 1763 spouse/partner                  yes  246.000000  2952.00000
## 1764 child                           yes  246.000000  2952.00000
## 1765 head                            yes  182.125000  2185.50000
## 1766 spouse/partner                  yes  182.125000  2185.50000
## 1767 child                           yes  182.125000  2185.50000
## 1768 child                          <NA>  182.125000  2185.50000
## 1769 head                            yes  125.000000  1500.00000
## 1770 spouse/partner                  yes  125.000000  1500.00000
## 1771 child                          <NA>  125.000000  1500.00000
## 1772 child                          <NA>  125.000000  1500.00000
## 1773 head                            yes  327.399994  3928.79980
## 1774 spouse/partner                  yes  327.399994  3928.79980
## 1775 child                           yes  327.399994  3928.79980
## 1776 parent, parent-in-law           yes  327.399994  3928.79980
## 1777 parent, parent-in-law           yes  327.399994  3928.79980
## 1778 head                            yes  205.333328  2464.00000
## 1779 spouse/partner                  yes  205.333328  2464.00000
## 1780 child                           yes  205.333328  2464.00000
## 1781 son/daughter-in-law             yes  205.333328  2464.00000
## 1782 other relative                  yes  205.333328  2464.00000
## 1783 other relative                  yes  205.333328  2464.00000
## 1784 other relative                  yes  205.333328  2464.00000
## 1785 other relative                 <NA>  205.333328  2464.00000
## 1786 head                            yes  149.611115  1795.33337
## 1787 spouse/partner                  yes  149.611115  1795.33337
## 1788 child                           yes  149.611115  1795.33337
## 1789 son/daughter-in-law             yes  149.611115  1795.33337
## 1790 grandchild                     <NA>  149.611115  1795.33337
## 1791 child                           yes  149.611115  1795.33337
## 1792 head                            yes  120.000000  1440.00000
## 1793 spouse/partner                  yes  120.000000  1440.00000
## 1794 head                            yes  153.694443  1844.33325
## 1795 spouse/partner                  yes  153.694443  1844.33325
## 1796 child                           yes  153.694443  1844.33325
## 1797 head                            yes  143.333328  1720.00000
## 1798 spouse/partner                  yes  143.333328  1720.00000
## 1799 child                           yes  143.333328  1720.00000
## 1800 head                            yes  290.000000  3480.00000
## 1801 head                            yes 1083.333374 13000.00000
## 1802 spouse/partner                  yes 1083.333374 13000.00000
## 1803 head                            yes  226.666672  2720.00000
## 1804 spouse/partner                  yes  226.666672  2720.00000
## 1805 child                           yes  226.666672  2720.00000
## 1806 head                            yes  175.000000  2100.00000
## 1807 spouse/partner                  yes  175.000000  2100.00000
## 1808 head                            yes  192.000000  2304.00000
## 1809 head                            yes  288.541656  3462.50000
## 1810 spouse/partner                  yes  288.541656  3462.50000
## 1811 child                           yes  288.541656  3462.50000
## 1812 son/daughter-in-law             yes  288.541656  3462.50000
## 1813 head                            yes  161.250000  1935.00000
## 1814 spouse/partner                  yes  161.250000  1935.00000
## 1815 child                           yes  161.250000  1935.00000
## 1816 child                           yes  161.250000  1935.00000
## 1817 head                            yes  155.000000  1860.00000
## 1818 child                           yes  155.000000  1860.00000
## 1819 head                            yes          NA          NA
## 1820 spouse/partner                  yes          NA          NA
## 1821 child                           yes          NA          NA
## 1822 child                           yes          NA          NA
## 1823 head                            yes  134.047623  1608.57153
## 1824 spouse/partner                  yes  134.047623  1608.57153
## 1825 child                           yes  134.047623  1608.57153
## 1826 son/daughter-in-law             yes  134.047623  1608.57153
## 1827 grandchild                      yes  134.047623  1608.57153
## 1828 grandchild                      yes  134.047623  1608.57153
## 1829 other relative                  yes  134.047623  1608.57153
## 1830 head                            yes  150.000000  1800.00000
## 1831 spouse/partner                  yes  150.000000  1800.00000
## 1832 child                           yes  150.000000  1800.00000
## 1833 child                           yes  150.000000  1800.00000
## 1834 head                            yes  698.888916  8386.66699
## 1835 child                           yes  698.888916  8386.66699
## 1836 child                           yes  698.888916  8386.66699
## 1837 son/daughter-in-law             yes  698.888916  8386.66699
## 1838 son/daughter-in-law             yes  698.888916  8386.66699
## 1839 grandchild                     <NA>  698.888916  8386.66699
## 1840 head                            yes   92.500000  1110.00000
## 1841 spouse/partner                  yes   92.500000  1110.00000
## 1842 head                            yes          NA          NA
## 1843 parent, parent-in-law           yes          NA          NA
## 1844 other relative                  yes          NA          NA
## 1845 head                            yes  370.000000  4440.00000
## 1846 spouse/partner                  yes  370.000000  4440.00000
## 1847 child                           yes  370.000000  4440.00000
## 1848 child                          <NA>  370.000000  4440.00000
## 1849 head                            yes  181.888901  2182.66675
## 1850 spouse/partner                  yes  181.888901  2182.66675
## 1851 child                           yes  181.888901  2182.66675
## 1852 child                           yes  181.888901  2182.66675
## 1853 parent, parent-in-law           yes  181.888901  2182.66675
## 1854 parent, parent-in-law           yes  181.888901  2182.66675
## 1855 head                            yes  215.000000  2580.00000
## 1856 spouse/partner                  yes  215.000000  2580.00000
## 1857 head                            yes  119.000000  1428.00000
## 1858 spouse/partner                  yes  119.000000  1428.00000
## 1859 child                           yes  119.000000  1428.00000
## 1860 son/daughter-in-law             yes  119.000000  1428.00000
## 1861 grandchild                     <NA>  119.000000  1428.00000
## 1862 head                            yes  188.437500  2261.25000
## 1863 spouse/partner                  yes  188.437500  2261.25000
## 1864 child                           yes  188.437500  2261.25000
## 1865 child                           yes  188.437500  2261.25000
## 1866 head                            yes  151.833328  1822.00000
## 1867 head                            yes  182.500000  2190.00000
## 1868 head                            yes  180.000000  2160.00000
## 1869 head                            yes  326.111115  3913.33350
## 1870 spouse/partner                  yes  326.111115  3913.33350
## 1871 child                           yes  326.111115  3913.33350
## 1872 head                            yes  186.666672  2240.00000
## 1873 spouse/partner                  yes  186.666672  2240.00000
## 1874 child                           yes  186.666672  2240.00000
## 1875 head                            yes  194.733337  2336.80005
## 1876 spouse/partner                  yes  194.733337  2336.80005
## 1877 child                           yes  194.733337  2336.80005
## 1878 child                           yes  194.733337  2336.80005
## 1879 parent, parent-in-law           yes  194.733337  2336.80005
## 1880 head                            yes  147.500000  1770.00000
## 1881 child                           yes  147.500000  1770.00000
## 1882 son/daughter-in-law             yes  147.500000  1770.00000
## 1883 grandchild                      yes  147.500000  1770.00000
## 1884 head                            yes   49.750000   597.00000
## 1885 spouse/partner                  yes   49.750000   597.00000
## 1886 child                           yes   49.750000   597.00000
## 1887 son/daughter-in-law             yes   49.750000   597.00000
## 1888 grandchild                      yes   49.750000   597.00000
## 1889 grandchild                     <NA>   49.750000   597.00000
## 1890 head                            yes   97.500000  1170.00000
## 1891 spouse/partner                  yes   97.500000  1170.00000
## 1892 child                           yes   97.500000  1170.00000
## 1893 child                          <NA>   97.500000  1170.00000
## 1894 head                            yes  102.250000  1227.00000
## 1895 spouse/partner                  yes  102.250000  1227.00000
## 1896 head                            yes  134.583328  1615.00000
## 1897 child                           yes  134.583328  1615.00000
## 1898 son/daughter-in-law             yes  134.583328  1615.00000
## 1899 grandchild                     <NA>  134.583328  1615.00000
## 1900 grandchild                      yes  134.583328  1615.00000
## 1901 grandchild                     <NA>  134.583328  1615.00000
## 1902 head                            yes  101.000000  1212.00000
## 1903 child                           yes  101.000000  1212.00000
## 1904 head                            yes  140.000000  1680.00000
## 1905 head                            yes  158.583328  1903.00000
## 1906 spouse/partner                  yes  158.583328  1903.00000
## 1907 head                            yes  145.566666  1746.80005
## 1908 spouse/partner                  yes  145.566666  1746.80005
## 1909 parent, parent-in-law           yes  145.566666  1746.80005
## 1910 other relative                  yes  145.566666  1746.80005
## 1911 child                          <NA>  145.566666  1746.80005
## 1912 head                            yes  374.444458  4493.33350
## 1913 spouse/partner                   no  374.444458  4493.33350
## 1914 child                           yes  374.444458  4493.33350
## 1915 head                            yes  466.666656  5600.00000
## 1916 spouse/partner                  yes  466.666656  5600.00000
## 1917 child                           yes  466.666656  5600.00000
## 1918 head                            yes   34.000000   408.00000
## 1919 spouse/partner                  yes   34.000000   408.00000
## 1920 child                           yes   34.000000   408.00000
## 1921 child                           yes   34.000000   408.00000
## 1922 child                           yes   34.000000   408.00000
## 1923 head                             no  155.000000  1860.00000
## 1924 child                           yes  155.000000  1860.00000
## 1925 head                            yes  453.333344  5440.00000
## 1926 spouse/partner                  yes  453.333344  5440.00000
## 1927 child                           yes  453.333344  5440.00000
## 1928 head                            yes  350.000000  4200.00000
## 1929 spouse/partner                  yes  350.000000  4200.00000
## 1930 head                            yes  256.933319  3083.19971
## 1931 spouse/partner                  yes  256.933319  3083.19971
## 1932 child                           yes  256.933319  3083.19971
## 1933 son/daughter-in-law             yes  256.933319  3083.19971
## 1934 grandchild                     <NA>  256.933319  3083.19971
## 1935 head                            yes  239.333328  2872.00000
## 1936 spouse/partner                  yes  239.333328  2872.00000
## 1937 child                           yes  239.333328  2872.00000
## 1938 head                            yes  175.000000  2100.00000
## 1939 child                           yes  175.000000  2100.00000
## 1940 head                            yes   95.666672  1148.00000
## 1941 other relative                  yes   95.666672  1148.00000
## 1942 son/daughter-in-law             yes   95.666672  1148.00000
## 1943 other relative                  yes   95.666672  1148.00000
## 1944 other relative                  yes   95.666672  1148.00000
## 1945 head                            yes  156.250000  1875.00000
## 1946 parent, parent-in-law           yes  156.250000  1875.00000
## 1947 head                            yes  159.833328  1918.00000
## 1948 spouse/partner                  yes  159.833328  1918.00000
## 1949 child                           yes  159.833328  1918.00000
## 1950 son/daughter-in-law             yes  159.833328  1918.00000
## 1951 grandchild                      yes  159.833328  1918.00000
## 1952 parent, parent-in-law           yes  159.833328  1918.00000
## 1953 head                            yes  300.000000  3600.00000
## 1954 spouse/partner                  yes  300.000000  3600.00000
## 1955 head                            yes   62.500000   750.00000
## 1956 spouse/partner                  yes   62.500000   750.00000
## 1957 child                           yes   62.500000   750.00000
## 1958 child                          <NA>   62.500000   750.00000
## 1959 head                            yes  129.166672  1550.00000
## 1960 grandchild                      yes  129.166672  1550.00000
## 1961 head                            yes  812.222229  9746.66699
## 1962 spouse/partner                  yes  812.222229  9746.66699
## 1963 child                           yes  812.222229  9746.66699
## 1964 head                            yes  411.111115  4933.33350
## 1965 spouse/partner                  yes  411.111115  4933.33350
## 1966 child                          <NA>  411.111115  4933.33350
## 1967 head                            yes  202.000000  2424.00000
## 1968 head                            yes  266.666656  3200.00000
## 1969 spouse/partner                  yes  266.666656  3200.00000
## 1970 head                            yes  170.000000  2040.00000
## 1971 spouse/partner                  yes  170.000000  2040.00000
## 1972 child                            no  170.000000  2040.00000
## 1973 child                          <NA>  170.000000  2040.00000
## 1974 head                            yes  215.833328  2590.00000
## 1975 head                            yes  150.000000  1800.00000
## 1976 head                            yes  132.666672  1592.00000
## 1977 head                            yes  154.888901  1858.66675
## 1978 spouse/partner                  yes  154.888901  1858.66675
## 1979 child                          <NA>  154.888901  1858.66675
## 1980 head                            yes  271.000000  3252.00000
## 1981 head                            yes  120.000000  1440.00000
## 1982 head                            yes  100.000000  1200.00000
## 1983 spouse/partner                  yes  100.000000  1200.00000
## 1984 child                           yes  100.000000  1200.00000
## 1985 parent, parent-in-law           yes  100.000000  1200.00000
## 1986 head                            yes  150.000000  1800.00000
## 1987 spouse/partner                  yes  150.000000  1800.00000
## 1988 child                          <NA>  150.000000  1800.00000
## 1989 head                            yes  172.500000  2070.00000
## 1990 child                           yes  172.500000  2070.00000
## 1991 son/daughter-in-law             yes  172.500000  2070.00000
## 1992 grandchild                     <NA>  172.500000  2070.00000
## 1993 head                            yes  671.388855  8056.66602
## 1994 spouse/partner                  yes  671.388855  8056.66602
## 1995 child                          <NA>  671.388855  8056.66602
## 1996 head                            yes  107.500000  1290.00000
## 1997 spouse/partner                  yes  107.500000  1290.00000
## 1998 head                            yes  143.500000  1722.00000
## 1999 head                            yes  192.000000  2304.00000
## 2000 spouse/partner                  yes  192.000000  2304.00000
## 2001 head                            yes  154.000000  1848.00000
## 2002 head                            yes  137.000000  1644.00000
## 2003 head                            yes   51.750000   621.00000
## 2004 spouse/partner                  yes   51.750000   621.00000
## 2005 child                           yes   51.750000   621.00000
## 2006 child                           yes   51.750000   621.00000
## 2007 head                            yes   93.125000  1117.50000
## 2008 spouse/partner                  yes   93.125000  1117.50000
## 2009 child                           yes   93.125000  1117.50000
## 2010 parent, parent-in-law            no   93.125000  1117.50000
## 2011 head                            yes  188.333328  2260.00000
## 2012 head                            yes  432.291687  5187.50000
## 2013 spouse/partner                  yes  432.291687  5187.50000
## 2014 child                           yes  432.291687  5187.50000
## 2015 child                           yes  432.291687  5187.50000
## 2016 head                            yes  124.444450  1493.33337
## 2017 spouse/partner                  yes  124.444450  1493.33337
## 2018 child                           yes  124.444450  1493.33337
## 2019 head                            yes  113.111115  1357.33337
## 2020 spouse/partner                  yes  113.111115  1357.33337
## 2021 child                           yes  113.111115  1357.33337
## 2022 head                            yes  347.916656  4175.00000
## 2023 spouse/partner                  yes  347.916656  4175.00000
## 2024 child                           yes  347.916656  4175.00000
## 2025 child                           yes  347.916656  4175.00000
## 2026 head                            yes  280.000000  3360.00000
## 2027 head                            yes  181.500000  2178.00000
## 2028 child                           yes  181.500000  2178.00000
## 2029 head                            yes  106.875000  1282.50000
## 2030 spouse/partner                  yes  106.875000  1282.50000
## 2031 child                           yes  106.875000  1282.50000
## 2032 child                           yes  106.875000  1282.50000
## 2033 head                            yes  140.416672  1685.00000
## 2034 spouse/partner                  yes  140.416672  1685.00000
## 2035 child                           yes  140.416672  1685.00000
## 2036 child                          <NA>  140.416672  1685.00000
## 2037 head                            yes  173.100006  2077.20020
## 2038 spouse/partner                  yes  173.100006  2077.20020
## 2039 child                           yes  173.100006  2077.20020
## 2040 son/daughter-in-law             yes  173.100006  2077.20020
## 2041 grandchild                      yes  173.100006  2077.20020
## 2042 head                            yes  256.250000  3075.00000
## 2043 spouse/partner                  yes  256.250000  3075.00000
## 2044 parent, parent-in-law           yes  256.250000  3075.00000
## 2045 child                           yes  256.250000  3075.00000
## 2046 head                            yes  283.333344  3400.00000
## 2047 spouse/partner                  yes  283.333344  3400.00000
## 2048 child                           yes  283.333344  3400.00000
## 2049 head                            yes  120.000000  1440.00000
## 2050 head                            yes  141.777786  1701.33350
## 2051 spouse/partner                  yes  141.777786  1701.33350
## 2052 child                           yes  141.777786  1701.33350
## 2053 head                            yes  380.555542  4566.66650
## 2054 spouse/partner                  yes  380.555542  4566.66650
## 2055 child                           yes  380.555542  4566.66650
## 2056 head                            yes  158.000000  1896.00000
## 2057 spouse/partner                  yes  158.000000  1896.00000
## 2058 head                            yes  462.916656  5555.00000
## 2059 spouse/partner                  yes  462.916656  5555.00000
## 2060 head                            yes  158.833328  1906.00000
## 2061 spouse/partner                  yes  158.833328  1906.00000
## 2062 head                            yes  229.166656  2750.00000
## 2063 child                           yes  229.166656  2750.00000
## 2064 son/daughter-in-law             yes  229.166656  2750.00000
## 2065 grandchild                      yes  229.166656  2750.00000
## 2066 head                            yes  200.000000  2400.00000
## 2067 spouse/partner                  yes  200.000000  2400.00000
## 2068 child                           yes  200.000000  2400.00000
## 2069 head                            yes  161.750000  1941.00000
## 2070 spouse/partner                  yes  161.750000  1941.00000
## 2071 child                           yes  161.750000  1941.00000
## 2072 grandchild                      yes  161.750000  1941.00000
## 2073 head                            yes  300.000000  3600.00000
## 2074 head                             no  647.733337  7772.79980
## 2075 spouse/partner                  yes  647.733337  7772.79980
## 2076 child                           yes  647.733337  7772.79980
## 2077 son/daughter-in-law             yes  647.733337  7772.79980
## 2078 grandchild                     <NA>  647.733337  7772.79980
## 2079 head                            yes  155.527786  1866.33350
## 2080 spouse/partner                  yes  155.527786  1866.33350
## 2081 parent, parent-in-law           yes  155.527786  1866.33350
## 2082 head                            yes  142.500000  1710.00000
## 2083 spouse/partner                  yes  142.500000  1710.00000
## 2084 head                            yes  505.833344  6070.00000
## 2085 parent, parent-in-law           yes  505.833344  6070.00000
## 2086 head                            yes  272.166656  3266.00000
## 2087 spouse/partner                  yes  272.166656  3266.00000
## 2088 head                            yes  110.833336  1330.00000
## 2089 head                            yes  313.888885  3766.66650
## 2090 spouse/partner                  yes  313.888885  3766.66650
## 2091 child                           yes  313.888885  3766.66650
## 2092 head                            yes  238.229172  2858.75000
## 2093 spouse/partner                  yes  238.229172  2858.75000
## 2094 child                           yes  238.229172  2858.75000
## 2095 child                          <NA>  238.229172  2858.75000
## 2096 head                            yes  147.083328  1765.00000
## 2097 spouse/partner                  yes  147.083328  1765.00000
## 2098 child                           yes  147.083328  1765.00000
## 2099 parent, parent-in-law            no  147.083328  1765.00000
## 2100 head                            yes  139.375000  1672.50000
## 2101 spouse/partner                  yes  139.375000  1672.50000
## 2102 head                            yes  175.888901  2110.66675
## 2103 spouse/partner                  yes  175.888901  2110.66675
## 2104 child                           yes  175.888901  2110.66675
## 2105 child                           yes  175.888901  2110.66675
## 2106 parent, parent-in-law           yes  175.888901  2110.66675
## 2107 parent, parent-in-law           yes  175.888901  2110.66675
## 2108 head                            yes  265.444427  3185.33301
## 2109 spouse/partner                  yes  265.444427  3185.33301
## 2110 parent, parent-in-law           yes  265.444427  3185.33301
## 2111 head                             no   96.666664  1160.00000
## 2112 child                           yes   96.666664  1160.00000
## 2113 child                           yes   96.666664  1160.00000
## 2114 head                            yes  120.000000  1440.00000
## 2115 head                            yes  278.333344  3340.00000
## 2116 spouse/partner                  yes  278.333344  3340.00000
## 2117 child                           yes  278.333344  3340.00000
## 2118 head                            yes   93.333336  1120.00000
## 2119 child                           yes   93.333336  1120.00000
## 2120 grandchild                      yes   93.333336  1120.00000
## 2121 head                            yes  121.166664  1454.00000
## 2122 spouse/partner                  yes  121.166664  1454.00000
## 2123 head                            yes  519.583313  6235.00000
## 2124 spouse/partner                  yes  519.583313  6235.00000
## 2125 head                            yes  160.916672  1931.00000
## 2126 spouse/partner                  yes  160.916672  1931.00000
## 2127 head                            yes    0.000000     0.00000
## 2128 spouse/partner                  yes    0.000000     0.00000
## 2129 head                            yes  100.000000  1200.00000
## 2130 spouse/partner                  yes  100.000000  1200.00000
## 2131 child                          <NA>  100.000000  1200.00000
## 2132 other relative                  yes  100.000000  1200.00000
## 2133 head                            yes  234.000000  2808.00000
## 2134 spouse/partner                  yes  234.000000  2808.00000
## 2135 child                           yes  234.000000  2808.00000
## 2136 head                            yes  315.833344  3790.00000
## 2137 spouse/partner                  yes  315.833344  3790.00000
## 2138 child                           yes  315.833344  3790.00000
## 2139 head                            yes  142.291656  1707.49988
## 2140 spouse/partner                  yes  142.291656  1707.49988
## 2141 head                            yes  162.222214  1946.66650
## 2142 spouse/partner                  yes  162.222214  1946.66650
## 2143 parent, parent-in-law           yes  162.222214  1946.66650
## 2144 head                            yes  102.500000  1230.00000
## 2145 spouse/partner                  yes  102.500000  1230.00000
## 2146 child                           yes  102.500000  1230.00000
## 2147 parent, parent-in-law           yes  102.500000  1230.00000
## 2148 head                            yes  246.666672  2960.00000
## 2149 spouse/partner                  yes  246.666672  2960.00000
## 2150 child                           yes  246.666672  2960.00000
## 2151 head                            yes   50.000000   600.00000
## 2152 parent, parent-in-law           yes   50.000000   600.00000
## 2153 head                            yes  135.000000  1620.00000
## 2154 spouse/partner                  yes  135.000000  1620.00000
## 2155 child                           yes  135.000000  1620.00000
## 2156 child                           yes  135.000000  1620.00000
## 2157 head                            yes  333.258331  3999.10010
## 2158 spouse/partner                  yes  333.258331  3999.10010
## 2159 child                           yes  333.258331  3999.10010
## 2160 child                           yes  333.258331  3999.10010
## 2161 child                          <NA>  333.258331  3999.10010
## 2162 head                            yes  112.694450  1352.33337
## 2163 child                           yes  112.694450  1352.33337
## 2164 child                           yes  112.694450  1352.33337
## 2165 head                            yes   92.500000  1110.00000
## 2166 child                          <NA>   92.500000  1110.00000
## 2167 head                            yes  232.729172  2792.75000
## 2168 spouse/partner                  yes  232.729172  2792.75000
## 2169 child                           yes  232.729172  2792.75000
## 2170 parent, parent-in-law            no  232.729172  2792.75000
## 2171 head                            yes  248.958328  2987.50000
## 2172 spouse/partner                  yes  248.958328  2987.50000
## 2173 child                           yes  248.958328  2987.50000
## 2174 parent, parent-in-law            no  248.958328  2987.50000
## 2175 head                            yes  283.333344  3400.00000
## 2176 spouse/partner                  yes  283.333344  3400.00000
## 2177 child                           yes  283.333344  3400.00000
## 2178 head                            yes  838.583313 10063.00000
## 2179 spouse/partner                  yes  838.583313 10063.00000
## 2180 head                            yes   37.380951   448.57141
## 2181 spouse/partner                  yes   37.380951   448.57141
## 2182 child                           yes   37.380951   448.57141
## 2183 child                           yes   37.380951   448.57141
## 2184 child                          <NA>   37.380951   448.57141
## 2185 parent, parent-in-law            no   37.380951   448.57141
## 2186 other relative                  yes   37.380951   448.57141
## 2187 head                            yes  195.000000  2340.00000
## 2188 spouse/partner                  yes  195.000000  2340.00000
## 2189 head                            yes  420.369049  5044.42871
## 2190 spouse/partner                  yes  420.369049  5044.42871
## 2191 child                           yes  420.369049  5044.42871
## 2192 son/daughter-in-law             yes  420.369049  5044.42871
## 2193 grandchild                     <NA>  420.369049  5044.42871
## 2194 grandchild                     <NA>  420.369049  5044.42871
## 2195 parent, parent-in-law            no  420.369049  5044.42871
## 2196 head                            yes  255.583328  3067.00000
## 2197 spouse/partner                  yes  255.583328  3067.00000
## 2198 child                           yes  255.583328  3067.00000
## 2199 child                           yes  255.583328  3067.00000
## 2200 head                            yes  295.733337  3548.80005
## 2201 spouse/partner                  yes  295.733337  3548.80005
## 2202 son/daughter-in-law             yes  295.733337  3548.80005
## 2203 child                           yes  295.733337  3548.80005
## 2204 grandchild                     <NA>  295.733337  3548.80005
## 2205 head                            yes  149.033340  1788.40015
## 2206 spouse/partner                  yes  149.033340  1788.40015
## 2207 child                           yes  149.033340  1788.40015
## 2208 child                           yes  149.033340  1788.40015
## 2209 parent, parent-in-law           yes  149.033340  1788.40015
## 2210 head                            yes   66.000000   792.00000
## 2211 child                           yes   66.000000   792.00000
## 2212 son/daughter-in-law             yes   66.000000   792.00000
## 2213 grandchild                      yes   66.000000   792.00000
## 2214 grandchild                     <NA>   66.000000   792.00000
## 2215 head                            yes    3.333333    40.00000
## 2216 spouse/partner                  yes    3.333333    40.00000
## 2217 child                           yes    3.333333    40.00000
## 2218 child                           yes    3.333333    40.00000
## 2219 head                            yes  126.000000  1512.00000
## 2220 spouse/partner                  yes  126.000000  1512.00000
## 2221 head                            yes  121.583336  1459.00000
## 2222 spouse/partner                  yes  121.583336  1459.00000
## 2223 child                           yes  121.583336  1459.00000
## 2224 child                           yes  121.583336  1459.00000
## 2225 head                            yes  596.183350  7154.20020
## 2226 spouse/partner                  yes  596.183350  7154.20020
## 2227 child                           yes  596.183350  7154.20020
## 2228 head                            yes  597.111145  7165.33398
## 2229 spouse/partner                  yes  597.111145  7165.33398
## 2230 child                          <NA>  597.111145  7165.33398
## 2231 head                            yes   77.666664   932.00000
## 2232 spouse/partner                  yes   77.666664   932.00000
## 2233 head                            yes  246.000000  2952.00000
## 2234 head                            yes   36.000000   432.00000
## 2235 spouse/partner                  yes   36.000000   432.00000
## 2236 head                            yes  189.583328  2275.00000
## 2237 child                           yes  189.583328  2275.00000
## 2238 child                           yes  189.583328  2275.00000
## 2239 head                            yes  270.833344  3250.00000
## 2240 spouse/partner                  yes  270.833344  3250.00000
## 2241 child                           yes  270.833344  3250.00000
## 2242 head                            yes 1087.333374 13048.00000
## 2243 spouse/partner                  yes 1087.333374 13048.00000
## 2244 head                            yes  233.125000  2797.50000
## 2245 spouse/partner                  yes  233.125000  2797.50000
## 2246 child                           yes  233.125000  2797.50000
## 2247 child                           yes  233.125000  2797.50000
## 2248 head                            yes  138.500000  1662.00000
## 2249 spouse/partner                  yes  138.500000  1662.00000
## 2250 head                            yes  338.888885  4066.66650
## 2251 spouse/partner                  yes  338.888885  4066.66650
## 2252 child                           yes  338.888885  4066.66650
## 2253 head                            yes  103.625000  1243.50000
## 2254 spouse/partner                   no  103.625000  1243.50000
## 2255 head                            yes  522.000000  6264.00000
## 2256 spouse/partner                  yes  522.000000  6264.00000
## 2257 child                           yes  522.000000  6264.00000
## 2258 child                           yes  522.000000  6264.00000
## 2259 head                            yes  100.000000  1200.00000
## 2260 child                           yes  100.000000  1200.00000
## 2261 child                           yes  100.000000  1200.00000
## 2262 head                            yes  162.777786  1953.33350
## 2263 spouse/partner                  yes  162.777786  1953.33350
## 2264 child                           yes  162.777786  1953.33350
## 2265 head                            yes  112.916664  1355.00000
## 2266 head                            yes  159.222214  1910.66650
## 2267 spouse/partner                  yes  159.222214  1910.66650
## 2268 child                           yes  159.222214  1910.66650
## 2269 child                           yes  159.222214  1910.66650
## 2270 parent, parent-in-law           yes  159.222214  1910.66650
## 2271 other relative                  yes  159.222214  1910.66650
## 2272 head                            yes  100.833328  1210.00000
## 2273 spouse/partner                  yes  100.833328  1210.00000
## 2274 head                            yes   43.611111   523.33331
## 2275 spouse/partner                  yes   43.611111   523.33331
## 2276 child                           yes   43.611111   523.33331
## 2277 child                           yes   43.611111   523.33331
## 2278 child                           yes   43.611111   523.33331
## 2279 child                          <NA>   43.611111   523.33331
## 2280 head                            yes   62.200001   746.40002
## 2281 child                           yes   62.200001   746.40002
## 2282 grandchild                     <NA>   62.200001   746.40002
## 2283 grandchild                      yes   62.200001   746.40002
## 2284 grandchild                     <NA>   62.200001   746.40002
## 2285 head                            yes  396.444458  4757.33350
## 2286 spouse/partner                  yes  396.444458  4757.33350
## 2287 child                          <NA>  396.444458  4757.33350
## 2288 head                            yes  165.000000  1980.00000
## 2289 child                           yes  165.000000  1980.00000
## 2290 head                            yes  106.666664  1280.00000
## 2291 spouse/partner                  yes  106.666664  1280.00000
## 2292 parent, parent-in-law           yes  106.666664  1280.00000
## 2293 head                            yes  100.000000  1200.00000
## 2294 spouse/partner                  yes  100.000000  1200.00000
## 2295 child                           yes  100.000000  1200.00000
## 2296 child                           yes  100.000000  1200.00000
## 2297 head                            yes  316.666656  3800.00000
## 2298 spouse/partner                  yes  316.666656  3800.00000
## 2299 child                           yes  316.666656  3800.00000
## 2300 head                            yes  175.000000  2100.00000
## 2301 spouse/partner                  yes  175.000000  2100.00000
## 2302 child                           yes  175.000000  2100.00000
## 2303 parent, parent-in-law           yes  175.000000  2100.00000
## 2304 parent, parent-in-law           yes  175.000000  2100.00000
## 2305 head                            yes  238.333328  2860.00000
## 2306 parent, parent-in-law           yes  238.333328  2860.00000
## 2307 head                            yes  224.166672  2690.00000
## 2308 spouse/partner                  yes  224.166672  2690.00000
## 2309 child                           yes  224.166672  2690.00000
## 2310 child                           yes  224.166672  2690.00000
## 2311 head                            yes   30.444443   365.33331
## 2312 spouse/partner                  yes   30.444443   365.33331
## 2313 child                          <NA>   30.444443   365.33331
## 2314 head                            yes  287.500000  3450.00000
## 2315 spouse/partner                  yes  287.500000  3450.00000
## 2316 child                           yes  287.500000  3450.00000
## 2317 child                           yes  287.500000  3450.00000
## 2318 head                            yes  159.708328  1916.50000
## 2319 spouse/partner                  yes  159.708328  1916.50000
## 2320 child                          <NA>  159.708328  1916.50000
## 2321 parent, parent-in-law           yes  159.708328  1916.50000
## 2322 head                            yes  333.666656  4004.00000
## 2323 spouse/partner                  yes  333.666656  4004.00000
## 2324 child                           yes  333.666656  4004.00000
## 2325 parent, parent-in-law           yes  333.666656  4004.00000
## 2326 head                            yes  190.500000  2286.00000
## 2327 head                            yes  133.500000  1602.00000
## 2328 spouse/partner                  yes  133.500000  1602.00000
## 2329 head                            yes   38.750000   465.00000
## 2330 spouse/partner                   no   38.750000   465.00000
## 2331 child                          <NA>   38.750000   465.00000
## 2332 child                          <NA>   38.750000   465.00000
## 2333 head                            yes  275.000000  3300.00000
## 2334 child                           yes  275.000000  3300.00000
## 2335 head                            yes  325.000000  3900.00000
## 2336 head                            yes  133.333328  1600.00000
## 2337 head                            yes  198.333328  2380.00000
## 2338 head                            yes  181.072922  2172.87500
## 2339 spouse/partner                  yes  181.072922  2172.87500
## 2340 child                           yes  181.072922  2172.87500
## 2341 child                           yes  181.072922  2172.87500
## 2342 head                            yes  170.416672  2045.00000
## 2343 spouse/partner                  yes  170.416672  2045.00000
## 2344 child                           yes  170.416672  2045.00000
## 2345 parent, parent-in-law           yes  170.416672  2045.00000
## 2346 head                            yes  191.666672  2300.00000
## 2347 spouse/partner                  yes  191.666672  2300.00000
## 2348 child                           yes  191.666672  2300.00000
## 2349 head                            yes  163.666672  1964.00000
## 2350 head                            yes  225.375000  2704.50000
## 2351 spouse/partner                  yes  225.375000  2704.50000
## 2352 child                           yes  225.375000  2704.50000
## 2353 grandchild                     <NA>  225.375000  2704.50000
## 2354 head                            yes  369.444458  4433.33350
## 2355 spouse/partner                  yes  369.444458  4433.33350
## 2356 child                           yes  369.444458  4433.33350
## 2357 head                            yes  149.000000  1788.00000
## 2358 spouse/partner                   no  149.000000  1788.00000
## 2359 head                            yes  160.416672  1925.00000
## 2360 spouse/partner                  yes  160.416672  1925.00000
## 2361 child                           yes  160.416672  1925.00000
## 2362 child                           yes  160.416672  1925.00000
## 2363 head                            yes   61.250000   735.00000
## 2364 spouse/partner                  yes   61.250000   735.00000
## 2365 head                            yes  326.000000  3912.00000
## 2366 spouse/partner                  yes  326.000000  3912.00000
## 2367 head                            yes  428.333344  5140.00000
## 2368 spouse/partner                  yes  428.333344  5140.00000
## 2369 child                           yes  428.333344  5140.00000
## 2370 head                            yes  168.666672  2024.00000
## 2371 spouse/partner                  yes  168.666672  2024.00000
## 2372 child                           yes  168.666672  2024.00000
## 2373 head                            yes  253.555557  3042.66675
## 2374 spouse/partner                  yes  253.555557  3042.66675
## 2375 child                           yes  253.555557  3042.66675
## 2376 child                           yes  253.555557  3042.66675
## 2377 parent, parent-in-law           yes  253.555557  3042.66675
## 2378 parent, parent-in-law           yes  253.555557  3042.66675
## 2379 head                            yes  232.750000  2793.00000
## 2380 spouse/partner                  yes  232.750000  2793.00000
## 2381 head                            yes  186.866669  2242.39990
## 2382 spouse/partner                  yes  186.866669  2242.39990
## 2383 child                           yes  186.866669  2242.39990
## 2384 child                           yes  186.866669  2242.39990
## 2385 parent, parent-in-law            no  186.866669  2242.39990
## 2386 head                            yes  107.000000  1284.00000
## 2387 spouse/partner                  yes  107.000000  1284.00000
## 2388 head                            yes  363.750000  4365.00000
## 2389 spouse/partner                  yes  363.750000  4365.00000
## 2390 child                           yes  363.750000  4365.00000
## 2391 son/daughter-in-law             yes  363.750000  4365.00000
## 2392 head                            yes  243.500000  2922.00000
## 2393 child                           yes  243.500000  2922.00000
## 2394 head                            yes  188.833328  2266.00000
## 2395 child                           yes  188.833328  2266.00000
## 2396 head                            yes  111.000000  1332.00000
## 2397 spouse/partner                  yes  111.000000  1332.00000
## 2398 head                            yes  105.833336  1270.00000
## 2399 son/daughter-in-law             yes  105.833336  1270.00000
## 2400 grandchild                      yes  105.833336  1270.00000
## 2401 other relative                  yes  105.833336  1270.00000
## 2402 other relative                 <NA>  105.833336  1270.00000
## 2403 head                            yes  136.199997  1634.39990
## 2404 son/daughter-in-law             yes  136.199997  1634.39990
## 2405 child                           yes  136.199997  1634.39990
## 2406 grandchild                      yes  136.199997  1634.39990
## 2407 grandchild                     <NA>  136.199997  1634.39990
## 2408 head                            yes  105.166664  1262.00000
## 2409 other relative                  yes  105.166664  1262.00000
## 2410 head                             no   25.000000   300.00000
## 2411 child                           yes   25.000000   300.00000
## 2412 head                            yes   80.000000   960.00000
## 2413 head                            yes  324.444427  3893.33301
## 2414 spouse/partner                  yes  324.444427  3893.33301
## 2415 child                           yes  324.444427  3893.33301
## 2416 head                            yes  175.000000  2100.00000
## 2417 son/daughter-in-law             yes  175.000000  2100.00000
## 2418 child                           yes  175.000000  2100.00000
## 2419 grandchild                     <NA>  175.000000  2100.00000
## 2420 head                            yes  198.687500  2384.25000
## 2421 spouse/partner                  yes  198.687500  2384.25000
## 2422 child                           yes  198.687500  2384.25000
## 2423 child                           yes  198.687500  2384.25000
## 2424 head                            yes  120.833336  1450.00000
## 2425 head                            yes  506.666687  6080.00000
## 2426 head                            yes  185.000000  2220.00000
## 2427 spouse/partner                  yes  185.000000  2220.00000
## 2428 head                            yes  326.666656  3920.00000
## 2429 spouse/partner                  yes  326.666656  3920.00000
## 2430 child                           yes  326.666656  3920.00000
## 2431 head                            yes  290.000000  3480.00000
## 2432 spouse/partner                  yes  290.000000  3480.00000
## 2433 head                            yes   16.666666   200.00000
## 2434 head                            yes  205.000000  2460.00000
## 2435 other relative                  yes  205.000000  2460.00000
## 2436 head                            yes  205.000000  2460.00000
## 2437 head                            yes  206.666656  2480.00000
## 2438 spouse/partner                  yes  206.666656  2480.00000
## 2439 head                            yes  182.333328  2188.00000
## 2440 head                            yes   74.666664   896.00000
## 2441 child                           yes   74.666664   896.00000
## 2442 son/daughter-in-law             yes   74.666664   896.00000
## 2443 grandchild                      yes   74.666664   896.00000
## 2444 grandchild                      yes   74.666664   896.00000
## 2445 grandchild                     <NA>   74.666664   896.00000
## 2446 head                            yes  103.199997  1238.39990
## 2447 child                           yes  103.199997  1238.39990
## 2448 son/daughter-in-law             yes  103.199997  1238.39990
## 2449 grandchild                     <NA>  103.199997  1238.39990
## 2450 grandchild                     <NA>  103.199997  1238.39990
## 2451 head                            yes  180.000000  2160.00000
## 2452 spouse/partner                  yes  180.000000  2160.00000
## 2453 head                            yes  130.000000  1560.00000
## 2454 head                            yes   72.833336   874.00000
## 2455 spouse/partner                  yes   72.833336   874.00000
## 2456 child                           yes   72.833336   874.00000
## 2457 head                            yes  344.500000  4134.00000
## 2458 spouse/partner                  yes  344.500000  4134.00000
## 2459 head                            yes  240.000000  2880.00000
## 2460 spouse/partner                  yes  240.000000  2880.00000
## 2461 head                            yes  132.833328  1594.00000
## 2462 parent, parent-in-law            no  132.833328  1594.00000
## 2463 head                            yes   65.000000   780.00000
## 2464 spouse/partner                  yes   65.000000   780.00000
## 2465 head                            yes  251.000000  3012.00000
## 2466 head                            yes  123.000000  1476.00000
## 2467 head                            yes  591.666687  7100.00000
## 2468 spouse/partner                  yes  591.666687  7100.00000
## 2469 head                            yes  218.000000  2616.00000
## 2470 spouse/partner                  yes  218.000000  2616.00000
## 2471 parent, parent-in-law           yes  218.000000  2616.00000
## 2472 child                           yes  218.000000  2616.00000
## 2473 head                            yes  126.250000  1515.00000
## 2474 spouse/partner                  yes  126.250000  1515.00000
## 2475 head                            yes   90.000000  1080.00000
## 2476 spouse/partner                  yes   90.000000  1080.00000
## 2477 head                            yes  377.777802  4533.33350
## 2478 spouse/partner                  yes  377.777802  4533.33350
## 2479 child                           yes  377.777802  4533.33350
## 2480 head                            yes  385.000000  4620.00000
## 2481 head                            yes  276.944427  3323.33301
## 2482 spouse/partner                  yes  276.944427  3323.33301
## 2483 child                          <NA>  276.944427  3323.33301
## 2484 head                            yes  147.916672  1775.00000
## 2485 spouse/partner                  yes  147.916672  1775.00000
## 2486 head                            yes  207.600006  2491.20020
## 2487 spouse/partner                  yes  207.600006  2491.20020
## 2488 child                           yes  207.600006  2491.20020
## 2489 son/daughter-in-law             yes  207.600006  2491.20020
## 2490 grandchild                      yes  207.600006  2491.20020
## 2491 head                            yes  293.333344  3520.00000
## 2492 spouse/partner                  yes  293.333344  3520.00000
## 2493 child                           yes  293.333344  3520.00000
## 2494 head                            yes   98.699997  1184.39990
## 2495 spouse/partner                  yes   98.699997  1184.39990
## 2496 child                           yes   98.699997  1184.39990
## 2497 child                           yes   98.699997  1184.39990
## 2498 parent, parent-in-law           yes   98.699997  1184.39990
## 2499 head                            yes  173.666672  2084.00000
## 2500 spouse/partner                  yes  173.666672  2084.00000
## 2501 child                          <NA>  173.666672  2084.00000
## 2502 child                          <NA>  173.666672  2084.00000
## 2503 head                            yes  277.777771  3333.33325
## 2504 spouse/partner                  yes  277.777771  3333.33325
## 2505 child                          <NA>  277.777771  3333.33325
## 2506 head                            yes  295.000000  3540.00000
## 2507 spouse/partner                  yes  295.000000  3540.00000
## 2508 head                            yes  174.166672  2090.00000
## 2509 spouse/partner                  yes  174.166672  2090.00000
## 2510 head                            yes  141.666672  1700.00000
## 2511 spouse/partner                  yes  141.666672  1700.00000
## 2512 head                            yes  224.870377  2698.44458
## 2513 spouse/partner                  yes  224.870377  2698.44458
## 2514 child                           yes  224.870377  2698.44458
## 2515 son/daughter-in-law             yes  224.870377  2698.44458
## 2516 child                           yes  224.870377  2698.44458
## 2517 parent, parent-in-law           yes  224.870377  2698.44458
## 2518 parent, parent-in-law           yes  224.870377  2698.44458
## 2519 grandchild                     <NA>  224.870377  2698.44458
## 2520 grandchild                     <NA>  224.870377  2698.44458
## 2521 head                            yes  280.000000  3360.00000
## 2522 spouse/partner                  yes  280.000000  3360.00000
## 2523 child                           yes  280.000000  3360.00000
## 2524 child                           yes  280.000000  3360.00000
## 2525 son/daughter-in-law             yes  280.000000  3360.00000
## 2526 head                            yes  368.333344  4420.00000
## 2527 spouse/partner                  yes  368.333344  4420.00000
## 2528 child                           yes  368.333344  4420.00000
## 2529 son/daughter-in-law             yes  368.333344  4420.00000
## 2530 grandchild                     <NA>  368.333344  4420.00000
## 2531 head                            yes  143.555557  1722.66675
## 2532 spouse/partner                 <NA>  143.555557  1722.66675
## 2533 child                           yes  143.555557  1722.66675
## 2534 child                           yes  143.555557  1722.66675
## 2535 son/daughter-in-law             yes  143.555557  1722.66675
## 2536 child                          <NA>  143.555557  1722.66675
## 2537 head                            yes  551.166687  6614.00000
## 2538 head                            yes  460.000000  5520.00000
## 2539 spouse/partner                  yes  460.000000  5520.00000
## 2540 child                           yes  460.000000  5520.00000
## 2541 head                            yes  123.333336  1480.00000
## 2542 head                            yes   82.000000   984.00000
## 2543 head                            yes  302.666656  3632.00000
## 2544 spouse/partner                  yes  302.666656  3632.00000
## 2545 child                           yes  302.666656  3632.00000
## 2546 head                            yes  418.750000  5025.00000
## 2547 spouse/partner                  yes  418.750000  5025.00000
## 2548 head                            yes  519.166687  6230.00000
## 2549 spouse/partner                  yes  519.166687  6230.00000
## 2550 head                            yes  250.750000  3009.00000
## 2551 spouse/partner                  yes  250.750000  3009.00000
## 2552 child                           yes  250.750000  3009.00000
## 2553 parent, parent-in-law           yes  250.750000  3009.00000
## 2554 head                            yes  280.555573  3366.66699
## 2555 spouse/partner                  yes  280.555573  3366.66699
## 2556 child                           yes  280.555573  3366.66699
## 2557 head                            yes  192.111099  2305.33325
## 2558 parent, parent-in-law           yes  192.111099  2305.33325
## 2559 child                           yes  192.111099  2305.33325
## 2560 head                            yes  120.500000  1446.00000
## 2561 spouse/partner                  yes  120.500000  1446.00000
## 2562 head                            yes  107.500000  1290.00000
## 2563 spouse/partner                  yes  107.500000  1290.00000
## 2564 head                            yes  150.000000  1800.00000
## 2565 spouse/partner                  yes  150.000000  1800.00000
## 2566 head                            yes  148.000000  1776.00000
## 2567 spouse/partner                  yes  148.000000  1776.00000
## 2568 head                            yes  205.555557  2466.66675
## 2569 spouse/partner                  yes  205.555557  2466.66675
## 2570 child                           yes  205.555557  2466.66675
## 2571 head                            yes  192.500000  2310.00000
## 2572 spouse/partner                  yes  192.500000  2310.00000
## 2573 head                            yes  351.312500  4215.75000
## 2574 spouse/partner                  yes  351.312500  4215.75000
## 2575 child                           yes  351.312500  4215.75000
## 2576 parent, parent-in-law           yes  351.312500  4215.75000
## 2577 head                            yes   66.666664   800.00000
## 2578 spouse/partner                  yes   66.666664   800.00000
## 2579 child                           yes   66.666664   800.00000
## 2580 head                            yes  549.444458  6593.33350
## 2581 spouse/partner                  yes  549.444458  6593.33350
## 2582 parent, parent-in-law           yes  549.444458  6593.33350
## 2583 head                            yes   72.199997   866.39996
## 2584 spouse/partner                  yes   72.199997   866.39996
## 2585 child                           yes   72.199997   866.39996
## 2586 child                           yes   72.199997   866.39996
## 2587 child                           yes   72.199997   866.39996
## 2588 head                            yes  428.333344  5140.00000
## 2589 head                            yes   72.166664   866.00000
## 2590 child                           yes   72.166664   866.00000
## 2591 head                            yes  118.333336  1420.00000
## 2592 spouse/partner                  yes  118.333336  1420.00000
## 2593 head                            yes  461.111115  5533.33350
## 2594 child                           yes  461.111115  5533.33350
## 2595 child                           yes  461.111115  5533.33350
## 2596 head                            yes  223.333328  2680.00000
## 2597 spouse/partner                  yes  223.333328  2680.00000
## 2598 head                            yes  290.000000  3480.00000
## 2599 spouse/partner                  yes  290.000000  3480.00000
## 2600 head                            yes  132.000000  1584.00000
## 2601 child                           yes  132.000000  1584.00000
## 2602 head                            yes  142.966660  1715.59985
## 2603 spouse/partner                  yes  142.966660  1715.59985
## 2604 child                           yes  142.966660  1715.59985
## 2605 child                           yes  142.966660  1715.59985
## 2606 parent, parent-in-law           yes  142.966660  1715.59985
## 2607 head                            yes   54.000000   648.00000
## 2608 spouse/partner                  yes   54.000000   648.00000
## 2609 head                            yes  144.333328  1732.00000
## 2610 spouse/partner                  yes  144.333328  1732.00000
## 2611 head                            yes  120.000000  1440.00000
## 2612 head                            yes  180.555557  2166.66675
## 2613 spouse/partner                  yes  180.555557  2166.66675
## 2614 child                           yes  180.555557  2166.66675
## 2615 head                            yes  116.666664  1400.00000
## 2616 spouse/partner                  yes  116.666664  1400.00000
## 2617 child                           yes  116.666664  1400.00000
## 2618 head                            yes    0.000000     0.00000
## 2619 spouse/partner                  yes    0.000000     0.00000
## 2620 child                           yes    0.000000     0.00000
## 2621 child                           yes    0.000000     0.00000
## 2622 head                            yes  192.111099  2305.33325
## 2623 spouse/partner                  yes  192.111099  2305.33325
## 2624 child                          <NA>  192.111099  2305.33325
## 2625 head                            yes   92.500000  1110.00000
## 2626 head                            yes  150.000000  1800.00000
## 2627 spouse/partner                  yes  150.000000  1800.00000
## 2628 head                            yes  607.777771  7293.33301
## 2629 spouse/partner                  yes  607.777771  7293.33301
## 2630 child                           yes  607.777771  7293.33301
## 2631 head                            yes  104.027779  1248.33337
## 2632 spouse/partner                  yes  104.027779  1248.33337
## 2633 child                           yes  104.027779  1248.33337
## 2634 son/daughter-in-law             yes  104.027779  1248.33337
## 2635 grandchild                      yes  104.027779  1248.33337
## 2636 grandchild                      yes  104.027779  1248.33337
## 2637 head                            yes  185.541656  2226.50000
## 2638 spouse/partner                  yes  185.541656  2226.50000
## 2639 child                           yes  185.541656  2226.50000
## 2640 parent, parent-in-law           yes  185.541656  2226.50000
## 2641 head                            yes  376.500000  4518.00000
## 2642 spouse/partner                  yes  376.500000  4518.00000
## 2643 child                           yes  376.500000  4518.00000
## 2644 grandchild                      yes  376.500000  4518.00000
## 2645 head                            yes  191.666672  2300.00000
## 2646 spouse/partner                  yes  191.666672  2300.00000
## 2647 child                           yes  191.666672  2300.00000
## 2648 head                            yes  323.888885  3886.66650
## 2649 spouse/partner                  yes  323.888885  3886.66650
## 2650 child                           yes  323.888885  3886.66650
## 2651 head                            yes  285.611115  3427.33350
## 2652 parent, parent-in-law           yes  285.611115  3427.33350
## 2653 other relative                  yes  285.611115  3427.33350
## 2654 head                            yes  140.916672  1691.00000
## 2655 child                           yes  140.916672  1691.00000
## 2656 head                            yes  169.354172  2032.25000
## 2657 spouse/partner                  yes  169.354172  2032.25000
## 2658 child                           yes  169.354172  2032.25000
## 2659 child                           yes  169.354172  2032.25000
## 2660 head                            yes  205.266678  2463.20020
## 2661 spouse/partner                  yes  205.266678  2463.20020
## 2662 child                           yes  205.266678  2463.20020
## 2663 child                           yes  205.266678  2463.20020
## 2664 child                          <NA>  205.266678  2463.20020
## 2665 head                            yes 1081.250000 12975.00000
## 2666 spouse/partner                  yes 1081.250000 12975.00000
## 2667 child                           yes 1081.250000 12975.00000
## 2668 child                           yes 1081.250000 12975.00000
## 2669 head                            yes  395.444458  4745.33350
## 2670 spouse/partner                  yes  395.444458  4745.33350
## 2671 child                          <NA>  395.444458  4745.33350
## 2672 head                            yes   92.500000  1110.00000
## 2673 head                            yes  193.333328  2320.00000
## 2674 spouse/partner                  yes  193.333328  2320.00000
## 2675 head                            yes  130.000000  1560.00000
## 2676 head                            yes  196.133331  2353.60010
## 2677 spouse/partner                  yes  196.133331  2353.60010
## 2678 child                           yes  196.133331  2353.60010
## 2679 son/daughter-in-law             yes  196.133331  2353.60010
## 2680 grandchild                     <NA>  196.133331  2353.60010
## 2681 head                            yes  136.500000  1638.00000
## 2682 head                            yes  357.777802  4293.33350
## 2683 spouse/partner                  yes  357.777802  4293.33350
## 2684 child                           yes  357.777802  4293.33350
## 2685 child                           yes  357.777802  4293.33350
## 2686 son/daughter-in-law             yes  357.777802  4293.33350
## 2687 grandchild                     <NA>  357.777802  4293.33350
## 2688 head                            yes  272.433319  3269.19971
## 2689 child                           yes  272.433319  3269.19971
## 2690 child                           yes  272.433319  3269.19971
## 2691 son/daughter-in-law             yes  272.433319  3269.19971
## 2692 grandchild                     <NA>  272.433319  3269.19971
## 2693 head                            yes  170.000000  2040.00000
## 2694 head                            yes  170.500000  2046.00000
## 2695 spouse/partner                  yes  170.500000  2046.00000
## 2696 head                            yes  500.000000  6000.00000
## 2697 spouse/partner                  yes  500.000000  6000.00000
## 2698 head                            yes   80.000000   960.00000
## 2699 child                           yes   80.000000   960.00000
## 2700 head                            yes  944.999939 11339.99902
## 2701 spouse/partner                  yes  944.999939 11339.99902
## 2702 head                            yes  107.000000  1284.00000
## 2703 head                            yes  291.666656  3500.00000
## 2704 spouse/partner                  yes  291.666656  3500.00000
## 2705 child                           yes  291.666656  3500.00000
## 2706 child                           yes  291.666656  3500.00000
## 2707 head                            yes  137.791672  1653.50000
## 2708 spouse/partner                  yes  137.791672  1653.50000
## 2709 child                           yes  137.791672  1653.50000
## 2710 child                           yes  137.791672  1653.50000
## 2711 head                            yes  163.250000  1959.00000
## 2712 son/daughter-in-law             yes  163.250000  1959.00000
## 2713 child                           yes  163.250000  1959.00000
## 2714 grandchild                     <NA>  163.250000  1959.00000
## 2715 head                            yes  102.000000  1224.00000
## 2716 spouse/partner                  yes  102.000000  1224.00000
## 2717 child                           yes  102.000000  1224.00000
## 2718 child                           yes  102.000000  1224.00000
## 2719 child                           yes  102.000000  1224.00000
## 2720 head                            yes  280.000000  3360.00000
## 2721 spouse/partner                  yes  280.000000  3360.00000
## 2722 child                           yes  280.000000  3360.00000
## 2723 head                            yes  199.000000  2388.00000
## 2724 head                            yes  166.000000  1992.00000
## 2725 spouse/partner                  yes  166.000000  1992.00000
## 2726 head                            yes  244.166672  2930.00000
## 2727 spouse/partner                  yes  244.166672  2930.00000
## 2728 child                           yes  244.166672  2930.00000
## 2729 child                           yes  244.166672  2930.00000
## 2730 head                            yes  244.458328  2933.50000
## 2731 spouse/partner                  yes  244.458328  2933.50000
## 2732 head                            yes  239.833344  2878.00000
## 2733 spouse/partner                  yes  239.833344  2878.00000
## 2734 head                            yes  230.138901  2761.66675
## 2735 spouse/partner                  yes  230.138901  2761.66675
## 2736 child                          <NA>  230.138901  2761.66675
## 2737 head                            yes  128.333328  1540.00000
## 2738 parent, parent-in-law           yes  128.333328  1540.00000
## 2739 parent, parent-in-law           yes  128.333328  1540.00000
## 2740 other relative                  yes  128.333328  1540.00000
## 2741 other relative                  yes  128.333328  1540.00000
## 2742 other relative                  yes  128.333328  1540.00000
## 2743 head                            yes  104.000000  1248.00000
## 2744 head                            yes  262.083344  3145.00000
## 2745 spouse/partner                  yes  262.083344  3145.00000
## 2746 head                            yes  350.833344  4210.00000
## 2747 spouse/partner                  yes  350.833344  4210.00000
## 2748 child                           yes  350.833344  4210.00000
## 2749 head                            yes  229.166672  2750.00000
## 2750 spouse/partner                  yes  229.166672  2750.00000
## 2751 child                           yes  229.166672  2750.00000
## 2752 child                           yes  229.166672  2750.00000
## 2753 head                            yes  163.600006  1963.20007
## 2754 spouse/partner                  yes  163.600006  1963.20007
## 2755 child                           yes  163.600006  1963.20007
## 2756 child                           yes  163.600006  1963.20007
## 2757 child                          <NA>  163.600006  1963.20007
## 2758 head                            yes  246.666672  2960.00000
## 2759 head                            yes  359.733337  4316.79980
## 2760 spouse/partner                   no  359.733337  4316.79980
## 2761 child                           yes  359.733337  4316.79980
## 2762 son/daughter-in-law             yes  359.733337  4316.79980
## 2763 grandchild                     <NA>  359.733337  4316.79980
## 2764 head                            yes  158.500000  1902.00000
## 2765 spouse/partner                  yes  158.500000  1902.00000
## 2766 head                            yes  711.770813  8541.25000
## 2767 parent, parent-in-law           yes  711.770813  8541.25000
## 2768 other relative                  yes  711.770813  8541.25000
## 2769 other relative                  yes  711.770813  8541.25000
## 2770 head                            yes  325.000000  3900.00000
## 2771 spouse/partner                  yes  325.000000  3900.00000
## 2772 child                           yes  325.000000  3900.00000
## 2773 child                           yes  325.000000  3900.00000
## 2774 head                            yes   49.305557   591.66669
## 2775 spouse/partner                  yes   49.305557   591.66669
## 2776 child                           yes   49.305557   591.66669
## 2777 son/daughter-in-law             yes   49.305557   591.66669
## 2778 grandchild                     <NA>   49.305557   591.66669
## 2779 grandchild                     <NA>   49.305557   591.66669
## 2780 head                            yes  181.666672  2180.00000
## 2781 spouse/partner                  yes  181.666672  2180.00000
## 2782 child                           yes  181.666672  2180.00000
## 2783 parent, parent-in-law           yes  181.666672  2180.00000
## 2784 head                            yes  166.000000  1992.00000
## 2785 spouse/partner                  yes  166.000000  1992.00000
## 2786 child                           yes  166.000000  1992.00000
## 2787 head                            yes  204.166672  2450.00000
## 2788 spouse/partner                  yes  204.166672  2450.00000
## 2789 child                           yes  204.166672  2450.00000
## 2790 child                           yes  204.166672  2450.00000
## 2791 head                            yes   43.333332   520.00000
## 2792 spouse/partner                  yes   43.333332   520.00000
## 2793 head                            yes  582.916687  6995.00000
## 2794 spouse/partner                  yes  582.916687  6995.00000
## 2795 child                           yes  582.916687  6995.00000
## 2796 parent, parent-in-law           yes  582.916687  6995.00000
## 2797 head                            yes   99.583336  1195.00000
## 2798 head                            yes  249.666672  2996.00000
## 2799 spouse/partner                  yes  249.666672  2996.00000
## 2800 son/daughter-in-law             yes  249.666672  2996.00000
## 2801 head                            yes  135.000000  1620.00000
## 2802 child                           yes  135.000000  1620.00000
## 2803 head                            yes  163.055557  1956.66675
## 2804 spouse/partner                  yes  163.055557  1956.66675
## 2805 parent, parent-in-law           yes  163.055557  1956.66675
## 2806 head                            yes  341.666656  4100.00000
## 2807 spouse/partner                  yes  341.666656  4100.00000
## 2808 child                           yes  341.666656  4100.00000
## 2809 head                            yes  143.333328  1720.00000
## 2810 head                             no   66.666664   800.00000
## 2811 child                           yes   66.666664   800.00000
## 2812 child                           yes   66.666664   800.00000
## 2813 son/daughter-in-law             yes   66.666664   800.00000
## 2814 grandchild                      yes   66.666664   800.00000
## 2815 grandchild                      yes   66.666664   800.00000
## 2816 head                            yes  167.708344  2012.50012
## 2817 spouse/partner                  yes  167.708344  2012.50012
## 2818 child                          <NA>  167.708344  2012.50012
## 2819 child                           yes  167.708344  2012.50012
## 2820 head                            yes  245.138870  2941.66650
## 2821 spouse/partner                  yes  245.138870  2941.66650
## 2822 parent, parent-in-law            no  245.138870  2941.66650
## 2823 child                          <NA>  245.138870  2941.66650
## 2824 child                          <NA>  245.138870  2941.66650
## 2825 grandchild                      yes  245.138870  2941.66650
## 2826 head                            yes  192.500000  2310.00000
## 2827 head                            yes  126.000000  1512.00000
## 2828 spouse/partner                  yes  126.000000  1512.00000
## 2829 child                          <NA>  126.000000  1512.00000
## 2830 head                            yes  152.541672  1830.50000
## 2831 spouse/partner                  yes  152.541672  1830.50000
## 2832 head                            yes  333.333344  4000.00000
## 2833 spouse/partner                  yes  333.333344  4000.00000
## 2834 child                           yes  333.333344  4000.00000
## 2835 head                            yes  125.199997  1502.39990
## 2836 spouse/partner                  yes  125.199997  1502.39990
## 2837 child                           yes  125.199997  1502.39990
## 2838 child                           yes  125.199997  1502.39990
## 2839 grandchild                     <NA>  125.199997  1502.39990
## 2840 head                             no   78.500000   942.00000
## 2841 spouse/partner                   no   78.500000   942.00000
## 2842 head                            yes  162.500000  1950.00000
## 2843 parent, parent-in-law           yes  162.500000  1950.00000
## 2844 head                            yes  365.000000  4380.00000
## 2845 spouse/partner                  yes  365.000000  4380.00000
## 2846 head                            yes  416.500000  4998.00000
## 2847 spouse/partner                  yes  416.500000  4998.00000
## 2848 son/daughter-in-law             yes  416.500000  4998.00000
## 2849 child                           yes  416.500000  4998.00000
## 2850 grandchild                     <NA>  416.500000  4998.00000
## 2851 head                            yes  163.777786  1965.33350
## 2852 spouse/partner                  yes  163.777786  1965.33350
## 2853 child                           yes  163.777786  1965.33350
## 2854 child                           yes  163.777786  1965.33350
## 2855 parent, parent-in-law           yes  163.777786  1965.33350
## 2856 parent, parent-in-law           yes  163.777786  1965.33350
## 2857 head                            yes  112.500000  1350.00000
## 2858 spouse/partner                  yes  112.500000  1350.00000
## 2859 child                           yes  112.500000  1350.00000
## 2860 child                           yes  112.500000  1350.00000
## 2861 head                            yes  196.500000  2358.00000
## 2862 spouse/partner                   no  196.500000  2358.00000
## 2863 head                            yes  219.444443  2633.33325
## 2864 spouse/partner                  yes  219.444443  2633.33325
## 2865 parent, parent-in-law           yes  219.444443  2633.33325
## 2866 head                            yes  128.333328  1540.00000
## 2867 spouse/partner                  yes  128.333328  1540.00000
## 2868 child                           yes  128.333328  1540.00000
## 2869 head                            yes  263.666656  3164.00000
## 2870 head                            yes  153.333328  1840.00000
## 2871 head                            yes  177.777771  2133.33325
## 2872 spouse/partner                  yes  177.777771  2133.33325
## 2873 child                           yes  177.777771  2133.33325
## 2874 head                            yes  201.000000  2412.00000
## 2875 parent, parent-in-law           yes  201.000000  2412.00000
## 2876 head                            yes  269.333344  3232.00000
## 2877 spouse/partner                  yes  269.333344  3232.00000
## 2878 parent, parent-in-law           yes  269.333344  3232.00000
## 2879 head                            yes  120.916664  1451.00000
## 2880 spouse/partner                  yes  120.916664  1451.00000
## 2881 head                            yes  160.000000  1920.00000
## 2882 head                            yes  181.750000  2181.00000
## 2883 head                            yes  111.666664  1340.00000
## 2884 spouse/partner                  yes  111.666664  1340.00000
## 2885 head                            yes  339.166656  4070.00000
## 2886 spouse/partner                  yes  339.166656  4070.00000
## 2887 head                            yes  150.000000  1800.00000
## 2888 spouse/partner                  yes  150.000000  1800.00000
## 2889 head                            yes  130.333328  1564.00000
## 2890 spouse/partner                  yes  130.333328  1564.00000
## 2891 child                           yes  130.333328  1564.00000
## 2892 child                          <NA>  130.333328  1564.00000
## 2893 head                            yes  271.000000  3252.00000
## 2894 spouse/partner                  yes  271.000000  3252.00000
## 2895 child                           yes  271.000000  3252.00000
## 2896 head                            yes  110.666672  1328.00000
## 2897 grandchild                      yes  110.666672  1328.00000
## 2898 head                            yes  306.500000  3678.00000
## 2899 spouse/partner                  yes  306.500000  3678.00000
## 2900 head                            yes  292.083344  3505.00000
## 2901 spouse/partner                  yes  292.083344  3505.00000
## 2902 child                           yes  292.083344  3505.00000
## 2903 son/daughter-in-law             yes  292.083344  3505.00000
## 2904 head                             no  141.666672  1700.00000
## 2905 child                           yes  141.666672  1700.00000
## 2906 head                            yes  174.444443  2093.33325
## 2907 spouse/partner                  yes  174.444443  2093.33325
## 2908 child                           yes  174.444443  2093.33325
## 2909 head                            yes  396.666656  4760.00000
## 2910 head                            yes   86.111115  1033.33337
## 2911 spouse/partner                  yes   86.111115  1033.33337
## 2912 child                           yes   86.111115  1033.33337
## 2913 head                            yes  320.833344  3850.00000
## 2914 spouse/partner                  yes  320.833344  3850.00000
## 2915 child                           yes  320.833344  3850.00000
## 2916 child                          <NA>  320.833344  3850.00000
## 2917 head                            yes  140.866669  1690.40002
## 2918 spouse/partner                  yes  140.866669  1690.40002
## 2919 child                           yes  140.866669  1690.40002
## 2920 son/daughter-in-law             yes  140.866669  1690.40002
## 2921 grandchild                     <NA>  140.866669  1690.40002
## 2922 child                           yes  140.866669  1690.40002
## 2923 son/daughter-in-law             yes  140.866669  1690.40002
## 2924 grandchild                     <NA>  140.866669  1690.40002
## 2925 child                           yes  140.866669  1690.40002
## 2926 parent, parent-in-law           yes  140.866669  1690.40002
## 2927 head                            yes  176.666672  2120.00000
## 2928 spouse/partner                  yes  176.666672  2120.00000
## 2929 child                          <NA>  176.666672  2120.00000
## 2930 head                            yes  223.133331  2677.60010
## 2931 spouse/partner                  yes  223.133331  2677.60010
## 2932 child                           yes  223.133331  2677.60010
## 2933 child                           yes  223.133331  2677.60010
## 2934 parent, parent-in-law           yes  223.133331  2677.60010
## 2935 head                            yes  214.444443  2573.33325
## 2936 spouse/partner                  yes  214.444443  2573.33325
## 2937 son/daughter-in-law             yes  214.444443  2573.33325
## 2938 grandchild                      yes  214.444443  2573.33325
## 2939 grandchild                      yes  214.444443  2573.33325
## 2940 grandchild                      yes  214.444443  2573.33325
## 2941 head                            yes  235.000000  2820.00000
## 2942 head                            yes  120.000000  1440.00000
## 2943 head                            yes  102.500000  1230.00000
## 2944 spouse/partner                  yes  102.500000  1230.00000
## 2945 head                            yes  298.583344  3583.00000
## 2946 spouse/partner                  yes  298.583344  3583.00000
## 2947 head                            yes 2075.000000 24900.00000
## 2948 spouse/partner                  yes 2075.000000 24900.00000
## 2949 head                            yes  215.000000  2580.00000
## 2950 spouse/partner                  yes  215.000000  2580.00000
## 2951 head                            yes  261.388885  3136.66650
## 2952 spouse/partner                  yes  261.388885  3136.66650
## 2953 child                           yes  261.388885  3136.66650
## 2954 head                            yes  588.888916  7066.66699
## 2955 spouse/partner                  yes  588.888916  7066.66699
## 2956 child                           yes  588.888916  7066.66699
## 2957 head                            yes  127.000000  1524.00000
## 2958 head                            yes  150.000000  1800.00000
## 2959 spouse/partner                  yes  150.000000  1800.00000
## 2960 head                            yes  396.000000  4752.00000
## 2961 spouse/partner                  yes  396.000000  4752.00000
## 2962 head                            yes  128.000000  1536.00000
## 2963 parent, parent-in-law           yes  128.000000  1536.00000
## 2964 head                            yes   97.166664  1166.00000
## 2965 spouse/partner                  yes   97.166664  1166.00000
## 2966 head                            yes  168.000000  2016.00000
## 2967 spouse/partner                  yes  168.000000  2016.00000
## 2968 child                           yes  168.000000  2016.00000
## 2969 child                           yes  168.000000  2016.00000
## 2970 child                           yes  168.000000  2016.00000
## 2971 head                            yes  202.500000  2430.00000
## 2972 spouse/partner                  yes  202.500000  2430.00000
## 2973 head                            yes  220.000000  2640.00000
## 2974 spouse/partner                  yes  220.000000  2640.00000
## 2975 head                            yes  312.500000  3750.00000
## 2976 spouse/partner                  yes  312.500000  3750.00000
## 2977 head                            yes   98.000000  1176.00000
## 2978 spouse/partner                  yes   98.000000  1176.00000
## 2979 head                            yes  222.388901  2668.66675
## 2980 spouse/partner                  yes  222.388901  2668.66675
## 2981 child                           yes  222.388901  2668.66675
## 2982 head                            yes  205.555557  2466.66675
## 2983 spouse/partner                  yes  205.555557  2466.66675
## 2984 child                           yes  205.555557  2466.66675
## 2985 head                            yes  325.208344  3902.50000
## 2986 spouse/partner                  yes  325.208344  3902.50000
## 2987 child                           yes  325.208344  3902.50000
## 2988 child                           yes  325.208344  3902.50000
## 2989 head                            yes   94.000000  1128.00000
## 2990 spouse/partner                  yes   94.000000  1128.00000
## 2991 head                            yes  661.666687  7940.00000
## 2992 spouse/partner                  yes  661.666687  7940.00000
## 2993 child                           yes  661.666687  7940.00000
## 2994 child                           yes  661.666687  7940.00000
## 2995 head                            yes  126.666664  1520.00000
## 2996 child                           yes  126.666664  1520.00000
## 2997 child                          <NA>  126.666664  1520.00000
## 2998 head                            yes  120.000000  1440.00000
## 2999 head                            yes  266.666656  3200.00000
## 3000 spouse/partner                  yes  266.666656  3200.00000
## 3001 child                           yes  266.666656  3200.00000
## 3002 head                            yes  200.000000  2400.00000
## 3003 head                            yes   89.000000  1068.00000
## 3004 spouse/partner                  yes   89.000000  1068.00000
## 3005 head                            yes  130.000000  1560.00000
## 3006 head                            yes  235.333328  2824.00000
## 3007 head                            yes  850.000000 10200.00000
## 3008 spouse/partner                  yes  850.000000 10200.00000
## 3009 child                           yes  850.000000 10200.00000
## 3010 child                           yes  850.000000 10200.00000
## 3011 head                            yes  123.000000  1476.00000
## 3012 head                            yes   84.958328  1019.49994
## 3013 spouse/partner                  yes   84.958328  1019.49994
## 3014 head                            yes  281.527771  3378.33325
## 3015 spouse/partner                  yes  281.527771  3378.33325
## 3016                    other        yes  281.527771  3378.33325
## 3017 head                            yes  175.833328  2110.00000
## 3018 spouse/partner                  yes  175.833328  2110.00000
## 3019                    other         no  175.833328  2110.00000
## 3020 head                            yes  334.083344  4009.00000
## 3021 child                           yes  334.083344  4009.00000
## 3022 head                            yes  139.333328  1672.00000
## 3023 spouse/partner                  yes  139.333328  1672.00000
## 3024 child                           yes  139.333328  1672.00000
## 3025 head                            yes  164.166672  1970.00000
## 3026 head                             no  122.000000  1464.00000
## 3027 head                            yes  234.500000  2814.00000
## 3028 spouse/partner                  yes  234.500000  2814.00000
## 3029 head                            yes  197.500000  2370.00000
## 3030 spouse/partner                  yes  197.500000  2370.00000
## 3031 child                           yes  197.500000  2370.00000
## 3032 parent, parent-in-law           yes  197.500000  2370.00000
## 3033 head                            yes  373.888885  4486.66650
## 3034 spouse/partner                  yes  373.888885  4486.66650
## 3035 child                           yes  373.888885  4486.66650
## 3036 head                            yes  245.000000  2940.00000
## 3037 spouse/partner                  yes  245.000000  2940.00000
## 3038 child                           yes  245.000000  2940.00000
## 3039 child                           yes  245.000000  2940.00000
## 3040 head                            yes   97.416664  1169.00000
## 3041 spouse/partner                  yes   97.416664  1169.00000
## 3042 child                          <NA>   97.416664  1169.00000
## 3043 child                           yes   97.416664  1169.00000
## 3044 head                            yes  124.791672  1497.50000
## 3045 spouse/partner                  yes  124.791672  1497.50000
## 3046 child                           yes  124.791672  1497.50000
## 3047 child                           yes  124.791672  1497.50000
## 3048 head                            yes  387.750000  4653.00000
## 3049 head                            yes  320.000000  3840.00000
## 3050 spouse/partner                  yes  320.000000  3840.00000
## 3051 head                            yes  199.333328  2392.00000
## 3052 spouse/partner                  yes  199.333328  2392.00000
## 3053 child                           yes  199.333328  2392.00000
## 3054 head                            yes  185.833328  2230.00000
## 3055 spouse/partner                  yes  185.833328  2230.00000
## 3056 head                            yes  147.833328  1774.00000
## 3057 spouse/partner                  yes  147.833328  1774.00000
## 3058 child                           yes  147.833328  1774.00000
## 3059 other relative                   no  147.833328  1774.00000
## 3060 head                             no   88.166664  1058.00000
## 3061 spouse/partner                  yes   88.166664  1058.00000
## 3062 child                            no   88.166664  1058.00000
## 3063 head                            yes  230.000000  2760.00000
## 3064 spouse/partner                  yes  230.000000  2760.00000
## 3065 child                           yes  230.000000  2760.00000
## 3066 child                           yes  230.000000  2760.00000
## 3067 head                            yes  137.777786  1653.33350
## 3068 spouse/partner                  yes  137.777786  1653.33350
## 3069 child                           yes  137.777786  1653.33350
## 3070 head                            yes  311.666656  3740.00000
## 3071 spouse/partner                  yes  311.666656  3740.00000
## 3072 head                            yes  150.000000  1800.00000
## 3073 spouse/partner                  yes  150.000000  1800.00000
## 3074 head                            yes  263.333344  3160.00000
## 3075 head                            yes  283.333313  3399.99976
## 3076 head                            yes  172.500000  2070.00000
## 3077 spouse/partner                  yes  172.500000  2070.00000
## 3078 head                            yes  330.000000  3960.00000
## 3079 spouse/partner                  yes  330.000000  3960.00000
## 3080 head                            yes  176.407410  2116.88892
## 3081 spouse/partner                  yes  176.407410  2116.88892
## 3082 child                           yes  176.407410  2116.88892
## 3083 son/daughter-in-law             yes  176.407410  2116.88892
## 3084 grandchild                      yes  176.407410  2116.88892
## 3085 grandchild                      yes  176.407410  2116.88892
## 3086 child                           yes  176.407410  2116.88892
## 3087 son/daughter-in-law             yes  176.407410  2116.88892
## 3088 grandchild                      yes  176.407410  2116.88892
## 3089 head                            yes  152.708328  1832.50000
## 3090 spouse/partner                  yes  152.708328  1832.50000
## 3091 head                            yes   86.000000  1032.00000
## 3092 head                            yes  260.000000  3120.00000
## 3093 spouse/partner                  yes  260.000000  3120.00000
## 3094 head                            yes  113.000000  1356.00000
## 3095 spouse/partner                  yes  113.000000  1356.00000
## 3096 head                            yes  156.722229  1880.66675
## 3097 spouse/partner                  yes  156.722229  1880.66675
## 3098 child                           yes  156.722229  1880.66675
## 3099 head                            yes  141.833328  1702.00000
## 3100 spouse/partner                  yes  141.833328  1702.00000
## 3101 head                            yes  159.500000  1914.00000
## 3102 spouse/partner                  yes  159.500000  1914.00000
## 3103 child                           yes  159.500000  1914.00000
## 3104 child                           yes  159.500000  1914.00000
## 3105 head                            yes  155.666672  1868.00000
## 3106 child                           yes  155.666672  1868.00000
## 3107 grandchild                      yes  155.666672  1868.00000
## 3108 head                            yes  451.555542  5418.66650
## 3109 child                           yes  451.555542  5418.66650
## 3110 child                           yes  451.555542  5418.66650
## 3111 head                            yes  312.500000  3750.00000
## 3112 spouse/partner                  yes  312.500000  3750.00000
## 3113 head                            yes   84.166664  1010.00000
## 3114 spouse/partner                  yes   84.166664  1010.00000
## 3115 child                           yes   84.166664  1010.00000
## 3116 child                           yes   84.166664  1010.00000
## 3117 head                            yes  100.472221  1205.66663
## 3118 spouse/partner                  yes  100.472221  1205.66663
## 3119 parent, parent-in-law            no  100.472221  1205.66663
## 3120 head                            yes  226.166672  2714.00000
## 3121 spouse/partner                  yes  226.166672  2714.00000
## 3122 child                           yes  226.166672  2714.00000
## 3123 child                           yes  226.166672  2714.00000
## 3124 head                            yes  292.777771  3513.33325
## 3125 child                           yes  292.777771  3513.33325
## 3126 child                           yes  292.777771  3513.33325
## 3127 head                            yes  380.000000  4560.00000
## 3128 child                           yes  380.000000  4560.00000
## 3129 child                           yes  380.000000  4560.00000
## 3130 parent, parent-in-law           yes  380.000000  4560.00000
## 3131 head                            yes   63.416668   761.00000
## 3132 child                           yes   63.416668   761.00000
## 3133 head                            yes  613.333313  7360.00000
## 3134 spouse/partner                  yes  613.333313  7360.00000
## 3135 child                           yes  613.333313  7360.00000
## 3136 child                           yes  613.333313  7360.00000
## 3137 head                            yes  370.555542  4446.66650
## 3138 spouse/partner                  yes  370.555542  4446.66650
## 3139 child                           yes  370.555542  4446.66650
## 3140 head                            yes  182.500000  2190.00000
## 3141 spouse/partner                  yes  182.500000  2190.00000
## 3142 head                            yes  150.000000  1800.00000
## 3143 head                            yes  196.666656  2360.00000
## 3144 head                            yes  336.458344  4037.50000
## 3145 spouse/partner                  yes  336.458344  4037.50000
## 3146 son/daughter-in-law             yes  336.458344  4037.50000
## 3147 child                           yes  336.458344  4037.50000
## 3148 head                            yes  137.000000  1644.00000
## 3149 spouse/partner                  yes  137.000000  1644.00000
## 3150 head                            yes  198.333328  2380.00000
## 3151 head                            yes  345.833344  4150.00000
## 3152 spouse/partner                  yes  345.833344  4150.00000
## 3153 head                            yes  132.833344  1594.00012
## 3154 spouse/partner                  yes  132.833344  1594.00012
## 3155 child                           yes  132.833344  1594.00012
## 3156 child                           yes  132.833344  1594.00012
## 3157 head                            yes  286.111115  3433.33350
## 3158 spouse/partner                  yes  286.111115  3433.33350
## 3159 child                           yes  286.111115  3433.33350
## 3160 head                            yes   85.000000  1020.00000
## 3161 spouse/partner                  yes   85.000000  1020.00000
## 3162 child                           yes   85.000000  1020.00000
## 3163 child                           yes   85.000000  1020.00000
## 3164 head                            yes  365.222198  4382.66650
## 3165 other relative                  yes  365.222198  4382.66650
## 3166 other relative                  yes  365.222198  4382.66650
## 3167                    other        yes  365.222198  4382.66650
## 3168 other relative                  yes  365.222198  4382.66650
## 3169 other relative                 <NA>  365.222198  4382.66650
## 3170 head                            yes   84.000000  1008.00000
## 3171 parent, parent-in-law           yes   84.000000  1008.00000
## 3172 head                            yes  173.333328  2080.00000
## 3173 spouse/partner                  yes  173.333328  2080.00000
## 3174 parent, parent-in-law           yes  173.333328  2080.00000
## 3175 head                            yes  187.666672  2252.00000
## 3176 head                            yes  135.000000  1620.00000
## 3177 spouse/partner                  yes  135.000000  1620.00000
## 3178 head                            yes  197.600006  2371.20020
## 3179 spouse/partner                  yes  197.600006  2371.20020
## 3180 child                           yes  197.600006  2371.20020
## 3181 child                           yes  197.600006  2371.20020
## 3182 grandchild                     <NA>  197.600006  2371.20020
## 3183 head                            yes  122.833336  1474.00000
## 3184 spouse/partner                  yes  122.833336  1474.00000
## 3185 parent, parent-in-law            no  122.833336  1474.00000
## 3186 child                          <NA>  122.833336  1474.00000
## 3187 child                          <NA>  122.833336  1474.00000
## 3188 head                            yes  116.666672  1400.00000
## 3189 spouse/partner                  yes  116.666672  1400.00000
## 3190 head                            yes  200.000000  2400.00000
## 3191 spouse/partner                  yes  200.000000  2400.00000
## 3192 head                            yes  265.166656  3182.00000
## 3193 spouse/partner                  yes  265.166656  3182.00000
## 3194 child                           yes  265.166656  3182.00000
## 3195 head                            yes  222.000000  2664.00000
## 3196 parent, parent-in-law           yes  222.000000  2664.00000
## 3197 head                            yes  114.599998  1375.19995
## 3198 child                           yes  114.599998  1375.19995
## 3199 son/daughter-in-law             yes  114.599998  1375.19995
## 3200 grandchild                      yes  114.599998  1375.19995
## 3201 grandchild                     <NA>  114.599998  1375.19995
## 3202 head                            yes  180.555557  2166.66675
## 3203 spouse/partner                  yes  180.555557  2166.66675
## 3204 child                           yes  180.555557  2166.66675
## 3205 head                            yes          NA          NA
## 3206 spouse/partner                  yes          NA          NA
## 3207 child                          <NA>          NA          NA
## 3208 child                          <NA>          NA          NA
## 3209 head                            yes  261.083344  3133.00000
## 3210 spouse/partner                  yes  261.083344  3133.00000
## 3211 child                           yes  261.083344  3133.00000
## 3212 child                           yes  261.083344  3133.00000
## 3213 head                            yes  192.666656  2312.00000
## 3214 spouse/partner                  yes  192.666656  2312.00000
## 3215 child                           yes  192.666656  2312.00000
## 3216 son/daughter-in-law             yes  192.666656  2312.00000
## 3217 grandchild                     <NA>  192.666656  2312.00000
## 3218 head                            yes  244.500000  2934.00000
## 3219 child                           yes  244.500000  2934.00000
## 3220 head                            yes  275.000000  3300.00000
## 3221 spouse/partner                  yes  275.000000  3300.00000
## 3222 head                            yes  213.600006  2563.20020
## 3223 spouse/partner                  yes  213.600006  2563.20020
## 3224 child                           yes  213.600006  2563.20020
## 3225 son/daughter-in-law             yes  213.600006  2563.20020
## 3226 grandchild                     <NA>  213.600006  2563.20020
## 3227 head                            yes  225.000000  2700.00000
## 3228 spouse/partner                  yes  225.000000  2700.00000
## 3229 head                            yes  145.000000  1740.00000
## 3230 spouse/partner                  yes  145.000000  1740.00000
## 3231 child                           yes  145.000000  1740.00000
## 3232 child                           yes  145.000000  1740.00000
## 3233 head                            yes  170.000000  2040.00000
## 3234 spouse/partner                  yes  170.000000  2040.00000
## 3235 child                           yes  170.000000  2040.00000
## 3236 child                           yes  170.000000  2040.00000
## 3237 head                            yes  229.444443  2753.33325
## 3238 child                           yes  229.444443  2753.33325
## 3239 child                           yes  229.444443  2753.33325
## 3240 head                            yes   89.166664  1070.00000
## 3241 head                            yes   96.500000  1158.00000
## 3242 spouse/partner                  yes   96.500000  1158.00000
## 3243 head                            yes  126.000000  1512.00000
## 3244 spouse/partner                  yes  126.000000  1512.00000
## 3245 head                            yes  146.666672  1760.00000
## 3246 spouse/partner                  yes  146.666672  1760.00000
## 3247 child                           yes  146.666672  1760.00000
## 3248 head                            yes  114.444435  1373.33325
## 3249 spouse/partner                  yes  114.444435  1373.33325
## 3250 child                           yes  114.444435  1373.33325
## 3251 head                            yes  275.000000  3300.00000
## 3252 head                            yes  300.000000  3600.00000
## 3253 spouse/partner                  yes  300.000000  3600.00000
## 3254 child                           yes  300.000000  3600.00000
## 3255 head                            yes  273.125000  3277.50000
## 3256 spouse/partner                  yes  273.125000  3277.50000
## 3257 child                           yes  273.125000  3277.50000
## 3258 child                           yes  273.125000  3277.50000
## 3259 head                            yes  380.277802  4563.33350
## 3260 spouse/partner                  yes  380.277802  4563.33350
## 3261 child                           yes  380.277802  4563.33350
## 3262 head                            yes  170.000000  2040.00000
## 3263 spouse/partner                  yes  170.000000  2040.00000
## 3264 head                            yes  384.500000  4614.00000
## 3265 spouse/partner                  yes  384.500000  4614.00000
## 3266 parent, parent-in-law           yes  384.500000  4614.00000
## 3267 head                            yes  497.388916  5968.66699
## 3268 spouse/partner                  yes  497.388916  5968.66699
## 3269 child                           yes  497.388916  5968.66699
## 3270 head                            yes  235.444458  2825.33350
## 3271 spouse/partner                  yes  235.444458  2825.33350
## 3272 child                          <NA>  235.444458  2825.33350
## 3273 head                            yes          NA          NA
## 3274 spouse/partner                  yes          NA          NA
## 3275 child                           yes          NA          NA
## 3276 head                            yes  641.833313  7702.00000
## 3277 child                           yes  641.833313  7702.00000
## 3278 head                            yes   97.000000  1164.00000
## 3279 head                            yes  200.625000  2407.50000
## 3280 spouse/partner                  yes  200.625000  2407.50000
## 3281 child                           yes  200.625000  2407.50000
## 3282 child                           yes  200.625000  2407.50000
## 3283 head                            yes  271.250000  3255.00000
## 3284 spouse/partner                  yes  271.250000  3255.00000
## 3285 child                           yes  271.250000  3255.00000
## 3286 child                           yes  271.250000  3255.00000
## 3287 head                            yes  235.722214  2828.66650
## 3288 spouse/partner                  yes  235.722214  2828.66650
## 3289 child                           yes  235.722214  2828.66650
## 3290 head                            yes  759.000000  9108.00000
## 3291 spouse/partner                  yes  759.000000  9108.00000
## 3292 child                           yes  759.000000  9108.00000
## 3293 child                          <NA>  759.000000  9108.00000
## 3294 head                            yes  204.722229  2456.66675
## 3295 spouse/partner                  yes  204.722229  2456.66675
## 3296 parent, parent-in-law           yes  204.722229  2456.66675
## 3297 head                            yes  138.958328  1667.50000
## 3298 spouse/partner                  yes  138.958328  1667.50000
## 3299 parent, parent-in-law           yes  138.958328  1667.50000
## 3300 parent, parent-in-law           yes  138.958328  1667.50000
## 3301 head                            yes  159.444443  1913.33325
## 3302 spouse/partner                  yes  159.444443  1913.33325
## 3303 child                           yes  159.444443  1913.33325
## 3304 head                            yes  112.500000  1350.00000
## 3305 parent, parent-in-law           yes  112.500000  1350.00000
## 3306 head                            yes  500.000000  6000.00000
## 3307 spouse/partner                  yes  500.000000  6000.00000
## 3308 head                            yes  161.555557  1938.66675
## 3309 spouse/partner                  yes  161.555557  1938.66675
## 3310 child                          <NA>  161.555557  1938.66675
## 3311 head                            yes  268.222229  3218.66675
## 3312 spouse/partner                  yes  268.222229  3218.66675
## 3313 child                          <NA>  268.222229  3218.66675
## 3314 head                            yes  175.555557  2106.66675
## 3315 spouse/partner                 <NA>  175.555557  2106.66675
## 3316 child                           yes  175.555557  2106.66675
## 3317 head                            yes  445.472198  5345.66650
## 3318 spouse/partner                  yes  445.472198  5345.66650
## 3319 child                           yes  445.472198  5345.66650
## 3320 son/daughter-in-law             yes  445.472198  5345.66650
## 3321 grandchild                     <NA>  445.472198  5345.66650
## 3322 grandchild                     <NA>  445.472198  5345.66650
## 3323 head                            yes  136.625000  1639.50000
## 3324 spouse/partner                  yes  136.625000  1639.50000
## 3325 child                           yes  136.625000  1639.50000
## 3326 son/daughter-in-law             yes  136.625000  1639.50000
## 3327 grandchild                      yes  136.625000  1639.50000
## 3328 grandchild                     <NA>  136.625000  1639.50000
## 3329 head                            yes  126.944450  1523.33337
## 3330 spouse/partner                  yes  126.944450  1523.33337
## 3331 child                           yes  126.944450  1523.33337
## 3332 son/daughter-in-law             yes  126.944450  1523.33337
## 3333 grandchild                      yes  126.944450  1523.33337
## 3334 grandchild                      yes  126.944450  1523.33337
## 3335 head                            yes   86.000000  1032.00000
## 3336 spouse/partner                  yes   86.000000  1032.00000
## 3337 head                            yes   53.833336   646.00000
## 3338 spouse/partner                  yes   53.833336   646.00000
## 3339 child                           yes   53.833336   646.00000
## 3340 grandchild                      yes   53.833336   646.00000
## 3341 grandchild                     <NA>   53.833336   646.00000
## 3342 head                            yes  198.055557  2376.66675
## 3343 spouse/partner                  yes  198.055557  2376.66675
## 3344 child                           yes  198.055557  2376.66675
## 3345 grandchild                      yes  198.055557  2376.66675
## 3346 child                           yes  198.055557  2376.66675
## 3347 grandchild                      yes  198.055557  2376.66675
## 3348 head                            yes   92.083336  1105.00000
## 3349 spouse/partner                  yes   92.083336  1105.00000
## 3350 child                           yes   92.083336  1105.00000
## 3351 child                           yes   92.083336  1105.00000
## 3352 head                            yes  256.666687  3080.00024
## 3353 parent, parent-in-law           yes  256.666687  3080.00024
## 3354 head                            yes  191.666672  2300.00000
## 3355 spouse/partner                  yes  191.666672  2300.00000
## 3356 child                          <NA>  191.666672  2300.00000
## 3357 child                           yes  191.666672  2300.00000
## 3358 head                            yes  240.000000  2880.00000
## 3359 spouse/partner                  yes  240.000000  2880.00000
## 3360 child                           yes  240.000000  2880.00000
## 3361 child                           yes  240.000000  2880.00000
## 3362 head                            yes  374.444458  4493.33350
## 3363 spouse/partner                  yes  374.444458  4493.33350
## 3364 child                           yes  374.444458  4493.33350
## 3365 head                            yes  209.000000  2508.00000
## 3366 spouse/partner                  yes  209.000000  2508.00000
## 3367 child                          <NA>  209.000000  2508.00000
## 3368 child                          <NA>  209.000000  2508.00000
## 3369 head                            yes   66.666664   800.00000
## 3370 spouse/partner                  yes   66.666664   800.00000
## 3371 child                           yes   66.666664   800.00000
## 3372 head                            yes  202.083328  2425.00000
## 3373 parent, parent-in-law           yes  202.083328  2425.00000
## 3374 head                            yes   40.000000   480.00000
## 3375 spouse/partner                  yes   40.000000   480.00000
## 3376 child                           yes   40.000000   480.00000
## 3377 child                           yes   40.000000   480.00000
## 3378 child                          <NA>   40.000000   480.00000
## 3379 head                            yes  147.888885  1774.66663
## 3380 parent, parent-in-law           yes  147.888885  1774.66663
## 3381 spouse/partner                  yes  147.888885  1774.66663
## 3382 other relative                  yes  147.888885  1774.66663
## 3383 other relative                  yes  147.888885  1774.66663
## 3384 child                           yes  147.888885  1774.66663
## 3385 head                            yes  187.416672  2249.00000
## 3386 spouse/partner                  yes  187.416672  2249.00000
## 3387 child                           yes  187.416672  2249.00000
## 3388 child                           yes  187.416672  2249.00000
## 3389 head                            yes          NA          NA
## 3390 spouse/partner                  yes          NA          NA
## 3391 child                           yes          NA          NA
## 3392 child                           yes          NA          NA
## 3393 child                           yes          NA          NA
## 3394 head                            yes  153.083328  1837.00000
## 3395 spouse/partner                  yes  153.083328  1837.00000
## 3396 child                           yes  153.083328  1837.00000
## 3397 parent, parent-in-law           yes  153.083328  1837.00000
## 3398 head                            yes  376.111115  4513.33350
## 3399 spouse/partner                  yes  376.111115  4513.33350
## 3400 child                           yes  376.111115  4513.33350
## 3401 head                            yes  195.000000  2340.00000
## 3402 head                            yes   93.333336  1120.00000
## 3403 spouse/partner                  yes   93.333336  1120.00000
## 3404 grandchild                      yes   93.333336  1120.00000
## 3405 head                            yes  325.000000  3900.00000
## 3406 head                            yes  250.000000  3000.00000
## 3407 child                           yes  250.000000  3000.00000
## 3408 grandchild                      yes  250.000000  3000.00000
## 3409 grandchild                      yes  250.000000  3000.00000
## 3410 grandchild                      yes  250.000000  3000.00000
## 3411 head                            yes  468.750000  5625.00000
## 3412 spouse/partner                  yes  468.750000  5625.00000
## 3413 head                            yes  619.583374  7435.00049
## 3414 spouse/partner                  yes  619.583374  7435.00049
## 3415 head                            yes  310.833344  3730.00000
## 3416 spouse/partner                  yes  310.833344  3730.00000
## 3417 head                            yes  273.611115  3283.33350
## 3418 spouse/partner                  yes  273.611115  3283.33350
## 3419 child                           yes  273.611115  3283.33350
## 3420 head                            yes  405.555542  4866.66650
## 3421 child                           yes  405.555542  4866.66650
## 3422 child                           yes  405.555542  4866.66650
## 3423 head                            yes  118.000000  1416.00000
## 3424 head                            yes  260.833313  3129.99976
## 3425 child                           yes  260.833313  3129.99976
## 3426 head                            yes  100.000000  1200.00000
## 3427 head                            yes  371.666656  4460.00000
## 3428 spouse/partner                  yes  371.666656  4460.00000
## 3429 head                            yes  179.000000  2148.00000
## 3430 spouse/partner                  yes  179.000000  2148.00000
## 3431 child                           yes  179.000000  2148.00000
## 3432 child                           yes  179.000000  2148.00000
## 3433 head                            yes  132.000000  1584.00000
## 3434 spouse/partner                   no  132.000000  1584.00000
## 3435 head                            yes  234.916672  2819.00000
## 3436 spouse/partner                  yes  234.916672  2819.00000
## 3437 child                           yes  234.916672  2819.00000
## 3438 child                           yes  234.916672  2819.00000
## 3439 head                            yes  200.000000  2400.00000
## 3440 spouse/partner                  yes  200.000000  2400.00000
## 3441 child                           yes  200.000000  2400.00000
## 3442 head                            yes   29.833334   358.00000
## 3443 spouse/partner                  yes   29.833334   358.00000
## 3444 child                           yes   29.833334   358.00000
## 3445 child                           yes   29.833334   358.00000
## 3446 head                            yes  133.333328  1600.00000
## 3447 spouse/partner                  yes  133.333328  1600.00000
## 3448 child                          <NA>  133.333328  1600.00000
## 3449 child                          <NA>  133.333328  1600.00000
## 3450 head                            yes  143.000000  1716.00000
## 3451 spouse/partner                  yes  143.000000  1716.00000
## 3452 child                           yes  143.000000  1716.00000
## 3453 child                           yes  143.000000  1716.00000
## 3454 head                            yes  180.833328  2170.00000
## 3455 spouse/partner                  yes  180.833328  2170.00000
## 3456 head                            yes  117.500000  1410.00000
## 3457 spouse/partner                  yes  117.500000  1410.00000
## 3458 head                            yes  310.000000  3720.00000
## 3459 head                            yes   34.700001   416.40002
## 3460 son/daughter-in-law             yes   34.700001   416.40002
## 3461 child                           yes   34.700001   416.40002
## 3462 grandchild                     <NA>   34.700001   416.40002
## 3463 grandchild                     <NA>   34.700001   416.40002
## 3464 head                            yes  328.333344  3940.00000
## 3465 head                            yes  159.000000  1908.00000
## 3466 spouse/partner                  yes  159.000000  1908.00000
## 3467 child                          <NA>  159.000000  1908.00000
## 3468 child                          <NA>  159.000000  1908.00000
## 3469 head                            yes  840.000000 10080.00000
## 3470 spouse/partner                  yes  840.000000 10080.00000
## 3471 head                            yes  200.000000  2400.00000
## 3472 child                           yes  200.000000  2400.00000
## 3473 head                            yes  150.000000  1800.00000
## 3474 head                            yes  233.666656  2804.00000
## 3475 spouse/partner                   no  233.666656  2804.00000
## 3476 child                            no  233.666656  2804.00000
## 3477 grandchild                     <NA>  233.666656  2804.00000
## 3478 head                            yes  349.166656  4190.00000
## 3479 spouse/partner                  yes  349.166656  4190.00000
## 3480 parent, parent-in-law            no  349.166656  4190.00000
## 3481 head                            yes  155.888885  1870.66663
## 3482 spouse/partner                   no  155.888885  1870.66663
## 3483 child                           yes  155.888885  1870.66663
## 3484 head                            yes  176.666656  2120.00000
## 3485 spouse/partner                   no  176.666656  2120.00000
## 3486 head                            yes  100.000000  1200.00000
## 3487 spouse/partner                  yes  100.000000  1200.00000
## 3488 child                           yes  100.000000  1200.00000
## 3489 head                            yes  479.166656  5750.00000
## 3490 spouse/partner                  yes  479.166656  5750.00000
## 3491 head                            yes  747.500000  8970.00000
## 3492 head                            yes  220.533325  2646.39990
## 3493 spouse/partner                  yes  220.533325  2646.39990
## 3494 child                           yes  220.533325  2646.39990
## 3495 son/daughter-in-law             yes  220.533325  2646.39990
## 3496 grandchild                     <NA>  220.533325  2646.39990
## 3497 head                            yes  137.388885  1648.66663
## 3498 spouse/partner                  yes  137.388885  1648.66663
## 3499 child                           yes  137.388885  1648.66663
## 3500 son/daughter-in-law             yes  137.388885  1648.66663
## 3501 grandchild                      yes  137.388885  1648.66663
## 3502 grandchild                      yes  137.388885  1648.66663
## 3503 head                            yes  316.666656  3800.00000
## 3504 spouse/partner                  yes  316.666656  3800.00000
## 3505 head                            yes  150.800003  1809.60010
## 3506 child                           yes  150.800003  1809.60010
## 3507 son/daughter-in-law             yes  150.800003  1809.60010
## 3508 grandchild                      yes  150.800003  1809.60010
## 3509 grandchild                      yes  150.800003  1809.60010
## 3510 head                            yes  178.541672  2142.50000
## 3511 spouse/partner                  yes  178.541672  2142.50000
## 3512 head                            yes  207.222229  2486.66675
## 3513 child                           yes  207.222229  2486.66675
## 3514 child                           yes  207.222229  2486.66675
## 3515 head                            yes  330.833344  3970.00000
## 3516 spouse/partner                  yes  330.833344  3970.00000
## 3517 child                           yes  330.833344  3970.00000
## 3518 child                           yes  330.833344  3970.00000
## 3519 head                            yes  154.666672  1856.00000
## 3520 spouse/partner                  yes  154.666672  1856.00000
## 3521 child                           yes  154.666672  1856.00000
## 3522 head                            yes  169.416656  2032.99988
## 3523 spouse/partner                  yes  169.416656  2032.99988
## 3524 child                           yes  169.416656  2032.99988
## 3525 grandchild                     <NA>  169.416656  2032.99988
## 3526 head                            yes   90.000000  1080.00000
## 3527 spouse/partner                  yes   90.000000  1080.00000
## 3528 head                            yes  187.333328  2248.00000
## 3529 child                           yes  187.333328  2248.00000
## 3530 head                            yes  117.166664  1406.00000
## 3531 spouse/partner                  yes  117.166664  1406.00000
## 3532 head                            yes  210.000000  2520.00000
## 3533 head                            yes   75.000000   900.00000
## 3534 spouse/partner                  yes   75.000000   900.00000
## 3535 child                          <NA>   75.000000   900.00000
## 3536 child                          <NA>   75.000000   900.00000
## 3537 head                            yes  275.833344  3310.00000
## 3538 spouse/partner                  yes  275.833344  3310.00000
## 3539 head                            yes   50.200001   602.40002
## 3540 spouse/partner                  yes   50.200001   602.40002
## 3541 child                           yes   50.200001   602.40002
## 3542 child                          <NA>   50.200001   602.40002
## 3543 parent, parent-in-law           yes   50.200001   602.40002
## 3544 head                            yes  248.750000  2985.00000
## 3545 spouse/partner                  yes  248.750000  2985.00000
## 3546 child                           yes  248.750000  2985.00000
## 3547 grandchild                      yes  248.750000  2985.00000
## 3548 head                            yes  122.266663  1467.19995
## 3549 spouse/partner                  yes  122.266663  1467.19995
## 3550 child                           yes  122.266663  1467.19995
## 3551 child                           yes  122.266663  1467.19995
## 3552 parent, parent-in-law           yes  122.266663  1467.19995
## 3553 head                            yes  156.722214  1880.66650
## 3554 spouse/partner                  yes  156.722214  1880.66650
## 3555 child                           yes  156.722214  1880.66650
## 3556 head                            yes   64.166664   770.00000
## 3557 spouse/partner                  yes   64.166664   770.00000
## 3558 child                           yes   64.166664   770.00000
## 3559 parent, parent-in-law           yes   64.166664   770.00000
## 3560 head                            yes  260.083344  3121.00000
## 3561 spouse/partner                  yes  260.083344  3121.00000
## 3562 head                            yes  150.000000  1800.00000
## 3563 spouse/partner                  yes  150.000000  1800.00000
## 3564 child                           yes  150.000000  1800.00000
## 3565 head                            yes  259.000000  3108.00000
## 3566 spouse/partner                  yes  259.000000  3108.00000
## 3567 head                            yes  662.222229  7946.66699
## 3568 spouse/partner                  yes  662.222229  7946.66699
## 3569 child                           yes  662.222229  7946.66699
## 3570 head                            yes  123.333336  1480.00000
## 3571 spouse/partner                  yes  123.333336  1480.00000
## 3572 head                            yes  184.166672  2210.00000
## 3573 spouse/partner                  yes  184.166672  2210.00000
## 3574 child                           yes  184.166672  2210.00000
## 3575 child                          <NA>  184.166672  2210.00000
## 3576 head                            yes  437.750000  5253.00000
## 3577 head                            yes  221.055557  2652.66675
## 3578 spouse/partner                  yes  221.055557  2652.66675
## 3579 child                           yes  221.055557  2652.66675
## 3580 son/daughter-in-law             yes  221.055557  2652.66675
## 3581 grandchild                      yes  221.055557  2652.66675
## 3582 grandchild                     <NA>  221.055557  2652.66675
## 3583 head                            yes   70.000000   840.00000
## 3584 child                           yes   70.000000   840.00000
## 3585 son/daughter-in-law             yes   70.000000   840.00000
## 3586 grandchild                      yes   70.000000   840.00000
## 3587 grandchild                      yes   70.000000   840.00000
## 3588 grandchild                     <NA>   70.000000   840.00000
## 3589 head                            yes  145.333328  1744.00000
## 3590 head                            yes  117.000000  1404.00000
## 3591 spouse/partner                  yes  117.000000  1404.00000
## 3592 head                            yes  148.666672  1784.00000
## 3593 spouse/partner                  yes  148.666672  1784.00000
## 3594 child                           yes  148.666672  1784.00000
## 3595 head                            yes   36.709999   440.51999
## 3596 spouse/partner                  yes   36.709999   440.51999
## 3597 grandchild                      yes   36.709999   440.51999
## 3598 grandchild                     <NA>   36.709999   440.51999
## 3599 parent, parent-in-law           yes   36.709999   440.51999
## 3600 head                            yes  195.583328  2347.00000
## 3601 spouse/partner                  yes  195.583328  2347.00000
## 3602 parent, parent-in-law           yes  195.583328  2347.00000
## 3603 parent, parent-in-law           yes  195.583328  2347.00000
## 3604 head                            yes  213.000000  2556.00000
## 3605 spouse/partner                  yes  213.000000  2556.00000
## 3606 parent, parent-in-law           yes  213.000000  2556.00000
## 3607 head                            yes  200.000000  2400.00000
## 3608 head                            yes  127.777779  1533.33337
## 3609 spouse/partner                  yes  127.777779  1533.33337
## 3610 child                           yes  127.777779  1533.33337
## 3611 head                            yes  150.000000  1800.00000
## 3612 spouse/partner                  yes  150.000000  1800.00000
## 3613 child                           yes  150.000000  1800.00000
## 3614 head                            yes  236.000000  2832.00000
## 3615 spouse/partner                  yes  236.000000  2832.00000
## 3616 head                            yes  161.319443  1935.83325
## 3617 spouse/partner                  yes  161.319443  1935.83325
## 3618 child                           yes  161.319443  1935.83325
## 3619 child                           yes  161.319443  1935.83325
## 3620 child                           yes  161.319443  1935.83325
## 3621 parent, parent-in-law           yes  161.319443  1935.83325
## 3622 head                            yes  117.916664  1415.00000
## 3623 spouse/partner                  yes  117.916664  1415.00000
## 3624 head                            yes  228.266678  2739.20020
## 3625 child                           yes  228.266678  2739.20020
## 3626 son/daughter-in-law             yes  228.266678  2739.20020
## 3627 grandchild                     <NA>  228.266678  2739.20020
## 3628 grandchild                     <NA>  228.266678  2739.20020
## 3629 head                            yes  454.444427  5453.33301
## 3630 spouse/partner                  yes  454.444427  5453.33301
## 3631 child                           yes  454.444427  5453.33301
## 3632 head                            yes  158.000000  1896.00000
## 3633 spouse/partner                  yes  158.000000  1896.00000
## 3634 child                           yes  158.000000  1896.00000
## 3635 head                            yes   26.666666   320.00000
## 3636 child                           yes   26.666666   320.00000
## 3637 head                            yes  187.916672  2255.00000
## 3638 spouse/partner                  yes  187.916672  2255.00000
## 3639 child                           yes  187.916672  2255.00000
## 3640 child                            no  187.916672  2255.00000
## 3641 head                            yes  176.666672  2120.00000
## 3642 spouse/partner                  yes  176.666672  2120.00000
## 3643 child                           yes  176.666672  2120.00000
## 3644 head                            yes  250.000000  3000.00000
## 3645 spouse/partner                  yes  250.000000  3000.00000
## 3646 child                           yes  250.000000  3000.00000
## 3647 head                            yes  188.000000  2256.00000
## 3648 spouse/partner                  yes  188.000000  2256.00000
## 3649 head                            yes  427.222198  5126.66650
## 3650 spouse/partner                  yes  427.222198  5126.66650
## 3651 child                           yes  427.222198  5126.66650
## 3652 head                            yes  183.000000  2196.00000
## 3653 child                           yes  183.000000  2196.00000
## 3654 head                             no  116.333336  1396.00000
## 3655 head                            yes  122.500000  1470.00000
## 3656 spouse/partner                  yes  122.500000  1470.00000
## 3657 child                           yes  122.500000  1470.00000
## 3658 child                           yes  122.500000  1470.00000
## 3659 head                            yes  116.263885  1395.16663
## 3660 spouse/partner                  yes  116.263885  1395.16663
## 3661 child                           yes  116.263885  1395.16663
## 3662 son/daughter-in-law             yes  116.263885  1395.16663
## 3663 grandchild                      yes  116.263885  1395.16663
## 3664 grandchild                      yes  116.263885  1395.16663
## 3665 head                            yes   64.000000   768.00000
## 3666 head                            yes  100.000000  1200.00000
## 3667 head                            yes  117.000000  1404.00000
## 3668 spouse/partner                  yes  117.000000  1404.00000
## 3669 parent, parent-in-law           yes  117.000000  1404.00000
## 3670 head                            yes   79.599998   955.19995
## 3671 spouse/partner                  yes   79.599998   955.19995
## 3672 child                           yes   79.599998   955.19995
## 3673 son/daughter-in-law             yes   79.599998   955.19995
## 3674 grandchild                      yes   79.599998   955.19995
## 3675 head                            yes   53.333332   640.00000
## 3676 child                            no   53.333332   640.00000
## 3677 child                            no   53.333332   640.00000
## 3678 head                            yes  147.750000  1773.00000
## 3679 head                            yes  132.000000  1584.00000
## 3680 spouse/partner                  yes  132.000000  1584.00000
## 3681 head                            yes  146.458328  1757.50000
## 3682 spouse/partner                  yes  146.458328  1757.50000
## 3683 head                            yes   22.166668   266.00000
## 3684 spouse/partner                  yes   22.166668   266.00000
## 3685 child                           yes   22.166668   266.00000
## 3686 son/daughter-in-law             yes   22.166668   266.00000
## 3687 head                            yes  226.666672  2720.00000
## 3688 spouse/partner                  yes  226.666672  2720.00000
## 3689 parent, parent-in-law           yes  226.666672  2720.00000
## 3690 head                            yes  450.000000  5400.00000
## 3691 head                            yes  300.000000  3600.00000
## 3692 head                            yes  329.444427  3953.33301
## 3693 spouse/partner                  yes  329.444427  3953.33301
## 3694 child                           yes  329.444427  3953.33301
## 3695 head                            yes   80.000000   960.00000
## 3696 spouse/partner                 <NA>   80.000000   960.00000
## 3697 child                           yes   80.000000   960.00000
## 3698 child                           yes   80.000000   960.00000
## 3699 head                            yes  232.500000  2790.00000
## 3700 spouse/partner                  yes  232.500000  2790.00000
## 3701 head                            yes  190.000000  2280.00000
## 3702 child                           yes  190.000000  2280.00000
## 3703 head                            yes  376.666656  4520.00000
##       aggregate aggr_ind_annual educ_completed grade_complete grade_all
## 1     1041.9000        347.3000              2              4         4
## 2     1041.9000        347.3000              4              3        11
## 3     1041.9000        347.3000              4              0         8
## 4     3270.8049       1635.4025              4              3        11
## 5     3270.8049       1635.4025              3              4         8
## 6     1215.6000       1215.6000              3              4         8
## 7     4682.6001       2341.3000              3              4         8
## 8     4682.6001       2341.3000              3              4         8
## 9     2050.3799       2050.3799              4              5        13
## 10    1794.8400       1794.8400              4              5        13
## 11    2747.7058       1373.8529              3              4         8
## 12    2747.7058       1373.8529              3              4         8
## 13    3555.3142       1777.6571              4              5        13
## 14    3555.3142       1777.6571              4              5        13
## 15    4277.4072       1425.8024              4              5        13
## 16    4277.4072       1425.8024              4              3        11
## 17    4277.4072       1425.8024              4              3        11
## 18   20255.5859       6751.8618              4              5        13
## 19   20255.5859       6751.8618              4              1         9
## 20   20255.5859       6751.8618              4              3        11
## 21    3114.5786       1557.2893              4              5        13
## 22    3114.5786       1557.2893              4              5        13
## 23    1961.4200        980.7100              3              4         8
## 24    1961.4200        980.7100              2             NA        NA
## 25    7311.3115       1462.2623              3              4         8
## 26    7311.3115       1462.2623              2              4         4
## 27    7311.3115       1462.2623              4              5        13
## 28    7311.3115       1462.2623              4              5        13
## 29    7311.3115       1462.2623             NA             NA        NA
## 30    3492.1885       1164.0629              4              5        13
## 31    3492.1885       1164.0629              4              5        13
## 32    3492.1885       1164.0629              4              5        13
## 33    3430.4714       1715.2357              3              4         8
## 34    3430.4714       1715.2357              4              5        13
## 35    2984.8894       1492.4447              3              4         8
## 36    2984.8894       1492.4447              3              4         8
## 37    1756.0601       1756.0601              3              4         8
## 38    8999.6787       2999.8928              4              5        13
## 39    8999.6787       2999.8928              4              5        13
## 40    8999.6787       2999.8928              4              3        11
## 41    7219.2715       2406.4238              4              5        13
## 42    7219.2715       2406.4238              4              5        13
## 43    7219.2715       2406.4238              4              3        11
## 44   10383.5713       2595.8928              4              5        13
## 45   10383.5713       2595.8928              4              5        13
## 46   10383.5713       2595.8928              4              2        10
## 47   10383.5713       2595.8928              4              5        13
## 48    4824.0986       1608.0328              3              4         8
## 49    4824.0986       1608.0328              3              4         8
## 50    4824.0986       1608.0328              2              4         4
## 51    3202.4758        533.7460              2              4         4
## 52    3202.4758        533.7460              2              4         4
## 53    3202.4758        533.7460              2              4         4
## 54    3202.4758        533.7460              4              0         8
## 55    3202.4758        533.7460             NA             NA        NA
## 56    3202.4758        533.7460             NA             NA        NA
## 57    7195.0801       1798.7700              3              4         8
## 58    7195.0801       1798.7700              3              4         8
## 59    7195.0801       1798.7700              4              5        13
## 60    7195.0801       1798.7700              4              5        13
## 61    5436.2427       2718.1213              4              5        13
## 62    5436.2427       2718.1213              4              3        11
## 63   22949.0996       4589.8198              4              5        13
## 64   22949.0996       4589.8198              4              5        13
## 65   22949.0996       4589.8198              4              3        11
## 66   22949.0996       4589.8198             NA             NA        NA
## 67   22949.0996       4589.8198             NA             NA        NA
## 68    5919.9600       1973.3199              4              5        13
## 69    5919.9600       1973.3199              4              5        13
## 70    5919.9600       1973.3199             NA             NA        NA
## 71    6316.9429       1579.2357              4              5        13
## 72    6316.9429       1579.2357              4              5        13
## 73    6316.9429       1579.2357              4              0         8
## 74    6316.9429       1579.2357              3              4         8
## 75    9320.7832       9320.7832              4              4        12
## 76    9646.6357       3215.5452              4              5        13
## 77    9646.6357       3215.5452              4              5        13
## 78    9646.6357       3215.5452              4              5        13
## 79    6688.5859       1672.1465              4              5        13
## 80    6688.5859       1672.1465              4              5        13
## 81    6688.5859       1672.1465              4              2        10
## 82    6688.5859       1672.1465             NA             NA        NA
## 83    3869.8799       1934.9399              2              4         4
## 84    3869.8799       1934.9399              4              3        11
## 85    4479.2715       2239.6357              2              4         4
## 86    4479.2715       2239.6357              3              4         8
## 87   16439.6426       5479.8809              4              5        13
## 88   16439.6426       5479.8809              4              5        13
## 89   16439.6426       5479.8809              4              2        10
## 90    7374.4355       3687.2178              4              5        13
## 91    7374.4355       3687.2178              4              5        13
## 92    7136.2886       1427.2577              4              5        13
## 93    7136.2886       1427.2577              3              4         8
## 94    7136.2886       1427.2577              4              5        13
## 95    7136.2886       1427.2577              4              5        13
## 96    7136.2886       1427.2577              4              5        13
## 97    3867.6750       1933.8375              4              5        13
## 98    3867.6750       1933.8375              4              5        13
## 99    2632.6799       2632.6799              2              4         4
## 100   7264.6787       3632.3394              4              5        13
## 101   7264.6787       3632.3394              4              5        13
## 102   5512.0444       2756.0222              3              4         8
## 103   5512.0444       2756.0222              3              4         8
## 104   5829.2002       2914.6001              3              4         8
## 105   5829.2002       2914.6001              3              4         8
## 106   1902.5771       1902.5771              3              4         8
## 107   2631.8000        657.9500              4              3        11
## 108   2631.8000        657.9500              4              2        10
## 109   2631.8000        657.9500              4              2        10
## 110   2631.8000        657.9500             NA             NA        NA
## 111  10707.7744       2676.9436              4              5        13
## 112  10707.7744       2676.9436              4              5        13
## 113  10707.7744       2676.9436              4              0         8
## 114  10707.7744       2676.9436              4              1         9
## 115   2066.6001       1033.3000              4              5        13
## 116   2066.6001       1033.3000              3              4         8
## 117   5221.7856       1740.5952              4              3        11
## 118   5221.7856       1740.5952              4              5        13
## 119   5221.7856       1740.5952              4              5        13
## 120   3532.1309       1766.0654              4              5        13
## 121   3532.1309       1766.0654              4              5        13
## 122   5287.1377       1762.3793              4              5        13
## 123   5287.1377       1762.3793              4              5        13
## 124   5287.1377       1762.3793             NA             NA        NA
## 125   6040.8950       3020.4475              3              4         8
## 126   6040.8950       3020.4475              3              4         8
## 127  36518.0234       9129.5059              4              5        13
## 128  36518.0234       9129.5059              4              5        13
## 129  36518.0234       9129.5059              4              2        10
## 130  36518.0234       9129.5059             NA             NA        NA
## 131  14380.4316       4793.4771              4              5        13
## 132  14380.4316       4793.4771              4              5        13
## 133  14380.4316       4793.4771              4              4        12
## 134   4931.2500       2465.6250              4              5        13
## 135   4931.2500       2465.6250              4              5        13
## 136   3266.9043       1088.9681              4              5        13
## 137   3266.9043       1088.9681              4              4        12
## 138   3266.9043       1088.9681              4              4        12
## 139   5160.6099       5160.6099              4              5        13
## 140    608.2600        608.2600              1             NA         0
## 141   4417.8999        736.3167              4              3        11
## 142   4417.8999        736.3167              3              4         8
## 143   4417.8999        736.3167              1             NA         0
## 144   4417.8999        736.3167              4              3        11
## 145   4417.8999        736.3167              4              3        11
## 146   4417.8999        736.3167              4              0         8
## 147   2963.0000        423.2857              1             NA         0
## 148   2963.0000        423.2857              2              4         4
## 149   2963.0000        423.2857              4              2        10
## 150   2963.0000        423.2857             NA             NA        NA
## 151   2963.0000        423.2857             NA             NA        NA
## 152   2963.0000        423.2857             NA             NA        NA
## 153   2963.0000        423.2857             NA             NA        NA
## 154   3418.7000       1709.3500              3              4         8
## 155   3418.7000       1709.3500              3              4         8
## 156   1051.4800       1051.4800              4              5        13
## 157   7577.3774       2525.7925              3              4         8
## 158   7577.3774       2525.7925              4              3        11
## 159   7577.3774       2525.7925              4              5        13
## 160   3511.6750       1755.8375              3              4         8
## 161   3511.6750       1755.8375              4              3        11
## 162   5881.3843       2940.6921              4              5        13
## 163   5881.3843       2940.6921              4              2        10
## 164   4725.9458       4725.9458              4              4        12
## 165  20533.6934       5133.4233              4              5        13
## 166  20533.6934       5133.4233              4              5        13
## 167  20533.6934       5133.4233              4              4        12
## 168  20533.6934       5133.4233              4              1         9
## 169   3319.6001       1106.5333              4              3        11
## 170   3319.6001       1106.5333              4              5        13
## 171   3319.6001       1106.5333              4              5        13
## 172  10635.7998       1519.4000              4              2        10
## 173  10635.7998       1519.4000              4              1         9
## 174  10635.7998       1519.4000              4              2        10
## 175  10635.7998       1519.4000              4              2        10
## 176  10635.7998       1519.4000              4              2        10
## 177  10635.7998       1519.4000              4              0         8
## 178  10635.7998       1519.4000             NA             NA        NA
## 179   3374.8000       3374.8000              3              4         8
## 180   3348.2800       1674.1400              4              5        13
## 181   3348.2800       1674.1400              2              4         4
## 182   3362.1399       1120.7133              3              4         8
## 183   3362.1399       1120.7133              3              4         8
## 184   3362.1399       1120.7133             NA             NA        NA
## 185  13553.5010       2710.7002              4              5        13
## 186  13553.5010       2710.7002              4              5        13
## 187  13553.5010       2710.7002              4              4        12
## 188  13553.5010       2710.7002              3              4         8
## 189  13553.5010       2710.7002              3              4         8
## 190  12365.5303       3091.3826              4              5        13
## 191  12365.5303       3091.3826              4              5        13
## 192  12365.5303       3091.3826              4              5        13
## 193  12365.5303       3091.3826              4              2        10
## 194   5968.8267       2984.4133              2              4         4
## 195   5968.8267       2984.4133              2              4         4
## 196  13067.3965       4355.7988              4              5        13
## 197  13067.3965       4355.7988              4              5        13
## 198  13067.3965       4355.7988              4              2        10
## 199  10372.7002       1728.7833              2              4         4
## 200  10372.7002       1728.7833              3              4         8
## 201  10372.7002       1728.7833              3              4         8
## 202  10372.7002       1728.7833              4              5        13
## 203  10372.7002       1728.7833              4              5        13
## 204  10372.7002       1728.7833             NA             NA        NA
## 205   2630.3999       2630.3999              3              4         8
## 206   8839.9160       2946.6387              4              5        13
## 207   8839.9160       2946.6387              4              5        13
## 208   8839.9160       2946.6387             NA             NA        NA
## 209   1732.2457       1732.2457              3              4         8
## 210  12564.3076       4188.1025              3              4         8
## 211  12564.3076       4188.1025              3              4         8
## 212  12564.3076       4188.1025              3              4         8
## 213   3846.9583       1923.4791              4              5        13
## 214   3846.9583       1923.4791              4              5        13
## 215   6700.7798       1340.1560              4              5        13
## 216   6700.7798       1340.1560              3              4         8
## 217   6700.7798       1340.1560              4              0         8
## 218   6700.7798       1340.1560             NA             NA        NA
## 219   6700.7798       1340.1560              3              4         8
## 220   2795.7163        698.9291              2              4         4
## 221   2795.7163        698.9291              2              4         4
## 222   2795.7163        698.9291              3              4         8
## 223   2795.7163        698.9291              2              4         4
## 224   3231.6799        646.3360              2              4         4
## 225   3231.6799        646.3360              2              4         4
## 226   3231.6799        646.3360              4              2        10
## 227   3231.6799        646.3360              4              1         9
## 228   3231.6799        646.3360             NA             NA        NA
## 229   8401.4043       4200.7021              2              4         4
## 230   8401.4043       4200.7021              2              4         4
## 231  11500.7646       2300.1528              3              4         8
## 232  11500.7646       2300.1528              3              4         8
## 233  11500.7646       2300.1528              4              5        13
## 234  11500.7646       2300.1528              4              5        13
## 235  11500.7646       2300.1528              4              2        10
## 236   9004.4785       4502.2393              4              5        13
## 237   9004.4785       4502.2393              4              5        13
## 238   1756.4915       1756.4915              4              5        13
## 239   2966.2158       2966.2158              3              4         8
## 240   5923.6509       2961.8254              3              4         8
## 241   5923.6509       2961.8254              3              4         8
## 242   4666.7212       2333.3606              3              4         8
## 243   4666.7212       2333.3606              3              4         8
## 244  11451.7861       2862.9465              4              5        13
## 245  11451.7861       2862.9465              4              5        13
## 246  11451.7861       2862.9465             NA             NA        NA
## 247  11451.7861       2862.9465             NA             NA        NA
## 248   1711.2000       1711.2000              1             NA         0
## 249   1854.4000       1854.4000              3              4         8
## 250   4685.4927        937.0985              3              4         8
## 251   4685.4927        937.0985              3              4         8
## 252   4685.4927        937.0985              4              4        12
## 253   4685.4927        937.0985              3              4         8
## 254   4685.4927        937.0985             NA             NA        NA
## 255   5888.0215       2944.0107              3              4         8
## 256   5888.0215       2944.0107              4              3        11
## 257   3073.9585       1536.9792              4              5        13
## 258   3073.9585       1536.9792              4              5        13
## 259   7280.7285       1456.1458              3              4         8
## 260   7280.7285       1456.1458              4              5        13
## 261   7280.7285       1456.1458              4              5        13
## 262   7280.7285       1456.1458              4              0         8
## 263   7280.7285       1456.1458              4              1         9
## 264   6834.7285       3417.3643              4              5        13
## 265   6834.7285       3417.3643              4              5        13
## 266   5717.1973       2858.5986              4              5        13
## 267   5717.1973       2858.5986              4              3        11
## 268   4332.8198       2166.4099              4              3        11
## 269   4332.8198       2166.4099              3              4         8
## 270   1843.9714       1843.9714              3              4         8
## 271  16918.4004       5639.4668              4              5        13
## 272  16918.4004       5639.4668              4              5        13
## 273  16918.4004       5639.4668              4              1         9
## 274   3285.8750       1642.9375              4              5        13
## 275   3285.8750       1642.9375              4              5        13
## 276   1979.6000       1979.6000              2              4         4
## 277   2822.8000       2822.8000              4              5        13
## 278  22137.4648       5534.3662              4              7        15
## 279  22137.4648       5534.3662              3              4         8
## 280  22137.4648       5534.3662              3              4         8
## 281  22137.4648       5534.3662              4              5        13
## 282   3314.3000       3314.3000              3              4         8
## 283   4851.0820       1617.0273              4              5        13
## 284   4851.0820       1617.0273              3              4         8
## 285   4851.0820       1617.0273              4              5        13
## 286   3159.5515       3159.5515              4              5        13
## 287   5489.1143       2744.5571              2              4         4
## 288   5489.1143       2744.5571              2              4         4
## 289  13061.9990       1865.9999              4              5        13
## 290  13061.9990       1865.9999              4              5        13
## 291  13061.9990       1865.9999              3              4         8
## 292  13061.9990       1865.9999              4              5        13
## 293  13061.9990       1865.9999              4              5        13
## 294  13061.9990       1865.9999              4              5        13
## 295  13061.9990       1865.9999             NA             NA        NA
## 296  10819.9004       3606.6335              4              1         9
## 297  10819.9004       3606.6335             NA             NA        NA
## 298  10819.9004       3606.6335             NA             NA        NA
## 299   4141.6001       2070.8000              4              5        13
## 300   4141.6001       2070.8000              4              5        13
## 301   2576.6599       2576.6599              4              3        11
## 302   8283.3145       1183.3307              4              5        13
## 303   8283.3145       1183.3307              4              5        13
## 304   8283.3145       1183.3307              4              3        11
## 305   8283.3145       1183.3307              2              4         4
## 306   8283.3145       1183.3307              4              5        13
## 307   8283.3145       1183.3307              4              5        13
## 308   8283.3145       1183.3307              4              5        13
## 309   3578.7800       1789.3900              3              4         8
## 310   3578.7800       1789.3900              3              4         8
## 311   3176.0200       1588.0100              3              4         8
## 312   3176.0200       1588.0100              3              4         8
## 313   8441.4512       8441.4512              4              5        13
## 314  12517.7500       2503.5500              3              4         8
## 315  12517.7500       2503.5500              4              5        13
## 316  12517.7500       2503.5500              4              5        13
## 317  12517.7500       2503.5500              4              5        13
## 318  12517.7500       2503.5500             NA             NA        NA
## 319   5403.2573       2701.6287              4              5        13
## 320   5403.2573       2701.6287              4              5        13
## 321   3297.0715       1648.5358              4              5        13
## 322   3297.0715       1648.5358              3              4         8
## 323   5146.8145       1286.7036              3              4         8
## 324   5146.8145       1286.7036              4              5        13
## 325   5146.8145       1286.7036              4              5        13
## 326   5146.8145       1286.7036              4              5        13
## 327   4275.0142       2137.5071              4              5        13
## 328   4275.0142       2137.5071              4              3        11
## 329   1705.9915       1705.9915              3              4         8
## 330   3305.3147       3305.3147              3              4         8
## 331   5698.3813       1424.5953              3              4         8
## 332   5698.3813       1424.5953              3              4         8
## 333   5698.3813       1424.5953              3              4         8
## 334   5698.3813       1424.5953              3              4         8
## 335   5703.3857       1140.6771              2             NA        NA
## 336   5703.3857       1140.6771              2             NA        NA
## 337   5703.3857       1140.6771             NA             NA        NA
## 338   5703.3857       1140.6771             NA             NA        NA
## 339   5703.3857       1140.6771             NA             NA        NA
## 340   9230.3281       1846.0657              4              5        13
## 341   9230.3281       1846.0657              3              4         8
## 342   9230.3281       1846.0657              4              5        13
## 343   9230.3281       1846.0657              3              4         8
## 344   9230.3281       1846.0657             NA             NA        NA
## 345   5563.0156       2781.5078              4              5        13
## 346   5563.0156       2781.5078              4              5        13
## 347  13496.2451       4498.7485              4              5        13
## 348  13496.2451       4498.7485              4              3        11
## 349  13496.2451       4498.7485              4              5        13
## 350   2384.0393       2384.0393              3              4         8
## 351   9264.4873       4632.2437              4              5        13
## 352   9264.4873       4632.2437              4              5        13
## 353   5691.0498        948.5083              3              4         8
## 354   5691.0498        948.5083             NA             NA        NA
## 355   5691.0498        948.5083              4              3        11
## 356   5691.0498        948.5083              4              1         9
## 357   5691.0498        948.5083              3              4         8
## 358   5691.0498        948.5083              2              4         4
## 359   3385.3357       1128.4452              1             NA         0
## 360   3385.3357       1128.4452              1             NA         0
## 361   3385.3357       1128.4452              4              1         9
## 362   2816.9714        938.9905              3              4         8
## 363   2816.9714        938.9905              4              5        13
## 364   2816.9714        938.9905              4              5        13
## 365   7593.5371       3796.7686              4              5        13
## 366   7593.5371       3796.7686              4              3        11
## 367  11073.7285       2214.7456              3              4         8
## 368  11073.7285       2214.7456              3              4         8
## 369  11073.7285       2214.7456              3              4         8
## 370  11073.7285       2214.7456              3              4         8
## 371  11073.7285       2214.7456              4              0         8
## 372   8846.8477       2948.9492              4              3        11
## 373   8846.8477       2948.9492              4              5        13
## 374   8846.8477       2948.9492              4              5        13
## 375  11165.8818       1860.9803              4              5        13
## 376  11165.8818       1860.9803              4              5        13
## 377  11165.8818       1860.9803              4              5        13
## 378  11165.8818       1860.9803              4              5        13
## 379  11165.8818       1860.9803             NA             NA        NA
## 380  11165.8818       1860.9803             NA             NA        NA
## 381  14721.0430       2103.0061              4              5        13
## 382  14721.0430       2103.0061              4              5        13
## 383  14721.0430       2103.0061              4              5        13
## 384  14721.0430       2103.0061              4              5        13
## 385  14721.0430       2103.0061              4              5        13
## 386  14721.0430       2103.0061              4              0         8
## 387  14721.0430       2103.0061             NA             NA        NA
## 388  14157.5801       2359.5967              4              5        13
## 389  14157.5801       2359.5967              4              5        13
## 390  14157.5801       2359.5967              3              4         8
## 391  14157.5801       2359.5967              4              5        13
## 392  14157.5801       2359.5967             NA             NA        NA
## 393  14157.5801       2359.5967             NA             NA        NA
## 394   6690.2212       3345.1106              4              5        13
## 395   6690.2212       3345.1106              4              5        13
## 396   5034.0859       2517.0430              2              4         4
## 397   5034.0859       2517.0430              1             NA         0
## 398   5403.8599       2701.9299              3              4         8
## 399   5403.8599       2701.9299              4              5        13
## 400   9082.0781       4541.0391              4              5        13
## 401   9082.0781       4541.0391              4              5        13
## 402   8372.2783       4186.1392              3              4         8
## 403   8372.2783       4186.1392              3              4         8
## 404   3970.9771       1985.4885              4              4        12
## 405   3970.9771       1985.4885              4              3        11
## 406  11876.9473       2969.2368              4              5        13
## 407  11876.9473       2969.2368              4              5        13
## 408  11876.9473       2969.2368              4              1         9
## 409  11876.9473       2969.2368              4              5        13
## 410  10397.2188       5198.6094              4              4        12
## 411  10397.2188       5198.6094              4              1         9
## 412   4861.5200       4861.5200              4              5        13
## 413   2828.1001       1414.0500              3              4         8
## 414   2828.1001       1414.0500              3              4         8
## 415   9538.3604       4769.1802              3              4         8
## 416   9538.3604       4769.1802              3              4         8
## 417   4819.7998       2409.8999              3              4         8
## 418   4819.7998       2409.8999              3              4         8
## 419  13277.5957       3319.3989              4              5        13
## 420  13277.5957       3319.3989              4              5        13
## 421  13277.5957       3319.3989              4              0         8
## 422  13277.5957       3319.3989              4              0         8
## 423   8879.7656       2219.9414              4              5        13
## 424   8879.7656       2219.9414              4              5        13
## 425   8879.7656       2219.9414              4              2        10
## 426   8879.7656       2219.9414              4              5        13
## 427  11969.3535       2992.3384              4              5        13
## 428  11969.3535       2992.3384              4              5        13
## 429  11969.3535       2992.3384              4              5        13
## 430  11969.3535       2992.3384              2             NA        NA
## 431   7486.1299       3743.0649              4              5        13
## 432   7486.1299       3743.0649              4              1         9
## 433  14445.4219       3611.3555              4              5        13
## 434  14445.4219       3611.3555              4              1         9
## 435  14445.4219       3611.3555              4              1         9
## 436  14445.4219       3611.3555              4              5        13
## 437   2059.8015       2059.8015              3              4         8
## 438  11409.7285       2852.4321              4              5        13
## 439  11409.7285       2852.4321              4              5        13
## 440  11409.7285       2852.4321              4              5        13
## 441  11409.7285       2852.4321              2              4         4
## 442   5892.5254       1473.1313              4              5        13
## 443   5892.5254       1473.1313              4              5        13
## 444   5892.5254       1473.1313              4              0         8
## 445   5892.5254       1473.1313             NA             NA        NA
## 446   4726.6108       2363.3054              4              5        13
## 447   4726.6108       2363.3054              4              5        13
## 448   7878.2573       1969.5643              3              4         8
## 449   7878.2573       1969.5643              4              5        13
## 450   7878.2573       1969.5643              4              5        13
## 451   7878.2573       1969.5643             NA             NA        NA
## 452   2835.7356       1417.8678              4              5        13
## 453   2835.7356       1417.8678              4              5        13
## 454  10662.6006       5331.3003              4              5        13
## 455  10662.6006       5331.3003              4              5        13
## 456   7204.0259       1801.0065              4              5        13
## 457   7204.0259       1801.0065              4              5        13
## 458   7204.0259       1801.0065              4              3        11
## 459   7204.0259       1801.0065              4              3        11
## 460   4223.0674       1407.6891              4              5        13
## 461   4223.0674       1407.6891              4              5        13
## 462   4223.0674       1407.6891              4              5        13
## 463   3638.2000       1819.1000              4              5        13
## 464   3638.2000       1819.1000              4              5        13
## 465  11614.7070       3871.5691              3              4         8
## 466  11614.7070       3871.5691              4              5        13
## 467  11614.7070       3871.5691              4              5        13
## 468   2517.4087       2517.4087              4              5        13
## 469   8759.9521       2919.9841              4              5        13
## 470   8759.9521       2919.9841              3              4         8
## 471   8759.9521       2919.9841              1             NA         0
## 472   7331.8799       1832.9700              4              5        13
## 473   7331.8799       1832.9700              4              5        13
## 474   7331.8799       1832.9700              2              4         4
## 475   7331.8799       1832.9700              4              5        13
## 476  12566.7764       2513.3552              4              5        13
## 477  12566.7764       2513.3552              4              5        13
## 478  12566.7764       2513.3552              4              3        11
## 479  12566.7764       2513.3552              4              1         9
## 480  12566.7764       2513.3552             NA             NA        NA
## 481  11550.0264       3850.0088              4              5        13
## 482  11550.0264       3850.0088              4              5        13
## 483  11550.0264       3850.0088             NA             NA        NA
## 484   3684.7964       1842.3982              3              4         8
## 485   3684.7964       1842.3982              3              4         8
## 486  14752.5947       3688.1487              4              5        13
## 487  14752.5947       3688.1487              4              5        13
## 488  14752.5947       3688.1487             NA             NA        NA
## 489  14752.5947       3688.1487             NA             NA        NA
## 490   6571.3716       3285.6858              4              5        13
## 491   6571.3716       3285.6858              4              5        13
## 492  10551.5400       3517.1799              4              4        12
## 493  10551.5400       3517.1799              4              5        13
## 494  10551.5400       3517.1799             NA             NA        NA
## 495  35688.0625      17844.0312              4              5        13
## 496  35688.0625      17844.0312             NA             NA        NA
## 497   8364.9189       4182.4595              4              5        13
## 498   8364.9189       4182.4595              4              5        13
## 499   9703.4473       4851.7236              4              5        13
## 500   9703.4473       4851.7236              4              5        13
## 501   8664.1895       2888.0632              3              4         8
## 502   8664.1895       2888.0632              3              4         8
## 503   8664.1895       2888.0632              4              5        13
## 504   3565.6799       1782.8400              4              5        13
## 505   3565.6799       1782.8400              4              5        13
## 506   7413.6001       2471.2000              4              5        13
## 507   7413.6001       2471.2000              4              5        13
## 508   7413.6001       2471.2000              4              5        13
## 509   3170.1599       1585.0800              4              5        13
## 510   3170.1599       1585.0800              1             NA         0
## 511  10899.2910       1816.5485              4              5        13
## 512  10899.2910       1816.5485              4              5        13
## 513  10899.2910       1816.5485              4              5        13
## 514  10899.2910       1816.5485              4              5        13
## 515  10899.2910       1816.5485              4              1         9
## 516  10899.2910       1816.5485             NA             NA        NA
## 517   4593.4302       2296.7151              3              4         8
## 518   4593.4302       2296.7151              3              4         8
## 519   4635.2378       2317.6189              3              4         8
## 520   4635.2378       2317.6189              1             NA         0
## 521   7217.5679       2405.8560              4              3        11
## 522   7217.5679       2405.8560              4              5        13
## 523   7217.5679       2405.8560             NA             NA        NA
## 524   5312.7812       2656.3906              3              4         8
## 525   5312.7812       2656.3906              3              4         8
## 526   9752.3711       2438.0928              4              5        13
## 527   9752.3711       2438.0928              4              5        13
## 528   9752.3711       2438.0928              1             NA         0
## 529   9752.3711       2438.0928              4              0         8
## 530   4554.7891       2277.3945              3              4         8
## 531   4554.7891       2277.3945              3              4         8
## 532   9696.9287       4848.4644              4              5        13
## 533   9696.9287       4848.4644              4              5        13
## 534   6686.6001       3343.3000              4              5        13
## 535   6686.6001       3343.3000              2              4         4
## 536   6161.2715       6161.2715              4              3        11
## 537  10702.0068       2675.5017              4              5        13
## 538  10702.0068       2675.5017              3              4         8
## 539  10702.0068       2675.5017              2              4         4
## 540  10702.0068       2675.5017              2              4         4
## 541   2932.5000       2932.5000              3              4         8
## 542   8661.7998       2887.2666              4              5        13
## 543   8661.7998       2887.2666              4              5        13
## 544   8661.7998       2887.2666              4              3        11
## 545   5754.7891       2877.3945              2              4         4
## 546   5754.7891       2877.3945              2              4         4
## 547  11054.9355       2763.7339              4              5        13
## 548  11054.9355       2763.7339              4              3        11
## 549  11054.9355       2763.7339              4              2        10
## 550  11054.9355       2763.7339              3              4         8
## 551   2594.2000       1297.1000              3              4         8
## 552   2594.2000       1297.1000              4              4        12
## 553   2096.0000       2096.0000              2              4         4
## 554  19544.4727       6514.8242              4              5        13
## 555  19544.4727       6514.8242              4              2        10
## 556  19544.4727       6514.8242              4              1         9
## 557   1981.2800       1981.2800              3              4         8
## 558  16063.0889       3212.6177              4              5        13
## 559  16063.0889       3212.6177              4              5        13
## 560  16063.0889       3212.6177              4              5        13
## 561  16063.0889       3212.6177              4              5        13
## 562  16063.0889       3212.6177             NA             NA        NA
## 563   6443.7642       1288.7528              4              5        13
## 564   6443.7642       1288.7528              3              4         8
## 565   6443.7642       1288.7528              4              2        10
## 566   6443.7642       1288.7528              4              1         9
## 567   6443.7642       1288.7528              4              1         9
## 568  15641.5801       5213.8599              4              5        13
## 569  15641.5801       5213.8599              4              5        13
## 570  15641.5801       5213.8599              4              5        13
## 571   4738.9199       2369.4600              3              4         8
## 572   4738.9199       2369.4600              3              4         8
## 573   7503.8530       3751.9265              4              5        13
## 574   7503.8530       3751.9265              4              5        13
## 575  13815.0703       4605.0234              4              5        13
## 576  13815.0703       4605.0234              4              5        13
## 577  13815.0703       4605.0234              4              5        13
## 578  15340.9756       5113.6587              4              5        13
## 579  15340.9756       5113.6587              4              4        12
## 580  15340.9756       5113.6587              4              5        13
## 581   7969.1157       2656.3718              4              5        13
## 582   7969.1157       2656.3718              4              5        13
## 583   7969.1157       2656.3718              4              5        13
## 584   4075.3728       2037.6864              4              5        13
## 585   4075.3728       2037.6864              4              5        13
## 586   2030.9600        338.4933              1             NA         0
## 587   2030.9600        338.4933              1             NA         0
## 588   2030.9600        338.4933              2              4         4
## 589   2030.9600        338.4933              2              4         4
## 590   2030.9600        338.4933             NA             NA        NA
## 591   2030.9600        338.4933             NA             NA        NA
## 592   3419.5129        854.8782              2              4         4
## 593   3419.5129        854.8782              2              4         4
## 594   3419.5129        854.8782             NA             NA        NA
## 595   3419.5129        854.8782             NA             NA        NA
## 596   8890.4521       4445.2261              3              4         8
## 597   8890.4521       4445.2261              3              4         8
## 598   4375.6401       1093.9100              3              4         8
## 599   4375.6401       1093.9100              4              1         9
## 600   4375.6401       1093.9100              4              2        10
## 601   4375.6401       1093.9100              4              2        10
## 602   2700.4470       2700.4470              4              5        13
## 603   4216.4927       1405.4976              3              4         8
## 604   4216.4927       1405.4976              3              4         8
## 605   4216.4927       1405.4976              3              4         8
## 606   5541.7998       1847.2666              3              4         8
## 607   5541.7998       1847.2666              3              4         8
## 608   5541.7998       1847.2666              2              4         4
## 609   9879.4932       1975.8987              4              5        13
## 610   9879.4932       1975.8987              4              5        13
## 611   9879.4932       1975.8987             NA             NA        NA
## 612   9879.4932       1975.8987              4              5        13
## 613   9879.4932       1975.8987              4              5        13
## 614   8318.4424       2772.8142              4              5        13
## 615   8318.4424       2772.8142              4              5        13
## 616   8318.4424       2772.8142              4              2        10
## 617   5494.2856       1373.5714              4              5        13
## 618   5494.2856       1373.5714              4              5        13
## 619   5494.2856       1373.5714              4              5        13
## 620   5494.2856       1373.5714              4              5        13
## 621   7669.1431       3834.5715              4              5        13
## 622   7669.1431       3834.5715              3              4         8
## 623   4956.9355       2478.4678              4              5        13
## 624   4956.9355       2478.4678              4              5        13
## 625  10724.4141       2681.1035              3              4         8
## 626  10724.4141       2681.1035              3              4         8
## 627  10724.4141       2681.1035             NA             NA        NA
## 628  10724.4141       2681.1035              3              4         8
## 629   2219.1462       1109.5731              3              4         8
## 630   2219.1462       1109.5731              2              4         4
## 631   4603.3599       1534.4532              4              5        13
## 632   4603.3599       1534.4532              4              3        11
## 633   4603.3599       1534.4532              4              3        11
## 634   2273.1877       1136.5939              3              4         8
## 635   2273.1877       1136.5939              3              4         8
## 636   2770.3694        692.5923              3              4         8
## 637   2770.3694        692.5923              3              4         8
## 638   2770.3694        692.5923              3              4         8
## 639   2770.3694        692.5923              4              2        10
## 640   3558.6799        889.6700              3              4         8
## 641   3558.6799        889.6700              3              4         8
## 642   3558.6799        889.6700              4              0         8
## 643   3558.6799        889.6700              4              1         9
## 644    757.5200        757.5200              2              4         4
## 645   1058.6801        352.8933              2              4         4
## 646   1058.6801        352.8933              2              4         4
## 647   1058.6801        352.8933              2              4         4
## 648   6211.7856       1552.9464              4              3        11
## 649   6211.7856       1552.9464              4              5        13
## 650   6211.7856       1552.9464              4              1         9
## 651   6211.7856       1552.9464             NA             NA        NA
## 652   7572.5571       1262.0929              2              4         4
## 653   7572.5571       1262.0929              3              4         8
## 654   7572.5571       1262.0929              3              4         8
## 655   7572.5571       1262.0929             NA             NA        NA
## 656   7572.5571       1262.0929             NA             NA        NA
## 657   7572.5571       1262.0929              2              4         4
## 658  23591.3438       7863.7812              4              4        12
## 659  23591.3438       7863.7812              4              3        11
## 660  23591.3438       7863.7812              4              5        13
## 661   8601.8203       2150.4551              3              4         8
## 662   8601.8203       2150.4551              4              5        13
## 663   8601.8203       2150.4551              4              5        13
## 664   8601.8203       2150.4551              4              5        13
## 665  18935.9570       3155.9929              3              4         8
## 666  18935.9570       3155.9929              3              4         8
## 667  18935.9570       3155.9929              4              4        12
## 668  18935.9570       3155.9929              4              4        12
## 669  18935.9570       3155.9929              4              1         9
## 670  18935.9570       3155.9929              4              4        12
## 671   3877.8672       1938.9336              4              5        13
## 672   3877.8672       1938.9336              4              5        13
## 673  16784.0352       4196.0088              4              5        13
## 674  16784.0352       4196.0088              4              4        12
## 675  16784.0352       4196.0088              4              2        10
## 676  16784.0352       4196.0088              4              0         8
## 677   5254.7998       1313.7000              3              4         8
## 678   5254.7998       1313.7000              3              4         8
## 679   5254.7998       1313.7000              4              3        11
## 680   5254.7998       1313.7000              4              1         9
## 681  14867.9932       3716.9983              4              5        13
## 682  14867.9932       3716.9983              4              5        13
## 683  14867.9932       3716.9983              4              1         9
## 684  14867.9932       3716.9983              4              5        13
## 685   5420.8716       2710.4358              4              5        13
## 686   5420.8716       2710.4358              4              5        13
## 687  16576.6934       4144.1733              4              5        13
## 688  16576.6934       4144.1733              4              5        13
## 689  16576.6934       4144.1733              4              5        13
## 690  16576.6934       4144.1733              4              0         8
## 691   6847.8091       3423.9045              4              5        13
## 692   6847.8091       3423.9045              4              5        13
## 693   3796.2400       3796.2400              3              4         8
## 694   2409.2202       2409.2202              4              5        13
## 695   4149.5430       2074.7715              4              5        13
## 696   4149.5430       2074.7715              3              4         8
## 697   2868.2158       1434.1079              4              5        13
## 698   2868.2158       1434.1079              4              5        13
## 699   1513.0000       1513.0000              2              4         4
## 700   2873.1499       1436.5750              2             NA        NA
## 701   2873.1499       1436.5750              2             NA        NA
## 702   3345.6572       1672.8286              3              4         8
## 703   3345.6572       1672.8286              3              4         8
## 704  13685.7334       3421.4333              4              5        13
## 705  13685.7334       3421.4333              4              5        13
## 706  13685.7334       3421.4333              4              4        12
## 707  13685.7334       3421.4333              4              5        13
## 708   3508.1399       1754.0699              4              5        13
## 709   3508.1399       1754.0699             NA             NA        NA
## 710   7698.6714       3849.3357              3              4         8
## 711   7698.6714       3849.3357              3              4         8
## 712   1006.8800       1006.8800              2              4         4
## 713   1426.5400       1426.5400              2              4         4
## 714   3741.5071       3741.5071              4              5        13
## 715   3305.6272       1652.8136              4              3        11
## 716   3305.6272       1652.8136              2              4         4
## 717  14001.5752       4667.1919              4              5        13
## 718  14001.5752       4667.1919              4              3        11
## 719  14001.5752       4667.1919              4              5        13
## 720   7279.4893       1819.8723              4              5        13
## 721   7279.4893       1819.8723              4              5        13
## 722   7279.4893       1819.8723              4              5        13
## 723   7279.4893       1819.8723              4              1         9
## 724   6110.3931       3055.1965              4              5        13
## 725   6110.3931       3055.1965              4              5        13
## 726  15282.3281       5094.1094              4              5        13
## 727  15282.3281       5094.1094              4              5        13
## 728  15282.3281       5094.1094              4              5        13
## 729  22747.6211       4549.5244              4              5        13
## 730  22747.6211       4549.5244              4              5        13
## 731  22747.6211       4549.5244              3              4         8
## 732  22747.6211       4549.5244              4              2        10
## 733  22747.6211       4549.5244              4              5        13
## 734   2631.9600       1315.9800              3              4         8
## 735   2631.9600       1315.9800              2              4         4
## 736   3489.3999       1744.7000              3              4         8
## 737   3489.3999       1744.7000              2              4         4
## 738   2043.3000       2043.3000              3              4         8
## 739   5136.7974       2568.3987              3              4         8
## 740   5136.7974       2568.3987              3              4         8
## 741   3553.0015       1776.5007              2              4         4
## 742   3553.0015       1776.5007              2              4         4
## 743   2292.1001        764.0334              2             NA        NA
## 744   2292.1001        764.0334              2              4         4
## 745   2292.1001        764.0334              1             NA         0
## 746   6145.0000       2048.3333              3              4         8
## 747   6145.0000       2048.3333              3              4         8
## 748   6145.0000       2048.3333              2              4         4
## 749  13479.0869       2695.8174              4              5        13
## 750  13479.0869       2695.8174              4              5        13
## 751  13479.0869       2695.8174              3              4         8
## 752  13479.0869       2695.8174              4              0         8
## 753  13479.0869       2695.8174              4              3        11
## 754  15110.4414       5036.8140              4              5        13
## 755  15110.4414       5036.8140              4              1         9
## 756  15110.4414       5036.8140              3              4         8
## 757   7769.2300       7769.2300              4              7        15
## 758   4420.6001       2210.3000              4              5        13
## 759   4420.6001       2210.3000              2              4         4
## 760  10004.6504       2501.1626              3              4         8
## 761  10004.6504       2501.1626              4              5        13
## 762  10004.6504       2501.1626              4              5        13
## 763  10004.6504       2501.1626              4              5        13
## 764   4864.5522       2432.2761              4              5        13
## 765   4864.5522       2432.2761              3              4         8
## 766  14274.0713       4758.0239              4              7        15
## 767  14274.0713       4758.0239              4              3        11
## 768  14274.0713       4758.0239              4              4        12
## 769   3479.2856       1739.6428              2              4         4
## 770   3479.2856       1739.6428              4              5        13
## 771  11604.2148       5802.1074              3              4         8
## 772  11604.2148       5802.1074              3              4         8
## 773   2125.2000       2125.2000              1             NA         0
## 774   4629.9429       2314.9714              4              5        13
## 775   4629.9429       2314.9714              4              5        13
## 776   7519.9771       3759.9885              4              5        13
## 777   7519.9771       3759.9885              4              5        13
## 778   3484.1587       3484.1587              4              5        13
## 779  10934.5361       5467.2681              4              5        13
## 780  10934.5361       5467.2681              4              5        13
## 781   2356.8586       2356.8586              4              3        11
## 782   5538.5430       2769.2715              3              4         8
## 783   5538.5430       2769.2715              3              4         8
## 784   6030.6631       3015.3315              4              5        13
## 785   6030.6631       3015.3315              4              5        13
## 786   2827.5586       2827.5586              3              4         8
## 787   7426.2905       2475.4302              3              4         8
## 788   7426.2905       2475.4302              4              5        13
## 789   7426.2905       2475.4302              2              4         4
## 790   4851.0713       1212.7678              3              4         8
## 791   4851.0713       1212.7678              3              4         8
## 792   4851.0713       1212.7678              3              4         8
## 793   4851.0713       1212.7678              3              4         8
## 794  12744.2715       4248.0903              3              4         8
## 795  12744.2715       4248.0903              4              5        13
## 796  12744.2715       4248.0903              4              5        13
## 797   6261.3286       2087.1096              4              5        13
## 798   6261.3286       2087.1096              4              5        13
## 799   6261.3286       2087.1096              4              0         8
## 800   1923.0886       1923.0886              4              5        13
## 801   2487.2600       1243.6300              3              4         8
## 802   2487.2600       1243.6300             NA             NA        NA
## 803   3996.2771       1998.1385              4              5        13
## 804   3996.2771       1998.1385              4              5        13
## 805   2109.3115       2109.3115              4              5        13
## 806   3841.1799       1920.5900              3              4         8
## 807   3841.1799       1920.5900              3              4         8
## 808  18557.8145       6185.9380              4              5        13
## 809  18557.8145       6185.9380              4              5        13
## 810  18557.8145       6185.9380              4              0         8
## 811   6307.2852       2102.4285              4              3        11
## 812   6307.2852       2102.4285              4              5        13
## 813   6307.2852       2102.4285              4              0         8
## 814   3314.7908       1657.3954              3              4         8
## 815   3314.7908       1657.3954              3              4         8
## 816   9478.5195       2369.6299              4              5        13
## 817   9478.5195       2369.6299              4              5        13
## 818   9478.5195       2369.6299              4              0         8
## 819   9478.5195       2369.6299              4              2        10
## 820   3387.4329       1129.1443              4              5        13
## 821   3387.4329       1129.1443              4              5        13
## 822   3387.4329       1129.1443              3              4         8
## 823   7330.3530       1832.5883              3              4         8
## 824   7330.3530       1832.5883              4              5        13
## 825   7330.3530       1832.5883             NA             NA        NA
## 826   7330.3530       1832.5883             NA             NA        NA
## 827   3150.3286        630.0657              1             NA         0
## 828   3150.3286        630.0657              1             NA         0
## 829   3150.3286        630.0657              2              4         4
## 830   3150.3286        630.0657              2              4         4
## 831   3150.3286        630.0657              2              4         4
## 832   2439.1001        487.8200              2              4         4
## 833   2439.1001        487.8200              2             NA        NA
## 834   2439.1001        487.8200              4              2        10
## 835   2439.1001        487.8200              2              4         4
## 836   2439.1001        487.8200              1             NA         0
## 837   1372.5601        686.2800              3              4         8
## 838   1372.5601        686.2800              3              4         8
## 839  10930.9541       2732.7385              3              4         8
## 840  10930.9541       2732.7385              4              5        13
## 841  10930.9541       2732.7385              4              3        11
## 842  10930.9541       2732.7385              4              1         9
## 843   5186.5410       1728.8470              4              3        11
## 844   5186.5410       1728.8470              4              3        11
## 845   5186.5410       1728.8470              4              5        13
## 846   1724.1600       1724.1600              3              4         8
## 847   9940.0498        994.0050              3              4         8
## 848   9940.0498        994.0050              3              4         8
## 849   9940.0498        994.0050              3              4         8
## 850   9940.0498        994.0050              3              4         8
## 851   9940.0498        994.0050              3              4         8
## 852   9940.0498        994.0050              3              4         8
## 853   9940.0498        994.0050              3              4         8
## 854   9940.0498        994.0050              2             NA        NA
## 855   9940.0498        994.0050              2             NA        NA
## 856   9940.0498        994.0050              3              4         8
## 857  14032.6719       2004.6674              3              4         8
## 858  14032.6719       2004.6674              4              5        13
## 859  14032.6719       2004.6674              3              4         8
## 860  14032.6719       2004.6674              4              1         9
## 861  14032.6719       2004.6674              4              1         9
## 862  14032.6719       2004.6674              3              4         8
## 863  14032.6719       2004.6674             NA             NA        NA
## 864  15338.0713       3834.5178              4              5        13
## 865  15338.0713       3834.5178              4              5        13
## 866  15338.0713       3834.5178              3              4         8
## 867  15338.0713       3834.5178              4              4        12
## 868  24265.5078       4853.1016              4              5        13
## 869  24265.5078       4853.1016              4              5        13
## 870  24265.5078       4853.1016              4              3        11
## 871  24265.5078       4853.1016              4              0         8
## 872  24265.5078       4853.1016              4              3        11
## 873  11902.1143       5951.0571              4              5        13
## 874  11902.1143       5951.0571              4              5        13
## 875   2622.7356       1311.3678              4              5        13
## 876   2622.7356       1311.3678              4              5        13
## 877   6538.0156       3269.0078              3              4         8
## 878   6538.0156       3269.0078              3              4         8
## 879   3088.3394       1029.4464              3              4         8
## 880   3088.3394       1029.4464              2              4         4
## 881   3088.3394       1029.4464              2              4         4
## 882  25312.9609       5062.5923              4              5        13
## 883  25312.9609       5062.5923              4              5        13
## 884  25312.9609       5062.5923              4              2        10
## 885  25312.9609       5062.5923              4              2        10
## 886  25312.9609       5062.5923              3              4         8
## 887  22318.4336       7439.4780              4              3        11
## 888  22318.4336       7439.4780              4              5        13
## 889  22318.4336       7439.4780              4              2        10
## 890   5213.8369       5213.8369              3              4         8
## 891   8284.8281       2071.2070              4              5        13
## 892   8284.8281       2071.2070              4              5        13
## 893   8284.8281       2071.2070              4              2        10
## 894   8284.8281       2071.2070              4              5        13
## 895   9405.0996       3135.0332              4              5        13
## 896   9405.0996       3135.0332              4              5        13
## 897   9405.0996       3135.0332             NA             NA        NA
## 898   8536.4785       2845.4929              4              5        13
## 899   8536.4785       2845.4929              4              5        13
## 900   8536.4785       2845.4929              4              5        13
## 901   2616.8999       1308.4500              2              4         4
## 902   2616.8999       1308.4500              2              4         4
## 903  12720.1211       3180.0303              4              5        13
## 904  12720.1211       3180.0303              4              5        13
## 905  12720.1211       3180.0303              4              2        10
## 906  12720.1211       3180.0303              4              2        10
## 907   6075.2544       3037.6272              4              5        13
## 908   6075.2544       3037.6272              4              5        13
## 909   6523.3901       2174.4634              4              5        13
## 910   6523.3901       2174.4634              4              4        12
## 911   6523.3901       2174.4634             NA             NA        NA
## 912   5446.5942       2723.2971              3              4         8
## 913   5446.5942       2723.2971              4              5        13
## 914   2899.1873       2899.1873              3              4         8
## 915   2813.3035       2813.3035              3              4         8
## 916   1990.1757       1990.1757              3              4         8
## 917   2378.2756       2378.2756              3              4         8
## 918   1338.4100        669.2050              4              5        13
## 919   1338.4100        669.2050             NA             NA        NA
## 920  13836.4346       6918.2173              4              5        13
## 921  13836.4346       6918.2173             NA             NA        NA
## 922  19594.5449       4898.6362              4              5        13
## 923  19594.5449       4898.6362              4              5        13
## 924  19594.5449       4898.6362              4              1         9
## 925  19594.5449       4898.6362              4              2        10
## 926  13821.5898       3455.3975              4              5        13
## 927  13821.5898       3455.3975              4              5        13
## 928  13821.5898       3455.3975             NA             NA        NA
## 929  13821.5898       3455.3975             NA             NA        NA
## 930   4224.6665       2112.3333              3              4         8
## 931   4224.6665       2112.3333              3              4         8
## 932   4386.8501       1462.2833              4              5        13
## 933   4386.8501       1462.2833              4              5        13
## 934   4386.8501       1462.2833              3              4         8
## 935   4592.8306       1530.9435              4              5        13
## 936   4592.8306       1530.9435              3              4         8
## 937   4592.8306       1530.9435              4              5        13
## 938   9054.6289       2263.6572              4              5        13
## 939   9054.6289       2263.6572              4              5        13
## 940   9054.6289       2263.6572              4              3        11
## 941   9054.6289       2263.6572             NA             NA        NA
## 942   7044.8843       2348.2947              4              5        13
## 943   7044.8843       2348.2947              4              3        11
## 944   7044.8843       2348.2947              4              2        10
## 945   4399.9629       2199.9814              4              5        13
## 946   4399.9629       2199.9814              4              5        13
## 947   2585.8157       1292.9078              4              2        10
## 948   2585.8157       1292.9078              4              3        11
## 949   3380.4377       1690.2189              4              5        13
## 950   3380.4377       1690.2189              4              5        13
## 951   8719.7100       1743.9420              4              5        13
## 952   8719.7100       1743.9420              4              5        13
## 953   8719.7100       1743.9420              4              5        13
## 954   8719.7100       1743.9420              4              0         8
## 955   8719.7100       1743.9420             NA             NA        NA
## 956   4113.1265       2056.5632              4              3        11
## 957   4113.1265       2056.5632              4              5        13
## 958   2561.9199       1280.9600              4              2        10
## 959   2561.9199       1280.9600              4              5        13
## 960   4583.1372       2291.5686              3              4         8
## 961   4583.1372       2291.5686              4              5        13
## 962   5406.5186       2703.2593              4              5        13
## 963   5406.5186       2703.2593              4              5        13
## 964   4255.0142       2127.5071              4              5        13
## 965   4255.0142       2127.5071              2              4         4
## 966   6229.5684       1245.9137              2              4         4
## 967   6229.5684       1245.9137              4              2        10
## 968   6229.5684       1245.9137              4              5        13
## 969   6229.5684       1245.9137             NA             NA        NA
## 970   6229.5684       1245.9137             NA             NA        NA
## 971   7138.0737       3569.0369              2              4         4
## 972   7138.0737       3569.0369              3              4         8
## 973   6050.9814       2016.9938              4              5        13
## 974   6050.9814       2016.9938              4              5        13
## 975   6050.9814       2016.9938              3              4         8
## 976   4891.3765       1222.8441              2              4         4
## 977   4891.3765       1222.8441              2             NA        NA
## 978   4891.3765       1222.8441              4              0         8
## 979   4891.3765       1222.8441             NA             NA        NA
## 980   1315.2114       1315.2114              2             NA        NA
## 981   8710.3203       2903.4402              3              4         8
## 982   8710.3203       2903.4402              3              4         8
## 983   8710.3203       2903.4402              4              3        11
## 984   3589.3999       1794.7000              3              4         8
## 985   3589.3999       1794.7000              3              4         8
## 986   9289.4004       2322.3501              3              4         8
## 987   9289.4004       2322.3501              3              4         8
## 988   9289.4004       2322.3501              4              1         9
## 989   9289.4004       2322.3501              4              1         9
## 990   3732.8000       3732.8000              4              5        13
## 991   4220.6323       2110.3162              4              5        13
## 992   4220.6323       2110.3162              4              5        13
## 993   5257.9927       1314.4982              3              4         8
## 994   5257.9927       1314.4982              3              4         8
## 995   5257.9927       1314.4982              3              4         8
## 996   5257.9927       1314.4982              3              4         8
## 997  30593.5234      10197.8408              4              5        13
## 998  30593.5234      10197.8408              4              5        13
## 999  30593.5234      10197.8408              4              1         9
## 1000  6542.1787       3271.0894              3              4         8
## 1001  6542.1787       3271.0894              3              4         8
## 1002  3006.3999       1503.2000              3              4         8
## 1003  3006.3999       1503.2000              3              4         8
## 1004  7572.2144       1893.0536              3              4         8
## 1005  7572.2144       1893.0536              3              4         8
## 1006  7572.2144       1893.0536              3              4         8
## 1007  7572.2144       1893.0536              3              4         8
## 1008  8889.8213       2963.2737              4              5        13
## 1009  8889.8213       2963.2737              4              5        13
## 1010  8889.8213       2963.2737              4              5        13
## 1011 13453.6201       3363.4050              4              5        13
## 1012 13453.6201       3363.4050              4              5        13
## 1013 13453.6201       3363.4050              1             NA         0
## 1014 13453.6201       3363.4050             NA             NA        NA
## 1015  5393.6084       1348.4021              4              5        13
## 1016  5393.6084       1348.4021              4              5        13
## 1017  5393.6084       1348.4021              4              5        13
## 1018  5393.6084       1348.4021             NA             NA        NA
## 1019 10894.4258       1556.3466              3              4         8
## 1020 10894.4258       1556.3466              2              4         4
## 1021 10894.4258       1556.3466              4              5        13
## 1022 10894.4258       1556.3466              4              5        13
## 1023 10894.4258       1556.3466              4              2        10
## 1024 10894.4258       1556.3466              4              1         9
## 1025 10894.4258       1556.3466              4              1         9
## 1026 12900.5605       2580.1121              3              4         8
## 1027 12900.5605       2580.1121              3              4         8
## 1028 12900.5605       2580.1121              4              5        13
## 1029 12900.5605       2580.1121              4              5        13
## 1030 12900.5605       2580.1121              4              4        12
## 1031 25532.4277       6383.1069              4              5        13
## 1032 25532.4277       6383.1069              4              5        13
## 1033 25532.4277       6383.1069              4              5        13
## 1034 25532.4277       6383.1069              4              3        11
## 1035  8997.2285       1799.4457              4              5        13
## 1036  8997.2285       1799.4457              4              4        12
## 1037  8997.2285       1799.4457             NA             NA        NA
## 1038  8997.2285       1799.4457              4              5        13
## 1039  8997.2285       1799.4457              4              5        13
## 1040  8344.9424       2086.2356              4              5        13
## 1041  8344.9424       2086.2356              4              3        11
## 1042  8344.9424       2086.2356              3              4         8
## 1043  8344.9424       2086.2356             NA             NA        NA
## 1044  5555.9395       2777.9697              4              5        13
## 1045  5555.9395       2777.9697              4              5        13
## 1046 12810.6416       6405.3208              4              5        13
## 1047 12810.6416       6405.3208              4              5        13
## 1048  2510.7051       2510.7051              4              5        13
## 1049  4504.4526       4504.4526              4              5        13
## 1050 13580.0625       4526.6875              4              5        13
## 1051 13580.0625       4526.6875              4              5        13
## 1052 13580.0625       4526.6875              4              4        12
## 1053  6602.0962       1650.5240              4              5        13
## 1054  6602.0962       1650.5240              4              5        13
## 1055  6602.0962       1650.5240              3              4         8
## 1056  6602.0962       1650.5240              4              2        10
## 1057  7590.8628       1897.7157              4              5        13
## 1058  7590.8628       1897.7157              4              5        13
## 1059  7590.8628       1897.7157              4              4        12
## 1060  7590.8628       1897.7157              4              4        12
## 1061 10745.7793       3581.9265              3              4         8
## 1062 10745.7793       3581.9265              3              4         8
## 1063 10745.7793       3581.9265              4              5        13
## 1064  9349.7246       2337.4312              4              5        13
## 1065  9349.7246       2337.4312              4              3        11
## 1066  9349.7246       2337.4312              4              2        10
## 1067  9349.7246       2337.4312              3              4         8
## 1068 26492.5137       8830.8379              4              5        13
## 1069 26492.5137       8830.8379              4              5        13
## 1070 26492.5137       8830.8379              4              5        13
## 1071  3614.6528       1204.8843              4              5        13
## 1072  3614.6528       1204.8843              4              3        11
## 1073  3614.6528       1204.8843              4              5        13
## 1074  9428.7998       1885.7600              3              4         8
## 1075  9428.7998       1885.7600              4              5        13
## 1076  9428.7998       1885.7600              4              3        11
## 1077  9428.7998       1885.7600              4              1         9
## 1078  9428.7998       1885.7600              4              2        10
## 1079  4681.4399       2340.7200              3              4         8
## 1080  4681.4399       2340.7200              3              4         8
## 1081  4677.4062       2338.7031              2              4         4
## 1082  4677.4062       2338.7031              2              4         4
## 1083  1955.1400       1955.1400              3              4         8
## 1084  6960.4712       2320.1570              4              5        13
## 1085  6960.4712       2320.1570              4              5        13
## 1086  6960.4712       2320.1570             NA             NA        NA
## 1087  6489.1714       3244.5857              3              4         8
## 1088  6489.1714       3244.5857              4              3        11
## 1089  1353.2000       1353.2000              2              4         4
## 1090  1414.0000       1414.0000              2              4         4
## 1091  1534.0000       1534.0000              3              4         8
## 1092  4443.5713       1481.1904              4              3        11
## 1093  4443.5713       1481.1904              4              5        13
## 1094  4443.5713       1481.1904              4              5        13
## 1095  3457.7214       1152.5739              4              5        13
## 1096  3457.7214       1152.5739              4              5        13
## 1097  3457.7214       1152.5739             NA             NA        NA
## 1098  4605.2002        921.0400              4              5        13
## 1099  4605.2002        921.0400              3              4         8
## 1100  4605.2002        921.0400              3              4         8
## 1101  4605.2002        921.0400              3              4         8
## 1102  4605.2002        921.0400              3              4         8
## 1103  5135.3931       1711.7977              3              4         8
## 1104  5135.3931       1711.7977              3              4         8
## 1105  5135.3931       1711.7977              4              3        11
## 1106  7170.3999        896.3000              3              4         8
## 1107  7170.3999        896.3000              3              4         8
## 1108  7170.3999        896.3000              3              4         8
## 1109  7170.3999        896.3000              3              4         8
## 1110  7170.3999        896.3000              3              4         8
## 1111  7170.3999        896.3000              3              4         8
## 1112  7170.3999        896.3000             NA             NA        NA
## 1113  7170.3999        896.3000             NA             NA        NA
## 1114  2358.5356       1179.2678              3              4         8
## 1115  2358.5356       1179.2678              3              4         8
## 1116  5129.5322       1709.8441              3              4         8
## 1117  5129.5322       1709.8441              3              4         8
## 1118  5129.5322       1709.8441              4              4        12
## 1119  3314.5801       1657.2900              3              4         8
## 1120  3314.5801       1657.2900              3              4         8
## 1121  7087.6113       3543.8057              4              5        13
## 1122  7087.6113       3543.8057              4              5        13
## 1123  6684.1001       3342.0500              4              5        13
## 1124  6684.1001       3342.0500              4              3        11
## 1125 11429.7461       5714.8730              4              5        13
## 1126 11429.7461       5714.8730              4              5        13
## 1127  8868.4668       1773.6934              4              5        13
## 1128  8868.4668       1773.6934              4              5        13
## 1129  8868.4668       1773.6934              4              5        13
## 1130  8868.4668       1773.6934              4              5        13
## 1131  8868.4668       1773.6934             NA             NA        NA
## 1132  1836.2893       1836.2893              3              4         8
## 1133  8227.2119       2742.4041              4              5        13
## 1134  8227.2119       2742.4041              4              3        11
## 1135  8227.2119       2742.4041             NA             NA        NA
## 1136  7385.3149       2461.7717              4              5        13
## 1137  7385.3149       2461.7717              4              3        11
## 1138  7385.3149       2461.7717              4              5        13
## 1139 15055.3174       3763.8293              4              5        13
## 1140 15055.3174       3763.8293              4              5        13
## 1141 15055.3174       3763.8293              3              4         8
## 1142 15055.3174       3763.8293              4              5        13
## 1143  7025.9629       2341.9875              3              4         8
## 1144  7025.9629       2341.9875              3              4         8
## 1145  7025.9629       2341.9875              4              4        12
## 1146  5031.0498       1677.0166              3              4         8
## 1147  5031.0498       1677.0166              3              4         8
## 1148  5031.0498       1677.0166             NA             NA        NA
## 1149  7519.6714       2506.5571              3              4         8
## 1150  7519.6714       2506.5571              4              5        13
## 1151  7519.6714       2506.5571              4              3        11
## 1152  2773.2800        693.3200              3              4         8
## 1153  2773.2800        693.3200              2             NA        NA
## 1154  2773.2800        693.3200             NA             NA        NA
## 1155  2773.2800        693.3200             NA             NA        NA
## 1156  7758.1069       1939.5267              2              4         4
## 1157  7758.1069       1939.5267              3              4         8
## 1158  7758.1069       1939.5267              4              3        11
## 1159  7758.1069       1939.5267              4              0         8
## 1160 14606.9971       4868.9990              4              7        15
## 1161 14606.9971       4868.9990              4              4        12
## 1162 14606.9971       4868.9990              4              4        12
## 1163 23096.9062       5774.2266              4              5        13
## 1164 23096.9062       5774.2266              4              5        13
## 1165 23096.9062       5774.2266              4              5        13
## 1166 23096.9062       5774.2266              4              2        10
## 1167  5576.2856       1858.7618              4              5        13
## 1168  5576.2856       1858.7618              4              5        13
## 1169  5576.2856       1858.7618              4              5        13
## 1170  6630.6880       3315.3440              4              7        15
## 1171  6630.6880       3315.3440              4              3        11
## 1172  2903.8386       1451.9193              3              4         8
## 1173  2903.8386       1451.9193              4              5        13
## 1174 18152.0371       3630.4075              4              5        13
## 1175 18152.0371       3630.4075              4              1         9
## 1176 18152.0371       3630.4075              4              4        12
## 1177 18152.0371       3630.4075             NA             NA        NA
## 1178 18152.0371       3630.4075              2             NA        NA
## 1179  8900.6279       1780.1256              4              5        13
## 1180  8900.6279       1780.1256              4              5        13
## 1181  8900.6279       1780.1256              4              5        13
## 1182  8900.6279       1780.1256              4              5        13
## 1183  8900.6279       1780.1256             NA             NA        NA
## 1184  2166.0586       2166.0586              4              5        13
## 1185 11075.5820       3691.8606              4              5        13
## 1186 11075.5820       3691.8606              4              5        13
## 1187 11075.5820       3691.8606              4              2        10
## 1188  5090.9131       2545.4565              4              5        13
## 1189  5090.9131       2545.4565              4              5        13
## 1190  2958.3572       2958.3572              4              5        13
## 1191  5009.0000       2504.5000              1             NA         0
## 1192  5009.0000       2504.5000              1             NA         0
## 1193 11506.3896       2876.5974              4              4        12
## 1194 11506.3896       2876.5974              4              5        13
## 1195 11506.3896       2876.5974             NA             NA        NA
## 1196 11506.3896       2876.5974             NA             NA        NA
## 1197  4865.3730       2432.6865              4              5        13
## 1198  4865.3730       2432.6865              4              5        13
## 1199 16905.5938       4226.3984              4              5        13
## 1200 16905.5938       4226.3984              4              5        13
## 1201 16905.5938       4226.3984              4              5        13
## 1202 16905.5938       4226.3984              4              2        10
## 1203  3323.8000       3323.8000              4              5        13
## 1204  9688.4033       3229.4678              4              5        13
## 1205  9688.4033       3229.4678              4              5        13
## 1206  9688.4033       3229.4678              4              5        13
## 1207  5774.3999       1443.6000              4              5        13
## 1208  5774.3999       1443.6000              4              5        13
## 1209  5774.3999       1443.6000             NA             NA        NA
## 1210  5774.3999       1443.6000             NA             NA        NA
## 1211 32588.8496       8147.2124              4              5        13
## 1212 32588.8496       8147.2124              3              4         8
## 1213 32588.8496       8147.2124              4              0         8
## 1214 32588.8496       8147.2124              4              2        10
## 1215  4408.0000       2204.0000              3              4         8
## 1216  4408.0000       2204.0000              3              4         8
## 1217  2014.7357       2014.7357              4              5        13
## 1218  6903.4502       3451.7251              3              4         8
## 1219  6903.4502       3451.7251              3              4         8
## 1220  2047.5200       1023.7600              3              4         8
## 1221  2047.5200       1023.7600              3              4         8
## 1222  9313.4531       3104.4844              4              5        13
## 1223  9313.4531       3104.4844              4              5        13
## 1224  9313.4531       3104.4844              4              4        12
## 1225  8384.6572       2794.8857              4              5        13
## 1226  8384.6572       2794.8857              4              5        13
## 1227  8384.6572       2794.8857              4              5        13
## 1228  7861.2002       3930.6001              4              5        13
## 1229  7861.2002       3930.6001              4              5        13
## 1230 35402.4375      17701.2188              4              4        12
## 1231 35402.4375      17701.2188              4              5        13
## 1232 18833.9355       4708.4839              4              5        13
## 1233 18833.9355       4708.4839              4              5        13
## 1234 18833.9355       4708.4839              4              4        12
## 1235 18833.9355       4708.4839              4              5        13
## 1236 19676.9863       3935.3972              4              3        11
## 1237 19676.9863       3935.3972              4              5        13
## 1238 19676.9863       3935.3972              4              5        13
## 1239 19676.9863       3935.3972              4              1         9
## 1240 19676.9863       3935.3972              4              3        11
## 1241 13553.2783       4517.7593              4              5        13
## 1242 13553.2783       4517.7593              4              5        13
## 1243 13553.2783       4517.7593              4              1         9
## 1244  4405.5000        734.2500              3              4         8
## 1245  4405.5000        734.2500              3              4         8
## 1246  4405.5000        734.2500              4              2        10
## 1247  4405.5000        734.2500              4              2        10
## 1248  4405.5000        734.2500              3              4         8
## 1249  4405.5000        734.2500             NA             NA        NA
## 1250 19543.0000       3908.6001              4              5        13
## 1251 19543.0000       3908.6001              4              5        13
## 1252 19543.0000       3908.6001              3              4         8
## 1253 19543.0000       3908.6001              4              4        12
## 1254 19543.0000       3908.6001             NA             NA        NA
## 1255  1608.9800       1608.9800              2              4         4
## 1256  3212.5356       1606.2678              3              4         8
## 1257  3212.5356       1606.2678              3              4         8
## 1258 20121.5098       5030.3774              4              5        13
## 1259 20121.5098       5030.3774              4              5        13
## 1260 20121.5098       5030.3774              4              5        13
## 1261 20121.5098       5030.3774              4              3        11
## 1262 13268.0420       4422.6807              4              5        13
## 1263 13268.0420       4422.6807              4              1         9
## 1264 13268.0420       4422.6807              4              5        13
## 1265  2428.7000       2428.7000              4              3        11
## 1266 10706.6016       3568.8672              4              5        13
## 1267 10706.6016       3568.8672              4              5        13
## 1268 10706.6016       3568.8672              4              5        13
## 1269 11018.3574       2754.5894              4              5        13
## 1270 11018.3574       2754.5894              4              5        13
## 1271 11018.3574       2754.5894              4              1         9
## 1272 11018.3574       2754.5894              4              2        10
## 1273  7291.6230       2430.5410              4              5        13
## 1274  7291.6230       2430.5410              4              4        12
## 1275  7291.6230       2430.5410              4              1         9
## 1276  7477.4258       3738.7129              4              5        13
## 1277  7477.4258       3738.7129              4              5        13
## 1278  5662.6084       1887.5361              4              5        13
## 1279  5662.6084       1887.5361              4              5        13
## 1280  5662.6084       1887.5361              4              5        13
## 1281  9516.0039       2379.0010              4              5        13
## 1282  9516.0039       2379.0010              4              5        13
## 1283  9516.0039       2379.0010              4              0         8
## 1284  9516.0039       2379.0010              4              1         9
## 1285  1200.0000        600.0000              3              4         8
## 1286  1200.0000        600.0000              3              4         8
## 1287  4841.0630       2420.5315              4              5        13
## 1288  4841.0630       2420.5315              4              5        13
## 1289  3881.0000       1940.5000              3              4         8
## 1290  3881.0000       1940.5000              3              4         8
## 1291  9448.2715       2362.0679              3              4         8
## 1292  9448.2715       2362.0679              3              4         8
## 1293  9448.2715       2362.0679              4              3        11
## 1294  9448.2715       2362.0679              2              4         4
## 1295 10100.7998       2525.2000              4              5        13
## 1296 10100.7998       2525.2000              4              5        13
## 1297 10100.7998       2525.2000              4              5        13
## 1298 10100.7998       2525.2000              4              0         8
## 1299  3330.1201       3330.1201              4              2        10
## 1300  3082.1250       1027.3750              4              5        13
## 1301  3082.1250       1027.3750              4              5        13
## 1302  3082.1250       1027.3750              3              4         8
## 1303  5595.5957       5595.5957              4              5        13
## 1304 20262.4688       5065.6172              4              5        13
## 1305 20262.4688       5065.6172              4              5        13
## 1306 20262.4688       5065.6172              4              2        10
## 1307 20262.4688       5065.6172              4              3        11
## 1308  4947.0601       2473.5300              3              4         8
## 1309  4947.0601       2473.5300              3              4         8
## 1310  1759.2600       1759.2600              2              4         4
## 1311 16780.6289       3356.1257              4              5        13
## 1312 16780.6289       3356.1257              4              5        13
## 1313 16780.6289       3356.1257              4              3        11
## 1314 16780.6289       3356.1257             NA             NA        NA
## 1315 16780.6289       3356.1257              3              4         8
## 1316  4939.9570       2469.9785              3              4         8
## 1317  4939.9570       2469.9785              4              5        13
## 1318  6875.8638       3437.9319              4              5        13
## 1319  6875.8638       3437.9319              4              5        13
## 1320  9697.2783       1616.2130              3              4         8
## 1321  9697.2783       1616.2130              3              4         8
## 1322  9697.2783       1616.2130              4              3        11
## 1323  9697.2783       1616.2130              4              5        13
## 1324  9697.2783       1616.2130              4              1         9
## 1325  9697.2783       1616.2130             NA             NA        NA
## 1326 12593.1025       2098.8503              3              4         8
## 1327 12593.1025       2098.8503              3              4         8
## 1328 12593.1025       2098.8503              4              5        13
## 1329 12593.1025       2098.8503              3              4         8
## 1330 12593.1025       2098.8503              4              5        13
## 1331 12593.1025       2098.8503              4              2        10
## 1332  8332.6855       1388.7809              2              4         4
## 1333  8332.6855       1388.7809              3              4         8
## 1334  8332.6855       1388.7809              3              4         8
## 1335  8332.6855       1388.7809              3              4         8
## 1336  8332.6855       1388.7809              4              2        10
## 1337  8332.6855       1388.7809              4              3        11
## 1338  1291.1714       1291.1714              3              4         8
## 1339  6612.0322       3306.0161              3              4         8
## 1340  6612.0322       3306.0161              4              5        13
## 1341  8256.0000       2752.0000              4              5        13
## 1342  8256.0000       2752.0000              4              5        13
## 1343  8256.0000       2752.0000              4              4        12
## 1344 11120.3555       3706.7852              4              5        13
## 1345 11120.3555       3706.7852              3              4         8
## 1346 11120.3555       3706.7852              3              4         8
## 1347  8770.1445       4385.0723              4              5        13
## 1348  8770.1445       4385.0723              4              5        13
## 1349 24866.3984       8288.7998              4              5        13
## 1350 24866.3984       8288.7998              4              5        13
## 1351 24866.3984       8288.7998              4              4        12
## 1352  3204.5356       1068.1786              2              4         4
## 1353  3204.5356       1068.1786              3              4         8
## 1354  3204.5356       1068.1786             NA             NA        NA
## 1355  3416.6328       1708.3164              4              5        13
## 1356  3416.6328       1708.3164              3              4         8
## 1357  3698.3057       3698.3057              4              5        13
## 1358  7362.0088       2454.0029              4              5        13
## 1359  7362.0088       2454.0029              4              5        13
## 1360  7362.0088       2454.0029              4              2        10
## 1361  2552.4500       2552.4500              4              5        13
## 1362 16207.1924       3241.4385              4              5        13
## 1363 16207.1924       3241.4385              4              5        13
## 1364 16207.1924       3241.4385              4              1         9
## 1365 16207.1924       3241.4385              4              2        10
## 1366 16207.1924       3241.4385              3              4         8
## 1367 17269.9316       5756.6440              4              5        13
## 1368 17269.9316       5756.6440              4              5        13
## 1369 17269.9316       5756.6440              4              5        13
## 1370  5825.4463       1941.8154              2              4         4
## 1371  5825.4463       1941.8154              2              4         4
## 1372  5825.4463       1941.8154              2             NA        NA
## 1373  5713.3213       1428.3303              4              5        13
## 1374  5713.3213       1428.3303              4              5        13
## 1375  5713.3213       1428.3303             NA             NA        NA
## 1376  5713.3213       1428.3303             NA             NA        NA
## 1377  8637.1553       1439.5259              3              4         8
## 1378  8637.1553       1439.5259              3              4         8
## 1379  8637.1553       1439.5259              3              4         8
## 1380  8637.1553       1439.5259              4              4        12
## 1381  8637.1553       1439.5259             NA             NA        NA
## 1382  8637.1553       1439.5259              3              4         8
## 1383  5678.2002       1419.5500              3              4         8
## 1384  5678.2002       1419.5500              3              4         8
## 1385  5678.2002       1419.5500             NA             NA        NA
## 1386  5678.2002       1419.5500              4              3        11
## 1387  3498.0000       1749.0000              4              5        13
## 1388  3498.0000       1749.0000              4              5        13
## 1389  2416.0000       2416.0000              4              5        13
## 1390  2802.4893       2802.4893              4              5        13
## 1391  8168.8271       2722.9424              4              5        13
## 1392  8168.8271       2722.9424              4              5        13
## 1393  8168.8271       2722.9424              4              2        10
## 1394  2598.4800       1299.2400              3              4         8
## 1395  2598.4800       1299.2400              3              4         8
## 1396  5639.0840       2819.5420              4              5        13
## 1397  5639.0840       2819.5420             NA             NA        NA
## 1398 13075.1855       2615.0371              4              5        13
## 1399 13075.1855       2615.0371              4              5        13
## 1400 13075.1855       2615.0371              4              1         9
## 1401 13075.1855       2615.0371             NA             NA        NA
## 1402 13075.1855       2615.0371              3              4         8
## 1403  4826.3569       2413.1785              3              4         8
## 1404  4826.3569       2413.1785              4              5        13
## 1405 11798.9629       3932.9875              4              5        13
## 1406 11798.9629       3932.9875              4              5        13
## 1407 11798.9629       3932.9875             NA             NA        NA
## 1408  5524.8442       5524.8442              4              5        13
## 1409  6320.5601       3160.2800              4              5        13
## 1410  6320.5601       3160.2800              4              5        13
## 1411 12191.5107       4063.8369              4              5        13
## 1412 12191.5107       4063.8369              4              5        13
## 1413 12191.5107       4063.8369              4              0         8
## 1414 16104.0625       8052.0312              4              5        13
## 1415 16104.0625       8052.0312              4              2        10
## 1416  1963.6971       1963.6971              3              4         8
## 1417 28764.9434       9588.3145              4              4        12
## 1418 28764.9434       9588.3145              4              1         9
## 1419 28764.9434       9588.3145              4              4        12
## 1420  4150.5601       2075.2800              4              5        13
## 1421  4150.5601       2075.2800              4              2        10
## 1422  2948.7144       1474.3572              4              3        11
## 1423  2948.7144       1474.3572              4              3        11
## 1424  4372.8945        728.8157              4              5        13
## 1425  4372.8945        728.8157              4              5        13
## 1426  4372.8945        728.8157              3              4         8
## 1427  4372.8945        728.8157              3              4         8
## 1428  4372.8945        728.8157              4              5        13
## 1429  4372.8945        728.8157              1             NA         0
## 1430  4692.6528       2346.3264              4              5        13
## 1431  4692.6528       2346.3264              3              4         8
## 1432  2254.9158       1127.4579              3              4         8
## 1433  2254.9158       1127.4579              3              4         8
## 1434  4918.0430       2459.0215              4              5        13
## 1435  4918.0430       2459.0215              4              5        13
## 1436  4277.3921       2138.6960              3              4         8
## 1437  4277.3921       2138.6960              3              4         8
## 1438 20132.6699       4026.5339              4              5        13
## 1439 20132.6699       4026.5339              4              5        13
## 1440 20132.6699       4026.5339              4              5        13
## 1441 20132.6699       4026.5339              4              5        13
## 1442 20132.6699       4026.5339              4              2        10
## 1443  5132.1001       2566.0500              4              5        13
## 1444  5132.1001       2566.0500              4              5        13
## 1445  4245.3364        849.0673              3              4         8
## 1446  4245.3364        849.0673              3              4         8
## 1447  4245.3364        849.0673              4              5        13
## 1448  4245.3364        849.0673              4              5        13
## 1449  4245.3364        849.0673              3              4         8
## 1450  2408.1943       1204.0972              2             NA        NA
## 1451  2408.1943       1204.0972              2             NA        NA
## 1452  5060.3350       5060.3350              4              5        13
## 1453 17209.5977       4302.3994              4              5        13
## 1454 17209.5977       4302.3994              3              4         8
## 1455 17209.5977       4302.3994              3              4         8
## 1456 17209.5977       4302.3994              4              5        13
## 1457 15268.4746       3053.6948              4              5        13
## 1458 15268.4746       3053.6948              4              5        13
## 1459 15268.4746       3053.6948              4              5        13
## 1460 15268.4746       3053.6948              4              5        13
## 1461 15268.4746       3053.6948              4              1         9
## 1462  9017.2930       2254.3232              3              4         8
## 1463  9017.2930       2254.3232              4              5        13
## 1464  9017.2930       2254.3232              4              1         9
## 1465  9017.2930       2254.3232              4              3        11
## 1466  5558.4785       2779.2393              4              5        13
## 1467  5558.4785       2779.2393              4              5        13
## 1468  5654.0000       1413.5000              4              5        13
## 1469  5654.0000       1413.5000              4              5        13
## 1470  5654.0000       1413.5000              4              5        13
## 1471  5654.0000       1413.5000             NA             NA        NA
## 1472 23947.6426       7982.5474              4              5        13
## 1473 23947.6426       7982.5474              4              5        13
## 1474 23947.6426       7982.5474             NA             NA        NA
## 1475  9217.3418       1536.2236              3              4         8
## 1476  9217.3418       1536.2236              4              5        13
## 1477  9217.3418       1536.2236              3              4         8
## 1478  9217.3418       1536.2236              3              4         8
## 1479  9217.3418       1536.2236              4              5        13
## 1480  9217.3418       1536.2236              1             NA         0
## 1481  1976.5542       1976.5542              3              4         8
## 1482  9586.7354       3195.5784              3              4         8
## 1483  9586.7354       3195.5784              3              4         8
## 1484  9586.7354       3195.5784              4              5        13
## 1485  4566.1694        913.2339              3              4         8
## 1486  4566.1694        913.2339              3              4         8
## 1487  4566.1694        913.2339              3              4         8
## 1488  4566.1694        913.2339              4              2        10
## 1489  4566.1694        913.2339              4              1         9
## 1490 10484.6426       3494.8809              4              4        12
## 1491 10484.6426       3494.8809              4              5        13
## 1492 10484.6426       3494.8809              4              5        13
## 1493  7059.0000       1764.7500              4              5        13
## 1494  7059.0000       1764.7500              4              5        13
## 1495  7059.0000       1764.7500              4              2        10
## 1496  7059.0000       1764.7500              4              1         9
## 1497 13858.2295       4619.4097              4              5        13
## 1498 13858.2295       4619.4097              4              5        13
## 1499 13858.2295       4619.4097              4              5        13
## 1500  7226.9316       2408.9773              4              5        13
## 1501  7226.9316       2408.9773              4              5        13
## 1502  7226.9316       2408.9773              4              5        13
## 1503  5665.8398       5665.8398              4              5        13
## 1504 11421.1006       5710.5503              4              5        13
## 1505 11421.1006       5710.5503              4              5        13
## 1506  2849.9526       1424.9763              4              5        13
## 1507  2849.9526       1424.9763              4              5        13
## 1508 11909.1787       2977.2947              4              5        13
## 1509 11909.1787       2977.2947              4              5        13
## 1510 11909.1787       2977.2947              4              5        13
## 1511 11909.1787       2977.2947              4              0         8
## 1512 13569.8242       4523.2749              4              5        13
## 1513 13569.8242       4523.2749              4              3        11
## 1514 13569.8242       4523.2749              4              3        11
## 1515  8659.5762       4329.7881              4              4        12
## 1516  8659.5762       4329.7881              4              2        10
## 1517  8010.8130       2670.2710              4              5        13
## 1518  8010.8130       2670.2710              4              5        13
## 1519  8010.8130       2670.2710              4              2        10
## 1520  3875.1187       1291.7062              4              5        13
## 1521  3875.1187       1291.7062              4              5        13
## 1522  3875.1187       1291.7062              4              5        13
## 1523  1490.0000        496.6667              1             NA         0
## 1524  1490.0000        496.6667              2              4         4
## 1525  1490.0000        496.6667              2              4         4
## 1526  8491.5996       2122.8999              4              4        12
## 1527  8491.5996       2122.8999              3              4         8
## 1528  8491.5996       2122.8999              3              4         8
## 1529  8491.5996       2122.8999              3              4         8
## 1530  5362.3159        766.0451              2              4         4
## 1531  5362.3159        766.0451              2              4         4
## 1532  5362.3159        766.0451             NA             NA        NA
## 1533  5362.3159        766.0451             NA             NA        NA
## 1534  5362.3159        766.0451              3              4         8
## 1535  5362.3159        766.0451              2             NA        NA
## 1536  5362.3159        766.0451              2             NA        NA
## 1537  2378.3000       1189.1500              3              4         8
## 1538  2378.3000       1189.1500              2              4         4
## 1539  7552.4321       1888.1080              4              5        13
## 1540  7552.4321       1888.1080              4              5        13
## 1541  7552.4321       1888.1080             NA             NA        NA
## 1542  7552.4321       1888.1080             NA             NA        NA
## 1543  9602.6035       2400.6509              4              5        13
## 1544  9602.6035       2400.6509              4              5        13
## 1545  9602.6035       2400.6509              4              5        13
## 1546  9602.6035       2400.6509             NA             NA        NA
## 1547 11852.9473       2963.2368              4              4        12
## 1548 11852.9473       2963.2368              4              4        12
## 1549 11852.9473       2963.2368              4              3        11
## 1550 11852.9473       2963.2368             NA             NA        NA
## 1551 11827.5996       3942.5332              4              5        13
## 1552 11827.5996       3942.5332              3              4         8
## 1553 11827.5996       3942.5332             NA             NA        NA
## 1554  3955.9358       1977.9679              4              5        13
## 1555  3955.9358       1977.9679              3              4         8
## 1556  2655.1160       2655.1160              3              4         8
## 1557  8118.5430       2706.1809              4              5        13
## 1558  8118.5430       2706.1809              4              5        13
## 1559  8118.5430       2706.1809              4              3        11
## 1560 12245.3359       6122.6680              4              5        13
## 1561 12245.3359       6122.6680              4              5        13
## 1562 10679.2568       5339.6284              4              5        13
## 1563 10679.2568       5339.6284              4              5        13
## 1564 35936.4805       5989.4136              3              4         8
## 1565 35936.4805       5989.4136              4              5        13
## 1566 35936.4805       5989.4136              4              5        13
## 1567 35936.4805       5989.4136              4              5        13
## 1568 35936.4805       5989.4136              4              5        13
## 1569 35936.4805       5989.4136              4              0         8
## 1570 17392.9648       3478.5930              4              5        13
## 1571 17392.9648       3478.5930              4              5        13
## 1572 17392.9648       3478.5930              4              3        11
## 1573 17392.9648       3478.5930              3              4         8
## 1574 17392.9648       3478.5930              3              4         8
## 1575  4489.7930       2244.8965              3              4         8
## 1576  4489.7930       2244.8965              3              4         8
## 1577  8999.8125       1799.9625              3              4         8
## 1578  8999.8125       1799.9625              4              5        13
## 1579  8999.8125       1799.9625              4              3        11
## 1580  8999.8125       1799.9625              4              5        13
## 1581  8999.8125       1799.9625              4              1         9
## 1582  3460.7849       1153.5950              3              4         8
## 1583  3460.7849       1153.5950              4              5        13
## 1584  3460.7849       1153.5950             NA             NA        NA
## 1585  4130.4141        826.0828              2             NA        NA
## 1586  4130.4141        826.0828              4              2        10
## 1587  4130.4141        826.0828              4              3        11
## 1588  4130.4141        826.0828              2              4         4
## 1589  4130.4141        826.0828              2             NA        NA
## 1590 13819.7646       2763.9529              2              4         4
## 1591 13819.7646       2763.9529              4              4        12
## 1592 13819.7646       2763.9529              3              4         8
## 1593 13819.7646       2763.9529              4              4        12
## 1594 13819.7646       2763.9529              4              4        12
## 1595  2693.8828       2693.8828              4              5        13
## 1596  1779.6000       1779.6000              2              4         4
## 1597  8137.6245       2034.4061              3              4         8
## 1598  8137.6245       2034.4061              4              5        13
## 1599  8137.6245       2034.4061             NA             NA        NA
## 1600  8137.6245       2034.4061             NA             NA        NA
## 1601  9853.4414       2463.3604              4              4        12
## 1602  9853.4414       2463.3604              4              5        13
## 1603  9853.4414       2463.3604              4              3        11
## 1604  9853.4414       2463.3604              4              5        13
## 1605  5337.7070       1779.2357              4              5        13
## 1606  5337.7070       1779.2357              3              4         8
## 1607  5337.7070       1779.2357              4              5        13
## 1608  4385.2441       4385.2441              4              5        13
## 1609  1814.5601        907.2800              2              4         4
## 1610  1814.5601        907.2800              2              4         4
## 1611  4681.2759       2340.6379              2              4         4
## 1612  4681.2759       2340.6379              4              5        13
## 1613  4600.6001       2300.3000              2              4         4
## 1614  4600.6001       2300.3000              2              4         4
## 1615  2269.8000       2269.8000              2              4         4
## 1616 14230.3828       7115.1914              4              5        13
## 1617 14230.3828       7115.1914              4              5        13
## 1618 11090.0068       2772.5017              4              5        13
## 1619 11090.0068       2772.5017              4              5        13
## 1620 11090.0068       2772.5017              4              2        10
## 1621 11090.0068       2772.5017              4              0         8
## 1622  7073.2930       2357.7644              4              4        12
## 1623  7073.2930       2357.7644              4              5        13
## 1624  7073.2930       2357.7644              4              5        13
## 1625 13558.6641       3389.6660              2              4         4
## 1626 13558.6641       3389.6660              4              5        13
## 1627 13558.6641       3389.6660              4              5        13
## 1628 13558.6641       3389.6660              4              5        13
## 1629  4871.6313       1623.8771              4              3        11
## 1630  4871.6313       1623.8771              4              5        13
## 1631  4871.6313       1623.8771              1             NA         0
## 1632  4587.4849       4587.4849              4              5        13
## 1633  5500.1455       1833.3818              3              4         8
## 1634  5500.1455       1833.3818              4              5        13
## 1635  5500.1455       1833.3818              3              4         8
## 1636  9320.8428       4660.4214              4              5        13
## 1637  9320.8428       4660.4214              4              5        13
## 1638  3964.2000       1982.1000              4              3        11
## 1639  3964.2000       1982.1000              3              4         8
## 1640  5632.2002       1877.4000              3              4         8
## 1641  5632.2002       1877.4000              3              4         8
## 1642  5632.2002       1877.4000              4              5        13
## 1643  6691.8657       2230.6218              4              5        13
## 1644  6691.8657       2230.6218              4              5        13
## 1645  6691.8657       2230.6218             NA             NA        NA
## 1646 17150.5938       3430.1187              4              5        13
## 1647 17150.5938       3430.1187              4              5        13
## 1648 17150.5938       3430.1187              4              2        10
## 1649 17150.5938       3430.1187              4              2        10
## 1650 17150.5938       3430.1187             NA             NA        NA
## 1651  1611.5601       1611.5601              3              4         8
## 1652  2164.8799       1082.4399              4              5        13
## 1653  2164.8799       1082.4399              4              5        13
## 1654  8115.6406       4057.8203              4              3        11
## 1655  8115.6406       4057.8203              4              3        11
## 1656  3468.4800       1734.2400              3              4         8
## 1657  3468.4800       1734.2400              4              5        13
## 1658 11004.7783       3668.2595              4              5        13
## 1659 11004.7783       3668.2595              4              5        13
## 1660 11004.7783       3668.2595              4              5        13
## 1661  2443.9829       1221.9915              4              5        13
## 1662  2443.9829       1221.9915              4              3        11
## 1663  6756.0493       2252.0164              2              4         4
## 1664  6756.0493       2252.0164              2              4         4
## 1665  6756.0493       2252.0164              4              5        13
## 1666  2657.3601       1328.6801              3              4         8
## 1667  2657.3601       1328.6801              3              4         8
## 1668  1213.0457       1213.0457              2              4         4
## 1669 30288.1641       7572.0410              4              5        13
## 1670 30288.1641       7572.0410              4              5        13
## 1671 30288.1641       7572.0410              4              2        10
## 1672 30288.1641       7572.0410              4              0         8
## 1673 10999.0732       2749.7683              3              4         8
## 1674 10999.0732       2749.7683              3              4         8
## 1675 10999.0732       2749.7683              4              5        13
## 1676 10999.0732       2749.7683              4              2        10
## 1677 14022.0283       4674.0093              4              5        13
## 1678 14022.0283       4674.0093              4              5        13
## 1679 14022.0283       4674.0093              4              5        13
## 1680  7787.3115       1946.8279              4              5        13
## 1681  7787.3115       1946.8279              4              5        13
## 1682  7787.3115       1946.8279              4              5        13
## 1683  7787.3115       1946.8279              4              4        12
## 1684  4588.9863       2294.4932              3              4         8
## 1685  4588.9863       2294.4932              3              4         8
## 1686 22993.6934       7664.5645              4              5        13
## 1687 22993.6934       7664.5645              4              5        13
## 1688 22993.6934       7664.5645             NA             NA        NA
## 1689  3677.1072       1838.5536              4              5        13
## 1690  3677.1072       1838.5536              3              4         8
## 1691  8318.5195       2079.6299              4              2        10
## 1692  8318.5195       2079.6299              4              2        10
## 1693  8318.5195       2079.6299              4              2        10
## 1694  8318.5195       2079.6299              4              1         9
## 1695  9446.1572       3148.7190              4              5        13
## 1696  9446.1572       3148.7190              4              5        13
## 1697  9446.1572       3148.7190              4              0         8
## 1698  8044.3569       2681.4524              2              4         4
## 1699  8044.3569       2681.4524              3              4         8
## 1700  8044.3569       2681.4524              2              4         4
## 1701  7653.4443       3826.7222              4              5        13
## 1702  7653.4443       3826.7222              4              5        13
## 1703  9407.6631       3135.8877              4              5        13
## 1704  9407.6631       3135.8877              4              5        13
## 1705  9407.6631       3135.8877              4              2        10
## 1706  9793.3857       1399.0551              3              4         8
## 1707  9793.3857       1399.0551              3              4         8
## 1708  9793.3857       1399.0551              4              5        13
## 1709  9793.3857       1399.0551              3              4         8
## 1710  9793.3857       1399.0551              4              5        13
## 1711  9793.3857       1399.0551              3              4         8
## 1712  9793.3857       1399.0551              4              2        10
## 1713  6169.2329       2056.4109              3              4         8
## 1714  6169.2329       2056.4109              4              1         9
## 1715  6169.2329       2056.4109              4              1         9
## 1716  4440.3457       1110.0864              4              5        13
## 1717  4440.3457       1110.0864              4              5        13
## 1718  4440.3457       1110.0864              4              3        11
## 1719  4440.3457       1110.0864              4              2        10
## 1720 12016.6787       2002.7798              4              5        13
## 1721 12016.6787       2002.7798              4              5        13
## 1722 12016.6787       2002.7798              4              3        11
## 1723 12016.6787       2002.7798              4              0         8
## 1724 12016.6787       2002.7798              4              5        13
## 1725 12016.6787       2002.7798              4              5        13
## 1726  2332.8000       1166.4000              2              4         4
## 1727  2332.8000       1166.4000              2              4         4
## 1728 12626.4287       6313.2144              4              4        12
## 1729 12626.4287       6313.2144              4              5        13
## 1730  6109.4341       1221.8868              2             NA        NA
## 1731  6109.4341       1221.8868              3              4         8
## 1732  6109.4341       1221.8868              4              2        10
## 1733  6109.4341       1221.8868             NA             NA        NA
## 1734  6109.4341       1221.8868             NA             NA        NA
## 1735  6162.0000       3081.0000              3              4         8
## 1736  6162.0000       3081.0000              3              4         8
## 1737  3167.5115       1583.7557              4              5        13
## 1738  3167.5115       1583.7557              4              5        13
## 1739 14245.8789       4748.6265              3              4         8
## 1740 14245.8789       4748.6265              3              4         8
## 1741 14245.8789       4748.6265              4              5        13
## 1742  3073.7429       1024.5809              4              5        13
## 1743  3073.7429       1024.5809              4              4        12
## 1744  3073.7429       1024.5809              4              1         9
## 1745  3738.3572       1246.1190              4              5        13
## 1746  3738.3572       1246.1190              4              5        13
## 1747  3738.3572       1246.1190              4              0         8
## 1748  4142.3213        828.4642              4              4        12
## 1749  4142.3213        828.4642              4              4        12
## 1750  4142.3213        828.4642             NA             NA        NA
## 1751  4142.3213        828.4642              4              5        13
## 1752  4142.3213        828.4642              4              5        13
## 1753 14449.9873       2064.2839              3              4         8
## 1754 14449.9873       2064.2839              3              4         8
## 1755 14449.9873       2064.2839              4              5        13
## 1756 14449.9873       2064.2839              3              4         8
## 1757 14449.9873       2064.2839              4              1         9
## 1758 14449.9873       2064.2839              2             NA        NA
## 1759 14449.9873       2064.2839              4              2        10
## 1760  7145.1357       3572.5679              4              5        13
## 1761  7145.1357       3572.5679              4              5        13
## 1762 10380.8857       3460.2952              4              2        10
## 1763 10380.8857       3460.2952              3              4         8
## 1764 10380.8857       3460.2952              4              5        13
## 1765 16160.0205       4040.0051              4              5        13
## 1766 16160.0205       4040.0051              4              5        13
## 1767 16160.0205       4040.0051              4              2        10
## 1768 16160.0205       4040.0051             NA             NA        NA
## 1769  6463.4072       1615.8518              4              5        13
## 1770  6463.4072       1615.8518              4              4        12
## 1771  6463.4072       1615.8518             NA             NA        NA
## 1772  6463.4072       1615.8518             NA             NA        NA
## 1773 22643.4707       4528.6943              4              5        13
## 1774 22643.4707       4528.6943              4              5        13
## 1775 22643.4707       4528.6943              4              3        11
## 1776 22643.4707       4528.6943              3              4         8
## 1777 22643.4707       4528.6943              3              4         8
## 1778 17325.8184       2165.7273              3              4         8
## 1779 17325.8184       2165.7273              2              4         4
## 1780 17325.8184       2165.7273              3              4         8
## 1781 17325.8184       2165.7273              4              5        13
## 1782 17325.8184       2165.7273              4              5        13
## 1783 17325.8184       2165.7273              4              5        13
## 1784 17325.8184       2165.7273              4              5        13
## 1785 17325.8184       2165.7273             NA             NA        NA
## 1786  8058.5229       1343.0872              4              5        13
## 1787  8058.5229       1343.0872              4              5        13
## 1788  8058.5229       1343.0872              4              5        13
## 1789  8058.5229       1343.0872              3              4         8
## 1790  8058.5229       1343.0872             NA             NA        NA
## 1791  8058.5229       1343.0872              4              5        13
## 1792  2289.0000       1144.5000              3              4         8
## 1793  2289.0000       1144.5000              3              4         8
## 1794  4085.7522       1361.9174              3              4         8
## 1795  4085.7522       1361.9174              3              4         8
## 1796  4085.7522       1361.9174              4              2        10
## 1797  3431.6970       1143.8990              2              4         4
## 1798  3431.6970       1143.8990              2              4         4
## 1799  3431.6970       1143.8990              3              4         8
## 1800  2379.5200       2379.5200              3              4         8
## 1801 11733.0459       5866.5229              4              3        11
## 1802 11733.0459       5866.5229              4              3        11
## 1803  7509.7026       2503.2341              4              5        13
## 1804  7509.7026       2503.2341              4              5        13
## 1805  7509.7026       2503.2341              4              4        12
## 1806  2312.1799       1156.0900              3              4         8
## 1807  2312.1799       1156.0900              3              4         8
## 1808  3239.2456       3239.2456              4              5        13
## 1809  9671.3770       2417.8442              3              4         8
## 1810  9671.3770       2417.8442              3              4         8
## 1811  9671.3770       2417.8442              4              5        13
## 1812  9671.3770       2417.8442              4              5        13
## 1813 11493.7285       2873.4321              4              5        13
## 1814 11493.7285       2873.4321              4              5        13
## 1815 11493.7285       2873.4321              4              1         9
## 1816 11493.7285       2873.4321              4              4        12
## 1817  3085.0000       1542.5000              4              5        13
## 1818  3085.0000       1542.5000              4              3        11
## 1819  4206.0513       1051.5128              4              5        13
## 1820  4206.0513       1051.5128              3              4         8
## 1821  4206.0513       1051.5128              4              3        11
## 1822  4206.0513       1051.5128              4              1         9
## 1823  7263.6787       1037.6683              3              4         8
## 1824  7263.6787       1037.6683              3              4         8
## 1825  7263.6787       1037.6683              4              5        13
## 1826  7263.6787       1037.6683              3              4         8
## 1827  7263.6787       1037.6683              4              2        10
## 1828  7263.6787       1037.6683              4              3        11
## 1829  7263.6787       1037.6683              3              4         8
## 1830 11133.1611       2783.2903              3              4         8
## 1831 11133.1611       2783.2903              3              4         8
## 1832 11133.1611       2783.2903              4              0         8
## 1833 11133.1611       2783.2903              4              1         9
## 1834 26866.4004       4477.7334              4              3        11
## 1835 26866.4004       4477.7334              4              4        12
## 1836 26866.4004       4477.7334              4              7        15
## 1837 26866.4004       4477.7334              4              4        12
## 1838 26866.4004       4477.7334              4              4        12
## 1839 26866.4004       4477.7334             NA             NA        NA
## 1840  3067.4800       1533.7400              4              5        13
## 1841  3067.4800       1533.7400              4              3        11
## 1842  2438.0801        812.6934              2              4         4
## 1843  2438.0801        812.6934              3              4         8
## 1844  2438.0801        812.6934              3              4         8
## 1845  9805.0889       2451.2722              4              5        13
## 1846  9805.0889       2451.2722              3              4         8
## 1847  9805.0889       2451.2722              4              3        11
## 1848  9805.0889       2451.2722             NA             NA        NA
## 1849 13347.8604       2224.6433              4              5        13
## 1850 13347.8604       2224.6433              4              5        13
## 1851 13347.8604       2224.6433              4              5        13
## 1852 13347.8604       2224.6433              4              3        11
## 1853 13347.8604       2224.6433              4              5        13
## 1854 13347.8604       2224.6433              4              5        13
## 1855  4835.2373       2417.6187              4              5        13
## 1856  4835.2373       2417.6187              4              5        13
## 1857  6959.7856       1391.9572              4              2        10
## 1858  6959.7856       1391.9572              3              4         8
## 1859  6959.7856       1391.9572              4              5        13
## 1860  6959.7856       1391.9572              4              5        13
## 1861  6959.7856       1391.9572             NA             NA        NA
## 1862  5825.5127       1456.3782              3              4         8
## 1863  5825.5127       1456.3782              3              4         8
## 1864  5825.5127       1456.3782              3              4         8
## 1865  5825.5127       1456.3782              4              5        13
## 1866  1714.9000       1714.9000              2              4         4
## 1867  2007.5000       2007.5000              2              4         4
## 1868  2048.2000       2048.2000              2              4         4
## 1869 11715.6943       3905.2314              4              5        13
## 1870 11715.6943       3905.2314              4              5        13
## 1871 11715.6943       3905.2314              4              1         9
## 1872 13420.8730       4473.6245              4              5        13
## 1873 13420.8730       4473.6245              4              5        13
## 1874 13420.8730       4473.6245              4              2        10
## 1875 12502.0215       2500.4043              4              5        13
## 1876 12502.0215       2500.4043              4              5        13
## 1877 12502.0215       2500.4043              4              1         9
## 1878 12502.0215       2500.4043              4              2        10
## 1879 12502.0215       2500.4043              4              5        13
## 1880  8662.4785       2165.6196              3              4         8
## 1881  8662.4785       2165.6196              4              5        13
## 1882  8662.4785       2165.6196              4              5        13
## 1883  8662.4785       2165.6196              4              5        13
## 1884  5755.5464        959.2578              3              4         8
## 1885  5755.5464        959.2578              3              4         8
## 1886  5755.5464        959.2578              4              5        13
## 1887  5755.5464        959.2578              3              4         8
## 1888  5755.5464        959.2578              4              3        11
## 1889  5755.5464        959.2578             NA             NA        NA
## 1890  5986.6680       1496.6670              3              4         8
## 1891  5986.6680       1496.6670              4              5        13
## 1892  5986.6680       1496.6670              4              2        10
## 1893  5986.6680       1496.6670             NA             NA        NA
## 1894  2900.2600       1450.1300              3              4         8
## 1895  2900.2600       1450.1300              3              4         8
## 1896  9315.1855       1552.5309              3              4         8
## 1897  9315.1855       1552.5309              4              5        13
## 1898  9315.1855       1552.5309              4              5        13
## 1899  9315.1855       1552.5309             NA             NA        NA
## 1900  9315.1855       1552.5309              4              5        13
## 1901  9315.1855       1552.5309             NA             NA        NA
## 1902  1933.5000        966.7500              2              4         4
## 1903  1933.5000        966.7500              4              5        13
## 1904  1693.1914       1693.1914              3              4         8
## 1905  2298.1418       1149.0709              2              4         4
## 1906  2298.1418       1149.0709              3              4         8
## 1907  6857.7393       1371.5479              4              5        13
## 1908  6857.7393       1371.5479              4              5        13
## 1909  6857.7393       1371.5479              2             NA        NA
## 1910  6857.7393       1371.5479              2             NA        NA
## 1911  6857.7393       1371.5479             NA             NA        NA
## 1912  6967.7075       2322.5691              3              4         8
## 1913  6967.7075       2322.5691              2              4         4
## 1914  6967.7075       2322.5691              3              4         8
## 1915  6624.0386       2208.0129              3              4         8
## 1916  6624.0386       2208.0129              4              5        13
## 1917  6624.0386       2208.0129              4              5        13
## 1918  5374.1748       1074.8350              3              4         8
## 1919  5374.1748       1074.8350              2              4         4
## 1920  5374.1748       1074.8350              4              2        10
## 1921  5374.1748       1074.8350              2              4         4
## 1922  5374.1748       1074.8350              4              1         9
## 1923  3245.0356       1622.5178              2             NA        NA
## 1924  3245.0356       1622.5178              4              5        13
## 1925 12667.3115       4222.4370              4              5        13
## 1926 12667.3115       4222.4370              4              5        13
## 1927 12667.3115       4222.4370              4              4        12
## 1928 13730.9941       6865.4971              3              4         8
## 1929 13730.9941       6865.4971              4              5        13
## 1930  7058.3691       1411.6738              3              4         8
## 1931  7058.3691       1411.6738              3              4         8
## 1932  7058.3691       1411.6738              4              5        13
## 1933  7058.3691       1411.6738              4              5        13
## 1934  7058.3691       1411.6738             NA             NA        NA
## 1935 11154.5381       3718.1794              4              5        13
## 1936 11154.5381       3718.1794              4              5        13
## 1937 11154.5381       3718.1794              4              3        11
## 1938  6888.7598       3444.3799              3              4         8
## 1939  6888.7598       3444.3799              3              4         8
## 1940  7560.1406       1512.0281              4              5        13
## 1941  7560.1406       1512.0281              4              5        13
## 1942  7560.1406       1512.0281              4              5        13
## 1943  7560.1406       1512.0281              4              0         8
## 1944  7560.1406       1512.0281              4              2        10
## 1945  3848.0000       1924.0000              4              5        13
## 1946  3848.0000       1924.0000              3              4         8
## 1947  6975.6851       1162.6141              4              5        13
## 1948  6975.6851       1162.6141              4              5        13
## 1949  6975.6851       1162.6141              4              5        13
## 1950  6975.6851       1162.6141              4              5        13
## 1951  6975.6851       1162.6141              4              1         9
## 1952  6975.6851       1162.6141              3              4         8
## 1953  5247.1484       2623.5742              4              5        13
## 1954  5247.1484       2623.5742              4              5        13
## 1955  8272.4053       2068.1013              3              4         8
## 1956  8272.4053       2068.1013              2              4         4
## 1957  8272.4053       2068.1013              3              4         8
## 1958  8272.4053       2068.1013             NA             NA        NA
## 1959  3964.4087       1982.2043              2              4         4
## 1960  3964.4087       1982.2043              4              4        12
## 1961 10832.6504       3610.8835              4              5        13
## 1962 10832.6504       3610.8835              4              5        13
## 1963 10832.6504       3610.8835              4              2        10
## 1964  8195.9072       2731.9690              3              4         8
## 1965  8195.9072       2731.9690              4              5        13
## 1966  8195.9072       2731.9690             NA             NA        NA
## 1967  2995.3215       2995.3215              4              5        13
## 1968  9302.4434       4651.2217              4              5        13
## 1969  9302.4434       4651.2217              4              0         8
## 1970  5096.3486       1274.0872              3              4         8
## 1971  5096.3486       1274.0872              4              5        13
## 1972  5096.3486       1274.0872              1             NA         0
## 1973  5096.3486       1274.0872             NA             NA        NA
## 1974  3033.3772       3033.3772              3              4         8
## 1975  1993.6876       1993.6876              4              5        13
## 1976  1718.6000       1718.6000              4              2        10
## 1977  3466.0000       1155.3334              3              4         8
## 1978  3466.0000       1155.3334              3              4         8
## 1979  3466.0000       1155.3334             NA             NA        NA
## 1980  2723.9326       2723.9326              4              5        13
## 1981  1391.9714       1391.9714              3              4         8
## 1982  5726.3569       1431.5892              4              5        13
## 1983  5726.3569       1431.5892              4              5        13
## 1984  5726.3569       1431.5892              4              5        13
## 1985  5726.3569       1431.5892              3              4         8
## 1986  6977.9858       2325.9954              4              5        13
## 1987  6977.9858       2325.9954              4              5        13
## 1988  6977.9858       2325.9954             NA             NA        NA
## 1989 10405.1875       2601.2969              4              5        13
## 1990 10405.1875       2601.2969              4              3        11
## 1991 10405.1875       2601.2969              4              3        11
## 1992 10405.1875       2601.2969             NA             NA        NA
## 1993  8649.3662       2883.1221              4              5        13
## 1994  8649.3662       2883.1221              3              4         8
## 1995  8649.3662       2883.1221             NA             NA        NA
## 1996  3772.4878       1886.2439              3              4         8
## 1997  3772.4878       1886.2439              3              4         8
## 1998  2427.3142       2427.3142              4              5        13
## 1999  3425.7356       1712.8678              4              3        11
## 2000  3425.7356       1712.8678              4              3        11
## 2001  2410.5786       2410.5786              4              3        11
## 2002  1676.9071       1676.9071              4              5        13
## 2003  3173.6599        793.4150              3              4         8
## 2004  3173.6599        793.4150              3              4         8
## 2005  3173.6599        793.4150              3              4         8
## 2006  3173.6599        793.4150              3              4         8
## 2007  2556.0627        639.0157              3              4         8
## 2008  2556.0627        639.0157              3              4         8
## 2009  2556.0627        639.0157              4              5        13
## 2010  2556.0627        639.0157              2             NA        NA
## 2011  2936.4080       2936.4080              4              5        13
## 2012 17550.4629       4387.6157              4              5        13
## 2013 17550.4629       4387.6157              4              5        13
## 2014 17550.4629       4387.6157              4              5        13
## 2015 17550.4629       4387.6157              4              5        13
## 2016 10096.1387       3365.3796              4              5        13
## 2017 10096.1387       3365.3796              4              5        13
## 2018 10096.1387       3365.3796              4              3        11
## 2019  5761.4644       1920.4882              4              1         9
## 2020  5761.4644       1920.4882              2              4         4
## 2021  5761.4644       1920.4882              4              5        13
## 2022  4997.1826       1249.2957              3              4         8
## 2023  4997.1826       1249.2957              2              4         4
## 2024  4997.1826       1249.2957              4              5        13
## 2025  4997.1826       1249.2957              3              4         8
## 2026  4673.1714       4673.1714              4              5        13
## 2027  2560.6714       1280.3357              2             NA        NA
## 2028  2560.6714       1280.3357              3              4         8
## 2029 25530.5508       6382.6377              3              4         8
## 2030 25530.5508       6382.6377              3              4         8
## 2031 25530.5508       6382.6377              4              5        13
## 2032 25530.5508       6382.6377              3              4         8
## 2033 10916.9141       2729.2285              4              5        13
## 2034 10916.9141       2729.2285              4              5        13
## 2035 10916.9141       2729.2285              4              1         9
## 2036 10916.9141       2729.2285             NA             NA        NA
## 2037 11758.7598       2351.7520              3              4         8
## 2038 11758.7598       2351.7520              3              4         8
## 2039 11758.7598       2351.7520              4              1         9
## 2040 11758.7598       2351.7520              4              5        13
## 2041 11758.7598       2351.7520              4              2        10
## 2042 13091.3564       3272.8391              4              5        13
## 2043 13091.3564       3272.8391              4              5        13
## 2044 13091.3564       3272.8391              3              4         8
## 2045 13091.3564       3272.8391              4              3        11
## 2046 12114.3076       4038.1025              4              5        13
## 2047 12114.3076       4038.1025              4              5        13
## 2048 12114.3076       4038.1025              4              3        11
## 2049  1471.6000       1471.6000              2              4         4
## 2050  8004.6001       2668.2000              3              4         8
## 2051  8004.6001       2668.2000              3              4         8
## 2052  8004.6001       2668.2000              4              5        13
## 2053  5662.3232       1887.4410              3              4         8
## 2054  5662.3232       1887.4410              2              4         4
## 2055  5662.3232       1887.4410              4              5        13
## 2056  2373.1829       1186.5914              3              4         8
## 2057  2373.1829       1186.5914              2              4         4
## 2058  6020.9985       3010.4993              4              5        13
## 2059  6020.9985       3010.4993              4              5        13
## 2060  3292.1528       1646.0764              4              5        13
## 2061  3292.1528       1646.0764              3              4         8
## 2062  9618.5996       2404.6499              3              4         8
## 2063  9618.5996       2404.6499              4              5        13
## 2064  9618.5996       2404.6499              4              5        13
## 2065  9618.5996       2404.6499              4              1         9
## 2066  4464.9355       1488.3119              3              4         8
## 2067  4464.9355       1488.3119              3              4         8
## 2068  4464.9355       1488.3119              4              5        13
## 2069 10746.8574       2686.7144              3              4         8
## 2070 10746.8574       2686.7144              3              4         8
## 2071 10746.8574       2686.7144              4              5        13
## 2072 10746.8574       2686.7144              4              1         9
## 2073  4337.2002       4337.2002              4              5        13
## 2074 16225.8145       3245.1628              2             NA        NA
## 2075 16225.8145       3245.1628              3              4         8
## 2076 16225.8145       3245.1628              4              5        13
## 2077 16225.8145       3245.1628              4              5        13
## 2078 16225.8145       3245.1628             NA             NA        NA
## 2079  3802.4138       1267.4713              3              4         8
## 2080  3802.4138       1267.4713              3              4         8
## 2081  3802.4138       1267.4713              2              4         4
## 2082  2702.0356       1351.0178              4              4        12
## 2083  2702.0356       1351.0178              4              5        13
## 2084  5031.2788       2515.6394              4              5        13
## 2085  5031.2788       2515.6394              3              4         8
## 2086  3560.2400       1780.1200              4              5        13
## 2087  3560.2400       1780.1200              3              4         8
## 2088   661.8914        661.8914              2              4         4
## 2089 18272.6035       6090.8677              4              5        13
## 2090 18272.6035       6090.8677              4              5        13
## 2091 18272.6035       6090.8677              4              2        10
## 2092  7688.0674       1922.0168              4              5        13
## 2093  7688.0674       1922.0168              3              4         8
## 2094  7688.0674       1922.0168              4              5        13
## 2095  7688.0674       1922.0168             NA             NA        NA
## 2096  7877.0000       1969.2500              3              4         8
## 2097  7877.0000       1969.2500              3              4         8
## 2098  7877.0000       1969.2500              4              5        13
## 2099  7877.0000       1969.2500              1             NA         0
## 2100  2167.6228       1083.8114              2              4         4
## 2101  2167.6228       1083.8114              2              4         4
## 2102 13511.8574       2251.9763              4              5        13
## 2103 13511.8574       2251.9763              4              5        13
## 2104 13511.8574       2251.9763              4              4        12
## 2105 13511.8574       2251.9763              4              3        11
## 2106 13511.8574       2251.9763              4              2        10
## 2107 13511.8574       2251.9763              2              4         4
## 2108 11960.5928       3986.8643              4              5        13
## 2109 11960.5928       3986.8643              4              5        13
## 2110 11960.5928       3986.8643              2              4         4
## 2111  4619.1343       1539.7114              2              4         4
## 2112  4619.1343       1539.7114              4              5        13
## 2113  4619.1343       1539.7114              4              5        13
## 2114  1582.2000       1582.2000              2              4         4
## 2115  9909.0732       3303.0244              3              4         8
## 2116  9909.0732       3303.0244              3              4         8
## 2117  9909.0732       3303.0244              4              4        12
## 2118  9949.3633       3316.4543              3              4         8
## 2119  9949.3633       3316.4543              4              5        13
## 2120  9949.3633       3316.4543              4              0         8
## 2121  5747.3999       2873.7000              4              5        13
## 2122  5747.3999       2873.7000              3              4         8
## 2123  4165.0825       2082.5413              4              5        13
## 2124  4165.0825       2082.5413              3              4         8
## 2125  3744.9585       1872.4792              3              4         8
## 2126  3744.9585       1872.4792              2              4         4
## 2127 11499.9502       5749.9751              4              5        13
## 2128 11499.9502       5749.9751              4              5        13
## 2129 16941.0293       4235.2573              4              5        13
## 2130 16941.0293       4235.2573              4              5        13
## 2131 16941.0293       4235.2573             NA             NA        NA
## 2132 16941.0293       4235.2573              4              5        13
## 2133  9043.7754       3014.5918              3              4         8
## 2134  9043.7754       3014.5918              3              4         8
## 2135  9043.7754       3014.5918              4              5        13
## 2136 11102.5244       3700.8416              4              5        13
## 2137 11102.5244       3700.8416              4              5        13
## 2138 11102.5244       3700.8416              4              5        13
## 2139  2569.1853       1284.5927              2              4         4
## 2140  2569.1853       1284.5927              2              4         4
## 2141  8823.0361       2941.0120              4              5        13
## 2142  8823.0361       2941.0120              4              5        13
## 2143  8823.0361       2941.0120              2              4         4
## 2144 11867.0576       2966.7644              4              5        13
## 2145 11867.0576       2966.7644              4              5        13
## 2146 11867.0576       2966.7644              4              5        13
## 2147 11867.0576       2966.7644              3              4         8
## 2148  7957.0127       2652.3376              4              5        13
## 2149  7957.0127       2652.3376              4              5        13
## 2150  7957.0127       2652.3376              4              5        13
## 2151  3049.5601       1524.7800              4              3        11
## 2152  3049.5601       1524.7800              2              4         4
## 2153  9918.9883       2479.7471              4              5        13
## 2154  9918.9883       2479.7471              3              4         8
## 2155  9918.9883       2479.7471              3              4         8
## 2156  9918.9883       2479.7471              3              4         8
## 2157 17199.2422       3439.8484              4              5        13
## 2158 17199.2422       3439.8484              4              5        13
## 2159 17199.2422       3439.8484              4              5        13
## 2160 17199.2422       3439.8484              4              5        13
## 2161 17199.2422       3439.8484             NA             NA        NA
## 2162  7486.2358       2495.4119              4              5        13
## 2163  7486.2358       2495.4119              4              5        13
## 2164  7486.2358       2495.4119              3              4         8
## 2165  3380.4048       1690.2024              4              5        13
## 2166  3380.4048       1690.2024             NA             NA        NA
## 2167  9484.6211       2371.1553              4              5        13
## 2168  9484.6211       2371.1553              4              5        13
## 2169  9484.6211       2371.1553              4              0         8
## 2170  9484.6211       2371.1553              2              4         4
## 2171  8258.9111       2064.7278              4              5        13
## 2172  8258.9111       2064.7278              3              4         8
## 2173  8258.9111       2064.7278              4              3        11
## 2174  8258.9111       2064.7278              2              4         4
## 2175 16299.4844       5433.1616              4              5        13
## 2176 16299.4844       5433.1616              4              5        13
## 2177 16299.4844       5433.1616              4              3        11
## 2178 46335.4023      23167.7012              3              4         8
## 2179 46335.4023      23167.7012              3              4         8
## 2180  3231.3000        461.6143              3              4         8
## 2181  3231.3000        461.6143              2              4         4
## 2182  3231.3000        461.6143              4              2        10
## 2183  3231.3000        461.6143              4              0         8
## 2184  3231.3000        461.6143             NA             NA        NA
## 2185  3231.3000        461.6143              1             NA         0
## 2186  3231.3000        461.6143              3              4         8
## 2187  3062.9722       1531.4861              3              4         8
## 2188  3062.9722       1531.4861              3              4         8
## 2189 15212.9170       2173.2739              4              5        13
## 2190 15212.9170       2173.2739              4              5        13
## 2191 15212.9170       2173.2739              4              5        13
## 2192 15212.9170       2173.2739              4              3        11
## 2193 15212.9170       2173.2739             NA             NA        NA
## 2194 15212.9170       2173.2739             NA             NA        NA
## 2195 15212.9170       2173.2739              2              4         4
## 2196 13970.2871       3492.5718              4              5        13
## 2197 13970.2871       3492.5718              4              5        13
## 2198 13970.2871       3492.5718              4              2        10
## 2199 13970.2871       3492.5718              4              3        11
## 2200 13268.9443       2653.7888              4              5        13
## 2201 13268.9443       2653.7888              4              5        13
## 2202 13268.9443       2653.7888              4              5        13
## 2203 13268.9443       2653.7888              4              5        13
## 2204 13268.9443       2653.7888             NA             NA        NA
## 2205 14838.8936       2967.7788              4              5        13
## 2206 14838.8936       2967.7788              4              5        13
## 2207 14838.8936       2967.7788              4              2        10
## 2208 14838.8936       2967.7788              4              3        11
## 2209 14838.8936       2967.7788              3              4         8
## 2210  5365.2002       1073.0400              3              4         8
## 2211  5365.2002       1073.0400              3              4         8
## 2212  5365.2002       1073.0400              3              4         8
## 2213  5365.2002       1073.0400              4              3        11
## 2214  5365.2002       1073.0400             NA             NA        NA
## 2215  9431.3857       2357.8464              4              4        12
## 2216  9431.3857       2357.8464              4              4        12
## 2217  9431.3857       2357.8464              4              5        13
## 2218  9431.3857       2357.8464              4              4        12
## 2219  2373.0801       1186.5400              3              4         8
## 2220  2373.0801       1186.5400              3              4         8
## 2221  7529.7974       1882.4493              3              4         8
## 2222  7529.7974       1882.4493              4              5        13
## 2223  7529.7974       1882.4493              3              4         8
## 2224  7529.7974       1882.4493              4              2        10
## 2225  8181.3320       2727.1106              4              5        13
## 2226  8181.3320       2727.1106              4              5        13
## 2227  8181.3320       2727.1106              3              4         8
## 2228  9815.0625       3271.6875              4              5        13
## 2229  9815.0625       3271.6875              4              5        13
## 2230  9815.0625       3271.6875             NA             NA        NA
## 2231  3032.2158       1516.1079              3              4         8
## 2232  3032.2158       1516.1079              2              4         4
## 2233  4309.6001       4309.6001              4              5        13
## 2234  3066.9399       1533.4700              4              5        13
## 2235  3066.9399       1533.4700              3              4         8
## 2236  4769.2280       1589.7427              2              4         4
## 2237  4769.2280       1589.7427              4              2        10
## 2238  4769.2280       1589.7427              4              2        10
## 2239 24116.0918       8038.6973              4              5        13
## 2240 24116.0918       8038.6973              4              5        13
## 2241 24116.0918       8038.6973              4              1         9
## 2242 10744.2754       5372.1377              4              5        13
## 2243 10744.2754       5372.1377              4              5        13
## 2244 10178.2686       2544.5671              4              5        13
## 2245 10178.2686       2544.5671              3              4         8
## 2246 10178.2686       2544.5671              4              0         8
## 2247 10178.2686       2544.5671              4              2        10
## 2248  2606.8560       1303.4280              3              4         8
## 2249  2606.8560       1303.4280              3              4         8
## 2250 11856.0439       3952.0146              4              5        13
## 2251 11856.0439       3952.0146              4              5        13
## 2252 11856.0439       3952.0146              4              5        13
## 2253  3447.5400       1723.7700              3              4         8
## 2254  3447.5400       1723.7700              2              4         4
## 2255 15783.2070       3945.8018              4              5        13
## 2256 15783.2070       3945.8018              4              5        13
## 2257 15783.2070       3945.8018              4              3        11
## 2258 15783.2070       3945.8018              4              0         8
## 2259 14494.2432       4831.4146              4              3        11
## 2260 14494.2432       4831.4146              4              2        10
## 2261 14494.2432       4831.4146              4              2        10
## 2262  9490.8848       3163.6282              4              5        13
## 2263  9490.8848       3163.6282              4              5        13
## 2264  9490.8848       3163.6282              4              2        10
## 2265  2258.6638       2258.6638              3              4         8
## 2266  9518.5518       1586.4253              3              4         8
## 2267  9518.5518       1586.4253              3              4         8
## 2268  9518.5518       1586.4253              4              3        11
## 2269  9518.5518       1586.4253              4              1         9
## 2270  9518.5518       1586.4253              2              4         4
## 2271  9518.5518       1586.4253              2             NA        NA
## 2272  1914.1400        957.0700              3              4         8
## 2273  1914.1400        957.0700              3              4         8
## 2274  5492.7002        915.4500              2              4         4
## 2275  5492.7002        915.4500              4              1         9
## 2276  5492.7002        915.4500              4              3        11
## 2277  5492.7002        915.4500              4              2        10
## 2278  5492.7002        915.4500              4              0         8
## 2279  5492.7002        915.4500             NA             NA        NA
## 2280  3405.0715        681.0143              3              4         8
## 2281  3405.0715        681.0143              4              5        13
## 2282  3405.0715        681.0143             NA             NA        NA
## 2283  3405.0715        681.0143              4              1         9
## 2284  3405.0715        681.0143             NA             NA        NA
## 2285 11668.7070       3889.5691              4              5        13
## 2286 11668.7070       3889.5691              4              4        12
## 2287 11668.7070       3889.5691             NA             NA        NA
## 2288  2729.2468       1364.6234              3              4         8
## 2289  2729.2468       1364.6234              3              4         8
## 2290  6085.5527       2028.5176              4              5        13
## 2291  6085.5527       2028.5176              4              5        13
## 2292  6085.5527       2028.5176              2              4         4
## 2293  7556.1177       1889.0294              4              5        13
## 2294  7556.1177       1889.0294              3              4         8
## 2295  7556.1177       1889.0294              4              0         8
## 2296  7556.1177       1889.0294              4              1         9
## 2297 10293.9307       3431.3103              4              5        13
## 2298 10293.9307       3431.3103              4              5        13
## 2299 10293.9307       3431.3103              4              5        13
## 2300  9857.5859       1971.5172              4              3        11
## 2301  9857.5859       1971.5172              4              5        13
## 2302  9857.5859       1971.5172              4              1         9
## 2303  9857.5859       1971.5172              3              4         8
## 2304  9857.5859       1971.5172              3              4         8
## 2305  4379.5430       2189.7715              4              5        13
## 2306  4379.5430       2189.7715              3              4         8
## 2307 11972.6016       2993.1504              4              5        13
## 2308 11972.6016       2993.1504              4              5        13
## 2309 11972.6016       2993.1504              4              3        11
## 2310 11972.6016       2993.1504              4              4        12
## 2311  5381.4126       1793.8042              3              4         8
## 2312  5381.4126       1793.8042              4              5        13
## 2313  5381.4126       1793.8042             NA             NA        NA
## 2314 15722.7686       3930.6921              4              5        13
## 2315 15722.7686       3930.6921              4              5        13
## 2316 15722.7686       3930.6921              4              5        13
## 2317 15722.7686       3930.6921              4              4        12
## 2318  8415.0713       2103.7678              3              4         8
## 2319  8415.0713       2103.7678              3              4         8
## 2320  8415.0713       2103.7678             NA             NA        NA
## 2321  8415.0713       2103.7678              2              4         4
## 2322 13975.5742       3493.8936              4              4        12
## 2323 13975.5742       3493.8936              4              5        13
## 2324 13975.5742       3493.8936              4              1         9
## 2325 13975.5742       3493.8936              4              5        13
## 2326  4864.6885       4864.6885              4              5        13
## 2327  2737.6001       1368.8000              2              4         4
## 2328  2737.6001       1368.8000              2              4         4
## 2329  4911.1929       1227.7982              2              4         4
## 2330  4911.1929       1227.7982              2             NA        NA
## 2331  4911.1929       1227.7982             NA             NA        NA
## 2332  4911.1929       1227.7982             NA             NA        NA
## 2333  6183.9141       3091.9570              3              4         8
## 2334  6183.9141       3091.9570              4              4        12
## 2335  3818.5642       3818.5642              4              5        13
## 2336  2843.6001       2843.6001              3              4         8
## 2337  4717.2471       4717.2471              4              5        13
## 2338 72211.6562      18052.9141              4              5        13
## 2339 72211.6562      18052.9141              4              5        13
## 2340 72211.6562      18052.9141              4              5        13
## 2341 72211.6562      18052.9141              4              3        11
## 2342  9835.2354       2458.8088              4              5        13
## 2343  9835.2354       2458.8088              4              5        13
## 2344  9835.2354       2458.8088              4              5        13
## 2345  9835.2354       2458.8088              3              4         8
## 2346  8383.3076       2794.4358              4              5        13
## 2347  8383.3076       2794.4358              4              5        13
## 2348  8383.3076       2794.4358              4              4        12
## 2349  1466.4686       1466.4686              4              5        13
## 2350 12838.1641       3209.5410              4              5        13
## 2351 12838.1641       3209.5410              4              5        13
## 2352 12838.1641       3209.5410              4              5        13
## 2353 12838.1641       3209.5410             NA             NA        NA
## 2354 15913.1504       5304.3833              4              5        13
## 2355 15913.1504       5304.3833              4              5        13
## 2356 15913.1504       5304.3833              4              1         9
## 2357  2785.3999       1392.7000              3              4         8
## 2358  2785.3999       1392.7000              4              1         9
## 2359  5514.0142       1378.5035              3              4         8
## 2360  5514.0142       1378.5035              2              4         4
## 2361  5514.0142       1378.5035              3              4         8
## 2362  5514.0142       1378.5035              3              4         8
## 2363  4261.4502       2130.7251              4              5        13
## 2364  4261.4502       2130.7251              4              5        13
## 2365  3976.7847       1988.3923              4              3        11
## 2366  3976.7847       1988.3923              4              3        11
## 2367 14489.1670       4829.7222              3              4         8
## 2368 14489.1670       4829.7222              4              5        13
## 2369 14489.1670       4829.7222              4              5        13
## 2370  4951.5215       1650.5072              2              4         4
## 2371  4951.5215       1650.5072              2              4         4
## 2372  4951.5215       1650.5072              4              2        10
## 2373 13526.8398       2254.4734              4              5        13
## 2374 13526.8398       2254.4734              4              5        13
## 2375 13526.8398       2254.4734              4              0         8
## 2376 13526.8398       2254.4734              4              1         9
## 2377 13526.8398       2254.4734              3              4         8
## 2378 13526.8398       2254.4734              3              4         8
## 2379  5438.4341       2719.2170              3              4         8
## 2380  5438.4341       2719.2170              4              3        11
## 2381 11418.8311       2283.7661              4              1         9
## 2382 11418.8311       2283.7661              4              3        11
## 2383 11418.8311       2283.7661              4              3        11
## 2384 11418.8311       2283.7661              4              1         9
## 2385 11418.8311       2283.7661              4              3        11
## 2386  2798.8799       1399.4399              3              4         8
## 2387  2798.8799       1399.4399              2             NA        NA
## 2388  9187.7617       2296.9404              4              5        13
## 2389  9187.7617       2296.9404              4              5        13
## 2390  9187.7617       2296.9404              4              2        10
## 2391  9187.7617       2296.9404              4              5        13
## 2392  3379.9500       1689.9750              2              4         4
## 2393  3379.9500       1689.9750              4              5        13
## 2394  3201.2048       1600.6024              3              4         8
## 2395  3201.2048       1600.6024              4              5        13
## 2396  5437.1001       2718.5500              3              4         8
## 2397  5437.1001       2718.5500              3              4         8
## 2398  4595.3999        919.0800              2              4         4
## 2399  4595.3999        919.0800              3              4         8
## 2400  4595.3999        919.0800              3              4         8
## 2401  4595.3999        919.0800              3              4         8
## 2402  4595.3999        919.0800             NA             NA        NA
## 2403  4841.2549        968.2510              3              4         8
## 2404  4841.2549        968.2510              4              5        13
## 2405  4841.2549        968.2510              4              5        13
## 2406  4841.2549        968.2510              4              3        11
## 2407  4841.2549        968.2510             NA             NA        NA
## 2408  3975.8765       1987.9382              4              5        13
## 2409  3975.8765       1987.9382              4              5        13
## 2410  2547.8928       1273.9464              2              4         4
## 2411  2547.8928       1273.9464              3              4         8
## 2412  1606.9928       1606.9928              4              5        13
## 2413  5186.0728       1728.6909              4              5        13
## 2414  5186.0728       1728.6909              4              5        13
## 2415  5186.0728       1728.6909              4              3        11
## 2416 16088.5273       4022.1318              4              5        13
## 2417 16088.5273       4022.1318              4              5        13
## 2418 16088.5273       4022.1318              4              5        13
## 2419 16088.5273       4022.1318             NA             NA        NA
## 2420 12826.0996       3206.5249              4              3        11
## 2421 12826.0996       3206.5249              4              5        13
## 2422 12826.0996       3206.5249              3              4         8
## 2423 12826.0996       3206.5249              3              4         8
## 2424  2246.9600       2246.9600              2              4         4
## 2425  1077.6801       1077.6801              3              4         8
## 2426  3889.8799       1944.9399              2             NA        NA
## 2427  3889.8799       1944.9399              2             NA        NA
## 2428  3547.0171       1182.3390              4              5        13
## 2429  3547.0171       1182.3390              2              4         4
## 2430  3547.0171       1182.3390              4              5        13
## 2431  7760.0771       3880.0386              3              4         8
## 2432  7760.0771       3880.0386              4              5        13
## 2433  2731.9199       2731.9199              3              4         8
## 2434  7815.5942       3907.7971              4              5        13
## 2435  7815.5942       3907.7971              4              5        13
## 2436  5939.3828       5939.3828              4              5        13
## 2437  8004.4556       4002.2278              4              5        13
## 2438  8004.4556       4002.2278              4              5        13
## 2439  2044.2242       2044.2242              3              4         8
## 2440 12389.9033       2064.9839              3              4         8
## 2441 12389.9033       2064.9839              4              5        13
## 2442 12389.9033       2064.9839              3              4         8
## 2443 12389.9033       2064.9839              4              1         9
## 2444 12389.9033       2064.9839              4              2        10
## 2445 12389.9033       2064.9839             NA             NA        NA
## 2446  8548.3896       1709.6780              3              4         8
## 2447  8548.3896       1709.6780              4              5        13
## 2448  8548.3896       1709.6780              3              4         8
## 2449  8548.3896       1709.6780             NA             NA        NA
## 2450  8548.3896       1709.6780             NA             NA        NA
## 2451  6386.2202       3193.1101              4              5        13
## 2452  6386.2202       3193.1101              4              5        13
## 2453  2673.6201       2673.6201              3              4         8
## 2454  4976.7998       1658.9332              3              4         8
## 2455  4976.7998       1658.9332              4              5        13
## 2456  4976.7998       1658.9332              4              0         8
## 2457  9718.7197       4859.3599              3              4         8
## 2458  9718.7197       4859.3599              3              4         8
## 2459  3514.8401       1757.4200              2              4         4
## 2460  3514.8401       1757.4200              2              4         4
## 2461  3939.8000       1969.9000              4              5        13
## 2462  3939.8000       1969.9000              1             NA         0
## 2463  6103.0156       3051.5078              3              4         8
## 2464  6103.0156       3051.5078              3              4         8
## 2465  3010.4385       3010.4385              4              5        13
## 2466  3381.3486       3381.3486              4              5        13
## 2467 14147.3643       7073.6821              4              5        13
## 2468 14147.3643       7073.6821              3              4         8
## 2469  5978.5444       1494.6361              3              4         8
## 2470  5978.5444       1494.6361              3              4         8
## 2471  5978.5444       1494.6361              2              4         4
## 2472  5978.5444       1494.6361              4              3        11
## 2473  3593.0200       1796.5100              3              4         8
## 2474  3593.0200       1796.5100              4              5        13
## 2475  2178.8999       1089.4500              3              4         8
## 2476  2178.8999       1089.4500              2              4         4
## 2477 10846.5889       3615.5295              4              3        11
## 2478 10846.5889       3615.5295              4              5        13
## 2479 10846.5889       3615.5295              4              0         8
## 2480  1687.7527       1687.7527              4              5        13
## 2481 11545.4141       3848.4714              4              5        13
## 2482 11545.4141       3848.4714              4              5        13
## 2483 11545.4141       3848.4714             NA             NA        NA
## 2484  5226.8203       2613.4102              3              4         8
## 2485  5226.8203       2613.4102              4              5        13
## 2486 11721.2969       2344.2593              3              4         8
## 2487 11721.2969       2344.2593              3              4         8
## 2488 11721.2969       2344.2593              4              3        11
## 2489 11721.2969       2344.2593              4              3        11
## 2490 11721.2969       2344.2593              4              1         9
## 2491 16644.6934       5548.2310              4              5        13
## 2492 16644.6934       5548.2310              4              4        12
## 2493 16644.6934       5548.2310              4              2        10
## 2494  8124.9170       1624.9834              4              5        13
## 2495  8124.9170       1624.9834              4              5        13
## 2496  8124.9170       1624.9834              4              5        13
## 2497  8124.9170       1624.9834              4              2        10
## 2498  8124.9170       1624.9834              3              4         8
## 2499  7182.4688       1795.6172              4              5        13
## 2500  7182.4688       1795.6172              4              5        13
## 2501  7182.4688       1795.6172             NA             NA        NA
## 2502  7182.4688       1795.6172             NA             NA        NA
## 2503 12781.4297       4260.4766              4              4        12
## 2504 12781.4297       4260.4766              4              4        12
## 2505 12781.4297       4260.4766             NA             NA        NA
## 2506  6607.9214       3303.9607              3              4         8
## 2507  6607.9214       3303.9607              4              5        13
## 2508  3837.0972       1918.5486              4              4        12
## 2509  3837.0972       1918.5486              4              4        12
## 2510  6391.1299       3195.5649              3              4         8
## 2511  6391.1299       3195.5649              3              4         8
## 2512 51330.6641       5703.4072              4              5        13
## 2513 51330.6641       5703.4072              4              5        13
## 2514 51330.6641       5703.4072              4              4        12
## 2515 51330.6641       5703.4072              4              4        12
## 2516 51330.6641       5703.4072              4              5        13
## 2517 51330.6641       5703.4072              2              4         4
## 2518 51330.6641       5703.4072              2              4         4
## 2519 51330.6641       5703.4072             NA             NA        NA
## 2520 51330.6641       5703.4072             NA             NA        NA
## 2521 18290.9883       3658.1978              4              5        13
## 2522 18290.9883       3658.1978              4              5        13
## 2523 18290.9883       3658.1978              4              5        13
## 2524 18290.9883       3658.1978              4              0         8
## 2525 18290.9883       3658.1978              4              4        12
## 2526 15798.7080       3159.7417              4              5        13
## 2527 15798.7080       3159.7417              4              5        13
## 2528 15798.7080       3159.7417              4              5        13
## 2529 15798.7080       3159.7417              4              5        13
## 2530 15798.7080       3159.7417             NA             NA        NA
## 2531 19337.8848       3222.9807              4              3        11
## 2532 19337.8848       3222.9807             NA             NA        NA
## 2533 19337.8848       3222.9807              4              5        13
## 2534 19337.8848       3222.9807              4              5        13
## 2535 19337.8848       3222.9807              4              5        13
## 2536 19337.8848       3222.9807             NA             NA        NA
## 2537  3061.3628       3061.3628              3              4         8
## 2538  9763.2256       3254.4084              4              5        13
## 2539  9763.2256       3254.4084              3              4         8
## 2540  9763.2256       3254.4084              4              5        13
## 2541  2605.2437       2605.2437              3              4         8
## 2542  3770.2000       3770.2000              3              4         8
## 2543 10656.0361       3552.0120              4              5        13
## 2544 10656.0361       3552.0120              4              5        13
## 2545 10656.0361       3552.0120              4              5        13
## 2546  7024.6987       3512.3494              4              2        10
## 2547  7024.6987       3512.3494              4              5        13
## 2548  5688.4233       2844.2117              3              4         8
## 2549  5688.4233       2844.2117              3              4         8
## 2550 12196.1924       3049.0481              4              5        13
## 2551 12196.1924       3049.0481              4              5        13
## 2552 12196.1924       3049.0481              4              2        10
## 2553 12196.1924       3049.0481              3              4         8
## 2554 13046.3516       4348.7837              4              5        13
## 2555 13046.3516       4348.7837              4              5        13
## 2556 13046.3516       4348.7837              4              2        10
## 2557 14518.4854       4839.4951              4              6        14
## 2558 14518.4854       4839.4951              2              4         4
## 2559 14518.4854       4839.4951              4              5        13
## 2560  3322.9929       1661.4965              4              2        10
## 2561  3322.9929       1661.4965              4              5        13
## 2562  2266.0356       1133.0178              3              4         8
## 2563  2266.0356       1133.0178              3              4         8
## 2564  2675.2000       1337.6000              3              4         8
## 2565  2675.2000       1337.6000              3              4         8
## 2566  2192.3857       1096.1929              3              4         8
## 2567  2192.3857       1096.1929              3              4         8
## 2568 14079.6191       4693.2065              4              5        13
## 2569 14079.6191       4693.2065              4              5        13
## 2570 14079.6191       4693.2065              4              0         8
## 2571  5993.8618       2996.9309              3              4         8
## 2572  5993.8618       2996.9309              3              4         8
## 2573 15160.3916       3790.0979              4              5        13
## 2574 15160.3916       3790.0979              4              5        13
## 2575 15160.3916       3790.0979              4              1         9
## 2576 15160.3916       3790.0979              3              4         8
## 2577  5114.4819       1704.8273              2              4         4
## 2578  5114.4819       1704.8273              3              4         8
## 2579  5114.4819       1704.8273              4              1         9
## 2580 12146.2715       4048.7571              4              5        13
## 2581 12146.2715       4048.7571              4              5        13
## 2582 12146.2715       4048.7571              3              4         8
## 2583  9119.2002       1823.8401              2              4         4
## 2584  9119.2002       1823.8401              2              4         4
## 2585  9119.2002       1823.8401              2              4         4
## 2586  9119.2002       1823.8401              4              5        13
## 2587  9119.2002       1823.8401              4              5        13
## 2588  6188.2358       6188.2358              4              4        12
## 2589  5956.3159       2978.1580              4              5        13
## 2590  5956.3159       2978.1580              4              5        13
## 2591  5448.7998       2724.3999              4              2        10
## 2592  5448.7998       2724.3999              3              4         8
## 2593  7627.7788       2542.5930              3              4         8
## 2594  7627.7788       2542.5930              4              5        13
## 2595  7627.7788       2542.5930              4              5        13
## 2596  6291.7998       3145.8999              3              4         8
## 2597  6291.7998       3145.8999              3              4         8
## 2598 10799.7715       5399.8857              4              5        13
## 2599 10799.7715       5399.8857              4              5        13
## 2600  3583.8572       1791.9286              3              4         8
## 2601  3583.8572       1791.9286              3              4         8
## 2602 16038.4854       3207.6970              4              5        13
## 2603 16038.4854       3207.6970              4              5        13
## 2604 16038.4854       3207.6970              4              5        13
## 2605 16038.4854       3207.6970              4              0         8
## 2606 16038.4854       3207.6970              3              4         8
## 2607  2741.0000       1370.5000              2              4         4
## 2608  2741.0000       1370.5000              2              4         4
## 2609  4780.3999       2390.2000              3              4         8
## 2610  4780.3999       2390.2000              3              4         8
## 2611  3281.2000       3281.2000              2              4         4
## 2612 14177.2070       4725.7358              4              5        13
## 2613 14177.2070       4725.7358              4              5        13
## 2614 14177.2070       4725.7358              4              5        13
## 2615  2372.0000        790.6667              3              4         8
## 2616  2372.0000        790.6667              3              4         8
## 2617  2372.0000        790.6667              4              5        13
## 2618  9698.6289       2424.6572              4              5        13
## 2619  9698.6289       2424.6572              4              5        13
## 2620  9698.6289       2424.6572              4              5        13
## 2621  9698.6289       2424.6572              4              1         9
## 2622 20288.8848       6762.9614              4              5        13
## 2623 20288.8848       6762.9614              4              5        13
## 2624 20288.8848       6762.9614             NA             NA        NA
## 2625  2455.0000       2455.0000              2              4         4
## 2626  6190.2812       3095.1406              4              5        13
## 2627  6190.2812       3095.1406              3              4         8
## 2628 11502.7910       3834.2637              4              5        13
## 2629 11502.7910       3834.2637              4              5        13
## 2630 11502.7910       3834.2637              4              2        10
## 2631  7712.4048       1285.4008              3              4         8
## 2632  7712.4048       1285.4008              2              4         4
## 2633  7712.4048       1285.4008              4              5        13
## 2634  7712.4048       1285.4008              3              4         8
## 2635  7712.4048       1285.4008              4              5        13
## 2636  7712.4048       1285.4008              4              3        11
## 2637  9231.2568       2307.8142              4              5        13
## 2638  9231.2568       2307.8142              4              5        13
## 2639  9231.2568       2307.8142              4              5        13
## 2640  9231.2568       2307.8142              4              3        11
## 2641 11598.7031       2899.6758              3              4         8
## 2642 11598.7031       2899.6758              3              4         8
## 2643 11598.7031       2899.6758              4              5        13
## 2644 11598.7031       2899.6758              4              5        13
## 2645  6641.2041       2213.7346              4              5        13
## 2646  6641.2041       2213.7346              4              5        13
## 2647  6641.2041       2213.7346              4              5        13
## 2648 17816.3438       5938.7812              4              5        13
## 2649 17816.3438       5938.7812              4              5        13
## 2650 17816.3438       5938.7812              4              2        10
## 2651  9695.7656       3231.9219              4              5        13
## 2652  9695.7656       3231.9219              4              5        13
## 2653  9695.7656       3231.9219              3              4         8
## 2654  5351.2500       2675.6250              4              4        12
## 2655  5351.2500       2675.6250              4              5        13
## 2656  6837.8901       1709.4725              4              5        13
## 2657  6837.8901       1709.4725              3              4         8
## 2658  6837.8901       1709.4725              3              4         8
## 2659  6837.8901       1709.4725              3              4         8
## 2660 10053.4717       2010.6943              4              5        13
## 2661 10053.4717       2010.6943              4              5        13
## 2662 10053.4717       2010.6943              4              5        13
## 2663 10053.4717       2010.6943              4              4        12
## 2664 10053.4717       2010.6943             NA             NA        NA
## 2665 25391.8301       6347.9575              4              5        13
## 2666 25391.8301       6347.9575              4              5        13
## 2667 25391.8301       6347.9575              4              5        13
## 2668 25391.8301       6347.9575              4              5        13
## 2669 11947.9111       3982.6370              4              5        13
## 2670 11947.9111       3982.6370              4              5        13
## 2671 11947.9111       3982.6370             NA             NA        NA
## 2672  2688.5601       2688.5601              2              4         4
## 2673  3701.8572       1850.9286              4              5        13
## 2674  3701.8572       1850.9286              4              5        13
## 2675  3180.0000       3180.0000              2             NA        NA
## 2676  9025.7002       1805.1400              4              2        10
## 2677  9025.7002       1805.1400              3              4         8
## 2678  9025.7002       1805.1400              4              5        13
## 2679  9025.7002       1805.1400              4              5        13
## 2680  9025.7002       1805.1400             NA             NA        NA
## 2681  1683.1000       1683.1000              4              3        11
## 2682 12022.2383       2003.7064              3              4         8
## 2683 12022.2383       2003.7064              3              4         8
## 2684 12022.2383       2003.7064              4              5        13
## 2685 12022.2383       2003.7064              4              5        13
## 2686 12022.2383       2003.7064              4              5        13
## 2687 12022.2383       2003.7064             NA             NA        NA
## 2688  7006.9341       1401.3868              3              4         8
## 2689  7006.9341       1401.3868              3              4         8
## 2690  7006.9341       1401.3868              3              4         8
## 2691  7006.9341       1401.3868              3              4         8
## 2692  7006.9341       1401.3868             NA             NA        NA
## 2693  3078.2671       3078.2671              4              5        13
## 2694  6196.4785       3098.2393              4              5        13
## 2695  6196.4785       3098.2393              4              5        13
## 2696  9480.2197       4740.1099              4              5        13
## 2697  9480.2197       4740.1099              4              3        11
## 2698  3891.8772       1945.9386              3              4         8
## 2699  3891.8772       1945.9386              3              4         8
## 2700  5757.4072       2878.7036              3              4         8
## 2701  5757.4072       2878.7036              4              5        13
## 2702  2334.5457       2334.5457              2              4         4
## 2703 16604.2930       4151.0732              4              5        13
## 2704 16604.2930       4151.0732              4              5        13
## 2705 16604.2930       4151.0732              4              5        13
## 2706 16604.2930       4151.0732              4              3        11
## 2707  5596.0801       1399.0200              3              4         8
## 2708  5596.0801       1399.0200              3              4         8
## 2709  5596.0801       1399.0200              3              4         8
## 2710  5596.0801       1399.0200              3              4         8
## 2711  6103.5601       1525.8900              4              3        11
## 2712  6103.5601       1525.8900              3              4         8
## 2713  6103.5601       1525.8900              4              5        13
## 2714  6103.5601       1525.8900             NA             NA        NA
## 2715  8296.0645       1659.2129              3              4         8
## 2716  8296.0645       1659.2129              3              4         8
## 2717  8296.0645       1659.2129              3              4         8
## 2718  8296.0645       1659.2129              3              4         8
## 2719  8296.0645       1659.2129              4              3        11
## 2720 11376.6787       3792.2263              4              5        13
## 2721 11376.6787       3792.2263              4              5        13
## 2722 11376.6787       3792.2263              4              5        13
## 2723  1896.8112       1896.8112              3              4         8
## 2724  3463.4800       1731.7400              4              5        13
## 2725  3463.4800       1731.7400              4              5        13
## 2726 26146.6816       6536.6704              4              5        13
## 2727 26146.6816       6536.6704              4              5        13
## 2728 26146.6816       6536.6704              4              0         8
## 2729 26146.6816       6536.6704              4              2        10
## 2730  4971.6021       2485.8010              3              4         8
## 2731  4971.6021       2485.8010              3              4         8
## 2732  3357.0371       1678.5186              4              5        13
## 2733  3357.0371       1678.5186              4              5        13
## 2734  8582.7998       2860.9333              4              5        13
## 2735  8582.7998       2860.9333              4              3        11
## 2736  8582.7998       2860.9333             NA             NA        NA
## 2737  8911.7109       1485.2852              4              5        13
## 2738  8911.7109       1485.2852              3              4         8
## 2739  8911.7109       1485.2852              3              4         8
## 2740  8911.7109       1485.2852              4              5        13
## 2741  8911.7109       1485.2852              4              0         8
## 2742  8911.7109       1485.2852              4              5        13
## 2743  1846.9399       1846.9399              3              4         8
## 2744  6094.6543       3047.3271              3              4         8
## 2745  6094.6543       3047.3271              3              4         8
## 2746 14598.6953       4866.2319              4              5        13
## 2747 14598.6953       4866.2319              4              4        12
## 2748 14598.6953       4866.2319              4              3        11
## 2749 18184.6777       4546.1694              4              5        13
## 2750 18184.6777       4546.1694              4              4        12
## 2751 18184.6777       4546.1694              4              2        10
## 2752 18184.6777       4546.1694              4              3        11
## 2753 12573.3428       2514.6685              4              5        13
## 2754 12573.3428       2514.6685              3              4         8
## 2755 12573.3428       2514.6685              4              5        13
## 2756 12573.3428       2514.6685              4              0         8
## 2757 12573.3428       2514.6685             NA             NA        NA
## 2758  2925.1057       2925.1057              4              5        13
## 2759  6887.3560       1377.4712              3              4         8
## 2760  6887.3560       1377.4712              2             NA        NA
## 2761  6887.3560       1377.4712              3              4         8
## 2762  6887.3560       1377.4712              3              4         8
## 2763  6887.3560       1377.4712             NA             NA        NA
## 2764  4282.7998       2141.3999              4              5        13
## 2765  4282.7998       2141.3999              3              4         8
## 2766 13110.7910       3277.6978              4              4        12
## 2767 13110.7910       3277.6978              4              4        12
## 2768 13110.7910       3277.6978              4              1         9
## 2769 13110.7910       3277.6978              4              1         9
## 2770 16565.2227       4141.3057              4              5        13
## 2771 16565.2227       4141.3057              4              5        13
## 2772 16565.2227       4141.3057              4              0         8
## 2773 16565.2227       4141.3057              4              2        10
## 2774  5297.2002        882.8667              3              4         8
## 2775  5297.2002        882.8667              3              4         8
## 2776  5297.2002        882.8667              3              4         8
## 2777  5297.2002        882.8667              3              4         8
## 2778  5297.2002        882.8667             NA             NA        NA
## 2779  5297.2002        882.8667             NA             NA        NA
## 2780 11892.8643       2973.2161              4              4        12
## 2781 11892.8643       2973.2161              4              4        12
## 2782 11892.8643       2973.2161              4              3        11
## 2783 11892.8643       2973.2161              4              4        12
## 2784  8256.3711       2752.1238              3              4         8
## 2785  8256.3711       2752.1238              4              5        13
## 2786  8256.3711       2752.1238              4              1         9
## 2787  5422.7358       1355.6840              3              4         8
## 2788  5422.7358       1355.6840              2             NA        NA
## 2789  5422.7358       1355.6840              2              4         4
## 2790  5422.7358       1355.6840              4              0         8
## 2791 13472.6924       6736.3462              4              5        13
## 2792 13472.6924       6736.3462              4              5        13
## 2793  9071.2588       2267.8147              4              7        15
## 2794  9071.2588       2267.8147              4              5        13
## 2795  9071.2588       2267.8147              4              3        11
## 2796  9071.2588       2267.8147              4              4        12
## 2797  2866.0200       2866.0200              3              4         8
## 2798  4292.9644       1430.9882              4              7        15
## 2799  4292.9644       1430.9882              4              7        15
## 2800  4292.9644       1430.9882              4              3        11
## 2801  3992.6001       1996.3000              2              4         4
## 2802  3992.6001       1996.3000              4              5        13
## 2803  5118.1929       1706.0643              4              5        13
## 2804  5118.1929       1706.0643              4              5        13
## 2805  5118.1929       1706.0643              2              4         4
## 2806 11050.0830       3683.3611              4              5        13
## 2807 11050.0830       3683.3611              4              5        13
## 2808 11050.0830       3683.3611              4              1         9
## 2809  1443.9399       1443.9399              3              4         8
## 2810  5366.9287        894.4881              2              4         4
## 2811  5366.9287        894.4881              3              4         8
## 2812  5366.9287        894.4881              4              5        13
## 2813  5366.9287        894.4881              3              4         8
## 2814  5366.9287        894.4881              3              4         8
## 2815  5366.9287        894.4881              3              4         8
## 2816  7387.1558       1846.7889              4              5        13
## 2817  7387.1558       1846.7889              4              3        11
## 2818  7387.1558       1846.7889             NA             NA        NA
## 2819  7387.1558       1846.7889              4              1         9
## 2820  4908.1001        818.0167              4              5        13
## 2821  4908.1001        818.0167              4              5        13
## 2822  4908.1001        818.0167              2              4         4
## 2823  4908.1001        818.0167             NA             NA        NA
## 2824  4908.1001        818.0167             NA             NA        NA
## 2825  4908.1001        818.0167              4              2        10
## 2826  4063.4226       4063.4226              4              5        13
## 2827  4526.4600       1508.8199              4              5        13
## 2828  4526.4600       1508.8199              4              5        13
## 2829  4526.4600       1508.8199             NA             NA        NA
## 2830  4958.3730       2479.1865              4              5        13
## 2831  4958.3730       2479.1865              4              5        13
## 2832 25103.9707       8367.9902              4              5        13
## 2833 25103.9707       8367.9902              4              5        13
## 2834 25103.9707       8367.9902              4              2        10
## 2835  6830.2002       1366.0400              3              4         8
## 2836  6830.2002       1366.0400              3              4         8
## 2837  6830.2002       1366.0400              4              5        13
## 2838  6830.2002       1366.0400              4              0         8
## 2839  6830.2002       1366.0400             NA             NA        NA
## 2840  2140.6001       1070.3000              2              4         4
## 2841  2140.6001       1070.3000              2              4         4
## 2842  3542.8643       1771.4321              4              5        13
## 2843  3542.8643       1771.4321              2              4         4
## 2844  6703.8599       3351.9299              4              5        13
## 2845  6703.8599       3351.9299              4              5        13
## 2846 11717.5176       2343.5034              4              5        13
## 2847 11717.5176       2343.5034              4              5        13
## 2848 11717.5176       2343.5034              4              3        11
## 2849 11717.5176       2343.5034              4              5        13
## 2850 11717.5176       2343.5034             NA             NA        NA
## 2851 10919.3037       1819.8839              4              5        13
## 2852 10919.3037       1819.8839              4              5        13
## 2853 10919.3037       1819.8839              4              3        11
## 2854 10919.3037       1819.8839              4              2        10
## 2855 10919.3037       1819.8839              3              4         8
## 2856 10919.3037       1819.8839              3              4         8
## 2857  5871.2930       1467.8232              3              4         8
## 2858  5871.2930       1467.8232              3              4         8
## 2859  5871.2930       1467.8232              4              2        10
## 2860  5871.2930       1467.8232              3              4         8
## 2861  5183.5356       2591.7678              4              1         9
## 2862  5183.5356       2591.7678              1             NA         0
## 2863  8351.4941       2783.8313              4              5        13
## 2864  8351.4941       2783.8313              4              3        11
## 2865  8351.4941       2783.8313              3              4         8
## 2866  2893.9929        964.6643              3              4         8
## 2867  2893.9929        964.6643              3              4         8
## 2868  2893.9929        964.6643              2              4         4
## 2869  4447.4199       4447.4199              4              3        11
## 2870  4822.3799       4822.3799              2              4         4
## 2871 12626.0215       4208.6738              3              4         8
## 2872 12626.0215       4208.6738              3              4         8
## 2873 12626.0215       4208.6738              4              1         9
## 2874 12450.2998       6225.1499              4              5        13
## 2875 12450.2998       6225.1499              4              5        13
## 2876  9609.9785       3203.3262              4              5        13
## 2877  9609.9785       3203.3262              4              5        13
## 2878  9609.9785       3203.3262              3              4         8
## 2879  3485.2856       1742.6428              2              4         4
## 2880  3485.2856       1742.6428              3              4         8
## 2881  2551.8000       2551.8000              3              4         8
## 2882  6871.1001       6871.1001              4              5        13
## 2883  5362.8999       2681.4500              3              4         8
## 2884  5362.8999       2681.4500              3              4         8
## 2885  7546.9712       3773.4856              4              5        13
## 2886  7546.9712       3773.4856              3              4         8
## 2887  7690.6001       3845.3000              3              4         8
## 2888  7690.6001       3845.3000              3              4         8
## 2889  8565.2646       2141.3162              4              5        13
## 2890  8565.2646       2141.3162              4              5        13
## 2891  8565.2646       2141.3162              4              0         8
## 2892  8565.2646       2141.3162             NA             NA        NA
## 2893 23181.3359       7727.1118              4              5        13
## 2894 23181.3359       7727.1118              4              5        13
## 2895 23181.3359       7727.1118              4              3        11
## 2896  4828.8550       2414.4275              3              4         8
## 2897  4828.8550       2414.4275              4              3        11
## 2898  9397.8789       4698.9395              3              4         8
## 2899  9397.8789       4698.9395              4              5        13
## 2900 10633.6367       2658.4092              4              5        13
## 2901 10633.6367       2658.4092              4              5        13
## 2902 10633.6367       2658.4092              4              5        13
## 2903 10633.6367       2658.4092              4              5        13
## 2904  3079.5029       1539.7515              2             NA        NA
## 2905  3079.5029       1539.7515              3              4         8
## 2906  7942.5483       2647.5161              4              5        13
## 2907  7942.5483       2647.5161              4              4        12
## 2908  7942.5483       2647.5161              4              2        10
## 2909  6562.3472       6562.3472              4              5        13
## 2910  3193.8000       1064.6000              4              5        13
## 2911  3193.8000       1064.6000              4              5        13
## 2912  3193.8000       1064.6000              4              5        13
## 2913 34333.3828       8583.3457              4              5        13
## 2914 34333.3828       8583.3457              4              7        15
## 2915 34333.3828       8583.3457              4              1         9
## 2916 34333.3828       8583.3457             NA             NA        NA
## 2917 25486.9668       2548.6968              3              4         8
## 2918 25486.9668       2548.6968              4              5        13
## 2919 25486.9668       2548.6968              4              5        13
## 2920 25486.9668       2548.6968              4              1         9
## 2921 25486.9668       2548.6968             NA             NA        NA
## 2922 25486.9668       2548.6968              4              5        13
## 2923 25486.9668       2548.6968              4              5        13
## 2924 25486.9668       2548.6968             NA             NA        NA
## 2925 25486.9668       2548.6968              4              5        13
## 2926 25486.9668       2548.6968              2              4         4
## 2927  6942.5200       2314.1733              4              2        10
## 2928  6942.5200       2314.1733              4              5        13
## 2929  6942.5200       2314.1733             NA             NA        NA
## 2930 17912.1074       3582.4214              4              5        13
## 2931 17912.1074       3582.4214              4              5        13
## 2932 17912.1074       3582.4214              4              5        13
## 2933 17912.1074       3582.4214              4              5        13
## 2934 17912.1074       3582.4214              3              4         8
## 2935  9410.7500       1568.4584              4              3        11
## 2936  9410.7500       1568.4584              4              4        12
## 2937  9410.7500       1568.4584              4              5        13
## 2938  9410.7500       1568.4584              4              1         9
## 2939  9410.7500       1568.4584              4              1         9
## 2940  9410.7500       1568.4584              4              1         9
## 2941  3143.3550       3143.3550              4              5        13
## 2942  1886.1515       1886.1515              3              4         8
## 2943  3267.0815       1633.5408              4              5        13
## 2944  3267.0815       1633.5408              4              5        13
## 2945  8835.8369       4417.9185              4              5        13
## 2946  8835.8369       4417.9185              4              5        13
## 2947  8166.4741       4083.2371              4              5        13
## 2948  8166.4741       4083.2371              4              5        13
## 2949  7058.3584       3529.1792              4              5        13
## 2950  7058.3584       3529.1792              3              4         8
## 2951  6959.1602       2319.7200              4              5        13
## 2952  6959.1602       2319.7200              3              4         8
## 2953  6959.1602       2319.7200              3              4         8
## 2954 13187.1504       4395.7168              4              5        13
## 2955 13187.1504       4395.7168              4              5        13
## 2956 13187.1504       4395.7168              4              0         8
## 2957  2857.5557       2857.5557              4              5        13
## 2958  9509.7686       4754.8843              3              4         8
## 2959  9509.7686       4754.8843              4              5        13
## 2960  8965.8955       4482.9478              4              5        13
## 2961  8965.8955       4482.9478              4              5        13
## 2962  2724.0872       1362.0436              3              4         8
## 2963  2724.0872       1362.0436              2              4         4
## 2964  3529.2070       1764.6035              4              5        13
## 2965  3529.2070       1764.6035              4              5        13
## 2966 14088.3447       2817.6689              4              5        13
## 2967 14088.3447       2817.6689              4              5        13
## 2968 14088.3447       2817.6689              4              3        11
## 2969 14088.3447       2817.6689              4              0         8
## 2970 14088.3447       2817.6689              4              1         9
## 2971  6921.3691       3460.6846              4              5        13
## 2972  6921.3691       3460.6846              4              5        13
## 2973  4364.7480       2182.3740              4              5        13
## 2974  4364.7480       2182.3740              4              5        13
## 2975  5783.6128       2891.8064              4              7        15
## 2976  5783.6128       2891.8064              4              5        13
## 2977  3722.7429       1861.3715              3              4         8
## 2978  3722.7429       1861.3715              3              4         8
## 2979 11473.0811       3824.3604              4              5        13
## 2980 11473.0811       3824.3604              4              5        13
## 2981 11473.0811       3824.3604              4              2        10
## 2982  8033.5728       2677.8577              4              5        13
## 2983  8033.5728       2677.8577              4              5        13
## 2984  8033.5728       2677.8577              4              1         9
## 2985 16740.3555       4185.0889              4              5        13
## 2986 16740.3555       4185.0889              4              5        13
## 2987 16740.3555       4185.0889              4              1         9
## 2988 16740.3555       4185.0889              4              0         8
## 2989  2508.5400       1254.2700              3              4         8
## 2990  2508.5400       1254.2700              3              4         8
## 2991 15350.8730       3837.7183              4              5        13
## 2992 15350.8730       3837.7183              4              5        13
## 2993 15350.8730       3837.7183              4              5        13
## 2994 15350.8730       3837.7183              4              0         8
## 2995  4946.0312       1648.6771              4              5        13
## 2996  4946.0312       1648.6771              4              5        13
## 2997  4946.0312       1648.6771             NA             NA        NA
## 2998  1572.8000       1572.8000              3              4         8
## 2999  5899.7886       1966.5962              4              5        13
## 3000  5899.7886       1966.5962              4              5        13
## 3001  5899.7886       1966.5962              4              5        13
## 3002  2769.1851       2769.1851              4              5        13
## 3003  4252.2271       2126.1135              4              5        13
## 3004  4252.2271       2126.1135              3              4         8
## 3005  3335.4915       3335.4915              3              4         8
## 3006  3880.2700       3880.2700              4              3        11
## 3007 19122.6152       4780.6538              4              5        13
## 3008 19122.6152       4780.6538              4              5        13
## 3009 19122.6152       4780.6538              4              5        13
## 3010 19122.6152       4780.6538              4              3        11
## 3011  2634.0801       2634.0801              2              4         4
## 3012  2621.6201       1310.8101              3              4         8
## 3013  2621.6201       1310.8101              2              4         4
## 3014  8070.5679       2690.1892              4              5        13
## 3015  8070.5679       2690.1892              4              3        11
## 3016  8070.5679       2690.1892              4              0         8
## 3017  3540.2544       1180.0848              3              4         8
## 3018  3540.2544       1180.0848              3              4         8
## 3019  3540.2544       1180.0848              2              4         4
## 3020  4804.8091       2402.4045              3              4         8
## 3021  4804.8091       2402.4045              4              1         9
## 3022  6839.6748       2279.8916              4              5        13
## 3023  6839.6748       2279.8916              4              5        13
## 3024  6839.6748       2279.8916              4              1         9
## 3025  2017.9943       2017.9943              3              4         8
## 3026  1247.5699       1247.5699              2              4         4
## 3027  4183.3628       2091.6814              4              5        13
## 3028  4183.3628       2091.6814              4              5        13
## 3029  9106.2246       2276.5562              4              5        13
## 3030  9106.2246       2276.5562              4              5        13
## 3031  9106.2246       2276.5562              4              2        10
## 3032  9106.2246       2276.5562              3              4         8
## 3033  8099.6924       2699.8975              4              5        13
## 3034  8099.6924       2699.8975              4              5        13
## 3035  8099.6924       2699.8975              4              5        13
## 3036  7257.8350       1814.4587              4              5        13
## 3037  7257.8350       1814.4587              4              5        13
## 3038  7257.8350       1814.4587              4              5        13
## 3039  7257.8350       1814.4587              4              5        13
## 3040  4845.9609       1211.4902              3              4         8
## 3041  4845.9609       1211.4902              3              4         8
## 3042  4845.9609       1211.4902             NA             NA        NA
## 3043  4845.9609       1211.4902              4              0         8
## 3044  5381.0552       1345.2638              4              4        12
## 3045  5381.0552       1345.2638              4              4        12
## 3046  5381.0552       1345.2638              4              5        13
## 3047  5381.0552       1345.2638              4              3        11
## 3048  4590.0259       4590.0259              4              5        13
## 3049  7210.9502       3605.4751              4              5        13
## 3050  7210.9502       3605.4751              4              5        13
## 3051  7698.3970       2566.1323              4              4        12
## 3052  7698.3970       2566.1323              4              5        13
## 3053  7698.3970       2566.1323              4              1         9
## 3054  4442.8501       2221.4250              4              5        13
## 3055  4442.8501       2221.4250              4              3        11
## 3056  7288.9644       1822.2411              3              4         8
## 3057  7288.9644       1822.2411              3              4         8
## 3058  7288.9644       1822.2411              4              5        13
## 3059  7288.9644       1822.2411              1             NA         0
## 3060  4819.8892       1606.6298              2              4         4
## 3061  4819.8892       1606.6298              2              4         4
## 3062  4819.8892       1606.6298              1             NA         0
## 3063 12209.0859       3052.2715              4              5        13
## 3064 12209.0859       3052.2715              4              5        13
## 3065 12209.0859       3052.2715              4              5        13
## 3066 12209.0859       3052.2715              4              5        13
## 3067  6670.3716       2223.4573              4              5        13
## 3068  6670.3716       2223.4573              4              5        13
## 3069  6670.3716       2223.4573              4              5        13
## 3070  6999.5073       3499.7537              4              5        13
## 3071  6999.5073       3499.7537              4              3        11
## 3072  4873.2798       2436.6399              4              5        13
## 3073  4873.2798       2436.6399              4              5        13
## 3074  4031.1428       4031.1428              4              5        13
## 3075  1776.6200       1776.6200              3              4         8
## 3076  4629.3999       2314.7000              4              5        13
## 3077  4629.3999       2314.7000              4              5        13
## 3078  3894.4343       1947.2172              4              3        11
## 3079  3894.4343       1947.2172              4              3        11
## 3080 27251.3145       3027.9238              3              4         8
## 3081 27251.3145       3027.9238              2              4         4
## 3082 27251.3145       3027.9238              4              5        13
## 3083 27251.3145       3027.9238              4              5        13
## 3084 27251.3145       3027.9238              4              3        11
## 3085 27251.3145       3027.9238              4              3        11
## 3086 27251.3145       3027.9238              4              5        13
## 3087 27251.3145       3027.9238              4              5        13
## 3088 27251.3145       3027.9238              4              3        11
## 3089  5035.0356       2517.5178              4              5        13
## 3090  5035.0356       2517.5178              4              5        13
## 3091   922.7000        922.7000              3              4         8
## 3092  4329.0259       2164.5129              4              5        13
## 3093  4329.0259       2164.5129              4              5        13
## 3094  6455.6641       3227.8320              3              4         8
## 3095  6455.6641       3227.8320              3              4         8
## 3096  7668.5288       2556.1763              4              3        11
## 3097  7668.5288       2556.1763              4              3        11
## 3098  7668.5288       2556.1763              3              4         8
## 3099  4476.5464       2238.2732              4              5        13
## 3100  4476.5464       2238.2732              4              5        13
## 3101  6518.5142       1629.6285              4              3        11
## 3102  6518.5142       1629.6285              4              5        13
## 3103  6518.5142       1629.6285              4              3        11
## 3104  6518.5142       1629.6285              4              0         8
## 3105  2614.1428        871.3809              3              4         8
## 3106  2614.1428        871.3809              4              5        13
## 3107  2614.1428        871.3809              4              5        13
## 3108  9219.4932       3073.1643              4              5        13
## 3109  9219.4932       3073.1643              4              5        13
## 3110  9219.4932       3073.1643              4              1         9
## 3111  7187.3999       3593.7000              4              5        13
## 3112  7187.3999       3593.7000              4              5        13
## 3113 11689.0645       2922.2661              4              5        13
## 3114 11689.0645       2922.2661              4              5        13
## 3115 11689.0645       2922.2661              4              5        13
## 3116 11689.0645       2922.2661              4              5        13
## 3117  4045.9915       1348.6638              3              4         8
## 3118  4045.9915       1348.6638              3              4         8
## 3119  4045.9915       1348.6638              1             NA         0
## 3120 10807.3652       2701.8413              3              4         8
## 3121 10807.3652       2701.8413              4              5        13
## 3122 10807.3652       2701.8413              4              1         9
## 3123 10807.3652       2701.8413              4              2        10
## 3124  7032.1914       2344.0637              3              4         8
## 3125  7032.1914       2344.0637              3              4         8
## 3126  7032.1914       2344.0637              3              4         8
## 3127  5439.0073       1359.7518              4              5        13
## 3128  5439.0073       1359.7518              4              5        13
## 3129  5439.0073       1359.7518              4              3        11
## 3130  5439.0073       1359.7518              2              4         4
## 3131  2329.9800       1164.9900              3              4         8
## 3132  2329.9800       1164.9900              3              4         8
## 3133 11757.1572       2939.2893              4              5        13
## 3134 11757.1572       2939.2893              4              5        13
## 3135 11757.1572       2939.2893              4              0         8
## 3136 11757.1572       2939.2893              4              0         8
## 3137 13380.2002       4460.0669              4              5        13
## 3138 13380.2002       4460.0669              4              5        13
## 3139 13380.2002       4460.0669              4              5        13
## 3140  4112.4644       2056.2322              4              5        13
## 3141  4112.4644       2056.2322              4              5        13
## 3142  2750.6086       2750.6086              3              4         8
## 3143  1327.9709       1327.9709              3              4         8
## 3144 27010.1719       6752.5430              4              5        13
## 3145 27010.1719       6752.5430              4              5        13
## 3146 27010.1719       6752.5430              4              5        13
## 3147 27010.1719       6752.5430              4              5        13
## 3148  4249.5000       2124.7500              4              2        10
## 3149  4249.5000       2124.7500              4              2        10
## 3150  2895.5400       2895.5400              3              4         8
## 3151  9176.0430       4588.0215              4              5        13
## 3152  9176.0430       4588.0215              4              5        13
## 3153  9955.8994       2488.9749              4              2        10
## 3154  9955.8994       2488.9749              4              5        13
## 3155  9955.8994       2488.9749              4              2        10
## 3156  9955.8994       2488.9749              4              3        11
## 3157  6402.2964       2134.0989              4              5        13
## 3158  6402.2964       2134.0989              4              5        13
## 3159  6402.2964       2134.0989              4              2        10
## 3160  6056.0542       1514.0135              4              5        13
## 3161  6056.0542       1514.0135              4              5        13
## 3162  6056.0542       1514.0135              4              5        13
## 3163  6056.0542       1514.0135              4              0         8
## 3164  5430.0000        905.0000              1             NA         0
## 3165  5430.0000        905.0000              4              2        10
## 3166  5430.0000        905.0000              4              2        10
## 3167  5430.0000        905.0000              4              1         9
## 3168  5430.0000        905.0000              4              1         9
## 3169  5430.0000        905.0000             NA             NA        NA
## 3170  3379.9785       1689.9893              4              5        13
## 3171  3379.9785       1689.9893              3              4         8
## 3172  3366.6001       1122.2001              4              5        13
## 3173  3366.6001       1122.2001              4              5        13
## 3174  3366.6001       1122.2001              3              4         8
## 3175  1860.1042       1860.1042              3              4         8
## 3176  3011.7725       1505.8862              3              4         8
## 3177  3011.7725       1505.8862              2              4         4
## 3178 11065.5576       2213.1116              3              4         8
## 3179 11065.5576       2213.1116              3              4         8
## 3180 11065.5576       2213.1116              3              4         8
## 3181 11065.5576       2213.1116              3              4         8
## 3182 11065.5576       2213.1116             NA             NA        NA
## 3183  6744.1401       1348.8280              4              5        13
## 3184  6744.1401       1348.8280              4              5        13
## 3185  6744.1401       1348.8280              1             NA         0
## 3186  6744.1401       1348.8280             NA             NA        NA
## 3187  6744.1401       1348.8280             NA             NA        NA
## 3188  3089.6245       1544.8123              4              2        10
## 3189  3089.6245       1544.8123              3              4         8
## 3190  6212.7666       3106.3833              3              4         8
## 3191  6212.7666       3106.3833              4              5        13
## 3192  8998.3096       2999.4365              4              5        13
## 3193  8998.3096       2999.4365              4              5        13
## 3194  8998.3096       2999.4365              4              5        13
## 3195  9568.6504       4784.3252              4              5        13
## 3196  9568.6504       4784.3252              3              4         8
## 3197 16692.6934       3338.5386              3              4         8
## 3198 16692.6934       3338.5386              4              5        13
## 3199 16692.6934       3338.5386              4              5        13
## 3200 16692.6934       3338.5386              4              3        11
## 3201 16692.6934       3338.5386             NA             NA        NA
## 3202  3700.3071       1233.4357              4              5        13
## 3203  3700.3071       1233.4357              4              5        13
## 3204  3700.3071       1233.4357              4              2        10
## 3205  6120.5713       1530.1428              4              5        13
## 3206  6120.5713       1530.1428              4              5        13
## 3207  6120.5713       1530.1428             NA             NA        NA
## 3208  6120.5713       1530.1428             NA             NA        NA
## 3209 14487.7354       3621.9338              4              5        13
## 3210 14487.7354       3621.9338              4              5        13
## 3211 14487.7354       3621.9338              4              2        10
## 3212 14487.7354       3621.9338              4              2        10
## 3213 13209.3867       2641.8774              3              4         8
## 3214 13209.3867       2641.8774              3              4         8
## 3215 13209.3867       2641.8774              3              4         8
## 3216 13209.3867       2641.8774              4              5        13
## 3217 13209.3867       2641.8774             NA             NA        NA
## 3218  3236.9448       1618.4724              4              2        10
## 3219  3236.9448       1618.4724              4              5        13
## 3220  5687.7886       2843.8943              4              5        13
## 3221  5687.7886       2843.8943              4              5        13
## 3222  6684.5913       1336.9182              3              4         8
## 3223  6684.5913       1336.9182              3              4         8
## 3224  6684.5913       1336.9182              4              5        13
## 3225  6684.5913       1336.9182              4              5        13
## 3226  6684.5913       1336.9182             NA             NA        NA
## 3227  5188.2788       2594.1394              4              3        11
## 3228  5188.2788       2594.1394              4              5        13
## 3229 11106.5010       2776.6252              4              5        13
## 3230 11106.5010       2776.6252              4              5        13
## 3231 11106.5010       2776.6252              4              4        12
## 3232 11106.5010       2776.6252              4              2        10
## 3233 10568.4209       2642.1052              4              5        13
## 3234 10568.4209       2642.1052              4              5        13
## 3235 10568.4209       2642.1052              4              5        13
## 3236 10568.4209       2642.1052              4              4        12
## 3237 13823.3711       4607.7905              4              5        13
## 3238 13823.3711       4607.7905              4              3        11
## 3239 13823.3711       4607.7905              4              5        13
## 3240  2182.0186       2182.0186              4              5        13
## 3241  5937.3999       2968.7000              3              4         8
## 3242  5937.3999       2968.7000              4              2        10
## 3243  3358.1572       1679.0786              3              4         8
## 3244  3358.1572       1679.0786              3              4         8
## 3245  8099.3486       2699.7830              4              5        13
## 3246  8099.3486       2699.7830              4              1         9
## 3247  8099.3486       2699.7830              4              5        13
## 3248  7007.4131       2335.8044              4              5        13
## 3249  7007.4131       2335.8044              4              3        11
## 3250  7007.4131       2335.8044              4              5        13
## 3251  4409.7827       4409.7827              3              4         8
## 3252  9033.2080       3011.0693              4              5        13
## 3253  9033.2080       3011.0693              4              5        13
## 3254  9033.2080       3011.0693              4              5        13
## 3255 16186.0312       4046.5078              4              3        11
## 3256 16186.0312       4046.5078              4              5        13
## 3257 16186.0312       4046.5078              4              1         9
## 3258 16186.0312       4046.5078              4              3        11
## 3259 10752.8398       3584.2800              4              5        13
## 3260 10752.8398       3584.2800              4              5        13
## 3261 10752.8398       3584.2800              4              5        13
## 3262  5006.6128       2503.3064              4              5        13
## 3263  5006.6128       2503.3064              4              5        13
## 3264  8405.8125       2801.9375              4              5        13
## 3265  8405.8125       2801.9375              4              5        13
## 3266  8405.8125       2801.9375              4              5        13
## 3267  5611.4849       1870.4950              4              4        12
## 3268  5611.4849       1870.4950              4              4        12
## 3269  5611.4849       1870.4950              4              1         9
## 3270 12252.3369       4084.1123              4              4        12
## 3271 12252.3369       4084.1123              4              5        13
## 3272 12252.3369       4084.1123             NA             NA        NA
## 3273  3543.9600       1181.3199              4              5        13
## 3274  3543.9600       1181.3199              4              5        13
## 3275  3543.9600       1181.3199              4              5        13
## 3276  5940.4702       2970.2351              4              5        13
## 3277  5940.4702       2970.2351              4              3        11
## 3278  1772.1400       1772.1400              2              4         4
## 3279 18464.0137       4616.0034              4              5        13
## 3280 18464.0137       4616.0034              4              5        13
## 3281 18464.0137       4616.0034              4              1         9
## 3282 18464.0137       4616.0034              4              3        11
## 3283  9512.3799       2378.0950              4              5        13
## 3284  9512.3799       2378.0950              4              5        13
## 3285  9512.3799       2378.0950              4              3        11
## 3286  9512.3799       2378.0950              4              1         9
## 3287  9731.3135       3243.7712              4              5        13
## 3288  9731.3135       3243.7712              4              5        13
## 3289  9731.3135       3243.7712              4              2        10
## 3290 16916.6152       4229.1538              4              5        13
## 3291 16916.6152       4229.1538              4              4        12
## 3292 16916.6152       4229.1538              4              1         9
## 3293 16916.6152       4229.1538             NA             NA        NA
## 3294  3390.3000       1130.1000              4              5        13
## 3295  3390.3000       1130.1000              4              5        13
## 3296  3390.3000       1130.1000              2              4         4
## 3297  4196.1572       1049.0393              4              5        13
## 3298  4196.1572       1049.0393              4              5        13
## 3299  4196.1572       1049.0393              3              4         8
## 3300  4196.1572       1049.0393              3              4         8
## 3301  5637.2427       1879.0809              4              5        13
## 3302  5637.2427       1879.0809              4              5        13
## 3303  5637.2427       1879.0809              4              5        13
## 3304  2701.7378       1350.8689              4              5        13
## 3305  2701.7378       1350.8689              3              4         8
## 3306  8486.8076       4243.4038              4              4        12
## 3307  8486.8076       4243.4038              4              4        12
## 3308  6260.7373       2086.9124              4              5        13
## 3309  6260.7373       2086.9124              4              5        13
## 3310  6260.7373       2086.9124             NA             NA        NA
## 3311 17653.2637       5884.4214              4              5        13
## 3312 17653.2637       5884.4214              4              5        13
## 3313 17653.2637       5884.4214             NA             NA        NA
## 3314  7407.0659       2469.0220              4              5        13
## 3315  7407.0659       2469.0220             NA             NA        NA
## 3316  7407.0659       2469.0220              4              5        13
## 3317 20456.1348       3409.3557              4              5        13
## 3318 20456.1348       3409.3557              4              3        11
## 3319 20456.1348       3409.3557              4              5        13
## 3320 20456.1348       3409.3557              4              1         9
## 3321 20456.1348       3409.3557             NA             NA        NA
## 3322 20456.1348       3409.3557             NA             NA        NA
## 3323  3950.2856        658.3809              3              4         8
## 3324  3950.2856        658.3809              3              4         8
## 3325  3950.2856        658.3809              4              5        13
## 3326  3950.2856        658.3809              4              5        13
## 3327  3950.2856        658.3809              4              1         9
## 3328  3950.2856        658.3809             NA             NA        NA
## 3329 10811.0283       1801.8380              3              4         8
## 3330 10811.0283       1801.8380              3              4         8
## 3331 10811.0283       1801.8380              3              4         8
## 3332 10811.0283       1801.8380              3              4         8
## 3333 10811.0283       1801.8380              4              0         8
## 3334 10811.0283       1801.8380              2             NA        NA
## 3335  1765.1237        882.5618              2              4         4
## 3336  1765.1237        882.5618              2              4         4
## 3337  1874.5571        374.9114              2              4         4
## 3338  1874.5571        374.9114              2              4         4
## 3339  1874.5571        374.9114              3              4         8
## 3340  1874.5571        374.9114              4              3        11
## 3341  1874.5571        374.9114             NA             NA        NA
## 3342 22485.6484       3747.6082              4              5        13
## 3343 22485.6484       3747.6082              4              3        11
## 3344 22485.6484       3747.6082              4              5        13
## 3345 22485.6484       3747.6082              4              3        11
## 3346 22485.6484       3747.6082              4              5        13
## 3347 22485.6484       3747.6082              4              1         9
## 3348  8736.3516       2184.0879              4              5        13
## 3349  8736.3516       2184.0879              4              5        13
## 3350  8736.3516       2184.0879              4              1         9
## 3351  8736.3516       2184.0879              4              2        10
## 3352  4196.1699       2098.0850              4              5        13
## 3353  4196.1699       2098.0850              4              5        13
## 3354 10050.2939       2512.5735              4              5        13
## 3355 10050.2939       2512.5735              4              3        11
## 3356 10050.2939       2512.5735             NA             NA        NA
## 3357 10050.2939       2512.5735              4              1         9
## 3358  5075.7500       1268.9375              4              5        13
## 3359  5075.7500       1268.9375              4              5        13
## 3360  5075.7500       1268.9375              4              5        13
## 3361  5075.7500       1268.9375              4              5        13
## 3362  9146.5068       3048.8357              4              5        13
## 3363  9146.5068       3048.8357              4              5        13
## 3364  9146.5068       3048.8357              4              3        11
## 3365  7240.5142       1810.1285              4              5        13
## 3366  7240.5142       1810.1285              4              5        13
## 3367  7240.5142       1810.1285             NA             NA        NA
## 3368  7240.5142       1810.1285             NA             NA        NA
## 3369  3032.2000       1010.7333              3              4         8
## 3370  3032.2000       1010.7333              3              4         8
## 3371  3032.2000       1010.7333              4              0         8
## 3372  1906.8000        953.4000              3              4         8
## 3373  1906.8000        953.4000              3              4         8
## 3374  3278.5356        655.7072              3              4         8
## 3375  3278.5356        655.7072              3              4         8
## 3376  3278.5356        655.7072              3              4         8
## 3377  3278.5356        655.7072              4              3        11
## 3378  3278.5356        655.7072             NA             NA        NA
## 3379  4159.8569        693.3095              3              4         8
## 3380  4159.8569        693.3095              3              4         8
## 3381  4159.8569        693.3095              4              5        13
## 3382  4159.8569        693.3095              4              5        13
## 3383  4159.8569        693.3095              3              4         8
## 3384  4159.8569        693.3095              3              4         8
## 3385 11743.7139       2935.9285              4              5        13
## 3386 11743.7139       2935.9285              4              5        13
## 3387 11743.7139       2935.9285              4              1         9
## 3388 11743.7139       2935.9285              4              0         8
## 3389  7332.5645       1466.5129              4              5        13
## 3390  7332.5645       1466.5129              3              4         8
## 3391  7332.5645       1466.5129              3              4         8
## 3392  7332.5645       1466.5129              4              0         8
## 3393  7332.5645       1466.5129              4              1         9
## 3394  4037.6643       1009.4161              4              5        13
## 3395  4037.6643       1009.4161              4              5        13
## 3396  4037.6643       1009.4161              4              5        13
## 3397  4037.6643       1009.4161              3              4         8
## 3398 24163.3496       8054.4497              4              4        12
## 3399 24163.3496       8054.4497              4              4        12
## 3400 24163.3496       8054.4497              4              1         9
## 3401  3505.5383       3505.5383              4              5        13
## 3402  3828.4084       1276.1361              3              4         8
## 3403  3828.4084       1276.1361              3              4         8
## 3404  3828.4084       1276.1361              4              3        11
## 3405  4800.5786       4800.5786              4              4        12
## 3406 12243.4102       2448.6821              4              5        13
## 3407 12243.4102       2448.6821              4              5        13
## 3408 12243.4102       2448.6821              4              4        12
## 3409 12243.4102       2448.6821              4              2        10
## 3410 12243.4102       2448.6821              3              4         8
## 3411 14453.1572       7226.5786              4              5        13
## 3412 14453.1572       7226.5786              4              5        13
## 3413 12862.3496       6431.1748              4              5        13
## 3414 12862.3496       6431.1748              4              5        13
## 3415  8765.3574       4382.6787              4              5        13
## 3416  8765.3574       4382.6787              4              2        10
## 3417  9685.5459       3228.5154              4              5        13
## 3418  9685.5459       3228.5154              4              7        15
## 3419  9685.5459       3228.5154              4              5        13
## 3420 35090.5859      11696.8623              4              5        13
## 3421 35090.5859      11696.8623              4              5        13
## 3422 35090.5859      11696.8623              4              0         8
## 3423  2238.7000       2238.7000              3              4         8
## 3424  6046.2544       3023.1272              4              5        13
## 3425  6046.2544       3023.1272              4              4        12
## 3426   970.4840        970.4840              2              4         4
## 3427  5229.7798       2614.8899              4              4        12
## 3428  5229.7798       2614.8899              4              5        13
## 3429  6218.4648       1554.6162              3              4         8
## 3430  6218.4648       1554.6162              3              4         8
## 3431  6218.4648       1554.6162              4              3        11
## 3432  6218.4648       1554.6162              4              1         9
## 3433  4705.8462       2352.9231              2              4         4
## 3434  4705.8462       2352.9231              1             NA         0
## 3435 12425.1475       3106.2869              4              5        13
## 3436 12425.1475       3106.2869              3              4         8
## 3437 12425.1475       3106.2869              4              3        11
## 3438 12425.1475       3106.2869              4              0         8
## 3439 10937.5459       3645.8486              4              5        13
## 3440 10937.5459       3645.8486              3              4         8
## 3441 10937.5459       3645.8486              4              3        11
## 3442  6585.1421       1646.2855              3              4         8
## 3443  6585.1421       1646.2855              3              4         8
## 3444  6585.1421       1646.2855              4              3        11
## 3445  6585.1421       1646.2855              4              2        10
## 3446 10664.6904       2666.1726              4              5        13
## 3447 10664.6904       2666.1726              3              4         8
## 3448 10664.6904       2666.1726             NA             NA        NA
## 3449 10664.6904       2666.1726             NA             NA        NA
## 3450  5907.6284       1476.9071              4              5        13
## 3451  5907.6284       1476.9071              2              4         4
## 3452  5907.6284       1476.9071              3              4         8
## 3453  5907.6284       1476.9071              3              4         8
## 3454  3434.7344       1717.3672              4              5        13
## 3455  3434.7344       1717.3672              3              4         8
## 3456  2476.7314       1238.3657              4              5        13
## 3457  2476.7314       1238.3657              4              3        11
## 3458  2856.8142       2856.8142              4              5        13
## 3459  5798.6343       1159.7268              2             NA        NA
## 3460  5798.6343       1159.7268              3              4         8
## 3461  5798.6343       1159.7268              4              5        13
## 3462  5798.6343       1159.7268             NA             NA        NA
## 3463  5798.6343       1159.7268             NA             NA        NA
## 3464  7845.0542       7845.0542              4              5        13
## 3465  7663.2998       1915.8250              3              4         8
## 3466  7663.2998       1915.8250              3              4         8
## 3467  7663.2998       1915.8250             NA             NA        NA
## 3468  7663.2998       1915.8250             NA             NA        NA
## 3469  8644.6260       4322.3130              4              5        13
## 3470  8644.6260       4322.3130              4              5        13
## 3471  3024.3201       1512.1600              4              5        13
## 3472  3024.3201       1512.1600              4              2        10
## 3473   943.8300        943.8300              4              5        13
## 3474  9096.8145       2274.2036              3              4         8
## 3475  9096.8145       2274.2036              1             NA         0
## 3476  9096.8145       2274.2036              2             NA        NA
## 3477  9096.8145       2274.2036             NA             NA        NA
## 3478  6169.1694       2056.3899              3              4         8
## 3479  6169.1694       2056.3899              3              4         8
## 3480  6169.1694       2056.3899              1             NA         0
## 3481  4836.8491       1612.2831              3              4         8
## 3482  4836.8491       1612.2831              2              4         4
## 3483  4836.8491       1612.2831              3              4         8
## 3484  5315.9692       2657.9846              3              4         8
## 3485  5315.9692       2657.9846              2             NA        NA
## 3486  2991.7415        997.2471              4              5        13
## 3487  2991.7415        997.2471              3              4         8
## 3488  2991.7415        997.2471              3              4         8
## 3489 12403.1367       6201.5684              4              4        12
## 3490 12403.1367       6201.5684              4              3        11
## 3491 17551.0117      17551.0117              4              3        11
## 3492  7087.8145       1417.5629              4              5        13
## 3493  7087.8145       1417.5629              4              5        13
## 3494  7087.8145       1417.5629              4              5        13
## 3495  7087.8145       1417.5629              4              5        13
## 3496  7087.8145       1417.5629             NA             NA        NA
## 3497  9837.6074       1639.6012              3              4         8
## 3498  9837.6074       1639.6012              3              4         8
## 3499  9837.6074       1639.6012              4              5        13
## 3500  9837.6074       1639.6012              4              5        13
## 3501  9837.6074       1639.6012              4              3        11
## 3502  9837.6074       1639.6012              4              3        11
## 3503  4829.6499       2414.8250              4              5        13
## 3504  4829.6499       2414.8250              3              4         8
## 3505  5621.9624       1124.3925              2              4         4
## 3506  5621.9624       1124.3925              4              5        13
## 3507  5621.9624       1124.3925              3              4         8
## 3508  5621.9624       1124.3925              4              1         9
## 3509  5621.9624       1124.3925              4              3        11
## 3510  9902.2568       4951.1284              4              5        13
## 3511  9902.2568       4951.1284              4              5        13
## 3512  5855.6387       1951.8795              4              5        13
## 3513  5855.6387       1951.8795              4              5        13
## 3514  5855.6387       1951.8795              4              5        13
## 3515 25519.5762       6379.8940              4              5        13
## 3516 25519.5762       6379.8940              4              5        13
## 3517 25519.5762       6379.8940              4              5        13
## 3518 25519.5762       6379.8940              4              5        13
## 3519 12385.9258       4128.6421              3              4         8
## 3520 12385.9258       4128.6421              3              4         8
## 3521 12385.9258       4128.6421              3              4         8
## 3522  8455.3867       2113.8467              4              5        13
## 3523  8455.3867       2113.8467              3              4         8
## 3524  8455.3867       2113.8467              3              4         8
## 3525  8455.3867       2113.8467             NA             NA        NA
## 3526  5836.2856       2918.1428              3              4         8
## 3527  5836.2856       2918.1428              3              4         8
## 3528 14218.7783       7109.3892              4              5        13
## 3529 14218.7783       7109.3892              4              0         8
## 3530  2749.5957       1374.7979              3              4         8
## 3531  2749.5957       1374.7979              4              5        13
## 3532  2826.0801       2826.0801              4              5        13
## 3533  5510.3623       1377.5906              4              5        13
## 3534  5510.3623       1377.5906              4              5        13
## 3535  5510.3623       1377.5906             NA             NA        NA
## 3536  5510.3623       1377.5906             NA             NA        NA
## 3537  6422.2168       3211.1084              4              5        13
## 3538  6422.2168       3211.1084              4              3        11
## 3539  7094.5557       1418.9111              4              5        13
## 3540  7094.5557       1418.9111              4              5        13
## 3541  7094.5557       1418.9111              4              2        10
## 3542  7094.5557       1418.9111             NA             NA        NA
## 3543  7094.5557       1418.9111              4              5        13
## 3544 12735.5615       3183.8904              4              3        11
## 3545 12735.5615       3183.8904              4              3        11
## 3546 12735.5615       3183.8904              4              5        13
## 3547 12735.5615       3183.8904              4              3        11
## 3548 20137.6113       4027.5222              4              3        11
## 3549 20137.6113       4027.5222              4              5        13
## 3550 20137.6113       4027.5222              4              2        10
## 3551 20137.6113       4027.5222              4              3        11
## 3552 20137.6113       4027.5222              2              4         4
## 3553  8506.7832       2835.5945              4              5        13
## 3554  8506.7832       2835.5945              4              5        13
## 3555  8506.7832       2835.5945              4              1         9
## 3556  7145.8877       1786.4719              4              5        13
## 3557  7145.8877       1786.4719              3              4         8
## 3558  7145.8877       1786.4719              4              3        11
## 3559  7145.8877       1786.4719              2              4         4
## 3560  6710.6128       3355.3064              4              5        13
## 3561  6710.6128       3355.3064              4              5        13
## 3562  7461.6357       2487.2119              4              5        13
## 3563  7461.6357       2487.2119              4              5        13
## 3564  7461.6357       2487.2119              4              3        11
## 3565  7488.5786       3744.2893              3              4         8
## 3566  7488.5786       3744.2893              3              4         8
## 3567 10359.3740       3453.1248              4              5        13
## 3568 10359.3740       3453.1248              4              5        13
## 3569 10359.3740       3453.1248              4              5        13
## 3570  4623.7559       2311.8779              4              3        11
## 3571  4623.7559       2311.8779              4              5        13
## 3572  8907.0254       2226.7563              4              5        13
## 3573  8907.0254       2226.7563              4              5        13
## 3574  8907.0254       2226.7563              4              1         9
## 3575  8907.0254       2226.7563             NA             NA        NA
## 3576 10670.4570      10670.4570              4              4        12
## 3577 12177.0186       2029.5031              4              5        13
## 3578 12177.0186       2029.5031              4              5        13
## 3579 12177.0186       2029.5031              4              5        13
## 3580 12177.0186       2029.5031              4              5        13
## 3581 12177.0186       2029.5031              4              2        10
## 3582 12177.0186       2029.5031             NA             NA        NA
## 3583  5043.3999        840.5667              4              1         9
## 3584  5043.3999        840.5667              2              4         4
## 3585  5043.3999        840.5667              4              5        13
## 3586  5043.3999        840.5667              4              1         9
## 3587  5043.3999        840.5667              4              3        11
## 3588  5043.3999        840.5667             NA             NA        NA
## 3589  1973.7800       1973.7800              2              4         4
## 3590  4085.3201       2042.6600              3              4         8
## 3591  4085.3201       2042.6600              3              4         8
## 3592  8522.5000       2840.8333              4              2        10
## 3593  8522.5000       2840.8333              4              3        11
## 3594  8522.5000       2840.8333              4              0         8
## 3595 12786.7725       2557.3545              4              5        13
## 3596 12786.7725       2557.3545              4              5        13
## 3597 12786.7725       2557.3545              4              1         9
## 3598 12786.7725       2557.3545             NA             NA        NA
## 3599 12786.7725       2557.3545              3              4         8
## 3600  6959.1143       1739.7786              4              5        13
## 3601  6959.1143       1739.7786              4              5        13
## 3602  6959.1143       1739.7786              3              4         8
## 3603  6959.1143       1739.7786              3              4         8
## 3604 10726.6924       3575.5642              4              5        13
## 3605 10726.6924       3575.5642              4              5        13
## 3606 10726.6924       3575.5642              3              4         8
## 3607  6048.0356       6048.0356              2              4         4
## 3608  7477.5278       2492.5093              4              5        13
## 3609  7477.5278       2492.5093              4              3        11
## 3610  7477.5278       2492.5093              4              3        11
## 3611 10188.5947       3396.1982              4              5        13
## 3612 10188.5947       3396.1982              4              5        13
## 3613 10188.5947       3396.1982              4              0         8
## 3614  8493.9482       4246.9741              4              5        13
## 3615  8493.9482       4246.9741              3              4         8
## 3616 17257.0723       2876.1787              4              5        13
## 3617 17257.0723       2876.1787              4              5        13
## 3618 17257.0723       2876.1787              4              5        13
## 3619 17257.0723       2876.1787              4              2        10
## 3620 17257.0723       2876.1787              4              1         9
## 3621 17257.0723       2876.1787              4              5        13
## 3622  3839.0801       1919.5400              3              4         8
## 3623  3839.0801       1919.5400              4              2        10
## 3624  7053.4829       1410.6965              2              4         4
## 3625  7053.4829       1410.6965              3              4         8
## 3626  7053.4829       1410.6965              3              4         8
## 3627  7053.4829       1410.6965             NA             NA        NA
## 3628  7053.4829       1410.6965             NA             NA        NA
## 3629  5892.6929       1964.2310              4              5        13
## 3630  5892.6929       1964.2310              4              4        12
## 3631  5892.6929       1964.2310              4              0         8
## 3632 10294.2568       3431.4189              4              5        13
## 3633 10294.2568       3431.4189              4              5        13
## 3634 10294.2568       3431.4189              4              0         8
## 3635  2230.0486       1115.0243              2             NA        NA
## 3636  2230.0486       1115.0243              3              4         8
## 3637 15022.0996       3755.5249              4              5        13
## 3638 15022.0996       3755.5249              4              5        13
## 3639 15022.0996       3755.5249              4              0         8
## 3640 15022.0996       3755.5249              4              0         8
## 3641  7931.1855       2643.7285              3              4         8
## 3642  7931.1855       2643.7285              3              4         8
## 3643  7931.1855       2643.7285              4              5        13
## 3644 10497.9141       3499.3047              4              5        13
## 3645 10497.9141       3499.3047              4              3        11
## 3646 10497.9141       3499.3047              4              2        10
## 3647  3068.7000       1534.3500              3              4         8
## 3648  3068.7000       1534.3500              4              5        13
## 3649  9091.4893       3030.4963              4              5        13
## 3650  9091.4893       3030.4963              4              3        11
## 3651  9091.4893       3030.4963              4              5        13
## 3652  7753.3862       3876.6931              4              5        13
## 3653  7753.3862       3876.6931              4              5        13
## 3654  1084.6500       1084.6500              2              4         4
## 3655  5262.3569       1315.5892              4              5        13
## 3656  5262.3569       1315.5892              4              5        13
## 3657  5262.3569       1315.5892              4              2        10
## 3658  5262.3569       1315.5892              1             NA         0
## 3659  9532.2959       1588.7159              3              4         8
## 3660  9532.2959       1588.7159              2              4         4
## 3661  9532.2959       1588.7159              4              5        13
## 3662  9532.2959       1588.7159              4              5        13
## 3663  9532.2959       1588.7159              4              1         9
## 3664  9532.2959       1588.7159              4              0         8
## 3665  3866.6858       3866.6858              4              3        11
## 3666  2630.9399       2630.9399              3              4         8
## 3667  5814.5430       1938.1810              4              5        13
## 3668  5814.5430       1938.1810              4              5        13
## 3669  5814.5430       1938.1810              3              4         8
## 3670  9409.4043       1881.8809              2             NA        NA
## 3671  9409.4043       1881.8809              3              4         8
## 3672  9409.4043       1881.8809              3              4         8
## 3673  9409.4043       1881.8809              3              4         8
## 3674  9409.4043       1881.8809              4              1         9
## 3675  1725.0000        575.0000              2              4         4
## 3676  1725.0000        575.0000              2             NA        NA
## 3677  1725.0000        575.0000              2             NA        NA
## 3678  1637.1801       1637.1801              2              4         4
## 3679  3286.6357       1643.3179              4              5        13
## 3680  3286.6357       1643.3179              3              4         8
## 3681  5552.6929       2776.3464              3              4         8
## 3682  5552.6929       2776.3464              3              4         8
## 3683  4850.6572       1212.6643              3              4         8
## 3684  4850.6572       1212.6643              4              1         9
## 3685  4850.6572       1212.6643              3              4         8
## 3686  4850.6572       1212.6643              4              3        11
## 3687 10059.7500       3353.2500              4              5        13
## 3688 10059.7500       3353.2500              4              5        13
## 3689 10059.7500       3353.2500              2             NA        NA
## 3690  4647.5757       4647.5757              4              5        13
## 3691  4288.4688       4288.4688              4              5        13
## 3692  7775.2930       2591.7644              4              5        13
## 3693  7775.2930       2591.7644              4              3        11
## 3694  7775.2930       2591.7644              4              5        13
## 3695  3921.2429        980.3107              2              4         4
## 3696  3921.2429        980.3107             NA             NA        NA
## 3697  3921.2429        980.3107              3              4         8
## 3698  3921.2429        980.3107              4              2        10
## 3699  3790.6587       1895.3293              4              5        13
## 3700  3790.6587       1895.3293              4              3        11
## 3701  2878.5986       1439.2993              3              4         8
## 3702  2878.5986       1439.2993              4              5        13
## 3703 14069.9912       3517.4978              3              4         8
##      unemployed reason_OLF sector occupation   earn_mont earn_ann
## 1             2         NA     NA         NA    0.000000        0
## 2             1         NA     NA         NA    0.000000        0
## 3             1         NA     NA         NA    0.000000        0
## 4             1          3     NA         NA    0.000000        0
## 5             1          3     NA         NA    0.000000        0
## 6             1          3     NA         NA    0.000000        0
## 7             1          9      1          5   20.000000      240
## 8             1          9      1          5   20.000000      240
## 9             1          3     NA         NA    0.000000        0
## 10            1          3     NA         NA    0.000000        0
## 11            1          9      1          5    0.000000        0
## 12            1          9      1          5    0.000000        0
## 13            1          3     NA         NA    0.000000        0
## 14            1          3     NA         NA    0.000000        0
## 15            1          9      9          1  200.000000     2400
## 16            1          3     NA         NA    0.000000        0
## 17            1          1     NA         NA    0.000000        0
## 18            1          9      3          1  916.666687    11000
## 19            1          9      9          3  398.333344     4780
## 20            1         NA     NA         NA    0.000000        0
## 21            1          3     NA         NA    0.000000        0
## 22            1          3     NA         NA    0.000000        0
## 23            1          3     NA         NA    0.000000        0
## 24            1          3     NA         NA    0.000000        0
## 25            1          9      1          5    0.000000        0
## 26            1          9      1          5    0.000000        0
## 27            1          9      3          1  208.333328     2500
## 28            1          2     NA         NA    0.000000        0
## 29            1         NA     NA         NA    0.000000        0
## 30            1          3     NA         NA    0.000000        0
## 31            1          8     NA         NA    0.000000        0
## 32            1          9      6          1  190.000000     2280
## 33            1          3     NA         NA    0.000000        0
## 34            1          3     NA         NA    0.000000        0
## 35            1          3     NA         NA    0.000000        0
## 36            1          3     NA         NA    0.000000        0
## 37            1          3     NA         NA    0.000000        0
## 38            1          9      3          1  404.000000     4848
## 39            1          3     NA         NA    0.000000        0
## 40            1         NA     NA         NA    0.000000        0
## 41            1          3     NA         NA    0.000000        0
## 42            1          3     NA         NA    0.000000        0
## 43            1          8     NA         NA    0.000000        0
## 44            1          9      3          1  354.166656     4250
## 45            1          3     NA         NA    0.000000        0
## 46            1          1     NA         NA    0.000000        0
## 47            1          3     NA         NA    0.000000        0
## 48            1          3     NA         NA    0.000000        0
## 49            1          2     NA         NA    0.000000        0
## 50            1          3     NA         NA    0.000000        0
## 51            1          9     NA         NA    0.000000        0
## 52            2         NA     NA         NA    0.000000        0
## 53            2         NA     NA         NA    0.000000        0
## 54            1         NA     NA         NA    0.000000        0
## 55            1         NA     NA         NA    0.000000        0
## 56            1         NA     NA         NA    0.000000        0
## 57            1          9      1          5  370.000000     4440
## 58            1          9      1          5    0.000000        0
## 59            1          9      1          5    0.000000        0
## 60           NA          5     NA         NA    0.000000        0
## 61            1          3     NA         NA    0.000000        0
## 62            1          3     NA         NA    0.000000        0
## 63            1          9      9          3  605.833313     7270
## 64            1          9      6          1  350.000000     4200
## 65            1         NA     NA         NA    0.000000        0
## 66            1         NA     NA         NA    0.000000        0
## 67            1         NA     NA         NA    0.000000        0
## 68            1          9      1          5    0.000000        0
## 69            1          9      9          3  250.000000     3000
## 70            1         NA     NA         NA    0.000000        0
## 71            1          9      9          1  200.000000     2400
## 72            1          9      9          3  200.000000     2400
## 73            1          1     NA         NA    0.000000        0
## 74            1          3     NA         NA    0.000000        0
## 75            1          9      9          1  541.666687     6500
## 76            1          3     NA         NA    0.000000        0
## 77            1          3     NA         NA    0.000000        0
## 78            1          3     NA         NA    0.000000        0
## 79            1          9      3          1  204.166672     2450
## 80            1          9      3          1  180.000000     2160
## 81            1         NA     NA         NA    0.000000        0
## 82            1         NA     NA         NA    0.000000        0
## 83            1          9      1          4  150.000000     1800
## 84            2         NA     NA         NA    0.000000        0
## 85            1          3     NA         NA    0.000000        0
## 86            1          3     NA         NA    0.000000        0
## 87            1          9      1          5  500.000000     6000
## 88            1          9      3          1  200.000000     2400
## 89            1         NA     NA         NA    0.000000        0
## 90            1          9      7          3  320.000000     3840
## 91            1          4     NA         NA    0.000000        0
## 92            1          3     NA         NA    0.000000        0
## 93            1          3     NA         NA    0.000000        0
## 94            1          9      7          1  250.000000     3000
## 95            1          9      3          1  180.000000     2160
## 96            1          9      7          5  100.000000     1200
## 97            1          9      4          3  250.000000     3000
## 98            2         NA     NA         NA    0.000000        0
## 99            1          3     NA         NA    0.000000        0
## 100           1          9      1          5    0.000000        0
## 101           1          9      8          1   35.000000      420
## 102           1          3     NA         NA    0.000000        0
## 103           1          3     NA         NA    0.000000        0
## 104           1          3     NA         NA    0.000000        0
## 105           1          3     NA         NA    0.000000        0
## 106           1          3     NA         NA    0.000000        0
## 107           1          9      2          1  300.000000     3600
## 108           1          2     NA         NA    0.000000        0
## 109           1         NA     NA         NA    0.000000        0
## 110           1         NA     NA         NA    0.000000        0
## 111           1          9      3          1  300.000000     3600
## 112           1          9      9          3  200.000000     2400
## 113           1          1     NA         NA    0.000000        0
## 114           1         NA     NA         NA    0.000000        0
## 115           1          9      5          5  400.000000     4800
## 116           1          9     NA         NA    0.000000        0
## 117           1          3     NA         NA    0.000000        0
## 118           1          3     NA         NA    0.000000        0
## 119           1          9      9          5  400.000000     4800
## 120           1          2     NA         NA    0.000000        0
## 121           1          3     NA         NA    0.000000        0
## 122           1          9      6          1  400.000000     4800
## 123           2         NA     NA         NA    0.000000        0
## 124           1         NA     NA         NA    0.000000        0
## 125           1          9      3          1  300.000000     3600
## 126           1          4     NA         NA    0.000000        0
## 127           1          9      6          5  400.000000     4800
## 128           1          9      6          5  400.000000     4800
## 129           1          1     NA         NA    0.000000        0
## 130           1         NA     NA         NA    0.000000        0
## 131           1          9      6          3  286.666656     3440
## 132           1          9      6          5  260.000000     3120
## 133           1          1     NA         NA    0.000000        0
## 134           1          9      9          3  290.833344     3490
## 135           1          9      9          3  260.833344     3130
## 136           1          9      8          1    0.000000        0
## 137           1          9      9          1    0.000000        0
## 138           1          9      9          1    0.000000        0
## 139           1          9      8          1  250.000000     3000
## 140           1          3     NA         NA    0.000000        0
## 141           2         NA     NA         NA    0.000000        0
## 142           1          3     NA         NA    0.000000        0
## 143           2         NA     NA         NA    0.000000        0
## 144           1          8     NA         NA    0.000000        0
## 145           1         NA     NA         NA    0.000000        0
## 146           1         NA     NA         NA    0.000000        0
## 147           2         NA     NA         NA    0.000000        0
## 148           2         NA     NA         NA    0.000000        0
## 149           1          2     NA         NA    0.000000        0
## 150           1         NA     NA         NA    0.000000        0
## 151           1         NA     NA         NA    0.000000        0
## 152           1         NA     NA         NA    0.000000        0
## 153           1         NA     NA         NA    0.000000        0
## 154           1          3     NA         NA    0.000000        0
## 155           1          3     NA         NA    0.000000        0
## 156           1          3     NA         NA    0.000000        0
## 157           1          3     NA         NA    0.000000        0
## 158           1          9      9          3  381.666656     4580
## 159           1          9      1          5    0.000000        0
## 160           1          9      1          5    0.000000        0
## 161           1          9      1          5    0.000000        0
## 162           1          9      6          1  350.000000     4200
## 163           1         NA     NA         NA    0.000000        0
## 164           1          3     NA         NA    0.000000        0
## 165           1          9      6          5  300.000000     3600
## 166           1          9      1          5  500.000000     6000
## 167           1          1     NA         NA    0.000000        0
## 168           1          1     NA         NA    0.000000        0
## 169           1          3     NA         NA    0.000000        0
## 170           1          3     NA         NA    0.000000        0
## 171          NA          6     NA         NA    0.000000        0
## 172           1          3     NA         NA    0.000000        0
## 173           1          9      3          1  300.000000     3600
## 174           2         NA     NA         NA    0.000000        0
## 175           2         NA     NA         NA    0.000000        0
## 176           2         NA     NA         NA    0.000000        0
## 177           1         NA     NA         NA    0.000000        0
## 178           1         NA     NA         NA    0.000000        0
## 179           1          3     NA         NA    0.000000        0
## 180           2         NA     NA         NA    0.000000        0
## 181           1          3     NA         NA    0.000000        0
## 182           2         NA     NA         NA    0.000000        0
## 183           1          2     NA         NA    0.000000        0
## 184           1         NA     NA         NA    0.000000        0
## 185           1          9      9          3  500.000000     6000
## 186           1          9      3          1  200.000000     2400
## 187           1          1     NA         NA    0.000000        0
## 188           1          9      1          5  300.000000     3600
## 189           1          9      1          5  300.000000     3600
## 190           1          9      9          3  300.000000     3600
## 191           1          9      6          3  250.000000     3000
## 192           1          9      9          1  200.000000     2400
## 193           1         NA     NA         NA    0.000000        0
## 194           1          9      9          5  300.000000     3600
## 195           1          3     NA         NA    0.000000        0
## 196           1          3     NA         NA    0.000000        0
## 197           1          9      9          3  300.000000     3600
## 198           1         NA     NA         NA    0.000000        0
## 199           1          3     NA         NA    0.000000        0
## 200           1          9      7          3    0.000000        0
## 201           1          9      1          5  140.000000     1680
## 202           1          9      3          1  220.000000     2640
## 203           1          9     NA         NA    0.000000        0
## 204           1         NA     NA         NA    0.000000        0
## 205           1          9      1          5    0.000000        0
## 206           1          9      8          1  816.666687     9800
## 207           1          9      9          1  508.333344     6100
## 208           1         NA     NA         NA    0.000000        0
## 209           1          3     NA         NA    0.000000        0
## 210           1          9      1          5    0.000000        0
## 211           1          9      1          5    0.000000        0
## 212           1          9      7          3  400.000000     4800
## 213           1          9      9          3  650.000000     7800
## 214           1          4     NA         NA    0.000000        0
## 215           2         NA     NA         NA    0.000000        0
## 216           2         NA     NA         NA    0.000000        0
## 217           1         NA     NA         NA    0.000000        0
## 218           1         NA     NA         NA    0.000000        0
## 219           1          3     NA         NA    0.000000        0
## 220           2         NA     NA         NA    0.000000        0
## 221           2         NA     NA         NA    0.000000        0
## 222           1          8     NA         NA    0.000000        0
## 223           1         NA     NA         NA    0.000000        0
## 224           2         NA     NA         NA    0.000000        0
## 225           1          2     NA         NA    0.000000        0
## 226           1         NA     NA         NA    0.000000        0
## 227           1         NA     NA         NA    0.000000        0
## 228           1         NA     NA         NA    0.000000        0
## 229           1          9      1          5    0.000000        0
## 230           1          9      1          5    0.000000        0
## 231           1          9      1          5    0.000000        0
## 232           1          9      1          5    0.000000        0
## 233           1          9      7          1  180.000000     2160
## 234           1          9      9          3   85.000000     1020
## 235           1         NA     NA         NA    0.000000        0
## 236           1          9      9          3  200.000000     2400
## 237           1          9      9          3  200.000000     2400
## 238           1          3     NA         NA    0.000000        0
## 239           1          3     NA         NA    0.000000        0
## 240           2         NA     NA         NA    0.000000        0
## 241           2         NA     NA         NA    0.000000        0
## 242           1          3     NA         NA    0.000000        0
## 243           1          3     NA         NA    0.000000        0
## 244           1          9      1          5    0.000000        0
## 245           1          9      9          3  238.333328     2860
## 246           1         NA     NA         NA    0.000000        0
## 247           1         NA     NA         NA    0.000000        0
## 248           2         NA     NA         NA    0.000000        0
## 249           1          3     NA         NA    0.000000        0
## 250           1          8     NA         NA    0.000000        0
## 251           1          9      3          1  280.000000     3360
## 252           1          1     NA         NA    0.000000        0
## 253           2         NA     NA         NA    0.000000        0
## 254           1         NA     NA         NA    0.000000        0
## 255           1          9      1          5    0.000000        0
## 256           1          9      1          5    0.000000        0
## 257           1          3     NA         NA    0.000000        0
## 258           1          3     NA         NA    0.000000        0
## 259           1          3     NA         NA    0.000000        0
## 260           1          9      7          1  400.000000     4800
## 261           1          3     NA         NA    0.000000        0
## 262           1          1     NA         NA    0.000000        0
## 263           1         NA     NA         NA    0.000000        0
## 264           1          9      9          1  200.000000     2400
## 265           1          9      3          1  200.000000     2400
## 266           1          3     NA         NA    0.000000        0
## 267           1          3     NA         NA    0.000000        0
## 268           1          3     NA         NA    0.000000        0
## 269           1          3     NA         NA    0.000000        0
## 270           1          3     NA         NA    0.000000        0
## 271           1          9      8          5  800.000000     9600
## 272           1          9      8          1  600.000000     7200
## 273           1          1     NA         NA    0.000000        0
## 274           1          3     NA         NA    0.000000        0
## 275           1          3     NA         NA    0.000000        0
## 276           1          3     NA         NA    0.000000        0
## 277           1          3     NA         NA    0.000000        0
## 278           1          9      9          5  700.000000     8400
## 279           1          3     NA         NA    0.000000        0
## 280           1          3     NA         NA    0.000000        0
## 281           1          9      3          1  240.000000     2880
## 282           1          9      1          5    0.000000        0
## 283           1          9      1          1  220.000000     2640
## 284           1          3     NA         NA    0.000000        0
## 285           1          9      1          1  200.000000     2400
## 286           1          9      1          5    0.000000        0
## 287           1          9      1          5    0.000000        0
## 288           1          9      1          5    0.000000        0
## 289           1          8     NA         NA    0.000000        0
## 290           1          9      9          3  300.000000     3600
## 291           1          3     NA         NA    0.000000        0
## 292           1          9      6          1  300.000000     3600
## 293           1          9      5          1  250.000000     3000
## 294           1          9      3          1  500.000000     6000
## 295           1         NA     NA         NA    0.000000        0
## 296           1          9     NA         NA    0.000000        0
## 297           1         NA     NA         NA    0.000000        0
## 298           1         NA     NA         NA    0.000000        0
## 299           1          9     NA         NA    0.000000        0
## 300           1          9     NA         NA    0.000000        0
## 301           1          9     NA         NA    0.000000        0
## 302           1          9      7          3  100.000000     1200
## 303           1         10     NA         NA    0.000000        0
## 304           1         NA     NA         NA    0.000000        0
## 305           1          3     NA         NA    0.000000        0
## 306           1          9     NA         NA    0.000000        0
## 307           1          9     NA         NA    0.000000        0
## 308           1         10     NA         NA    0.000000        0
## 309           1          3     NA         NA    0.000000        0
## 310           1          9     NA         NA    0.000000        0
## 311           1          9      1          5    0.000000        0
## 312           1          9      1          5    0.000000        0
## 313           1          9      9          3  400.000000     4800
## 314           1          9      9          3  308.333344     3700
## 315           1          9      7          3  304.166656     3650
## 316           1          9      6          1  250.000000     3000
## 317           1          9      9          3  250.000000     3000
## 318           1         NA     NA         NA    0.000000        0
## 319           1          3     NA         NA    0.000000        0
## 320           1          3     NA         NA    0.000000        0
## 321           1          3     NA         NA    0.000000        0
## 322           1          3     NA         NA    0.000000        0
## 323           1          9      9          1  200.000000     2400
## 324           1          9      9          3  184.166672     2210
## 325           1          9      7          1  180.000000     2160
## 326           1          9      6          1  180.000000     2160
## 327           1          9      9          3  180.000000     2160
## 328           1          1     NA         NA    0.000000        0
## 329           1          3     NA         NA    0.000000        0
## 330           1          4     NA         NA    0.000000        0
## 331           1          9      5          1  300.000000     3600
## 332           1          9      6          1  180.000000     2160
## 333           1          9      9          1  150.000000     1800
## 334           2         NA     NA         NA    0.000000        0
## 335           1          9      5          4  150.000000     1800
## 336           1          2     NA         NA    0.000000        0
## 337           1         NA     NA         NA    0.000000        0
## 338           1         NA     NA         NA    0.000000        0
## 339           1         NA     NA         NA    0.000000        0
## 340           1          9      4          1  200.000000     2400
## 341           1          9      1          5  100.000000     1200
## 342           1          9      5          1  400.000000     4800
## 343           1          2     NA         NA    0.000000        0
## 344           1         NA     NA         NA    0.000000        0
## 345           1          9     NA         NA    0.000000        0
## 346           1          9     NA         NA    0.000000        0
## 347           1          9      3          1  250.000000     3000
## 348           2         NA     NA         NA    0.000000        0
## 349           1          9      9          1  400.000000     4800
## 350           1          9     NA         NA    0.000000        0
## 351           1          9      6          1  600.000000     7200
## 352           1          9      6          1  400.000000     4800
## 353           1          9      9          3  208.333328     2500
## 354           1         NA     NA         NA    0.000000        0
## 355           1          1     NA         NA    0.000000        0
## 356           1          1     NA         NA    0.000000        0
## 357           1          3     NA         NA    0.000000        0
## 358           1          3     NA         NA    0.000000        0
## 359           1          3     NA         NA    0.000000        0
## 360           1          9      1          5  150.000000     1800
## 361           1          1     NA         NA    0.000000        0
## 362           1          3     NA         NA    0.000000        0
## 363           1          3     NA         NA    0.000000        0
## 364           1          9      9          1  300.000000     3600
## 365           1          9      1          5    0.000000        0
## 366           1          9      7          3  293.333344     3520
## 367           1          9      5          1  200.000000     2400
## 368           1          9      9          3  180.000000     2160
## 369           1          9      5          1  200.000000     2400
## 370           1          9      3          1  220.000000     2640
## 371           1         NA     NA         NA    0.000000        0
## 372           1          9      9          3  292.500000     3510
## 373           1          9      9          3  400.000000     4800
## 374           1          9      6          4  300.000000     3600
## 375           1          9      9          1  300.000000     3600
## 376           1          9      3          1  260.000000     3120
## 377           1          9      6          1  250.000000     3000
## 378          NA          7     NA         NA    0.000000        0
## 379           1         NA     NA         NA    0.000000        0
## 380           1         NA     NA         NA    0.000000        0
## 381           1          9      5          1  300.000000     3600
## 382           1          9      7          3  250.000000     3000
## 383           1          9      9          1  400.000000     4800
## 384           1          2     NA         NA    0.000000        0
## 385           1          9      6          1  200.000000     2400
## 386           1         NA     NA         NA    0.000000        0
## 387           1         NA     NA         NA    0.000000        0
## 388           1          9      1          3  184.166672     2210
## 389           1          9      3          4  304.166656     3650
## 390           1          9      3          4 1208.333374    14500
## 391          NA          6     NA         NA    0.000000        0
## 392           1         NA     NA         NA    0.000000        0
## 393           1         NA     NA         NA    0.000000        0
## 394           1          9      5          3  408.333344     4900
## 395           1          9      3          1  188.333328     2260
## 396           1          9      1          5    0.000000        0
## 397           1          9      1          5    0.000000        0
## 398           1          3     NA         NA    0.000000        0
## 399           1          9      3          1  250.000000     3000
## 400           1          9      3          1  230.000000     2760
## 401           1          9      3          1  240.000000     2880
## 402           1          9      1          5    0.000000        0
## 403           1          9      1          5    0.000000        0
## 404           1          3     NA         NA    0.000000        0
## 405           1          9      6          1  300.000000     3600
## 406           1          9      7          1  300.000000     3600
## 407           1          9      3          1  350.000000     4200
## 408           1          9      8          1  200.000000     2400
## 409           1          9      5          1  400.000000     4800
## 410           1          1     NA         NA    0.000000        0
## 411           1          1     NA         NA    0.000000        0
## 412           1          9      1          4   70.000000      840
## 413           1          3     NA         NA    0.000000        0
## 414           1          3     NA         NA    0.000000        0
## 415           1          9      1          5    0.000000        0
## 416           1          9      1          5    0.000000        0
## 417           1          9      1          5    0.000000        0
## 418           1          9      1          5    0.000000        0
## 419           1          9      5          1 2000.000000    24000
## 420           1          9      4          1  230.000000     2760
## 421           1          1     NA         NA    0.000000        0
## 422           1         NA     NA         NA    0.000000        0
## 423           1          9      2          3  483.333344     5800
## 424           1          9      9          3  260.000000     3120
## 425           1          1     NA         NA    0.000000        0
## 426           1          3     NA         NA    0.000000        0
## 427           1          9      9          3  120.000000     1440
## 428           1          9      6          1  150.000000     1800
## 429           1          9      3          1  200.000000     2400
## 430           1          3     NA         NA    0.000000        0
## 431           1          3     NA         NA    0.000000        0
## 432           1          9      9          1  300.000000     3600
## 433           1          4     NA         NA    0.000000        0
## 434           1          9      6          1  200.000000     2400
## 435           1          1     NA         NA    0.000000        0
## 436           2         NA     NA         NA    0.000000        0
## 437           1          3     NA         NA    0.000000        0
## 438           1          9      9          3  433.333344     5200
## 439           1          9      9          3  180.000000     2160
## 440           2         NA     NA         NA    0.000000        0
## 441           1          3     NA         NA    0.000000        0
## 442           1          9      7          1    0.000000        0
## 443           1          9     NA         NA    0.000000        0
## 444           1         NA     NA         NA    0.000000        0
## 445           1         NA     NA         NA    0.000000        0
## 446           1          9      9          1  180.000000     2160
## 447           1          9      9          1  400.000000     4800
## 448           1          9      9          1  250.000000     3000
## 449           1          9      6          1  200.000000     2400
## 450           1          9      3          1  350.000000     4200
## 451           1         NA     NA         NA    0.000000        0
## 452           1          3     NA         NA    0.000000        0
## 453           1          9      6          3  232.500000     2790
## 454           1          9      3          5  500.000000     6000
## 455           1          3     NA         NA    0.000000        0
## 456           1          9      3          1  512.500000     6150
## 457           1          9      3          1  308.333344     3700
## 458           1         NA     NA         NA    0.000000        0
## 459           1          3     NA         NA    0.000000        0
## 460           1          9      1          5    0.000000        0
## 461           1          3     NA         NA    0.000000        0
## 462           1          9      5          1  254.166672     3050
## 463           1          3     NA         NA    0.000000        0
## 464           1          3     NA         NA    0.000000        0
## 465           1          3     NA         NA    0.000000        0
## 466           1          9      6          1  250.000000     3000
## 467           1          9      5          1  450.000000     5400
## 468           2         NA     NA         NA    0.000000        0
## 469           1          9      3          1  400.000000     4800
## 470           1          9      1          5  150.000000     1800
## 471           1          3     NA         NA    0.000000        0
## 472           1          9      1          1  200.000000     2400
## 473           1          9      1          5    0.000000        0
## 474           1          3     NA         NA    0.000000        0
## 475           1          9      1          5    0.000000        0
## 476           1          9      9          3  408.333344     4900
## 477           1          9      6          1  245.000000     2940
## 478           1         NA     NA         NA    0.000000        0
## 479           1         NA     NA         NA    0.000000        0
## 480           1         NA     NA         NA    0.000000        0
## 481           1          9      5          4  800.000000     9600
## 482           1          9      3          1  180.000000     2160
## 483           1         NA     NA         NA    0.000000        0
## 484           1          3     NA         NA    0.000000        0
## 485           1          9      1          5    0.000000        0
## 486           1          9      5          1  620.000000     7440
## 487           2         NA     NA         NA    0.000000        0
## 488           1         NA     NA         NA    0.000000        0
## 489           1         NA     NA         NA    0.000000        0
## 490           1          3     NA         NA    0.000000        0
## 491           1          9      6          1  184.166672     2210
## 492          NA          6     NA         NA    0.000000        0
## 493           1         10     NA         NA    0.000000        0
## 494           1         NA     NA         NA    0.000000        0
## 495           1          2     NA         NA    0.000000        0
## 496           1         NA     NA         NA    0.000000        0
## 497           1          4     NA         NA    0.000000        0
## 498           1          9      7          4  180.000000     2160
## 499           1          9      9          3 1208.333374    14500
## 500           1          9      9          3  278.333344     3340
## 501           1          3     NA         NA    0.000000        0
## 502           1          4     NA         NA    0.000000        0
## 503           2         NA     NA         NA    0.000000        0
## 504           1          3     NA         NA    0.000000        0
## 505           2         NA     NA         NA    0.000000        0
## 506           1          9      9          1  180.000000     2160
## 507           1          9      9          3  188.333328     2260
## 508           1          9      3          1  200.000000     2400
## 509           1          9      9          1  150.000000     1800
## 510           1          3     NA         NA    0.000000        0
## 511           1          3     NA         NA    0.000000        0
## 512           1          3     NA         NA    0.000000        0
## 513           1          9      3          1  180.000000     2160
## 514           1          9      3          1  250.000000     3000
## 515           1         NA     NA         NA    0.000000        0
## 516           1         NA     NA         NA    0.000000        0
## 517           1          9      1          5    0.000000        0
## 518           1          9      1          5   50.000000      600
## 519           1          9      9          3  250.000000     3000
## 520           1          4     NA         NA    0.000000        0
## 521           1          9      9          3  326.666656     3920
## 522          NA          6      1          5  300.000000     3600
## 523           1         NA     NA         NA    0.000000        0
## 524           1          9      1          5    0.000000        0
## 525           1          4     NA         NA    0.000000        0
## 526           1          9      9          2  180.000000     2160
## 527           1          9      1          1  250.000000     3000
## 528           1         NA     NA         NA    0.000000        0
## 529           1         NA     NA         NA    0.000000        0
## 530           1          9      1          5    0.000000        0
## 531           1          9      1          5    0.000000        0
## 532           1          9      9          3  400.000000     4800
## 533           1          9      1          5    0.000000        0
## 534           1          9      1          4    0.000000        0
## 535           1          9      1          4    0.000000        0
## 536           1          1     NA         NA    0.000000        0
## 537           1          9      1          1  200.000000     2400
## 538           1          9      9          3  180.000000     2160
## 539           1          3     NA         NA    0.000000        0
## 540           1          9      1          5    0.000000        0
## 541           1          9      1          5    0.000000        0
## 542           1          9      1          4    0.000000        0
## 543           1          9      3          1  260.000000     3120
## 544           1         NA     NA         NA    0.000000        0
## 545           1          9      1          4    0.000000        0
## 546           1          9      1          4    0.000000        0
## 547           1          9      1          1  325.000000     3900
## 548           1          9      9          3  221.666672     2660
## 549           1         NA     NA         NA    0.000000        0
## 550           1          9      1          5    0.000000        0
## 551           1          9      1          5    0.000000        0
## 552           1          9      1          5    0.000000        0
## 553           1          9      1          5    0.000000        0
## 554           1          9      8          5 1200.000000    14400
## 555           1          8     NA         NA    0.000000        0
## 556           1         NA     NA         NA    0.000000        0
## 557           1          3     NA         NA    0.000000        0
## 558           1          9      5          1  650.000000     7800
## 559           1          9     NA         NA    0.000000        0
## 560           1          9      5          1  500.000000     6000
## 561           1          9      3          1  475.000000     5700
## 562           1         NA     NA         NA    0.000000        0
## 563           2         NA     NA         NA    0.000000        0
## 564           1          3     NA         NA    0.000000        0
## 565           1          9      5          4   50.000000      600
## 566           1         NA     NA         NA    0.000000        0
## 567           1         NA     NA         NA    0.000000        0
## 568           1          9      3          1  575.000000     6900
## 569           1          9      3          1  375.000000     4500
## 570           1          9      5          1  400.000000     4800
## 571           1          9      1          5    0.000000        0
## 572           1          3     NA         NA    0.000000        0
## 573           1          9      7          1  350.000000     4200
## 574           1          9      3          1  360.000000     4320
## 575           1          9      6          1  500.000000     6000
## 576           1          9      5          1  400.000000     4800
## 577           1         10     NA         NA    0.000000        0
## 578           1          9      7          1  300.000000     3600
## 579           1          9      6          1  300.000000     3600
## 580           1          9      3          1  250.000000     3000
## 581           1          9      1          5    0.000000        0
## 582           1          9      1          5    0.000000        0
## 583           1          9      3          1  250.000000     3000
## 584           1          9      3          1  362.500000     4350
## 585           1          9      7          1  308.333344     3700
## 586           1          9      3          5  200.000000     2400
## 587           1          9      3          5  200.000000     2400
## 588           2         NA     NA         NA    0.000000        0
## 589           2         NA     NA         NA    0.000000        0
## 590           1         NA     NA         NA    0.000000        0
## 591           1         NA     NA         NA    0.000000        0
## 592          NA          7     NA         NA    0.000000        0
## 593           1          2     NA         NA    0.000000        0
## 594           1         NA     NA         NA    0.000000        0
## 595           1         NA     NA         NA    0.000000        0
## 596           1          9      1          5  500.000000     6000
## 597           1          9      1          5  500.000000     6000
## 598           1          9      3          1  300.000000     3600
## 599           2         NA     NA         NA    0.000000        0
## 600           1         NA     NA         NA    0.000000        0
## 601           1         NA     NA         NA    0.000000        0
## 602           1          9      5          1  250.000000     3000
## 603           1         10     NA         NA    0.000000        0
## 604           1         10     NA         NA    0.000000        0
## 605           1         10     NA         NA    0.000000        0
## 606           1          9      9          1  180.000000     2160
## 607           1          9      3          1  150.000000     1800
## 608           1          3     NA         NA    0.000000        0
## 609           1          9      3          1  441.666656     5300
## 610           1          2     NA         NA    0.000000        0
## 611           1         NA     NA         NA    0.000000        0
## 612           1          9      5          1  400.000000     4800
## 613           1          9      6          1  180.000000     2160
## 614           1          9      6          1  194.166672     2330
## 615           1          9      6          1  304.166656     3650
## 616           1         NA     NA         NA    0.000000        0
## 617           1          9      7          3  491.666656     5900
## 618           2         NA     NA         NA    0.000000        0
## 619           2         NA     NA         NA    0.000000        0
## 620           2         NA     NA         NA    0.000000        0
## 621           1          9      3          1  221.666672     2660
## 622           1          9      3          1  184.166672     2210
## 623           1          9      9          1  180.000000     2160
## 624           1          3     NA         NA    0.000000        0
## 625           1         10     NA         NA    0.000000        0
## 626           1         10     NA         NA    0.000000        0
## 627           1         NA     NA         NA    0.000000        0
## 628           1          3     NA         NA    0.000000        0
## 629           1          3     NA         NA    0.000000        0
## 630           1          3     NA         NA    0.000000        0
## 631           1          9      3          1  358.333344     4300
## 632           1         NA     NA         NA    0.000000        0
## 633           1         NA     NA         NA    0.000000        0
## 634           2         NA     NA         NA    0.000000        0
## 635           1          4     NA         NA    0.000000        0
## 636           1          9      1          5   60.000000      720
## 637           1          4     NA         NA    0.000000        0
## 638           1          9      1          5   60.000000      720
## 639           1          1     NA         NA    0.000000        0
## 640           1          9      5          1  800.000000     9600
## 641           1          9      1          5    0.000000        0
## 642           1         NA     NA         NA    0.000000        0
## 643           1         NA     NA         NA    0.000000        0
## 644           1          9     NA         NA    0.000000        0
## 645           1          3     NA         NA    0.000000        0
## 646           1          9      1          5    0.000000        0
## 647           1         NA     NA         NA    0.000000        0
## 648           1          9      9          3  408.333344     4900
## 649           1          9      6          1  400.000000     4800
## 650           1         NA     NA         NA    0.000000        0
## 651           1         NA     NA         NA    0.000000        0
## 652           1          9      9          1  250.000000     3000
## 653           1          2     NA         NA    0.000000        0
## 654           1          8     NA         NA    0.000000        0
## 655           1         NA     NA         NA    0.000000        0
## 656           1         NA     NA         NA    0.000000        0
## 657           1          8     NA         NA    0.000000        0
## 658           1          9      5          5    0.000000        0
## 659           1          2     NA         NA    0.000000        0
## 660           1          9      3          1  300.000000     3600
## 661           1          3     NA         NA    0.000000        0
## 662           1          9      3          1  350.000000     4200
## 663           1          3     NA         NA    0.000000        0
## 664           1          9      6          1  200.000000     2400
## 665           1          9      3          1  250.000000     3000
## 666           1          3     NA         NA    0.000000        0
## 667           1          9      3          1  450.000000     5400
## 668           1          9      3          1  400.000000     4800
## 669           1         NA     NA         NA    0.000000        0
## 670           1          9      6          1  450.000000     5400
## 671           1          9      3          1  350.000000     4200
## 672           1          9      9          1 1400.000000    16800
## 673           1          9      3          1  400.000000     4800
## 674           1          9      8          1  450.000000     5400
## 675           1          9      9          1  280.000000     3360
## 676           1          1     NA         NA    0.000000        0
## 677           1          9      1          5    0.000000        0
## 678           1          3     NA         NA    0.000000        0
## 679           1         NA     NA         NA    0.000000        0
## 680           1         NA     NA         NA    0.000000        0
## 681           1          9      8          3  405.000000     4860
## 682           1          9      7          3  300.000000     3600
## 683           1         NA     NA         NA    0.000000        0
## 684           1          3     NA         NA    0.000000        0
## 685           1          9      6          1  200.000000     2400
## 686           1          3     NA         NA    0.000000        0
## 687           1         NA     NA         NA    0.000000        0
## 688           1          2     NA         NA    0.000000        0
## 689           1          9      9          4  300.000000     3600
## 690           1         NA     NA         NA    0.000000        0
## 691           1          9      7          3  500.000000     6000
## 692           1          9      9          3  400.000000     4800
## 693           1          3     NA         NA    0.000000        0
## 694           1          3     NA         NA    0.000000        0
## 695           1          9     NA         NA    0.000000        0
## 696           1          3     NA         NA    0.000000        0
## 697           1          3     NA         NA    0.000000        0
## 698           1          3     NA         NA    0.000000        0
## 699           1          3     NA         NA    0.000000        0
## 700           1          3     NA         NA    0.000000        0
## 701           1          4     NA         NA    0.000000        0
## 702           1          9      3          1  300.000000     3600
## 703           1          3     NA         NA    0.000000        0
## 704           1          9      1          1  250.000000     3000
## 705           1          9      9          3  180.000000     2160
## 706           1          9      6          1 1000.000000    12000
## 707           1          9      5          1 1100.000000    13200
## 708           1          9      9          3  180.000000     2160
## 709           1         NA     NA         NA    0.000000        0
## 710           1          9      5          1  254.166672     3050
## 711           1          9      3          1  202.500000     2430
## 712           1          3     NA         NA    0.000000        0
## 713           1          9      1          5    0.000000        0
## 714           1          3     NA         NA    0.000000        0
## 715           1          3     NA         NA    0.000000        0
## 716           1          3     NA         NA    0.000000        0
## 717           1          9      9          3  250.000000     3000
## 718           1          9      9          3  305.000000     3660
## 719           1          9      4          3  340.000000     4080
## 720           1          3     NA         NA    0.000000        0
## 721           1          3     NA         NA    0.000000        0
## 722           1         10     NA         NA    0.000000        0
## 723           1          1     NA         NA    0.000000        0
## 724           1          9      3          1  221.666672     2660
## 725           1          9      3          1  181.666672     2180
## 726           2         NA     NA         NA    0.000000        0
## 727           1          9      8          4 1000.000000    12000
## 728           1          9      8          1  716.666687     8600
## 729           1          9      9          3  357.500000     4290
## 730           2         NA     NA         NA    0.000000        0
## 731           1          3     NA         NA    0.000000        0
## 732           1          1     NA         NA    0.000000        0
## 733           1          9     NA         NA    0.000000        0
## 734           1          3     NA         NA    0.000000        0
## 735           1          3     NA         NA    0.000000        0
## 736           1          3     NA         NA    0.000000        0
## 737           1          3     NA         NA    0.000000        0
## 738           1          3     NA         NA    0.000000        0
## 739           1          9     NA         NA    0.000000        0
## 740           1          9     NA         NA    0.000000        0
## 741           1          9     NA         NA    0.000000        0
## 742           1          3     NA         NA    0.000000        0
## 743           1          9      4          4   50.000000      600
## 744           1          4     NA         NA    0.000000        0
## 745           1          4     NA         NA    0.000000        0
## 746           1          9     NA         NA    0.000000        0
## 747           1          9     NA         NA    0.000000        0
## 748           1          3     NA         NA    0.000000        0
## 749           1          9      7          1  766.666687     9200
## 750           1          9      2          1  140.000000     1680
## 751           1          3     NA         NA    0.000000        0
## 752           1         NA     NA         NA    0.000000        0
## 753           1         NA     NA         NA    0.000000        0
## 754           1          9      9          3  410.000000     4920
## 755           1          9      6          4  300.000000     3600
## 756           1          3     NA         NA    0.000000        0
## 757           1          9      9          3  255.000000     3060
## 758           1          9      1          5    0.000000        0
## 759           1          9      1          5    0.000000        0
## 760           1          9      1          5    0.000000        0
## 761           1          9      1          1  300.000000     3600
## 762           1         NA     NA         NA    0.000000        0
## 763           1         NA     NA         NA    0.000000        0
## 764           1          3     NA         NA    0.000000        0
## 765           1          3     NA         NA    0.000000        0
## 766           1          9      6          5 1000.000000    12000
## 767           1          3     NA         NA    0.000000        0
## 768           1          9      3          4  516.666687     6200
## 769           1          3     NA         NA    0.000000        0
## 770           1          3     NA         NA    0.000000        0
## 771           1          4     NA         NA    0.000000        0
## 772           1          9      9          3   90.000000     1080
## 773           1          3     NA         NA    0.000000        0
## 774           1          3     NA         NA    0.000000        0
## 775           1          9      9          3  204.166672     2450
## 776           1          3     NA         NA    0.000000        0
## 777           1          9      6          4  180.000000     2160
## 778           1          9      1          5    0.000000        0
## 779           1          9      1          5    0.000000        0
## 780           1          9      8          3  328.333344     3940
## 781           1          3     NA         NA    0.000000        0
## 782           1          3     NA         NA    0.000000        0
## 783           1          3     NA         NA    0.000000        0
## 784           1          9     NA         NA    0.000000        0
## 785           1          3     NA         NA    0.000000        0
## 786           1          3     NA         NA    0.000000        0
## 787           1          9      1          5    0.000000        0
## 788           1          3     NA         NA    0.000000        0
## 789           1          9      3          1  500.000000     6000
## 790           1         10     NA         NA    0.000000        0
## 791           1         10     NA         NA    0.000000        0
## 792           1         10     NA         NA    0.000000        0
## 793           1         NA     NA         NA    0.000000        0
## 794           1          4     NA         NA    0.000000        0
## 795           1          9      5          5  700.000000     8400
## 796           1          8     NA         NA    0.000000        0
## 797           1          9     NA         NA    0.000000        0
## 798           1          9      6          1  300.000000     3600
## 799           1          1     NA         NA    0.000000        0
## 800           1          9      9          4   18.000000      216
## 801           1          9      1          5    0.000000        0
## 802           1         NA     NA         NA    0.000000        0
## 803           1          3     NA         NA    0.000000        0
## 804           1          3     NA         NA    0.000000        0
## 805           1          3     NA         NA    0.000000        0
## 806           1          9      1          5    0.000000        0
## 807           1          3     NA         NA    0.000000        0
## 808           1          9      6          1  250.000000     3000
## 809           1          9      3          1  290.000000     3480
## 810           1         NA     NA         NA    0.000000        0
## 811           1          9      1          3  450.000000     5400
## 812           1          9      9          3  304.166656     3650
## 813           1         NA     NA         NA    0.000000        0
## 814           1          9     NA         NA    0.000000        0
## 815           1          9     NA         NA    0.000000        0
## 816           1          9      9          3  325.000000     3900
## 817           1          9      3          1  408.333344     4900
## 818           1          1     NA         NA    0.000000        0
## 819           1          1     NA         NA    0.000000        0
## 820           1          9      9          1  355.000000     4260
## 821           1          9      3          1  408.333344     4900
## 822           1          4     NA         NA    0.000000        0
## 823           1          8     NA         NA    0.000000        0
## 824           1          2     NA         NA    0.000000        0
## 825           1         NA     NA         NA    0.000000        0
## 826           1         NA     NA         NA    0.000000        0
## 827           1          3     NA         NA    0.000000        0
## 828           1          3     NA         NA    0.000000        0
## 829           1          9      5          1  600.000000     7200
## 830           1          3     NA         NA    0.000000        0
## 831           1          8     NA         NA    0.000000        0
## 832           1          3     NA         NA    0.000000        0
## 833           1          9      9          3  150.000000     1800
## 834           2         NA     NA         NA    0.000000        0
## 835           2         NA     NA         NA    0.000000        0
## 836           1         NA     NA         NA    0.000000        0
## 837           1          3     NA         NA    0.000000        0
## 838           1          3     NA         NA    0.000000        0
## 839           1          9     NA         NA    0.000000        0
## 840           1          9      3          1  250.000000     3000
## 841           1          1     NA         NA    0.000000        0
## 842           1         NA     NA         NA    0.000000        0
## 843           1          9     NA         NA    0.000000        0
## 844           1          9     NA         NA    0.000000        0
## 845           1          9     10          1    0.000000        0
## 846           1          9     NA         NA    0.000000        0
## 847           1         10     NA         NA    0.000000        0
## 848           1          3     NA         NA    0.000000        0
## 849           1          8     NA         NA    0.000000        0
## 850           1          8     NA         NA    0.000000        0
## 851           1          8     NA         NA    0.000000        0
## 852           1          9      9          1  180.000000     2160
## 853           1          8     NA         NA    0.000000        0
## 854           1          8     NA         NA    0.000000        0
## 855           1         10     NA         NA    0.000000        0
## 856           1          8     NA         NA    0.000000        0
## 857           1          8     NA         NA    0.000000        0
## 858           1          9      9          3  300.000000     3600
## 859           1          3     NA         NA    0.000000        0
## 860           1          1     NA         NA    0.000000        0
## 861           1          1     NA         NA    0.000000        0
## 862          NA          7     NA         NA    0.000000        0
## 863           1         NA     NA         NA    0.000000        0
## 864           1          9      3          5    0.000000        0
## 865           1          9      3          5    0.000000        0
## 866           1          9      6          1  250.000000     3000
## 867           1          1     NA         NA    0.000000        0
## 868           1          9      6          5  540.000000     6480
## 869           1          9      6          1  300.000000     3600
## 870           1          1     NA         NA    0.000000        0
## 871           1         NA     NA         NA    0.000000        0
## 872           1         NA     NA         NA    0.000000        0
## 873           1          9      4          1  400.000000     4800
## 874           1          9      9          3  380.000000     4560
## 875           1          3     NA         NA    0.000000        0
## 876           1          3     NA         NA    0.000000        0
## 877           1          9      3          5  150.000000     1800
## 878           1          9      3          5  150.000000     1800
## 879           1          3     NA         NA    0.000000        0
## 880           1          3     NA         NA    0.000000        0
## 881           1          3     NA         NA    0.000000        0
## 882           1          3     NA         NA    0.000000        0
## 883           1          9      6          5  220.000000     2640
## 884           1          1     NA         NA    0.000000        0
## 885           1          1     NA         NA    0.000000        0
## 886           1          3     NA         NA    0.000000        0
## 887           1          9      9          3  346.666656     4160
## 888           1          9      9          3  535.000000     6420
## 889           1          9      6          4  180.000000     2160
## 890           1          3     NA         NA    0.000000        0
## 891           1          9      9          1  200.000000     2400
## 892           1          9      5          1  300.000000     3600
## 893           1         NA     NA         NA    0.000000        0
## 894           1          9      1          4    0.000000        0
## 895           1          9     NA         NA    0.000000        0
## 896           1          9      3          1  350.000000     4200
## 897           1         NA     NA         NA    0.000000        0
## 898           1          9      3          1  220.000000     2640
## 899           1          9      3          1  300.000000     3600
## 900           1          9      6          1  200.000000     2400
## 901           1          3     NA         NA    0.000000        0
## 902           1          3     NA         NA    0.000000        0
## 903           1          9      9          1  304.166656     3650
## 904           1          9      9          3  400.000000     4800
## 905           1          1     NA         NA    0.000000        0
## 906           1         NA     NA         NA    0.000000        0
## 907           1          9      9          3    0.000000        0
## 908           1          8     NA         NA    0.000000        0
## 909           1          9      6          5  350.000000     4200
## 910           1          9      6          5  250.000000     3000
## 911           1         NA     NA         NA    0.000000        0
## 912           1          3     NA         NA    0.000000        0
## 913           1          3     NA         NA    0.000000        0
## 914           1          9      1          5    0.000000        0
## 915           1          3     NA         NA    0.000000        0
## 916           1          9      1          5    0.000000        0
## 917           1          3     NA         NA    0.000000        0
## 918           1          9     NA         NA    0.000000        0
## 919           1         NA     NA         NA    0.000000        0
## 920           1          9      3          1  250.000000     3000
## 921           1         NA     NA         NA    0.000000        0
## 922           1          9      4          3  700.000000     8400
## 923           1          9      9          3  350.000000     4200
## 924           1          1     NA         NA    0.000000        0
## 925           1         NA     NA         NA    0.000000        0
## 926           1          9      5          1  315.000000     3780
## 927           1          9     NA         NA    0.000000        0
## 928           1         NA     NA         NA    0.000000        0
## 929           1         NA     NA         NA    0.000000        0
## 930           1          3     NA         NA    0.000000        0
## 931           1          3     NA         NA    0.000000        0
## 932           1          9      1          5    0.000000        0
## 933           1          9      3          1    0.000000        0
## 934           1          9      1          5    0.000000        0
## 935           1          3     NA         NA    0.000000        0
## 936           1          3     NA         NA    0.000000        0
## 937           1          9      9          3  408.333344     4900
## 938           1          9      5          1  180.000000     2160
## 939           1          9      6          5  180.000000     2160
## 940           1         NA     NA         NA    0.000000        0
## 941           1         NA     NA         NA    0.000000        0
## 942           1          3     NA         NA    0.000000        0
## 943           1          9      9          1  336.666656     4040
## 944           1          1     NA         NA    0.000000        0
## 945           1          3     NA         NA    0.000000        0
## 946           1          9      9          3  393.333344     4720
## 947           1          3     NA         NA    0.000000        0
## 948           1          3     NA         NA    0.000000        0
## 949           1          3     NA         NA    0.000000        0
## 950           1          3     NA         NA    0.000000        0
## 951           1          9      9          3  350.000000     4200
## 952           1          9      9          3  340.000000     4080
## 953           1          3     NA         NA    0.000000        0
## 954           1         NA     NA         NA    0.000000        0
## 955           1         NA     NA         NA    0.000000        0
## 956           1          9      9          3  260.000000     3120
## 957           1          3     NA         NA    0.000000        0
## 958           1          3     NA         NA    0.000000        0
## 959           1          3     NA         NA    0.000000        0
## 960           1          4     NA         NA    0.000000        0
## 961           1          9      9          3  184.166672     2210
## 962           1          3     NA         NA    0.000000        0
## 963           1          9      6          3  324.166656     3890
## 964           1          9      1          5    0.000000        0
## 965           1          9      1          5    0.000000        0
## 966           1          9      1          5    0.000000        0
## 967           1          9      9          1  200.000000     2400
## 968           1          9      9          1  200.000000     2400
## 969           1         NA     NA         NA    0.000000        0
## 970           1         NA     NA         NA    0.000000        0
## 971           1          9      1          5    0.000000        0
## 972           1          9      1          5    0.000000        0
## 973           1          9      1          5    0.000000        0
## 974           1          9      3          1  200.000000     2400
## 975           1          9      3          3  250.000000     3000
## 976           2         NA     NA         NA    0.000000        0
## 977           2         NA     NA         NA    0.000000        0
## 978           1         NA     NA         NA    0.000000        0
## 979           1         NA     NA         NA    0.000000        0
## 980           2         NA     NA         NA    0.000000        0
## 981           1          9      5          1  230.000000     2760
## 982           1          9      9          3  196.666672     2360
## 983           1         NA     NA         NA    0.000000        0
## 984           1          9      1          5    0.000000        0
## 985           1          9      1          5    0.000000        0
## 986           1          9      1          4    0.000000        0
## 987           1          9      1          4    0.000000        0
## 988           1          1     NA         NA    0.000000        0
## 989           1         NA     NA         NA    0.000000        0
## 990           1          9      1          5    0.000000        0
## 991           1          2     NA         NA    0.000000        0
## 992           1          3     NA         NA    0.000000        0
## 993           1          3     NA         NA    0.000000        0
## 994           1          9      5          1  150.000000     1800
## 995           1          9      9          3  250.000000     3000
## 996           1          9      3          1  250.000000     3000
## 997           1          3     NA         NA    0.000000        0
## 998           1          9      6          1  900.000000    10800
## 999           1         NA     NA         NA    0.000000        0
## 1000          1          3     NA         NA    0.000000        0
## 1001          1          9      9          1  400.000000     4800
## 1002          1          3     NA         NA    0.000000        0
## 1003          1          9      1          5    0.000000        0
## 1004          1          9      9          1  350.000000     4200
## 1005          1          4     NA         NA    0.000000        0
## 1006         NA          6     NA         NA    0.000000        0
## 1007          1         10     NA         NA    0.000000        0
## 1008          1          3     NA         NA    0.000000        0
## 1009          1          9      3          1  456.666656     5480
## 1010          1          9      5          1  528.333313     6340
## 1011          1          9      1          4  300.000000     3600
## 1012          1          9      6          4  201.666672     2420
## 1013          1         NA     NA         NA    0.000000        0
## 1014          1         NA     NA         NA    0.000000        0
## 1015          1          9      1          5    0.000000        0
## 1016          1          3     NA         NA    0.000000        0
## 1017          1          4     NA         NA    0.000000        0
## 1018          1         NA     NA         NA    0.000000        0
## 1019          1          9      5          1  180.000000     2160
## 1020          1          3     NA         NA    0.000000        0
## 1021          1          9      1          1  180.000000     2160
## 1022          1          9      1          1  180.000000     2160
## 1023          1          1     NA         NA    0.000000        0
## 1024          1         NA     NA         NA    0.000000        0
## 1025          1         NA     NA         NA    0.000000        0
## 1026          1          9      1          5    0.000000        0
## 1027          1          9      1          5    0.000000        0
## 1028          1          9      9          3  500.000000     6000
## 1029          1          9      6          1  200.000000     2400
## 1030          1          9      8          1  200.000000     2400
## 1031          1          9      6          1  350.000000     4200
## 1032          1          9      9          1  250.000000     3000
## 1033          1          9      6          1  250.000000     3000
## 1034          1          1     NA         NA    0.000000        0
## 1035          1          9      6          1  250.000000     3000
## 1036          1          9     NA         NA    0.000000        0
## 1037          1         NA     NA         NA    0.000000        0
## 1038          1          9      6          5    0.000000        0
## 1039          1          3     NA         NA    0.000000        0
## 1040          1          9      3          3  300.000000     3600
## 1041          1          9      1          5    0.000000        0
## 1042          1          3     NA         NA    0.000000        0
## 1043          1         NA     NA         NA    0.000000        0
## 1044          1          9      7          1  616.666687     7400
## 1045          1          9      9          5    0.000000        0
## 1046          1          9      5          3  400.000000     4800
## 1047          1          3     NA         NA    0.000000        0
## 1048          1          3     NA         NA    0.000000        0
## 1049          1          3     NA         NA    0.000000        0
## 1050          1          9      4          1  508.333344     6100
## 1051          1          9      4          1  508.333344     6100
## 1052          1          9      7          1  595.833313     7150
## 1053          1          9      3          1  280.000000     3360
## 1054          1          9      9          3  300.000000     3600
## 1055          1          3     NA         NA    0.000000        0
## 1056          1         NA     NA         NA    0.000000        0
## 1057          1          9      6          1  600.000000     7200
## 1058          1          9      9          3  308.333344     3700
## 1059         NA          7     NA         NA    0.000000        0
## 1060         NA          7     NA         NA    0.000000        0
## 1061          1          9      1          5    0.000000        0
## 1062          1          9      1          1  200.000000     2400
## 1063          1          9      3          1  200.000000     2400
## 1064          1          9      9          5  600.000000     7200
## 1065          1          9      9          3  362.500000     4350
## 1066          1          1     NA         NA    0.000000        0
## 1067          1          9      1          5    0.000000        0
## 1068          1          9      4          1  603.333313     7240
## 1069          1          9      9          3  250.000000     3000
## 1070          1          9      6          1  591.666687     7100
## 1071          1          3     NA         NA    0.000000        0
## 1072          1          3     NA         NA    0.000000        0
## 1073          1          4     NA         NA    0.000000        0
## 1074          1          9      1          5    0.000000        0
## 1075          1          9      3          1  360.000000     4320
## 1076          1         NA     NA         NA    0.000000        0
## 1077          1         NA     NA         NA    0.000000        0
## 1078          1         NA     NA         NA    0.000000        0
## 1079          1          4     NA         NA    0.000000        0
## 1080          1          9      1          1    0.000000        0
## 1081          1          3     NA         NA    0.000000        0
## 1082          1          9      1          5    0.000000        0
## 1083          1          3     NA         NA    0.000000        0
## 1084          1          9      3          1  180.000000     2160
## 1085          1          2     NA         NA    0.000000        0
## 1086          1         NA     NA         NA    0.000000        0
## 1087          1          3     NA         NA    0.000000        0
## 1088          1          1     NA         NA    0.000000        0
## 1089          1          3     NA         NA    0.000000        0
## 1090          1          3     NA         NA    0.000000        0
## 1091          1          3     NA         NA    0.000000        0
## 1092          1          9      9          3  220.000000     2640
## 1093          1          9     NA         NA    0.000000        0
## 1094          1          9      5          1  500.000000     6000
## 1095          1          9      7          5  600.000000     7200
## 1096          1          8     NA         NA    0.000000        0
## 1097          1         NA     NA         NA    0.000000        0
## 1098          1          9     NA         NA    0.000000        0
## 1099          1          9     NA         NA    0.000000        0
## 1100          1         10     NA         NA    0.000000        0
## 1101          1         10     NA         NA    0.000000        0
## 1102          1         10     NA         NA    0.000000        0
## 1103          1          9     NA         NA    0.000000        0
## 1104          1          9      5          1  500.000000     6000
## 1105          1          1     NA         NA    0.000000        0
## 1106          1         10     NA         NA    0.000000        0
## 1107          1          9      3          1  180.000000     2160
## 1108          1         10     NA         NA    0.000000        0
## 1109          1         10     NA         NA    0.000000        0
## 1110          1         10     NA         NA    0.000000        0
## 1111          1         10     NA         NA    0.000000        0
## 1112          1         NA     NA         NA    0.000000        0
## 1113          1         NA     NA         NA    0.000000        0
## 1114          1          3     NA         NA    0.000000        0
## 1115          1          3     NA         NA    0.000000        0
## 1116          1          3     NA         NA    0.000000        0
## 1117          1          3     NA         NA    0.000000        0
## 1118          1          9      9          3  266.666656     3200
## 1119          1          9      1          5    0.000000        0
## 1120          1          9      1          5    0.000000        0
## 1121          1          9      2          1  350.000000     4200
## 1122          1          9      1          4  800.000000     9600
## 1123          1          9      4          1  750.000000     9000
## 1124          1          9      9          1  160.000000     1920
## 1125          1          9      5          1  300.000000     3600
## 1126          1          9      6          1  300.000000     3600
## 1127          1          9      4          3  475.000000     5700
## 1128          1          9      6          1  416.666656     5000
## 1129          1          9      7          1  350.000000     4200
## 1130          2         NA     NA         NA    0.000000        0
## 1131          1         NA     NA         NA    0.000000        0
## 1132          1          3     NA         NA    0.000000        0
## 1133          1          9      3          1  220.000000     2640
## 1134          1          2     NA         NA    0.000000        0
## 1135          1         NA     NA         NA    0.000000        0
## 1136          1          9      6          1  270.000000     3240
## 1137          1          9      9          3  240.000000     2880
## 1138          1          9      5          1  400.000000     4800
## 1139          1          9      9          5  400.000000     4800
## 1140          1          9      5          1  550.000000     6600
## 1141          1          9      7          1  300.000000     3600
## 1142          1          9      5          1  300.000000     3600
## 1143          1          9      9          1  300.000000     3600
## 1144          1          9      6          1  220.000000     2640
## 1145          1          9      3          1  250.000000     3000
## 1146          1          9      5          1  400.000000     4800
## 1147          2         NA     NA         NA    0.000000        0
## 1148          1         NA     NA         NA    0.000000        0
## 1149          1          9     NA         NA    0.000000        0
## 1150          1          9     NA         NA    0.000000        0
## 1151          1          1     NA         NA    0.000000        0
## 1152          1          3     NA         NA    0.000000        0
## 1153          1          2     NA         NA    0.000000        0
## 1154          1         NA     NA         NA    0.000000        0
## 1155          1         NA     NA         NA    0.000000        0
## 1156          1          9      1          1   50.000000      600
## 1157          1          9     NA         NA    0.000000        0
## 1158          1         NA     NA         NA    0.000000        0
## 1159          1         NA     NA         NA    0.000000        0
## 1160          1          9      3          1  800.000000     9600
## 1161          1          3     NA         NA    0.000000        0
## 1162          1          9      4          1  400.000000     4800
## 1163          1          9      6          1  816.666687     9800
## 1164          1          9      6          1  306.666656     3680
## 1165          1          9      9          1  816.666687     9800
## 1166          1          9      9          1  825.000000     9900
## 1167          1          3     NA         NA    0.000000        0
## 1168          1          3     NA         NA    0.000000        0
## 1169          1          9      6          1  250.000000     3000
## 1170          1          9      9          1  200.000000     2400
## 1171          1          9      9          3  400.000000     4800
## 1172          1          3     NA         NA    0.000000        0
## 1173          1          3     NA         NA    0.000000        0
## 1174          1          9      7          1  600.000000     7200
## 1175          1          9      9          3  210.000000     2520
## 1176          1          1     NA         NA    0.000000        0
## 1177          1         NA     NA         NA    0.000000        0
## 1178          1          3     NA         NA    0.000000        0
## 1179          1          9      7          3  400.000000     4800
## 1180          1          9      6          1  180.000000     2160
## 1181          1          9      9          3  300.000000     3600
## 1182          1          9      6          1  300.000000     3600
## 1183          1         NA     NA         NA    0.000000        0
## 1184          1          9      1          5    0.000000        0
## 1185          1          3     NA         NA    0.000000        0
## 1186          1          9      6          1  200.000000     2400
## 1187          1          9     NA         NA    0.000000        0
## 1188          1          3     NA         NA    0.000000        0
## 1189          1          3     NA         NA    0.000000        0
## 1190          1          3     NA         NA    0.000000        0
## 1191          1          3     NA         NA    0.000000        0
## 1192          1          3     NA         NA    0.000000        0
## 1193          1          9      6          1  683.333313     8200
## 1194          1          9     NA         NA    0.000000        0
## 1195          1         NA     NA         NA    0.000000        0
## 1196          1         NA     NA         NA    0.000000        0
## 1197          1          3     NA         NA    0.000000        0
## 1198          1          9      4          3  300.000000     3600
## 1199          1          9      9          1  312.500000     3750
## 1200          1          9      3          1  258.333344     3100
## 1201          1          9      3          1  366.666656     4400
## 1202          1          1     NA         NA    0.000000        0
## 1203          1          9     NA         NA    0.000000        0
## 1204          1          9      9          1  300.000000     3600
## 1205          1          9      8          3  272.500000     3270
## 1206          1          9      6          1  250.000000     3000
## 1207          1          9      9          1  180.000000     2160
## 1208          1          9      6          1  250.000000     3000
## 1209          1         NA     NA         NA    0.000000        0
## 1210          1         NA     NA         NA    0.000000        0
## 1211          1          9      5          1 1200.000000    14400
## 1212          1          9      3          1  410.000000     4920
## 1213          1         NA     NA         NA    0.000000        0
## 1214          1         NA     NA         NA    0.000000        0
## 1215          1          9     NA         NA    0.000000        0
## 1216          1          9     NA         NA    0.000000        0
## 1217          1          3     NA         NA    0.000000        0
## 1218          1          3     NA         NA    0.000000        0
## 1219          1          3     NA         NA    0.000000        0
## 1220          1          3     NA         NA    0.000000        0
## 1221          1          3     NA         NA    0.000000        0
## 1222          1          9      3          1  225.000000     2700
## 1223          1          4     NA         NA    0.000000        0
## 1224          1          9      7          1  400.000000     4800
## 1225          1          3     NA         NA    0.000000        0
## 1226          1          3     NA         NA    0.000000        0
## 1227          1          9      6          1  500.000000     6000
## 1228          1          9      1          5    0.000000        0
## 1229          1          9      1          5    0.000000        0
## 1230          1          9      3          1  370.000000     4440
## 1231          1          9      3          1  400.000000     4800
## 1232          1          9      8          1  200.000000     2400
## 1233          1          9      6          1  300.000000     3600
## 1234          1          9      9          1  405.833344     4870
## 1235         NA          6     NA         NA    0.000000        0
## 1236          1          9      3          1  220.000000     2640
## 1237          1          9      3          1  500.000000     6000
## 1238          1          9      8          1  220.000000     2640
## 1239          1          1     NA         NA    0.000000        0
## 1240          1         NA     NA         NA    0.000000        0
## 1241          1          9      7          1 2000.000000    24000
## 1242          1          9      3          1  200.000000     2400
## 1243          1         NA     NA         NA    0.000000        0
## 1244          1          9      1          4    0.000000        0
## 1245          1          9      1          5    0.000000        0
## 1246          1          9      1          5    0.000000        0
## 1247          1         NA     NA         NA    0.000000        0
## 1248          1          2     NA         NA    0.000000        0
## 1249          1         NA     NA         NA    0.000000        0
## 1250          1          9      5          1  800.000000     9600
## 1251          1          2     NA         NA    0.000000        0
## 1252          1          9      5          1  350.000000     4200
## 1253          1         NA     NA         NA    0.000000        0
## 1254          1         NA     NA         NA    0.000000        0
## 1255          1          3     NA         NA    0.000000        0
## 1256          1          9      1          5    0.000000        0
## 1257          1          4     NA         NA    0.000000        0
## 1258          1          9      9          1  300.000000     3600
## 1259          1          9      8          1  600.000000     7200
## 1260          2         NA     NA         NA    0.000000        0
## 1261          1          1     NA         NA    0.000000        0
## 1262          1          9      6          4  308.333344     3700
## 1263          1         NA     NA         NA    0.000000        0
## 1264          1          9      6          4  308.333344     3700
## 1265          1          3     NA         NA    0.000000        0
## 1266          1          9      5          1  450.000000     5400
## 1267          1          9      9          1  280.000000     3360
## 1268          1          9      9          4  300.000000     3600
## 1269          1          9      3          1  650.000000     7800
## 1270          1          9      3          1  400.000000     4800
## 1271          1          9      6          1  400.000000     4800
## 1272          1          1     NA         NA    0.000000        0
## 1273          1          9      3          1  430.000000     5160
## 1274          1          9      9          3  305.000000     3660
## 1275          1         NA     NA         NA    0.000000        0
## 1276          1          3     NA         NA    0.000000        0
## 1277          1          9      6          1  280.000000     3360
## 1278          1          3     NA         NA    0.000000        0
## 1279          1          3     NA         NA    0.000000        0
## 1280          1          9      7          1  240.000000     2880
## 1281          2         NA     NA         NA    0.000000        0
## 1282          1          9      6          5  300.000000     3600
## 1283          1          1     NA         NA    0.000000        0
## 1284          1         NA     NA         NA    0.000000        0
## 1285          1          9      1          5    0.000000        0
## 1286          1          9      1          5    0.000000        0
## 1287          1          9      1          3  280.000000     3360
## 1288          1          9      8          3  390.000000     4680
## 1289          1          9      1          5    0.000000        0
## 1290          1          9      1          5    0.000000        0
## 1291          1          9      5          4  400.000000     4800
## 1292          1          9      3          1  300.000000     3600
## 1293          1          1     NA         NA    0.000000        0
## 1294          1          3     NA         NA    0.000000        0
## 1295          1          9      5          4  400.000000     4800
## 1296          1          9      3          1  350.000000     4200
## 1297          1          9      3          1  350.000000     4200
## 1298          1          1     NA         NA    0.000000        0
## 1299          1          9      1          5    0.000000        0
## 1300          1          9      9          3  316.666656     3800
## 1301          2         NA     NA         NA    0.000000        0
## 1302          1          3     NA         NA    0.000000        0
## 1303          1          9      6          3  444.166656     5330
## 1304          1          9      9          1  712.500000     8550
## 1305          1          9      8          1  508.333344     6100
## 1306          1          1     NA         NA    0.000000        0
## 1307          1         NA     NA         NA    0.000000        0
## 1308          1          9      1          5   10.000000      120
## 1309          1          9      1          5   10.000000      120
## 1310          1          3     NA         NA    0.000000        0
## 1311          2         NA     NA         NA    0.000000        0
## 1312          1          9     NA         NA    0.000000        0
## 1313          1         NA     NA         NA    0.000000        0
## 1314          1         NA     NA         NA    0.000000        0
## 1315          1          3     NA         NA    0.000000        0
## 1316          1          9      1          5    0.000000        0
## 1317          1          9      1          5    0.000000        0
## 1318          1          9      1          5    0.000000        0
## 1319          1          9      1          5    0.000000        0
## 1320          1          9      1          5  540.000000     6480
## 1321          1          2     NA         NA    0.000000        0
## 1322          1          9      2          1  538.333313     6460
## 1323          1          9     NA         NA    0.000000        0
## 1324          1         NA     NA         NA    0.000000        0
## 1325          1         NA     NA         NA    0.000000        0
## 1326          1          9      1          5    0.000000        0
## 1327          1          3     NA         NA    0.000000        0
## 1328          1          9      2          1  424.166656     5090
## 1329          1          9      3          1  254.166672     3050
## 1330         NA          5     NA         NA    0.000000        0
## 1331          1          1     NA         NA    0.000000        0
## 1332          1          9      1          5    0.000000        0
## 1333          1          3     NA         NA    0.000000        0
## 1334          1          9      1          4  300.000000     3600
## 1335          1          9      1          4  180.000000     2160
## 1336          1          1     NA         NA    0.000000        0
## 1337          1         NA     NA         NA    0.000000        0
## 1338          1          3     NA         NA    0.000000        0
## 1339          1          9      5          1  340.000000     4080
## 1340          1          9      3          1  300.000000     3600
## 1341          1          9      6          1  208.333328     2500
## 1342          1          9      6          1  250.000000     3000
## 1343          1          1     NA         NA    0.000000        0
## 1344          1          9      5          1  441.666656     5300
## 1345          1          9      9          3  182.500000     2190
## 1346          1          9      9          4  126.666664     1520
## 1347          1          9      7          3  250.000000     3000
## 1348          1          9      9          3  320.000000     3840
## 1349          1          9      7          3  450.000000     5400
## 1350          1          9      9          1  600.000000     7200
## 1351          1         NA     NA         NA    0.000000        0
## 1352          1          9      5          4  500.000000     6000
## 1353          1          2     NA         NA    0.000000        0
## 1354          1         NA     NA         NA    0.000000        0
## 1355          1          9      1          5    0.000000        0
## 1356          1          3     NA         NA    0.000000        0
## 1357          1          9      1          5    0.000000        0
## 1358          1          3     NA         NA    0.000000        0
## 1359          1          3     NA         NA    0.000000        0
## 1360          1          9     NA         NA    0.000000        0
## 1361          1          3     NA         NA    0.000000        0
## 1362          1          9      7          1  400.000000     4800
## 1363         NA          7     NA         NA    0.000000        0
## 1364          1         NA     NA         NA    0.000000        0
## 1365          1         NA     NA         NA    0.000000        0
## 1366          1          9      6          1  150.000000     1800
## 1367          1          9      9          3    0.000000        0
## 1368          1          9      9          3    0.000000        0
## 1369          1          9      8          1    0.000000        0
## 1370          1          9      5          1  300.000000     3600
## 1371          1          9      9          2   36.000000      432
## 1372          1          9     NA         NA    0.000000        0
## 1373          1          9      3          1  450.000000     5400
## 1374          1         10     NA         NA    0.000000        0
## 1375          1         NA     NA         NA    0.000000        0
## 1376          1         NA     NA         NA    0.000000        0
## 1377          1          9      1          5    0.000000        0
## 1378          1          9      1          5    0.000000        0
## 1379          1          9      7          1  400.000000     4800
## 1380          1          2     NA         NA    0.000000        0
## 1381          1         NA     NA         NA    0.000000        0
## 1382          1          9      3          1  300.000000     3600
## 1383          2         NA     NA         NA    0.000000        0
## 1384          1          2     NA         NA    0.000000        0
## 1385          1         NA     NA         NA    0.000000        0
## 1386          1         NA     NA         NA    0.000000        0
## 1387          1          3     NA         NA    0.000000        0
## 1388          1          9      9          5  500.000000     6000
## 1389          1          3     NA         NA    0.000000        0
## 1390          1          9      6          1  280.000000     3360
## 1391          1          9      7          1  500.000000     6000
## 1392          1          2     NA         NA    0.000000        0
## 1393          1          9      9          1  150.000000     1800
## 1394          1          3     NA         NA    0.000000        0
## 1395          1          3     NA         NA    0.000000        0
## 1396          1          9      9          1  408.333344     4900
## 1397          1         NA     NA         NA    0.000000        0
## 1398          1          9      7          1  650.000000     7800
## 1399          1          2     NA         NA    0.000000        0
## 1400          1         NA     NA         NA    0.000000        0
## 1401          1         NA     NA         NA    0.000000        0
## 1402          1          9      3          1  725.000000     8700
## 1403          1          9      5          1  150.000000     1800
## 1404          1          4     NA         NA    0.000000        0
## 1405          1          9      6          4  500.000000     6000
## 1406          2         NA     NA         NA    0.000000        0
## 1407          1         NA     NA         NA    0.000000        0
## 1408          1          9      6          1  766.666687     9200
## 1409          1          3     NA         NA    0.000000        0
## 1410          1          3     NA         NA    0.000000        0
## 1411          1          9      5          1  700.000000     8400
## 1412          1          9      3          1  200.000000     2400
## 1413          1         NA     NA         NA    0.000000        0
## 1414          1          9      5          1  700.000000     8400
## 1415          1          9      6          4  480.000000     5760
## 1416          1          3     NA         NA    0.000000        0
## 1417          1          9      6          1  473.333344     5680
## 1418          1          9      6          1  185.000000     2220
## 1419          1          9      9          3  325.000000     3900
## 1420          1          9      1          5    0.000000        0
## 1421          1          9     NA         NA    0.000000        0
## 1422          1          9     NA         NA    0.000000        0
## 1423          1          3     NA         NA    0.000000        0
## 1424          1          9      3          1  180.000000     2160
## 1425          1          4     NA         NA    0.000000        0
## 1426          1          3     NA         NA    0.000000        0
## 1427          1          3     NA         NA    0.000000        0
## 1428          1          9      3          1  220.000000     2640
## 1429          1          4     NA         NA    0.000000        0
## 1430          1          9      5          3  180.000000     2160
## 1431          1          3     NA         NA    0.000000        0
## 1432          1          9     NA         NA    0.000000        0
## 1433          1          3     NA         NA    0.000000        0
## 1434          1          9      6          3  180.000000     2160
## 1435          1          9      8          3  300.000000     3600
## 1436          1          9      6          5  220.000000     2640
## 1437          1          9      1          5    0.000000        0
## 1438          1          9      3          5  500.000000     6000
## 1439          1          9      9          3  280.000000     3360
## 1440          1          9      3          5  350.000000     4200
## 1441          1          9      3          4  200.000000     2400
## 1442          1          1     NA         NA    0.000000        0
## 1443          1          4     NA         NA    0.000000        0
## 1444          1          9      9          2  180.000000     2160
## 1445          1          9      5          2    0.000000        0
## 1446          1         10     NA         NA    0.000000        0
## 1447          1         10     NA         NA    0.000000        0
## 1448          1         10     NA         NA    0.000000        0
## 1449          1         10     NA         NA    0.000000        0
## 1450          1          3     NA         NA    0.000000        0
## 1451          1          3     NA         NA    0.000000        0
## 1452          1          9      9          5  250.000000     3000
## 1453          1          9      7          1  300.000000     3600
## 1454          1          2     NA         NA    0.000000        0
## 1455          1          9      5          1  350.000000     4200
## 1456          1          9      6          1  300.000000     3600
## 1457          1          9      5          1  500.000000     6000
## 1458          1          9     NA         NA    0.000000        0
## 1459          1          9      3          1  200.000000     2400
## 1460          1          9     NA         NA    0.000000        0
## 1461          1         NA     NA         NA    0.000000        0
## 1462          1          9      5          1  180.000000     2160
## 1463          1          9      1          1  180.000000     2160
## 1464          1          1     NA         NA    0.000000        0
## 1465          1         NA     NA         NA    0.000000        0
## 1466          1          3     NA         NA    0.000000        0
## 1467          1          3     NA         NA    0.000000        0
## 1468          1          9      3          1  200.000000     2400
## 1469          1          3     NA         NA    0.000000        0
## 1470          1          9      9          3  516.666687     6200
## 1471          1         NA     NA         NA    0.000000        0
## 1472          1          9      9          5    8.333333      100
## 1473          1          9      9          2    8.333333      100
## 1474          1         NA     NA         NA    0.000000        0
## 1475          1          9      1          5   70.000000      840
## 1476          1          9      1          5    0.000000        0
## 1477          1          9      1          4  300.000000     3600
## 1478          1          9      5          4  100.000000     1200
## 1479          1          9      1          5   50.000000      600
## 1480          1          3     NA         NA    0.000000        0
## 1481          1          9      3          1  120.000000     1440
## 1482          1          3     NA         NA    0.000000        0
## 1483          1          9      3          1  180.000000     2160
## 1484         NA          5     NA         NA    0.000000        0
## 1485          1          3     NA         NA    0.000000        0
## 1486          1          9      3          1  300.000000     3600
## 1487          1          9      3          1  290.000000     3480
## 1488          1          1     NA         NA    0.000000        0
## 1489          1          1     NA         NA    0.000000        0
## 1490          1          9      6          1  250.000000     3000
## 1491          1          9      6          1  250.000000     3000
## 1492          1          9      9          1  350.000000     4200
## 1493          1          9      4          3  400.000000     4800
## 1494          1          9      9          4   80.000000      960
## 1495          1         NA     NA         NA    0.000000        0
## 1496          1         NA     NA         NA    0.000000        0
## 1497          1          9      7          3  570.833313     6850
## 1498          1          9      9          5  350.000000     4200
## 1499          1          9      7          3  420.833344     5050
## 1500          1          3     NA         NA    0.000000        0
## 1501          1          3     NA         NA    0.000000        0
## 1502          2         NA     NA         NA    0.000000        0
## 1503          2         NA     NA         NA    0.000000        0
## 1504          1          9      9          3  334.166656     4010
## 1505          1          1     NA         NA    0.000000        0
## 1506          1          3     NA         NA    0.000000        0
## 1507          1          3     NA         NA    0.000000        0
## 1508          1          3     NA         NA    0.000000        0
## 1509          1          9      9          3  416.666656     5000
## 1510          1          1     NA         NA    0.000000        0
## 1511          1          1     NA         NA    0.000000        0
## 1512          1          9      9          5  400.000000     4800
## 1513          1          9      3          1  280.000000     3360
## 1514          1          1     NA         NA    0.000000        0
## 1515          1          9      9          3  243.166672     2918
## 1516          1         NA     NA         NA    0.000000        0
## 1517          1          9      5          1  800.000000     9600
## 1518          1          2     NA         NA    0.000000        0
## 1519          1         NA     NA         NA    0.000000        0
## 1520          1          9     NA         NA    0.000000        0
## 1521          1          3     NA         NA    0.000000        0
## 1522         NA          7     NA         NA    0.000000        0
## 1523          1          4     NA         NA    0.000000        0
## 1524          1          8     NA         NA    0.000000        0
## 1525          1          8     NA         NA    0.000000        0
## 1526          1          9      1          5    0.000000        0
## 1527          1          3     NA         NA    0.000000        0
## 1528          1          9      1          5    0.000000        0
## 1529          1          4     NA         NA    0.000000        0
## 1530          2         NA     NA         NA    0.000000        0
## 1531          2         NA     NA         NA    0.000000        0
## 1532          1         NA     NA         NA    0.000000        0
## 1533          1         NA     NA         NA    0.000000        0
## 1534          2         NA     NA         NA    0.000000        0
## 1535          2         NA     NA         NA    0.000000        0
## 1536          2         NA     NA         NA    0.000000        0
## 1537          1          3     NA         NA    0.000000        0
## 1538          1          3     NA         NA    0.000000        0
## 1539          1          9      9          1  283.333344     3400
## 1540          1          9     NA         NA    0.000000        0
## 1541          1         NA     NA         NA    0.000000        0
## 1542          1         NA     NA         NA    0.000000        0
## 1543          1          9      9          3  121.916664     1463
## 1544          1          9      9          1  220.000000     2640
## 1545          1          2     NA         NA    0.000000        0
## 1546          1         NA     NA         NA    0.000000        0
## 1547          1          9      1          5  200.000000     2400
## 1548          1          9      7          3  220.833328     2650
## 1549          1         NA     NA         NA    0.000000        0
## 1550          1         NA     NA         NA    0.000000        0
## 1551          1          9     NA         NA    0.000000        0
## 1552          1          3     NA         NA    0.000000        0
## 1553          1         NA     NA         NA    0.000000        0
## 1554          1          9      1          5    0.000000        0
## 1555          1          3     NA         NA    0.000000        0
## 1556          1          3     NA         NA    0.000000        0
## 1557          1          9      9          3  222.166672     2666
## 1558          1          9      1          5  180.000000     2160
## 1559          1         NA     NA         NA    0.000000        0
## 1560          1          9      7          3  308.333344     3700
## 1561          1          9      6          3  180.000000     2160
## 1562          1          3     NA         NA    0.000000        0
## 1563          1          9      3          1  230.000000     2760
## 1564          1          9      7          3  300.000000     3600
## 1565          1          9      9          3  325.000000     3900
## 1566          1          9      9          3  541.666687     6500
## 1567          1          9      1          5    0.000000        0
## 1568         NA          6      1          5    0.000000        0
## 1569          1          9      1          5    0.000000        0
## 1570          1          9      9          3  240.000000     2880
## 1571          1          9      3          2  265.000000     3180
## 1572          1         NA     NA         NA    0.000000        0
## 1573          1          3     NA         NA    0.000000        0
## 1574          1          9      9          2  180.000000     2160
## 1575          1          3     NA         NA    0.000000        0
## 1576          1          3     NA         NA    0.000000        0
## 1577          1          3     NA         NA    0.000000        0
## 1578          1          9      1          5    0.000000        0
## 1579          1          9      9          3  180.000000     2160
## 1580          1          9      7          3  300.000000     3600
## 1581          1          1     NA         NA    0.000000        0
## 1582          1          3     NA         NA    0.000000        0
## 1583          2         NA     NA         NA    0.000000        0
## 1584          1         NA     NA         NA    0.000000        0
## 1585          1          3     NA         NA    0.000000        0
## 1586          1          9      5          1 1200.000000    14400
## 1587          1          9      3          5  100.000000     1200
## 1588          1          9      3          5  100.000000     1200
## 1589          1         NA     NA         NA    0.000000        0
## 1590          1          3     NA         NA    0.000000        0
## 1591          1          9      1          5    0.000000        0
## 1592          1          9      1          5    0.000000        0
## 1593          1         NA     NA         NA    0.000000        0
## 1594          1         NA     NA         NA    0.000000        0
## 1595          1          9      9          3  208.000000     2496
## 1596          1          3     NA         NA    0.000000        0
## 1597         NA          7      1          5 1000.000000    12000
## 1598          1          2     NA         NA    0.000000        0
## 1599          1         NA     NA         NA    0.000000        0
## 1600          1         NA     NA         NA    0.000000        0
## 1601          1          9      9          3  368.333344     4420
## 1602          1          3     NA         NA    0.000000        0
## 1603          1          1     NA         NA    0.000000        0
## 1604          1          9      6          1  300.000000     3600
## 1605          1          9      9          1  180.000000     2160
## 1606          1          9      3          3  210.000000     2520
## 1607          1         10     NA         NA    0.000000        0
## 1608          1          9      3          1  300.000000     3600
## 1609          1          9      9          5    0.000000        0
## 1610          1          4     NA         NA    0.000000        0
## 1611          1          9      1          5    0.000000        0
## 1612          1          9      5          1  300.000000     3600
## 1613          1          9      1          5    0.000000        0
## 1614          1          9      1          5    0.000000        0
## 1615          1          9      1          5    0.000000        0
## 1616          1          3     NA         NA    0.000000        0
## 1617          1          9      9          3  350.000000     4200
## 1618          1          9      9          3  580.833313     6970
## 1619          1          9      1          5    0.000000        0
## 1620          1          1     NA         NA    0.000000        0
## 1621          1         NA     NA         NA    0.000000        0
## 1622          1          9      9          4  350.000000     4200
## 1623          1          9      9          3  180.000000     2160
## 1624          1          9      7          3  220.000000     2640
## 1625          1          9      1          5    0.000000        0
## 1626          1          9      5          1  350.000000     4200
## 1627          1          9      5          1  250.000000     3000
## 1628          1          9      5          1  280.000000     3360
## 1629          1          9      1          5  100.000000     1200
## 1630          1          3     NA         NA    0.000000        0
## 1631          1          3     NA         NA    0.000000        0
## 1632          1          9      6          1  400.000000     4800
## 1633          1          9      3          1  362.500000     4350
## 1634          1          9      3          1  298.333344     3580
## 1635          1          9      5          1  300.000000     3600
## 1636          1          9      7          1  300.000000     3600
## 1637          1          9      3          1  300.000000     3600
## 1638          1          9      1          5    0.000000        0
## 1639          1          9      1          5    0.000000        0
## 1640          1          9      1          5    0.000000        0
## 1641          1          9      1          5    0.000000        0
## 1642          1          9      1          5    0.000000        0
## 1643          2         NA     NA         NA    0.000000        0
## 1644          1         10     NA         NA    0.000000        0
## 1645          1         NA     NA         NA    0.000000        0
## 1646          1          9      8          5  500.000000     6000
## 1647          1          9      9          3  300.000000     3600
## 1648          2         NA     NA         NA    0.000000        0
## 1649          1         NA     NA         NA    0.000000        0
## 1650          1         NA     NA         NA    0.000000        0
## 1651          1          3     NA         NA    0.000000        0
## 1652          1          3     NA         NA    0.000000        0
## 1653          1          3     NA         NA    0.000000        0
## 1654          1          9      8          3  390.000000     4680
## 1655          1          9      6          1  260.000000     3120
## 1656          1          9      1          5    0.000000        0
## 1657          1          9      1          5    0.000000        0
## 1658          1          9      7          3  408.333344     4900
## 1659          1          9      3          3  250.000000     3000
## 1660          1          9      9          1  100.000000     1200
## 1661          1          3     NA         NA    0.000000        0
## 1662          1          3     NA         NA    0.000000        0
## 1663          1          9      1          5  250.000000     3000
## 1664          1          9      1          5    0.000000        0
## 1665          1          9      3          4  300.000000     3600
## 1666          1          9      1          5    0.000000        0
## 1667          1          9      1          5    0.000000        0
## 1668          1          3     NA         NA    0.000000        0
## 1669          1          9      5          1    0.000000        0
## 1670          1          9      6          1    0.000000        0
## 1671          1          9      6          1    0.000000        0
## 1672          1          1     NA         NA    0.000000        0
## 1673          1          2     NA         NA    0.000000        0
## 1674          1          2     NA         NA    0.000000        0
## 1675          1          9      3          3  783.333313     9400
## 1676          1         NA     NA         NA    0.000000        0
## 1677          1          3     NA         NA    0.000000        0
## 1678          1          3     NA         NA    0.000000        0
## 1679          1          9      7          1 1008.333313    12100
## 1680          1          9      9          1  210.000000     2520
## 1681          1          2     NA         NA    0.000000        0
## 1682          1          9      6          1  280.000000     3360
## 1683          1          3     NA         NA    0.000000        0
## 1684          1          9      9          5  150.000000     1800
## 1685          1          9      1          5    0.000000        0
## 1686          1          9      7          3  600.000000     7200
## 1687          1          9      9          5    0.000000        0
## 1688          1         NA     NA         NA    0.000000        0
## 1689          1          9      1          5    0.000000        0
## 1690          1          9      1          2    0.000000        0
## 1691          1          9      5          1  350.000000     4200
## 1692          2         NA     NA         NA    0.000000        0
## 1693          1         NA     NA         NA    0.000000        0
## 1694          1         NA     NA         NA    0.000000        0
## 1695          1          9      5          1  300.000000     3600
## 1696          2         NA     NA         NA    0.000000        0
## 1697          1         NA     NA         NA    0.000000        0
## 1698          2         NA     NA         NA    0.000000        0
## 1699          2         NA     NA         NA    0.000000        0
## 1700          1          9      5          1   80.000000      960
## 1701          1          9      3          1  250.000000     3000
## 1702          1          9      7          1  400.000000     4800
## 1703          1          9      3          1  500.000000     6000
## 1704          1          9      3          1  400.000000     4800
## 1705          1          1     NA         NA    0.000000        0
## 1706          1          3     NA         NA    0.000000        0
## 1707          1          3     NA         NA    0.000000        0
## 1708          1          9      7          3  300.000000     3600
## 1709          1          4     NA         NA    0.000000        0
## 1710          1          9      9          3  184.166672     2210
## 1711          1          9      1          5    0.000000        0
## 1712          1         NA     NA         NA    0.000000        0
## 1713          1          3     NA         NA    0.000000        0
## 1714          1          9      3          5  300.000000     3600
## 1715          1          3     NA         NA    0.000000        0
## 1716          1          9      4          1  280.000000     3360
## 1717          1          9      9          3  220.000000     2640
## 1718          1          1     NA         NA    0.000000        0
## 1719          1         NA     NA         NA    0.000000        0
## 1720          1          3     NA         NA    0.000000        0
## 1721          1          9      6          5  300.000000     3600
## 1722          1          1     NA         NA    0.000000        0
## 1723          1          1     NA         NA    0.000000        0
## 1724          1          3     NA         NA    0.000000        0
## 1725          1          3     NA         NA    0.000000        0
## 1726          1          3     NA         NA    0.000000        0
## 1727          1          3     NA         NA    0.000000        0
## 1728          1          9      9          3  416.666656     5000
## 1729          1          9      3          1  250.000000     3000
## 1730          1          3     NA         NA    0.000000        0
## 1731          1          9      5          4  300.000000     3600
## 1732         NA          7     NA         NA    0.000000        0
## 1733          1         NA     NA         NA    0.000000        0
## 1734          1         NA     NA         NA    0.000000        0
## 1735          1          9      1          5    0.000000        0
## 1736          1          9      1          5    0.000000        0
## 1737          1          9      9          3  256.666656     3080
## 1738          1          4     NA         NA    0.000000        0
## 1739          1          9      1          5    0.000000        0
## 1740          1          9      1          5    0.000000        0
## 1741          1          9      4          3  226.000000     2712
## 1742          1          9      9          3  264.166656     3170
## 1743          1          9      9          3  284.166656     3410
## 1744          1         NA     NA         NA    0.000000        0
## 1745          1          9      3          1  420.000000     5040
## 1746          1          9      9          3  200.000000     2400
## 1747          1          1     NA         NA    0.000000        0
## 1748          1          4     NA         NA    0.000000        0
## 1749          1          9      5          1  350.000000     4200
## 1750          1         NA     NA         NA    0.000000        0
## 1751          1          9      5          1  350.000000     4200
## 1752          1          9      5          1  390.000000     4680
## 1753          1          9      6          5  200.000000     2400
## 1754          1          3     NA         NA    0.000000        0
## 1755          1          9      6          5  300.000000     3600
## 1756          1          9      6          5  200.000000     2400
## 1757          1         NA     NA         NA    0.000000        0
## 1758          1          3     NA         NA    0.000000        0
## 1759          1         NA     NA         NA    0.000000        0
## 1760          1          9      1          5    0.000000        0
## 1761          1          9      6          3   90.000000     1080
## 1762          1          9      1          5    0.000000        0
## 1763          1          3     NA         NA    0.000000        0
## 1764          1          9     NA         NA    0.000000        0
## 1765          1          9      1          3  325.000000     3900
## 1766          1          9      3          1  180.000000     2160
## 1767          1         NA     NA         NA    0.000000        0
## 1768          1         NA     NA         NA    0.000000        0
## 1769          1          9      9          4  500.000000     6000
## 1770          1          9     NA         NA    0.000000        0
## 1771          1         NA     NA         NA    0.000000        0
## 1772          1         NA     NA         NA    0.000000        0
## 1773          1          9      6          5  397.500000     4770
## 1774          1          9      7          3  245.000000     2940
## 1775          1          1     NA         NA    0.000000        0
## 1776          1          3     NA         NA    0.000000        0
## 1777          1          3     NA         NA    0.000000        0
## 1778          1          3     NA         NA    0.000000        0
## 1779          1          3     NA         NA    0.000000        0
## 1780         NA          7     NA         NA    0.000000        0
## 1781          1         10     NA         NA    0.000000        0
## 1782          1          9      3          5  360.000000     4320
## 1783          1          9      9          2  180.000000     2160
## 1784          1          9     NA         NA    0.000000        0
## 1785          1         NA     NA         NA    0.000000        0
## 1786          1          9     NA         NA    0.000000        0
## 1787          1          9      1          5    0.000000        0
## 1788          1          9     NA         NA    0.000000        0
## 1789          1          9      5          1  180.000000     2160
## 1790          1         NA     NA         NA    0.000000        0
## 1791          1         10     NA         NA    0.000000        0
## 1792          1          9      1          5    0.000000        0
## 1793          1          3     NA         NA    0.000000        0
## 1794          1          9      5          1  300.000000     3600
## 1795          1          9      1          5    0.000000        0
## 1796          1          9      9          2  100.000000     1200
## 1797          1          9      1          5    0.000000        0
## 1798          1          3     NA         NA    0.000000        0
## 1799          1          9      5          1  260.000000     3120
## 1800          1          3     NA         NA    0.000000        0
## 1801          1          1     NA         NA    0.000000        0
## 1802          1          1     NA         NA    0.000000        0
## 1803          1          9      3          1  380.000000     4560
## 1804          1          9      3          1  300.000000     3600
## 1805          1          1     NA         NA    0.000000        0
## 1806          1          9      3          1  350.000000     4200
## 1807          2         NA     NA         NA    0.000000        0
## 1808          1          9      1          5    0.000000        0
## 1809          1          9      2          1  512.500000     6150
## 1810          1          9      2          1  312.500000     3750
## 1811          1          9      2          1  312.500000     3750
## 1812          1          8     NA         NA    0.000000        0
## 1813          1          9      9          3  295.000000     3540
## 1814          1          9      7          3  350.000000     4200
## 1815          1          1     NA         NA    0.000000        0
## 1816          1          1     NA         NA    0.000000        0
## 1817          1          9      9          3  310.000000     3720
## 1818          1          1     NA         NA    0.000000        0
## 1819          1          9      5          1  516.666687     6200
## 1820          1          2     NA         NA    0.000000        0
## 1821          1         NA     NA         NA    0.000000        0
## 1822          1         NA     NA         NA    0.000000        0
## 1823          1          3     NA         NA    0.000000        0
## 1824          1          3     NA         NA    0.000000        0
## 1825          2         NA     NA         NA    0.000000        0
## 1826          2         NA     NA         NA    0.000000        0
## 1827          1         NA     NA         NA    0.000000        0
## 1828          1         NA     NA         NA    0.000000        0
## 1829          1          8     NA         NA    0.000000        0
## 1830          1          9      3          1  300.000000     3600
## 1831          1          9      6          5  300.000000     3600
## 1832          1         NA     NA         NA    0.000000        0
## 1833          1         NA     NA         NA    0.000000        0
## 1834          1          3     NA         NA    0.000000        0
## 1835          1          9      8          1 1208.333374    14500
## 1836          1          9      9          5 1500.000000    18000
## 1837          1          9      9          5  600.000000     7200
## 1838          1          9      8          1  613.333313     7360
## 1839          1         NA     NA         NA    0.000000        0
## 1840          1          3     NA         NA    0.000000        0
## 1841          1          3     NA         NA    0.000000        0
## 1842          1          9      6          4  150.000000     1800
## 1843          1          2     NA         NA    0.000000        0
## 1844          1          8     NA         NA    0.000000        0
## 1845          1          9     NA         NA    0.000000        0
## 1846          2         NA     NA         NA    0.000000        0
## 1847          1         NA     NA         NA    0.000000        0
## 1848          1         NA     NA         NA    0.000000        0
## 1849          1          9      3          1  220.000000     2640
## 1850          1          9      9          3  327.333344     3928
## 1851          1          9      9          1  180.000000     2160
## 1852          1          1     NA         NA    0.000000        0
## 1853          1          3     NA         NA    0.000000        0
## 1854          1          3     NA         NA    0.000000        0
## 1855          1          9      5          1  230.000000     2760
## 1856          2         NA     NA         NA    0.000000        0
## 1857          1          9      5          1  300.000000     3600
## 1858          1          9      9          3   80.000000      960
## 1859          1          9      9          2   35.000000      420
## 1860          1          9      9          2   35.000000      420
## 1861          1         NA     NA         NA    0.000000        0
## 1862          1          9      5          1  260.000000     3120
## 1863          1          9      1          5    0.000000        0
## 1864          1          9      5          1  180.000000     2160
## 1865          2         NA     NA         NA    0.000000        0
## 1866          1          3     NA         NA    0.000000        0
## 1867          1          3     NA         NA    0.000000        0
## 1868          1          9     NA         NA    0.000000        0
## 1869          1          9      4          3  570.000000     6840
## 1870          1          9      3          1  400.000000     4800
## 1871          1         NA     NA         NA    0.000000        0
## 1872          1          9      4          3  390.000000     4680
## 1873          1          9      6          1  170.000000     2040
## 1874          1          1     NA         NA    0.000000        0
## 1875          1          9      5          1  600.000000     7200
## 1876          1          9      3          3  268.333344     3220
## 1877          1         NA     NA         NA    0.000000        0
## 1878          1         NA     NA         NA    0.000000        0
## 1879          1          3     NA         NA    0.000000        0
## 1880          1          9      1          5    0.000000        0
## 1881          1          9      1          4  180.000000     2160
## 1882          1          9      1          4  220.000000     2640
## 1883          1          8     NA         NA    0.000000        0
## 1884          2         NA     NA         NA    0.000000        0
## 1885          2         NA     NA         NA    0.000000        0
## 1886          1          9      3          1  200.000000     2400
## 1887          2         NA     NA         NA    0.000000        0
## 1888          1         NA     NA         NA    0.000000        0
## 1889          1         NA     NA         NA    0.000000        0
## 1890          1          9      5          2  168.000000     2016
## 1891          1          9     NA         NA    0.000000        0
## 1892          1         NA     NA         NA    0.000000        0
## 1893          1         NA     NA         NA    0.000000        0
## 1894          1          3     NA         NA    0.000000        0
## 1895          1          3     NA         NA    0.000000        0
## 1896          1          3     NA         NA    0.000000        0
## 1897          1          9      1          4  180.000000     2160
## 1898          1          9      1          4  180.000000     2160
## 1899          1         NA     NA         NA    0.000000        0
## 1900          1          2     NA         NA    0.000000        0
## 1901          1         NA     NA         NA    0.000000        0
## 1902          1          3     NA         NA    0.000000        0
## 1903          1          4     NA         NA    0.000000        0
## 1904          1          9      1          5    0.000000        0
## 1905          1          4     NA         NA    0.000000        0
## 1906          1          9      6          4  180.000000     2160
## 1907          1          9      7          1  230.000000     2760
## 1908          1          9      3          1  190.000000     2280
## 1909          1          3     NA         NA    0.000000        0
## 1910          1          3     NA         NA    0.000000        0
## 1911          1         NA     NA         NA    0.000000        0
## 1912          1          9      1          1  180.000000     2160
## 1913          1          9      1          2  180.000000     2160
## 1914          1          9      1          2  180.000000     2160
## 1915         NA          7     NA         NA    0.000000        0
## 1916         NA          7     NA         NA    0.000000        0
## 1917          1          8     NA         NA    0.000000        0
## 1918          1          9      2          1  170.000000     2040
## 1919          2         NA     NA         NA    0.000000        0
## 1920          2         NA     NA         NA    0.000000        0
## 1921          2         NA     NA         NA    0.000000        0
## 1922          2         NA     NA         NA    0.000000        0
## 1923          2         NA     NA         NA    0.000000        0
## 1924         NA          5     NA         NA    0.000000        0
## 1925          1          9      5          1  350.000000     4200
## 1926          1          9      5          1  300.000000     3600
## 1927          1          9      6          1  700.000000     8400
## 1928          1          9      7          1  700.000000     8400
## 1929          2         NA     NA         NA    0.000000        0
## 1930          1          9      1          5  150.000000     1800
## 1931          1          9      1          5  150.000000     1800
## 1932          1          9      1          5  150.000000     1800
## 1933          1          9      1          5  150.000000     1800
## 1934          1         NA     NA         NA    0.000000        0
## 1935          1          9      9          3  500.000000     6000
## 1936          1          9      6          4  200.000000     2400
## 1937          1         NA     NA         NA    0.000000        0
## 1938         NA          7     NA         NA    0.000000        0
## 1939          1          9      5          1  350.000000     4200
## 1940         NA          7      1          5    0.000000        0
## 1941          1          9      7          1  200.000000     2400
## 1942          1          9      3          1  180.000000     2160
## 1943          1         NA     NA         NA    0.000000        0
## 1944          1         NA     NA         NA    0.000000        0
## 1945          1          9      1          5    0.000000        0
## 1946          1          3     NA         NA    0.000000        0
## 1947          1          9      1          5    0.000000        0
## 1948          1          9      1          5    0.000000        0
## 1949          1          9      9          3  253.333328     3040
## 1950          1          9      9          3  197.500000     2370
## 1951          1         NA     NA         NA    0.000000        0
## 1952          1          3     NA         NA    0.000000        0
## 1953          1          9      9          3  450.000000     5400
## 1954          1          3     NA         NA    0.000000        0
## 1955          1          9      5          4  250.000000     3000
## 1956          1          2     NA         NA    0.000000        0
## 1957          1         NA     NA         NA    0.000000        0
## 1958          1         NA     NA         NA    0.000000        0
## 1959          1          3     NA         NA    0.000000        0
## 1960          1          1     NA         NA    0.000000        0
## 1961          1          9      6          5 2000.000000    24000
## 1962          1          9      9          3  270.000000     3240
## 1963          1         NA     NA         NA    0.000000        0
## 1964          1          9      5          1 1200.000000    14400
## 1965          1          2     NA         NA    0.000000        0
## 1966          1         NA     NA         NA    0.000000        0
## 1967          1          3     NA         NA    0.000000        0
## 1968          1          9      9          3  500.000000     6000
## 1969          2         NA     NA         NA    0.000000        0
## 1970          1          9      7          1  500.000000     6000
## 1971          1          9     NA         NA    0.000000        0
## 1972          1         NA     NA         NA    0.000000        0
## 1973          1         NA     NA         NA    0.000000        0
## 1974          1          3     NA         NA    0.000000        0
## 1975          1          3     NA         NA    0.000000        0
## 1976          1          9      1          5    0.000000        0
## 1977          1          9      5          4  300.000000     3600
## 1978          1          2     NA         NA    0.000000        0
## 1979          1         NA     NA         NA    0.000000        0
## 1980          1          3     NA         NA    0.000000        0
## 1981          1          4     NA         NA    0.000000        0
## 1982          1          9      1          1  100.000000     1200
## 1983          1          9      3          1  200.000000     2400
## 1984          1          8     NA         NA    0.000000        0
## 1985          1          3     NA         NA    0.000000        0
## 1986          1          9      7          5  200.000000     2400
## 1987          1          9      9          3  250.000000     3000
## 1988          1         NA     NA         NA    0.000000        0
## 1989          1          3     NA         NA    0.000000        0
## 1990          1          9      5          1  350.000000     4200
## 1991          1          9      9          3  200.000000     2400
## 1992          1         NA     NA         NA    0.000000        0
## 1993          1          9      5          1 1800.000000    21600
## 1994          1          9      1          5   50.000000      600
## 1995          1         NA     NA         NA    0.000000        0
## 1996          1          3     NA         NA    0.000000        0
## 1997          1          3     NA         NA    0.000000        0
## 1998          1          3     NA         NA    0.000000        0
## 1999          1          3     NA         NA    0.000000        0
## 2000          1          3     NA         NA    0.000000        0
## 2001          1          3     NA         NA    0.000000        0
## 2002          1          3     NA         NA    0.000000        0
## 2003          1          9      1          5    0.000000        0
## 2004          1          9      4          2  135.000000     1620
## 2005          1          9     NA         NA    0.000000        0
## 2006          1          9     NA         NA    0.000000        0
## 2007          1          9      4          2  180.000000     2160
## 2008          2         NA     NA         NA    0.000000        0
## 2009          1          3     NA         NA    0.000000        0
## 2010          1          3     NA         NA    0.000000        0
## 2011          1          3     NA         NA    0.000000        0
## 2012          1          9      3          3  516.666687     6200
## 2013          1          9      3          1  404.166656     4850
## 2014          1          9      3          1  508.333344     6100
## 2015          1          9      6          1  300.000000     3600
## 2016          1          9      9          3  186.666672     2240
## 2017          1          9      9          3  186.666672     2240
## 2018          1         NA     NA         NA    0.000000        0
## 2019          1          9      1          5    0.000000        0
## 2020          1          9      1          5    0.000000        0
## 2021          2         NA     NA         NA    0.000000        0
## 2022          1          4     NA         NA    0.000000        0
## 2023          1          9      1          5    0.000000        0
## 2024          1          9      1          4  700.000000     8400
## 2025          1          9      1          4  600.000000     7200
## 2026          1          9      6          5  180.000000     2160
## 2027          1          3     NA         NA    0.000000        0
## 2028          1          9      9          1  300.000000     3600
## 2029          1          4     NA         NA    0.000000        0
## 2030          1          9      1          5    0.000000        0
## 2031          1          9      6          1    0.000000        0
## 2032          1          9      1          1    8.333333      100
## 2033          1          9      5          1  350.000000     4200
## 2034          1          9      6          3  210.000000     2520
## 2035          1         NA     NA         NA    0.000000        0
## 2036          1         NA     NA         NA    0.000000        0
## 2037          1          3     NA         NA    0.000000        0
## 2038          1          9     NA         NA    0.000000        0
## 2039          1          9      9          1  292.500000     3510
## 2040          1          9      6          4    0.000000        0
## 2041          1         NA     NA         NA    0.000000        0
## 2042          1          9      3          1  180.000000     2160
## 2043          1          9      9          3  600.000000     7200
## 2044          1          3     NA         NA    0.000000        0
## 2045          1          1     NA         NA    0.000000        0
## 2046          1          9      9          1  462.500000     5550
## 2047          2         NA     NA         NA    0.000000        0
## 2048          1         NA     NA         NA    0.000000        0
## 2049          1          9      1          5    0.000000        0
## 2050          1          9      1          5  300.000000     3600
## 2051          1          9      1          5    0.000000        0
## 2052          1          9      6          1    0.000000        0
## 2053          1          9      1          5   50.000000      600
## 2054          1          9      1          5    0.000000        0
## 2055          1          9      5          4  500.000000     6000
## 2056          1          9      1          5    0.000000        0
## 2057          1          9      1          5    0.000000        0
## 2058          1          9      6          5  350.000000     4200
## 2059          1          9      6          5  500.000000     6000
## 2060          1          9      1          1  300.000000     3600
## 2061          1          9      1          5    0.000000        0
## 2062          2         NA     NA         NA    0.000000        0
## 2063          1          9      6          4  250.000000     3000
## 2064          1          9      6          4  250.000000     3000
## 2065          1         NA     NA         NA    0.000000        0
## 2066          1          3     NA         NA    0.000000        0
## 2067          1          3     NA         NA    0.000000        0
## 2068          1          9      6          1  300.000000     3600
## 2069          1          9      1          5    0.000000        0
## 2070          1          9      7          1  250.000000     3000
## 2071          1          9      6          1  300.000000     3600
## 2072          1          1     NA         NA    0.000000        0
## 2073          1          9      5          4  300.000000     3600
## 2074          1          9      1          5    0.000000        0
## 2075          1          9      1          5    0.000000        0
## 2076          1          9      1          5 1500.000000    18000
## 2077          1          2     NA         NA    0.000000        0
## 2078          1         NA     NA         NA    0.000000        0
## 2079          1          9      1          5    0.000000        0
## 2080          1          9      1          5    0.000000        0
## 2081          1          3     NA         NA    0.000000        0
## 2082          1          9      1          5    0.000000        0
## 2083          1          9      1          5    0.000000        0
## 2084          1          9      6          5  700.000000     8400
## 2085          1          3     NA         NA    0.000000        0
## 2086          1          9     NA         NA    0.000000        0
## 2087          1          9      6          1  174.166672     2090
## 2088          1          9      1          5    0.000000        0
## 2089          1          9      9          3  541.666687     6500
## 2090          1          9      6          1  400.000000     4800
## 2091          1         NA     NA         NA    0.000000        0
## 2092          1          9      1          3    0.000000        0
## 2093          1          9      1          5  150.000000     1800
## 2094          1          9      7          1  400.000000     4800
## 2095          1         NA     NA         NA    0.000000        0
## 2096          1          9      1          5  250.000000     3000
## 2097          1          9      1          5    0.000000        0
## 2098          1          9      1          5    0.000000        0
## 2099          1          3     NA         NA    0.000000        0
## 2100          1          9      1          5    0.000000        0
## 2101          1          9      1          5    0.000000        0
## 2102          1          9      4          3  204.166672     2450
## 2103          1          9      1          5    0.000000        0
## 2104          1          9      9          3  200.000000     2400
## 2105          1          9      3          1  200.000000     2400
## 2106          1          9      1          5    0.000000        0
## 2107          1          9      1          5    0.000000        0
## 2108          1          9      6          5  250.000000     3000
## 2109          1          9      6          5  250.000000     3000
## 2110          1          9      1          5    0.000000        0
## 2111          1          3     NA         NA    0.000000        0
## 2112          1          9     NA         NA    0.000000        0
## 2113          1          9     NA         NA    0.000000        0
## 2114          1          3     NA         NA    0.000000        0
## 2115          1          3     NA         NA    0.000000        0
## 2116          1          9      3          1  200.000000     2400
## 2117          1          9      7          1  300.000000     3600
## 2118          1          3     NA         NA    0.000000        0
## 2119          1          9      9          1  180.000000     2160
## 2120          1         NA     NA         NA    0.000000        0
## 2121          1          9     NA         NA    0.000000        0
## 2122          1          9     NA         NA    0.000000        0
## 2123          1          9      6          5  400.000000     4800
## 2124          1          9     NA         NA    0.000000        0
## 2125          1          9      1          5    0.000000        0
## 2126          1          3     NA         NA    0.000000        0
## 2127          1          9      3          3    0.000000        0
## 2128          1          9      3          1    0.000000        0
## 2129          1          9      1          4  400.000000     4800
## 2130          1          2     NA         NA    0.000000        0
## 2131          1         NA     NA         NA    0.000000        0
## 2132          2         NA     NA         NA    0.000000        0
## 2133          1          9      3          1  190.000000     2280
## 2134          1          9      8          2  232.000000     2784
## 2135          1          9      3          1  280.000000     3360
## 2136          1          9      5          1  250.000000     3000
## 2137          2         NA     NA         NA    0.000000        0
## 2138          1          9      6          1  300.000000     3600
## 2139          1          3     NA         NA    0.000000        0
## 2140          1          3     NA         NA    0.000000        0
## 2141          1          9      3          5  200.000000     2400
## 2142          1          9      6          2  180.000000     2160
## 2143          1          3     NA         NA    0.000000        0
## 2144          2         NA     NA         NA    0.000000        0
## 2145          1          9      3          1  250.000000     3000
## 2146          2         NA     NA         NA    0.000000        0
## 2147          1          3     NA         NA    0.000000        0
## 2148          1          9      3          1  270.000000     3240
## 2149          1          9      3          1  270.000000     3240
## 2150         NA          5     NA         NA    0.000000        0
## 2151          1          9     NA         NA    0.000000        0
## 2152          1          3     NA         NA    0.000000        0
## 2153          1          9      3          1  180.000000     2160
## 2154          1          8     NA         NA    0.000000        0
## 2155          1          9      9          1  180.000000     2160
## 2156          1          9      6          1  180.000000     2160
## 2157          1          9      3          1  484.166656     5810
## 2158          1          9      3          1  424.166656     5090
## 2159          1          9      6          1  354.166656     4250
## 2160          1          9      3          1  250.000000     3000
## 2161          1         NA     NA         NA    0.000000        0
## 2162          2         NA     NA         NA    0.000000        0
## 2163          1          9      6          1  210.000000     2520
## 2164          1          2     NA         NA    0.000000        0
## 2165          1          9      6          3  180.000000     2160
## 2166          1         NA     NA         NA    0.000000        0
## 2167          1          9      1          5  250.000000     3000
## 2168          1          9      1          5  200.000000     2400
## 2169          1          1     NA         NA    0.000000        0
## 2170          1          3     NA         NA    0.000000        0
## 2171          1          9      3          1  415.000000     4980
## 2172          1          9      9          3  192.500000     2310
## 2173          1         NA     NA         NA    0.000000        0
## 2174          1          3     NA         NA    0.000000        0
## 2175          1          9      7          1  500.000000     6000
## 2176          1          9      9          5  300.000000     3600
## 2177          1         NA     NA         NA    0.000000        0
## 2178          1          3     NA         NA    0.000000        0
## 2179          1          4     NA         NA    0.000000        0
## 2180         NA          7     NA         NA    0.000000        0
## 2181          2         NA     NA         NA    0.000000        0
## 2182          1         NA     NA         NA    0.000000        0
## 2183          1         NA     NA         NA    0.000000        0
## 2184          1         NA     NA         NA    0.000000        0
## 2185          1          3     NA         NA    0.000000        0
## 2186         NA          6     NA         NA    0.000000        0
## 2187          1          9      1          5  120.000000     1440
## 2188          1          9      1          5  120.000000     1440
## 2189          1          9      1          5  250.000000     3000
## 2190          1          3     NA         NA    0.000000        0
## 2191          1          9      1          5  600.000000     7200
## 2192          1          9      1          5  400.000000     4800
## 2193          1         NA     NA         NA    0.000000        0
## 2194          1         NA     NA         NA    0.000000        0
## 2195          1          3     NA         NA    0.000000        0
## 2196          1          9      3          1  420.000000     5040
## 2197          1          9      3          1  400.000000     4800
## 2198          1          1     NA         NA    0.000000        0
## 2199          1         NA     NA         NA    0.000000        0
## 2200          1          9      9          1  345.000000     4140
## 2201          1          3     NA         NA    0.000000        0
## 2202          1          9      3          5  500.000000     6000
## 2203          1          9      3          5  500.000000     6000
## 2204          1         NA     NA         NA    0.000000        0
## 2205          1          9      5          1  350.000000     4200
## 2206          1          9      3          1  215.000000     2580
## 2207          1          1     NA         NA    0.000000        0
## 2208          1          1     NA         NA    0.000000        0
## 2209          1          9     NA         NA    0.000000        0
## 2210          1          8     NA         NA    0.000000        0
## 2211          1          8     NA         NA    0.000000        0
## 2212          1          8     NA         NA    0.000000        0
## 2213          1         NA     NA         NA    0.000000        0
## 2214          1         NA     NA         NA    0.000000        0
## 2215          1          9      8          3    0.000000        0
## 2216          1          9      9          3    0.000000        0
## 2217          1          9      6          4    0.000000        0
## 2218          1          8     NA         NA    0.000000        0
## 2219          1          3     NA         NA    0.000000        0
## 2220          1          9      9          3  180.000000     2160
## 2221          2         NA     NA         NA    0.000000        0
## 2222          1          9      1          5    0.000000        0
## 2223          1          9      1          2  100.000000     1200
## 2224          1          9      3          1  240.000000     2880
## 2225          1          9      1          5  100.000000     1200
## 2226          1          9      1          5  100.000000     1200
## 2227          1          4     NA         NA    0.000000        0
## 2228          1          9      9          5  900.000000    10800
## 2229          1          9     NA         NA    0.000000        0
## 2230          1         NA     NA         NA    0.000000        0
## 2231          1          9      5          2   36.000000      432
## 2232          1          9      5          2   36.000000      432
## 2233          1          9      1          5    0.000000        0
## 2234          1          9      4          2   36.000000      432
## 2235          1          9      4          2   36.000000      432
## 2236          1          9     NA         NA    0.000000        0
## 2237          1          4     NA         NA    0.000000        0
## 2238          1          9      9          3  180.000000     2160
## 2239          1          9      3          1  300.000000     3600
## 2240          1          9      9          3  200.000000     2400
## 2241          1          9      3          1  312.500000     3750
## 2242          1          9      1          5  600.000000     7200
## 2243          1          3     NA         NA    0.000000        0
## 2244          1          9      1          1  491.666656     5900
## 2245          1          9      1          5  120.000000     1440
## 2246          1         NA     NA         NA    0.000000        0
## 2247          1         NA     NA         NA    0.000000        0
## 2248          1          3     NA         NA    0.000000        0
## 2249          1          3     NA         NA    0.000000        0
## 2250          1          9      3          1  300.000000     3600
## 2251          1          9      6          1  200.000000     2400
## 2252          1          9      6          1  516.666687     6200
## 2253          1          9     NA         NA    0.000000        0
## 2254          1          3     NA         NA    0.000000        0
## 2255          1          9      5          1  300.000000     3600
## 2256          1          9      1          5    0.000000        0
## 2257          1          1     NA         NA    0.000000        0
## 2258          1         NA     NA         NA    0.000000        0
## 2259          1          9      3          1  300.000000     3600
## 2260          1          1     NA         NA    0.000000        0
## 2261          1          1     NA         NA    0.000000        0
## 2262          1          9      4          1  180.000000     2160
## 2263          1          9      3          1  308.333344     3700
## 2264          1          1     NA         NA    0.000000        0
## 2265          1          3     NA         NA    0.000000        0
## 2266          1          9      1          1  475.000000     5700
## 2267          1          9      1          5  150.000000     1800
## 2268          1          1     NA         NA    0.000000        0
## 2269          1          1     NA         NA    0.000000        0
## 2270          1          2     NA         NA    0.000000        0
## 2271          1          3     NA         NA    0.000000        0
## 2272          1          3     NA         NA    0.000000        0
## 2273          1          3     NA         NA    0.000000        0
## 2274          1          9      1          5    0.000000        0
## 2275          1          9      1          5    0.000000        0
## 2276          1         NA     NA         NA    0.000000        0
## 2277          1         NA     NA         NA    0.000000        0
## 2278          1         NA     NA         NA    0.000000        0
## 2279          1         NA     NA         NA    0.000000        0
## 2280          2         NA     NA         NA    0.000000        0
## 2281          1         10     NA         NA    0.000000        0
## 2282          1         NA     NA         NA    0.000000        0
## 2283          1         NA     NA         NA    0.000000        0
## 2284          1         NA     NA         NA    0.000000        0
## 2285          1          9      3          1  576.666687     6920
## 2286          1          9      6          1  300.000000     3600
## 2287          1         NA     NA         NA    0.000000        0
## 2288          1          9      1          5    0.000000        0
## 2289          1          9      6          1  200.000000     2400
## 2290          1          9     NA         NA    0.000000        0
## 2291          1          9      6          1  180.000000     2160
## 2292          1          3     NA         NA    0.000000        0
## 2293          1          9      6          1  180.000000     2160
## 2294          1          9      3          1  220.000000     2640
## 2295          1         NA     NA         NA    0.000000        0
## 2296          1         NA     NA         NA    0.000000        0
## 2297          1          9      5          1  325.000000     3900
## 2298          1          9      6          1  308.333344     3700
## 2299          1          9      6          1  200.000000     2400
## 2300          1          9      1          3  300.000000     3600
## 2301          1          9     NA         NA    0.000000        0
## 2302          1          9      6          1  300.000000     3600
## 2303          1          9     NA         NA    0.000000        0
## 2304          1          9     NA         NA    0.000000        0
## 2305          1          9      9          3  386.666656     4640
## 2306          1          3     NA         NA    0.000000        0
## 2307          1          9      8          3  350.000000     4200
## 2308          1          9      9          3  270.000000     3240
## 2309          1          9      9          3  240.000000     2880
## 2310          1          1     NA         NA    0.000000        0
## 2311          2         NA     NA         NA    0.000000        0
## 2312          1          2     NA         NA    0.000000        0
## 2313          1         NA     NA         NA    0.000000        0
## 2314          1          9      3          1  320.000000     3840
## 2315          1          9      3          1  220.000000     2640
## 2316          1          9      6          1  350.000000     4200
## 2317          1          9      6          1  260.000000     3120
## 2318          1          9      4          1  316.666656     3800
## 2319          1          4     NA         NA    0.000000        0
## 2320          1         NA     NA         NA    0.000000        0
## 2321          1          9      1          4  100.000000     1200
## 2322          1          9      1          1  541.666687     6500
## 2323          1          9      9          3  275.000000     3300
## 2324          1         NA     NA         NA    0.000000        0
## 2325          1          9      8          1  391.666656     4700
## 2326          1          9      3          3  172.500000     2070
## 2327          1          3     NA         NA    0.000000        0
## 2328          1          3     NA         NA    0.000000        0
## 2329          1         10     NA         NA    0.000000        0
## 2330          1          2     NA         NA    0.000000        0
## 2331          1         NA     NA         NA    0.000000        0
## 2332          1         NA     NA         NA    0.000000        0
## 2333          1          3     NA         NA    0.000000        0
## 2334          1          9      9          3  391.666656     4700
## 2335          1          9      8          1  325.000000     3900
## 2336          1          3     NA         NA    0.000000        0
## 2337          1          3     NA         NA    0.000000        0
## 2338          1          9      3          5  220.000000     2640
## 2339          1          9      3          5  180.000000     2160
## 2340          1          9      3          5  200.000000     2400
## 2341          1          1     NA         NA    0.000000        0
## 2342          1          4     NA         NA    0.000000        0
## 2343          1          2     NA         NA    0.000000        0
## 2344          1          9      9          3  180.000000     2160
## 2345          1          3     NA         NA    0.000000        0
## 2346          1          9      5          1  350.000000     4200
## 2347          1          3     NA         NA    0.000000        0
## 2348          2         NA     NA         NA    0.000000        0
## 2349          1          3     NA         NA    0.000000        0
## 2350          1          8     NA         NA    0.000000        0
## 2351          1          9      3          1  550.000000     6600
## 2352         NA          6     NA         NA    0.000000        0
## 2353          1         NA     NA         NA    0.000000        0
## 2354          1          9      5          1  666.666687     8000
## 2355          1          9      9          3  441.666656     5300
## 2356          1         NA     NA         NA    0.000000        0
## 2357          1          9      1          4  170.000000     2040
## 2358          1          3     NA         NA    0.000000        0
## 2359          1          9      9          1  641.666687     7700
## 2360          1          8     NA         NA    0.000000        0
## 2361          1          8     NA         NA    0.000000        0
## 2362          1          8     NA         NA    0.000000        0
## 2363          1          8     NA         NA    0.000000        0
## 2364          1          3     NA         NA    0.000000        0
## 2365          1          3     NA         NA    0.000000        0
## 2366          1          3     NA         NA    0.000000        0
## 2367          1          9      1          5    0.000000        0
## 2368          1          9      2          1  460.000000     5520
## 2369          1          9      9          1  200.000000     2400
## 2370          1          3     NA         NA    0.000000        0
## 2371          1          3     NA         NA    0.000000        0
## 2372          1          9      3          1  200.000000     2400
## 2373          1          9     NA         NA    0.000000        0
## 2374          1          9      3          1  350.000000     4200
## 2375          1         NA     NA         NA    0.000000        0
## 2376          1         NA     NA         NA    0.000000        0
## 2377          1          3     NA         NA    0.000000        0
## 2378          1          3     NA         NA    0.000000        0
## 2379          1          3     NA         NA    0.000000        0
## 2380          1          3     NA         NA    0.000000        0
## 2381          1          9     NA         NA    0.000000        0
## 2382          1          9     NA         NA    0.000000        0
## 2383          1         NA     NA         NA    0.000000        0
## 2384          1         NA     NA         NA    0.000000        0
## 2385          1          3     NA         NA    0.000000        0
## 2386          1          3     NA         NA    0.000000        0
## 2387          1          3     NA         NA    0.000000        0
## 2388          1          9      9          3  450.000000     5400
## 2389          1          9      9          3  375.000000     4500
## 2390          2         NA     NA         NA    0.000000        0
## 2391          1          9      9          1  600.000000     7200
## 2392          1          3     NA         NA    0.000000        0
## 2393          1          9     NA         NA    0.000000        0
## 2394          1          3     NA         NA    0.000000        0
## 2395          1          9      9          3  210.000000     2520
## 2396          1          4     NA         NA    0.000000        0
## 2397          1          9      1          5    0.000000        0
## 2398          1          9      1          5    0.000000        0
## 2399          1          9      9          3   80.000000      960
## 2400          1          9      9          2  140.000000     1680
## 2401          1         10     NA         NA    0.000000        0
## 2402          1         NA     NA         NA    0.000000        0
## 2403          1          9      9          2  180.000000     2160
## 2404          1          9      9          2  180.000000     2160
## 2405          2         NA     NA         NA    0.000000        0
## 2406          1         NA     NA         NA    0.000000        0
## 2407          1         NA     NA         NA    0.000000        0
## 2408          1          3     NA         NA    0.000000        0
## 2409          1          3     NA         NA    0.000000        0
## 2410          1          3     NA         NA    0.000000        0
## 2411          1          8     NA         NA    0.000000        0
## 2412          1          4     NA         NA    0.000000        0
## 2413          1          9      6          1  450.000000     5400
## 2414          1          9      9          1  500.000000     6000
## 2415          1          1     NA         NA    0.000000        0
## 2416          1          9      8          3  700.000000     8400
## 2417          2         NA     NA         NA    0.000000        0
## 2418          2         NA     NA         NA    0.000000        0
## 2419          1         NA     NA         NA    0.000000        0
## 2420          1          9      5          1  380.000000     4560
## 2421          1          9     NA         NA    0.000000        0
## 2422          1          9     NA         NA    0.000000        0
## 2423         NA          7     NA         NA    0.000000        0
## 2424          1          9      1          5    0.000000        0
## 2425          1         10     NA         NA    0.000000        0
## 2426          1          9      1          5    0.000000        0
## 2427          1          9      1          5    0.000000        0
## 2428          1          9      1          5    0.000000        0
## 2429          1          3     NA         NA    0.000000        0
## 2430          1          9      1          4  700.000000     8400
## 2431          1          3     NA         NA    0.000000        0
## 2432          1          9      3          1  280.000000     3360
## 2433          1          8     NA         NA    0.000000        0
## 2434          2         NA     NA         NA    0.000000        0
## 2435          1          9      9          3  190.000000     2280
## 2436          1          3     NA         NA    0.000000        0
## 2437          1          3     NA         NA    0.000000        0
## 2438          1          3     NA         NA    0.000000        0
## 2439          1          3     NA         NA    0.000000        0
## 2440          1          3     NA         NA    0.000000        0
## 2441          1          9     NA         NA    0.000000        0
## 2442          1          9      4          2  169.000000     2028
## 2443          1          1     NA         NA    0.000000        0
## 2444          1         NA     NA         NA    0.000000        0
## 2445          1         NA     NA         NA    0.000000        0
## 2446          1          3     NA         NA    0.000000        0
## 2447          1          9      1          5    0.000000        0
## 2448          1          9      4          3  159.000000     1908
## 2449          1         NA     NA         NA    0.000000        0
## 2450          1         NA     NA         NA    0.000000        0
## 2451          1          9      5          3  180.000000     2160
## 2452          1          9      4          3  180.000000     2160
## 2453          1          9      1          5    0.000000        0
## 2454          1          9     NA         NA    0.000000        0
## 2455          1          9     NA         NA    0.000000        0
## 2456          1         NA     NA         NA    0.000000        0
## 2457          1          9      1          5    0.000000        0
## 2458          1          9      1          5    0.000000        0
## 2459          1          9      1          5    0.000000        0
## 2460          1          9      1          5    0.000000        0
## 2461          1          4     NA         NA    0.000000        0
## 2462          1          3     NA         NA    0.000000        0
## 2463          1          9      9          3  130.000000     1560
## 2464          1          9      1          5    0.000000        0
## 2465          1          3     NA         NA    0.000000        0
## 2466          1          3     NA         NA    0.000000        0
## 2467          1          9      5          1  850.000000    10200
## 2468          1          2     NA         NA    0.000000        0
## 2469          1          9      4          2  165.000000     1980
## 2470          1          9      3          1  200.000000     2400
## 2471          1          3     NA         NA    0.000000        0
## 2472          1          9     NA         NA    0.000000        0
## 2473          1          9      4          2  165.000000     1980
## 2474          1          9     NA         NA    0.000000        0
## 2475          1          3     NA         NA    0.000000        0
## 2476          1          3     NA         NA    0.000000        0
## 2477          1          9      9          3  300.000000     3600
## 2478          1          9      9          3  483.333344     5800
## 2479          1          9      9          4  350.000000     4200
## 2480          2         NA     NA         NA    0.000000        0
## 2481          1          9      3          1  300.000000     3600
## 2482          1          9      8          3  530.833313     6370
## 2483          1         NA     NA         NA    0.000000        0
## 2484          1          3     NA         NA    0.000000        0
## 2485          1          3     NA         NA    0.000000        0
## 2486          1          9      1          1  120.000000     1440
## 2487          1          9     NA         NA    0.000000        0
## 2488          1          9     NA         NA    0.000000        0
## 2489          1          9      3          1  180.000000     2160
## 2490          1         NA     NA         NA    0.000000        0
## 2491          1          9      9          3  345.000000     4140
## 2492          1          9      9          3  375.000000     4500
## 2493          1          1     NA         NA    0.000000        0
## 2494          1          9      9          4  120.000000     1440
## 2495          1          9      6          1  180.000000     2160
## 2496         NA          6     NA         NA    0.000000        0
## 2497          1          1     NA         NA    0.000000        0
## 2498          1          3     NA         NA    0.000000        0
## 2499          1          9      5          1  676.666687     8120
## 2500          1          2     NA         NA    0.000000        0
## 2501          1         NA     NA         NA    0.000000        0
## 2502          1         NA     NA         NA    0.000000        0
## 2503          1          9      6          1  600.000000     7200
## 2504          1          9      9          1  200.000000     2400
## 2505          1         NA     NA         NA    0.000000        0
## 2506          1          9      7          1  200.000000     2400
## 2507          1          9      9          3  250.000000     3000
## 2508          1          3     NA         NA    0.000000        0
## 2509          1          3     NA         NA    0.000000        0
## 2510          1          9      1          5    0.000000        0
## 2511          1          3     NA         NA    0.000000        0
## 2512          1          9      1          1  310.000000     3720
## 2513          1          9      3          1  250.000000     3000
## 2514          1          9      3          1  600.000000     7200
## 2515          1          9     NA         NA    0.000000        0
## 2516          1          9      3          1  230.000000     2760
## 2517          1          9     NA         NA    0.000000        0
## 2518          1          3     NA         NA    0.000000        0
## 2519          1         NA     NA         NA    0.000000        0
## 2520          1         NA     NA         NA    0.000000        0
## 2521          1          9      7          3  350.000000     4200
## 2522          1          9      3          1  320.000000     3840
## 2523          1          9      6          1  250.000000     3000
## 2524          1          9      6          1  200.000000     2400
## 2525          1          9      3          1  280.000000     3360
## 2526          1          9     NA         NA    0.000000        0
## 2527          1          9      9          3  212.500000     2550
## 2528          1          9      3          1  899.166687    10790
## 2529          1          9     NA         NA    0.000000        0
## 2530          1         NA     NA         NA    0.000000        0
## 2531          1          9      6          5  200.000000     2400
## 2532          1         NA     NA         NA    0.000000        0
## 2533          1          9      9          4  180.000000     2160
## 2534          1          9      6          4  180.000000     2160
## 2535          1          9      9          4  250.000000     3000
## 2536          1         NA     NA         NA    0.000000        0
## 2537          1          9      6          1  110.833336     1330
## 2538          1          9      5          1  500.000000     6000
## 2539          1          9      9          1  180.000000     2160
## 2540          1          9      5          1  700.000000     8400
## 2541          1          3     NA         NA    0.000000        0
## 2542          1          3     NA         NA    0.000000        0
## 2543          1          3     NA         NA    0.000000        0
## 2544          1          3     NA         NA    0.000000        0
## 2545          1          9      3          1  650.000000     7800
## 2546          1          9      1          1  258.333344     3100
## 2547          2         NA     NA         NA    0.000000        0
## 2548          1          9      1          5    0.000000        0
## 2549          1          9      1          5    0.000000        0
## 2550          1          9      5          1  325.000000     3900
## 2551          1          9      9          3  516.666687     6200
## 2552          1          1     NA         NA    0.000000        0
## 2553          1          3     NA         NA    0.000000        0
## 2554          1          9      9          1  500.000000     6000
## 2555          1          9      3          5  300.000000     3600
## 2556          1          1     NA         NA    0.000000        0
## 2557          1          3     NA         NA    0.000000        0
## 2558          1          3     NA         NA    0.000000        0
## 2559          1          9      7          1  350.000000     4200
## 2560          1          3     NA         NA    0.000000        0
## 2561          1          3     NA         NA    0.000000        0
## 2562          1          3     NA         NA    0.000000        0
## 2563          1          3     NA         NA    0.000000        0
## 2564          1          3     NA         NA    0.000000        0
## 2565          1          9      9          3  180.000000     2160
## 2566          1          3     NA         NA    0.000000        0
## 2567          1          3     NA         NA    0.000000        0
## 2568          1          9      6          1  400.000000     4800
## 2569          1          9      3          1  200.000000     2400
## 2570          1          1     NA         NA    0.000000        0
## 2571          1          9      1          5    0.000000        0
## 2572          1          9      9          3  180.000000     2160
## 2573          1          9      1          5    0.000000        0
## 2574          1          9      1          5  600.000000     7200
## 2575          1          1     NA         NA    0.000000        0
## 2576          1          3     NA         NA    0.000000        0
## 2577          1          9      5          1  200.000000     2400
## 2578          2         NA     NA         NA    0.000000        0
## 2579          1         NA     NA         NA    0.000000        0
## 2580          1          9      7          1  841.666687    10100
## 2581          1          9      6          3  216.666672     2600
## 2582          1          9     NA         NA    0.000000        0
## 2583          1          9      1          5    0.000000        0
## 2584          1          9      1          5    0.000000        0
## 2585          1          3     NA         NA    0.000000        0
## 2586          1          9      1          1  200.000000     2400
## 2587          1          9      1          5    0.000000        0
## 2588          1          9      7          3  400.000000     4800
## 2589          1          3     NA         NA    0.000000        0
## 2590          1          4     NA         NA    0.000000        0
## 2591          1          9     NA         NA    0.000000        0
## 2592          1          9     NA         NA    0.000000        0
## 2593          1          8     NA         NA    0.000000        0
## 2594          1          9      3          1  500.000000     6000
## 2595          1          9      1          4  800.000000     9600
## 2596          1          9      1          5    0.000000        0
## 2597          1          9      1          5    0.000000        0
## 2598          1          9      3          1  200.000000     2400
## 2599          1          9      6          3  230.000000     2760
## 2600          1          9     NA         NA    0.000000        0
## 2601          1          9      3          1  160.000000     1920
## 2602          1          9      9          3  310.000000     3720
## 2603          1          9      9          3  314.000000     3768
## 2604          1         10     NA         NA    0.000000        0
## 2605          1         NA     NA         NA    0.000000        0
## 2606          1          9      1          5    0.000000        0
## 2607          1          9     NA         NA    0.000000        0
## 2608          1          9     NA         NA    0.000000        0
## 2609          1          9     NA         NA    0.000000        0
## 2610          1          9     NA         NA    0.000000        0
## 2611          1          3     NA         NA    0.000000        0
## 2612          1          9      3          1  541.666687     6500
## 2613          1          2     NA         NA    0.000000        0
## 2614         NA          6     NA         NA    0.000000        0
## 2615          1          9     NA         NA    0.000000        0
## 2616          1          9      1          5    0.000000        0
## 2617         NA          7      5          1  180.000000     2160
## 2618          1          9      3          1    0.000000        0
## 2619          1          9      3          1    0.000000        0
## 2620          1          1     NA         NA    0.000000        0
## 2621          1         NA     NA         NA    0.000000        0
## 2622          1          9      5          1  304.166656     3650
## 2623          1          9      7          1  254.166672     3050
## 2624          1         NA     NA         NA    0.000000        0
## 2625          1          9      1          5    0.000000        0
## 2626          1          9      1          5    0.000000        0
## 2627          1          9      6          1  300.000000     3600
## 2628          1          9      1          3  446.666656     5360
## 2629          1          9      1          3  511.666656     6140
## 2630          1          9      1          3  281.666656     3380
## 2631          1          9      1          5    0.000000        0
## 2632          1          9      1          5    0.000000        0
## 2633          1          9     NA         NA    0.000000        0
## 2634          1          9      3          2  180.000000     2160
## 2635          2         NA     NA         NA    0.000000        0
## 2636          1          1     NA         NA    0.000000        0
## 2637          1          9      4          3  374.166656     4490
## 2638          2         NA     NA         NA    0.000000        0
## 2639          1          9      9          4  180.000000     2160
## 2640          1          3     NA         NA    0.000000        0
## 2641          1          3     NA         NA    0.000000        0
## 2642          1          9      1          5    0.000000        0
## 2643          1          9      1          5    0.000000        0
## 2644          1          9      3          1  304.166656     3650
## 2645          1          9      9          2  170.000000     2040
## 2646          1          9      9          2  130.000000     1560
## 2647          1          9      9          1  250.000000     3000
## 2648          1          9      9          3  741.666687     8900
## 2649          1          2     NA         NA    0.000000        0
## 2650          1          1     NA         NA    0.000000        0
## 2651          1          9      9          3  522.500000     6270
## 2652          1          3     NA         NA    0.000000        0
## 2653          1          3     NA         NA    0.000000        0
## 2654          1          3     NA         NA    0.000000        0
## 2655          2         NA     NA         NA    0.000000        0
## 2656          1          9      1          5  220.000000     2640
## 2657          1          9      1          5    0.000000        0
## 2658          1          9      1          4   50.000000      600
## 2659          1          9      1          4   50.000000      600
## 2660          1          9      5          1  400.000000     4800
## 2661          1          9      6          1  250.000000     3000
## 2662          1          9      5          1  350.000000     4200
## 2663          1          1     NA         NA    0.000000        0
## 2664          1         NA     NA         NA    0.000000        0
## 2665          1          9      7          5 1500.000000    18000
## 2666          1          9      7          5  900.000000    10800
## 2667          1          9      7          5  900.000000    10800
## 2668          1          9      7          5  900.000000    10800
## 2669          1          9      5          1  580.000000     6960
## 2670          1          9      9          3  238.333328     2860
## 2671          1         NA     NA         NA    0.000000        0
## 2672          1          9      1          5    0.000000        0
## 2673          1          9      9          1  300.000000     3600
## 2674          1          3     NA         NA    0.000000        0
## 2675          1          3     NA         NA    0.000000        0
## 2676          1          9      1          1  250.000000     3000
## 2677          1          9      1          5    0.000000        0
## 2678          1          9      3          1  180.000000     2160
## 2679          1          9     NA         NA    0.000000        0
## 2680          1         NA     NA         NA    0.000000        0
## 2681          1          3     NA         NA    0.000000        0
## 2682          1          9      5          1  800.000000     9600
## 2683          1          9      1          5    0.000000        0
## 2684          1          9      3          1  250.000000     3000
## 2685          1          9      5          1  800.000000     9600
## 2686          1         10     NA         NA    0.000000        0
## 2687          1         NA     NA         NA    0.000000        0
## 2688          1          9      9          2   35.000000      420
## 2689          1          9      5          1  600.000000     7200
## 2690          1          9      5          1  600.000000     7200
## 2691          1          9      9          3   90.000000     1080
## 2692          1         NA     NA         NA    0.000000        0
## 2693          1          3     NA         NA    0.000000        0
## 2694          1          9      1          5    0.000000        0
## 2695          1          9      1          5    0.000000        0
## 2696          1          9      5          1  516.666687     6200
## 2697          1          9      9          3  308.333344     3700
## 2698          1          9      1          5    0.000000        0
## 2699          2         NA     NA         NA    0.000000        0
## 2700          1          9      1          5    0.000000        0
## 2701          1          3     NA         NA    0.000000        0
## 2702          1          3     NA         NA    0.000000        0
## 2703          1          9      3          1  416.666656     5000
## 2704          2         NA     NA         NA    0.000000        0
## 2705          1          9      7          1  400.000000     4800
## 2706          1          1     NA         NA    0.000000        0
## 2707          1          9      1          2  140.000000     1680
## 2708          1          9      1          2  140.000000     1680
## 2709          2         NA     NA         NA    0.000000        0
## 2710          1          9      1          2  140.000000     1680
## 2711          1          9      9          1  250.000000     3000
## 2712          1          9      7          3  220.000000     2640
## 2713          1          9     NA         NA    0.000000        0
## 2714          1         NA     NA         NA    0.000000        0
## 2715          1          4     NA         NA    0.000000        0
## 2716          1          9      3          1  160.000000     1920
## 2717          1         10     NA         NA    0.000000        0
## 2718          1          9      9          3  150.000000     1800
## 2719          1         NA     NA         NA    0.000000        0
## 2720          1          9      5          1  160.000000     1920
## 2721          1          9      6          1  180.000000     2160
## 2722          1          9      3          1  500.000000     6000
## 2723          1          3     NA         NA    0.000000        0
## 2724          1          3     NA         NA    0.000000        0
## 2725          1          3     NA         NA    0.000000        0
## 2726          1          9      1          5    0.000000        0
## 2727          1          9      6          5  420.000000     5040
## 2728          1          1     NA         NA    0.000000        0
## 2729          1          1     NA         NA    0.000000        0
## 2730          1          9      1          5    0.000000        0
## 2731          1          9      1          5    0.000000        0
## 2732          1          3     NA         NA    0.000000        0
## 2733          1          3     NA         NA    0.000000        0
## 2734          1          9      1          5    0.000000        0
## 2735          1          2     NA         NA    0.000000        0
## 2736          1         NA     NA         NA    0.000000        0
## 2737          2         NA     NA         NA    0.000000        0
## 2738          2         NA     NA         NA    0.000000        0
## 2739          2         NA     NA         NA    0.000000        0
## 2740          1          9      9          4  300.000000     3600
## 2741          1         NA     NA         NA    0.000000        0
## 2742          2         NA     NA         NA    0.000000        0
## 2743          1          3     NA         NA    0.000000        0
## 2744          1          9      1          5    0.000000        0
## 2745          1          9      1          5    0.000000        0
## 2746          1          9      5          1  400.000000     4800
## 2747          1          9      7          3  252.500000     3030
## 2748          1          1     NA         NA    0.000000        0
## 2749          1          9      7          5  300.000000     3600
## 2750          1          9      6          5  400.000000     4800
## 2751          1          9      6          1  200.000000     2400
## 2752          1          9      6          5    0.000000        0
## 2753          1          9      1          4    0.000000        0
## 2754          1          9      1          1  200.000000     2400
## 2755          1          9      3          1  300.000000     3600
## 2756          1          9      3          1  300.000000     3600
## 2757          1         NA     NA         NA    0.000000        0
## 2758          1          9      9          3  150.000000     1800
## 2759          1          9      3          1  200.000000     2400
## 2760          1          3     NA         NA    0.000000        0
## 2761          1          9      1          4  800.000000     9600
## 2762          1          9      1          4  700.000000     8400
## 2763          1         NA     NA         NA    0.000000        0
## 2764          1          3     NA         NA    0.000000        0
## 2765          1          3     NA         NA    0.000000        0
## 2766          1          9      5          5 2640.000000    31680
## 2767          1          3     NA         NA    0.000000        0
## 2768          1          1     NA         NA    0.000000        0
## 2769          1         NA     NA         NA    0.000000        0
## 2770          1          9      8          5  900.000000    10800
## 2771          1          9      8          1  400.000000     4800
## 2772          1          1     NA         NA    0.000000        0
## 2773          1         NA     NA         NA    0.000000        0
## 2774          1          9      1          3  180.000000     2160
## 2775          1          9     NA         NA    0.000000        0
## 2776          2         NA     NA         NA    0.000000        0
## 2777          2         NA     NA         NA    0.000000        0
## 2778          1         NA     NA         NA    0.000000        0
## 2779          1         NA     NA         NA    0.000000        0
## 2780          1          9      9          3  300.000000     3600
## 2781          1          9      9          1  260.000000     3120
## 2782          1          1     NA         NA    0.000000        0
## 2783          1          3     NA         NA    0.000000        0
## 2784          1          9      9          1  300.000000     3600
## 2785          1          9      1          1  180.000000     2160
## 2786          1         NA     NA         NA    0.000000        0
## 2787         NA          6      1          4  600.000000     7200
## 2788          1          2     NA         NA    0.000000        0
## 2789          1         NA     NA         NA    0.000000        0
## 2790          1         NA     NA         NA    0.000000        0
## 2791          2         NA     NA         NA    0.000000        0
## 2792          1          3     NA         NA    0.000000        0
## 2793          1          9      9          5 1000.000000    12000
## 2794          1          9      9          5 1000.000000    12000
## 2795          1         NA     NA         NA    0.000000        0
## 2796          1          3     NA         NA    0.000000        0
## 2797          1          9      1          5    0.000000        0
## 2798          1          3     NA         NA    0.000000        0
## 2799          1          3     NA         NA    0.000000        0
## 2800          1          3     NA         NA    0.000000        0
## 2801          1          9     NA         NA    0.000000        0
## 2802          1          4     NA         NA    0.000000        0
## 2803          1          9      9          1  184.166672     2210
## 2804          1          9      9          3  205.000000     2460
## 2805          1          3     NA         NA    0.000000        0
## 2806          1          9      9          1  400.000000     4800
## 2807          1          9      6          5  400.000000     4800
## 2808          1         NA     NA         NA    0.000000        0
## 2809          1          3     NA         NA    0.000000        0
## 2810          1          9      1          5    0.000000        0
## 2811          1          9      3          1  200.000000     2400
## 2812          1          9      9          2  100.000000     1200
## 2813          1         10     NA         NA    0.000000        0
## 2814          2         NA     NA         NA    0.000000        0
## 2815          2         NA     NA         NA    0.000000        0
## 2816          1          9      5          1  358.333344     4300
## 2817          1          9      9          3  312.500000     3750
## 2818          1         NA     NA         NA    0.000000        0
## 2819          1          1     NA         NA    0.000000        0
## 2820          1         10     NA         NA    0.000000        0
## 2821          1          9      1          5    0.000000        0
## 2822          1          9      1          5    0.000000        0
## 2823          1         NA     NA         NA    0.000000        0
## 2824          1         NA     NA         NA    0.000000        0
## 2825          1         NA     NA         NA    0.000000        0
## 2826          1          3     NA         NA    0.000000        0
## 2827          1          9      3          1  180.000000     2160
## 2828          1          2     NA         NA    0.000000        0
## 2829          1         NA     NA         NA    0.000000        0
## 2830          1          9      1          5  100.000000     1200
## 2831          1          9      9          3  203.000000     2436
## 2832          1          9      7          1 1000.000000    12000
## 2833          2         NA     NA         NA    0.000000        0
## 2834          1          1     NA         NA    0.000000        0
## 2835          1          9      1          1  250.000000     3000
## 2836          1          3     NA         NA    0.000000        0
## 2837          1          2     NA         NA    0.000000        0
## 2838          1          1     NA         NA    0.000000        0
## 2839          1         NA     NA         NA    0.000000        0
## 2840          1          9     NA         NA    0.000000        0
## 2841          1          9     NA         NA    0.000000        0
## 2842          1          9      9          3  150.000000     1800
## 2843          1          3     NA         NA    0.000000        0
## 2844          1          9      3          1    0.000000        0
## 2845          1          9      3          1  400.000000     4800
## 2846          1          9      5          1 1200.000000    14400
## 2847          1          9      3          1  228.333328     2740
## 2848          1          9      5          1  200.000000     2400
## 2849          1          9     NA         NA    0.000000        0
## 2850          1         NA     NA         NA    0.000000        0
## 2851          1          9      9          1  250.000000     3000
## 2852          2         10     NA         NA    0.000000        0
## 2853          1          1     NA         NA    0.000000        0
## 2854          1          1     NA         NA    0.000000        0
## 2855          1          3     NA         NA    0.000000        0
## 2856          1          3     NA         NA    0.000000        0
## 2857          1          9      5          1  250.000000     3000
## 2858          1          9      3          1  200.000000     2400
## 2859          2         NA     NA         NA    0.000000        0
## 2860          2         NA     NA         NA    0.000000        0
## 2861          1          3     NA         NA    0.000000        0
## 2862          1          3     NA         NA    0.000000        0
## 2863          1          9      9          3  377.000000     4524
## 2864          1          9      7          3  173.333328     2080
## 2865          1          3     NA         NA    0.000000        0
## 2866          2         NA     NA         NA    0.000000        0
## 2867          1          4     NA         NA    0.000000        0
## 2868          1          4     NA         NA    0.000000        0
## 2869          1          3     NA         NA    0.000000        0
## 2870          1          9      1          5    0.000000        0
## 2871          1          9      7          1  500.000000     6000
## 2872          1          9      1          5    0.000000        0
## 2873          1         NA     NA         NA    0.000000        0
## 2874          1          9      7          1  230.000000     2760
## 2875          1          9      1          5    0.000000        0
## 2876          1          9      3          1  312.500000     3750
## 2877          1          9      3          1  362.500000     4350
## 2878          1          3     NA         NA    0.000000        0
## 2879          1          9      1          5   60.000000      720
## 2880          1          9      1          5   60.000000      720
## 2881          1          3     NA         NA    0.000000        0
## 2882          1          9      9          3  180.000000     2160
## 2883          1          9      1          5    0.000000        0
## 2884          1          9      1          5    0.000000        0
## 2885          1          9      1          5    0.000000        0
## 2886          1          9      1          5    0.000000        0
## 2887          1          9      5          1  300.000000     3600
## 2888          1          9      1          5    0.000000        0
## 2889          1          9     NA         NA    0.000000        0
## 2890          1          9      3          1  200.000000     2400
## 2891          1         NA     NA         NA    0.000000        0
## 2892          1         NA     NA         NA    0.000000        0
## 2893          1          9      9          3  458.333344     5500
## 2894          1          9      9          3  328.333344     3940
## 2895          1         NA     NA         NA    0.000000        0
## 2896          1          9      1          5    0.000000        0
## 2897          1         NA     NA         NA    0.000000        0
## 2898          1          9      1          5    0.000000        0
## 2899          1          9      9          3  300.000000     3600
## 2900          1          9      3          1  268.333344     3220
## 2901          1          9      3          1  300.000000     3600
## 2902          1          9      3          1  300.000000     3600
## 2903          1          9      3          1  300.000000     3600
## 2904          1          9      4          2   90.000000     1080
## 2905          1          9      3          1  180.000000     2160
## 2906          1          9      6          5  250.000000     3000
## 2907          1          9      9          3  252.500000     3030
## 2908          1         NA     NA         NA    0.000000        0
## 2909          1          9      4          1  396.666656     4760
## 2910          1          3     NA         NA    0.000000        0
## 2911          1          3     NA         NA    0.000000        0
## 2912          1          3     NA         NA    0.000000        0
## 2913          1          2     NA         NA    0.000000        0
## 2914          1          9      9          3 1200.000000    14400
## 2915          1          1     NA         NA    0.000000        0
## 2916          1         NA     NA         NA    0.000000        0
## 2917          1          9      1          5    0.000000        0
## 2918          1          9      1          5    0.000000        0
## 2919          1          9      3          4  300.000000     3600
## 2920          1          9      9          3  200.000000     2400
## 2921          1         NA     NA         NA    0.000000        0
## 2922          1          9      1          4  200.000000     2400
## 2923          1          2     NA         NA    0.000000        0
## 2924          1         NA     NA         NA    0.000000        0
## 2925          1          9      1          4  200.000000     2400
## 2926          1          3     NA         NA    0.000000        0
## 2927          1          9      3          1  350.000000     4200
## 2928          1          2     NA         NA    0.000000        0
## 2929          1         NA     NA         NA    0.000000        0
## 2930          1          9      8          5  300.000000     3600
## 2931          1          9      3          1  240.000000     2880
## 2932          1          9      8          5  200.000000     2400
## 2933          1          9      8          5  200.000000     2400
## 2934          1          3     NA         NA    0.000000        0
## 2935          1          3     NA         NA    0.000000        0
## 2936          1          9      8          5  400.000000     4800
## 2937          1          9      3          1  300.000000     3600
## 2938          1          1     NA         NA    0.000000        0
## 2939          1         NA     NA         NA    0.000000        0
## 2940          1         NA     NA         NA    0.000000        0
## 2941          1          3     NA         NA    0.000000        0
## 2942          1          3     NA         NA    0.000000        0
## 2943          1          3     NA         NA    0.000000        0
## 2944          1          3     NA         NA    0.000000        0
## 2945          1          9      9          1  180.000000     2160
## 2946          1          9      9          3  230.000000     2760
## 2947          1          9      1          5  230.000000     2760
## 2948          1          9      1          5  230.000000     2760
## 2949          2         NA     NA         NA    0.000000        0
## 2950          1          9      3          1  180.000000     2160
## 2951          1          9      3          1  300.000000     3600
## 2952          1          9      3          3  244.166672     2930
## 2953          1          9      5          1  240.000000     2880
## 2954          1          9      6          1 1250.000000    15000
## 2955          1          9      8          1  516.666687     6200
## 2956          1          1     NA         NA    0.000000        0
## 2957          1          3     NA         NA    0.000000        0
## 2958          1          9      9          5  300.000000     3600
## 2959          1          2     NA         NA    0.000000        0
## 2960          1          3     NA         NA    0.000000        0
## 2961          1          9      9          3  114.000000     1368
## 2962          1          3     NA         NA    0.000000        0
## 2963          1          3     NA         NA    0.000000        0
## 2964          1          9      6          5  100.000000     1200
## 2965         NA          7     NA         NA    0.000000        0
## 2966          1          9      4          3  560.000000     6720
## 2967          1          9      9          3  220.000000     2640
## 2968          1          1     NA         NA    0.000000        0
## 2969          1          1     NA         NA    0.000000        0
## 2970          1         NA     NA         NA    0.000000        0
## 2971          1          2     NA         NA    0.000000        0
## 2972          1          2     NA         NA    0.000000        0
## 2973          1          9      9          3  300.000000     3600
## 2974          1          3     NA         NA    0.000000        0
## 2975          1          4     NA         NA    0.000000        0
## 2976          1          9      1          5    0.000000        0
## 2977          1          3     NA         NA    0.000000        0
## 2978          1          3     NA         NA    0.000000        0
## 2979          1          9      9          3  405.833344     4870
## 2980          1          9      9          3  243.333328     2920
## 2981          1         NA     NA         NA    0.000000        0
## 2982          1          9      3          1  616.666687     7400
## 2983          2         NA     NA         NA    0.000000        0
## 2984          1          1     NA         NA    0.000000        0
## 2985          1          9      9          1  604.166687     7250
## 2986          1          9      8          1  650.000000     7800
## 2987          1          1     NA         NA    0.000000        0
## 2988          1         NA     NA         NA    0.000000        0
## 2989          1          3     NA         NA    0.000000        0
## 2990          1          3     NA         NA    0.000000        0
## 2991          1          9      7          1 2000.000000    24000
## 2992          1          9      7          1  300.000000     3600
## 2993          1          9      6          1  280.000000     3360
## 2994          1          1     NA         NA    0.000000        0
## 2995          1          9      6          1  180.000000     2160
## 2996          1          9      3          1  200.000000     2400
## 2997          1         NA     NA         NA    0.000000        0
## 2998          1          3     NA         NA    0.000000        0
## 2999          1          9      4          3  400.000000     4800
## 3000          1          9      9          3  180.000000     2160
## 3001          1          9      9          3  220.000000     2640
## 3002          1          3     NA         NA    0.000000        0
## 3003          1          9      1          5    0.000000        0
## 3004          1          9      1          5    0.000000        0
## 3005          1          9      1          5    0.000000        0
## 3006          1          3     NA         NA    0.000000        0
## 3007          1          9      8          5 1700.000000    20400
## 3008          1          9      8          5 1500.000000    18000
## 3009          1          1     NA         NA    0.000000        0
## 3010          1          1     NA         NA    0.000000        0
## 3011          1          9      1          5    0.000000        0
## 3012          1          9      1          5    0.000000        0
## 3013          1          4     NA         NA    0.000000        0
## 3014          1          9      9          3  292.500000     3510
## 3015          1          9      9          3  245.000000     2940
## 3016          1         NA     NA         NA    0.000000        0
## 3017          1          9      1          5  100.000000     1200
## 3018          1          3     NA         NA    0.000000        0
## 3019          1          3     NA         NA    0.000000        0
## 3020          1          9      5          1  500.000000     6000
## 3021          1          9      1          5  100.000000     1200
## 3022          1          9      6          1  220.000000     2640
## 3023          1          9     NA         NA    0.000000        0
## 3024          1         NA     NA         NA    0.000000        0
## 3025          1          3     NA         NA    0.000000        0
## 3026          1          3     NA         NA    0.000000        0
## 3027          1          3     NA         NA    0.000000        0
## 3028          1          9      4          1  278.333344     3340
## 3029          1          9      5          1  500.000000     6000
## 3030          1          9      6          1  200.000000     2400
## 3031          1         NA     NA         NA    0.000000        0
## 3032          1          4     NA         NA    0.000000        0
## 3033          1          9      3          1  358.333344     4300
## 3034          1          9      3          1  356.666656     4280
## 3035          1          9      3          1  406.666656     4880
## 3036          1          9      9          1  380.000000     4560
## 3037          1          9      3          1  300.000000     3600
## 3038          1          9      9          1  300.000000     3600
## 3039         NA          5     NA         NA    0.000000        0
## 3040          1          3     NA         NA    0.000000        0
## 3041          2         NA     NA         NA    0.000000        0
## 3042          1         NA     NA         NA    0.000000        0
## 3043          1          1     NA         NA    0.000000        0
## 3044          1          9      9          3  333.333344     4000
## 3045          1          9      9          3  145.833328     1750
## 3046          2         NA     NA         NA    0.000000        0
## 3047          1         NA     NA         NA    0.000000        0
## 3048          1          9      1          5    0.000000        0
## 3049          2         NA     NA         NA    0.000000        0
## 3050          2         NA     NA         NA    0.000000        0
## 3051          1          9      9          1  300.000000     3600
## 3052          1          9      9          3  280.000000     3360
## 3053          1         NA     NA         NA    0.000000        0
## 3054          1          9      6          5  100.000000     1200
## 3055          1          9      9          2  180.000000     2160
## 3056          1          9      1          5   35.000000      420
## 3057          1          9      1          5    0.000000        0
## 3058          1          9      1          1  150.000000     1800
## 3059          1          9      1          5   35.000000      420
## 3060          1          3     NA         NA    0.000000        0
## 3061          1          3     NA         NA    0.000000        0
## 3062          1          3     NA         NA    0.000000        0
## 3063          1          9      6          1  220.000000     2640
## 3064          1          9      6          1  200.000000     2400
## 3065          1          9      3          1  300.000000     3600
## 3066          1          9      7          1  200.000000     2400
## 3067          1          9      9          3  200.000000     2400
## 3068          1          9      3          1  180.000000     2160
## 3069         NA          5     NA         NA    0.000000        0
## 3070          1          9      3          1  500.000000     6000
## 3071          1          3     NA         NA    0.000000        0
## 3072          1          9     NA         NA    0.000000        0
## 3073          1          9     NA         NA    0.000000        0
## 3074          1          3     NA         NA    0.000000        0
## 3075          1          3     NA         NA    0.000000        0
## 3076          1          9     NA         NA    0.000000        0
## 3077          1          9     NA         NA    0.000000        0
## 3078          1          9      9          3  332.500000     3990
## 3079          1          9      9          3  327.500000     3930
## 3080          1          3     NA         NA    0.000000        0
## 3081          1          3     NA         NA    0.000000        0
## 3082          1          9      7          3  420.833344     5050
## 3083          1          9      1          5  150.000000     1800
## 3084          1          1     NA         NA    0.000000        0
## 3085          1          1     NA         NA    0.000000        0
## 3086          1          9      7          3  420.833344     5050
## 3087          1          9      6          1  180.000000     2160
## 3088          1         NA     NA         NA    0.000000        0
## 3089          1          9      1          5    0.000000        0
## 3090          1          4     NA         NA    0.000000        0
## 3091          1          3     NA         NA    0.000000        0
## 3092          1          9      6          1  230.000000     2760
## 3093          1          9      9          3  290.000000     3480
## 3094          1          9      1          5    0.000000        0
## 3095          1          3     NA         NA    0.000000        0
## 3096          1          9     NA         NA    0.000000        0
## 3097          1          9     NA         NA    0.000000        0
## 3098          1          4     NA         NA    0.000000        0
## 3099          2         NA     NA         NA    0.000000        0
## 3100          1          9      6          3  180.000000     2160
## 3101          2         NA     NA         NA    0.000000        0
## 3102          1          9      6          1  300.000000     3600
## 3103          1         NA     NA         NA    0.000000        0
## 3104          1         NA     NA         NA    0.000000        0
## 3105          1          3     NA         NA    0.000000        0
## 3106          1          9      9          1  180.000000     2160
## 3107         NA          7     NA         NA    0.000000        0
## 3108          1          9      1          4  200.000000     2400
## 3109          1          9      5          1  250.000000     3000
## 3110          1          1     NA         NA    0.000000        0
## 3111          1          9      1          3  308.333344     3700
## 3112          1          9      3          1  300.000000     3600
## 3113          2         NA     NA         NA    0.000000        0
## 3114          1          9      9          3  336.666656     4040
## 3115          2         NA     NA         NA    0.000000        0
## 3116          1          1     NA         NA    0.000000        0
## 3117          1          9      3          1  130.000000     1560
## 3118          1          3     NA         NA    0.000000        0
## 3119          1          3     NA         NA    0.000000        0
## 3120          1          9      5          1  350.000000     4200
## 3121          1          9      1          2  250.000000     3000
## 3122          1          1     NA         NA    0.000000        0
## 3123          1         NA     NA         NA    0.000000        0
## 3124          1          9      9          3   50.000000      600
## 3125          1          9      1          4  364.166656     4370
## 3126          1          9      1          4  364.166656     4370
## 3127          1          9      9          4 1200.000000    14400
## 3128          2         NA     NA         NA    0.000000        0
## 3129          1         NA     NA         NA    0.000000        0
## 3130          1          3     NA         NA    0.000000        0
## 3131          1          3     NA         NA    0.000000        0
## 3132          2         NA     NA         NA    0.000000        0
## 3133          1          9      1          3  500.000000     6000
## 3134          2         NA     NA         NA    0.000000        0
## 3135          1          1     NA         NA    0.000000        0
## 3136          1          1     NA         NA    0.000000        0
## 3137          1          9      9          5  500.000000     6000
## 3138          1          9      9          5  250.000000     3000
## 3139          1          9      9          5  220.000000     2640
## 3140          1          4     NA         NA    0.000000        0
## 3141          1          9      9          1  223.333328     2680
## 3142          1          3     NA         NA    0.000000        0
## 3143          1          9      9          3   40.000000      480
## 3144          1          9      9          3  308.333344     3700
## 3145          1          9      3          3  308.333344     3700
## 3146          1          9      3          3  358.333344     4300
## 3147          1          9      3          3  308.333344     3700
## 3148          1          9      1          5    0.000000        0
## 3149          1          3     NA         NA    0.000000        0
## 3150          1          9      6          1   60.000000      720
## 3151          1          9      6          4  250.000000     3000
## 3152          1          9      3          1  350.000000     4200
## 3153          1          9      4          3  291.333344     3496
## 3154          1          9      9          3  180.000000     2160
## 3155          1          1     NA         NA    0.000000        0
## 3156          1         NA     NA         NA    0.000000        0
## 3157          1          9      4          1  825.000000     9900
## 3158          1          2     NA         NA    0.000000        0
## 3159          1         NA     NA         NA    0.000000        0
## 3160          1          9      3          1  160.000000     1920
## 3161         NA          6     NA         NA    0.000000        0
## 3162          1          9      3          1  180.000000     2160
## 3163          1          1     NA         NA    0.000000        0
## 3164          1          9      4          2   40.000000      480
## 3165          2         NA     NA         NA    0.000000        0
## 3166         NA          7     NA         NA    0.000000        0
## 3167          1          2     NA         NA    0.000000        0
## 3168          1         NA     NA         NA    0.000000        0
## 3169          1         NA     NA         NA    0.000000        0
## 3170          2         NA     NA         NA    0.000000        0
## 3171          1          3     NA         NA    0.000000        0
## 3172          1          3     NA         NA    0.000000        0
## 3173          1          3     NA         NA    0.000000        0
## 3174          1          4     NA         NA    0.000000        0
## 3175          1          9      1          5   10.000000      120
## 3176          1          3     NA         NA    0.000000        0
## 3177          1          3     NA         NA    0.000000        0
## 3178          1          9      9          1  300.000000     3600
## 3179          1          4     NA         NA    0.000000        0
## 3180          1          9      9          1  320.000000     3840
## 3181          1          9      6          1  350.000000     4200
## 3182          1         NA     NA         NA    0.000000        0
## 3183          1          9      4          3  360.000000     4320
## 3184          1          9      6          5   50.000000      600
## 3185          1          3     NA         NA    0.000000        0
## 3186          1         NA     NA         NA    0.000000        0
## 3187          1         NA     NA         NA    0.000000        0
## 3188          1          3     NA         NA    0.000000        0
## 3189          1          3     NA         NA    0.000000        0
## 3190          1          9      3          1  200.000000     2400
## 3191          1          9      3          1  200.000000     2400
## 3192          1          9      5          1  300.000000     3600
## 3193          1          9      6          5  200.000000     2400
## 3194          1          9      9          3  268.833344     3226
## 3195          1          9      4          3  300.000000     3600
## 3196          1          9      1          5    0.000000        0
## 3197          1          9     NA         NA    0.000000        0
## 3198          2         NA     NA         NA    0.000000        0
## 3199          1          9      9          3  230.000000     2760
## 3200          1         NA     NA         NA    0.000000        0
## 3201          1         NA     NA         NA    0.000000        0
## 3202          1          9      3          1  280.000000     3360
## 3203          1          9      9          3  250.000000     3000
## 3204          1          1     NA         NA    0.000000        0
## 3205          1          9      6          3  200.000000     2400
## 3206          1          9      3          1  190.000000     2280
## 3207          1         NA     NA         NA    0.000000        0
## 3208          1         NA     NA         NA    0.000000        0
## 3209          1          9      9          3  700.000000     8400
## 3210          1          9      9          3  308.333344     3700
## 3211          1         NA     NA         NA    0.000000        0
## 3212          1         NA     NA         NA    0.000000        0
## 3213          1          9      1          5   80.000000      960
## 3214          1          9     NA         NA    0.000000        0
## 3215          1          9      9          3  240.000000     2880
## 3216          1          9     NA         NA    0.000000        0
## 3217          1         NA     NA         NA    0.000000        0
## 3218          1          4     NA         NA    0.000000        0
## 3219          1          9     NA         NA    0.000000        0
## 3220          1          9      5          1  350.000000     4200
## 3221          1          9      9          5  200.000000     2400
## 3222          1          9     NA         NA    0.000000        0
## 3223          1          9     NA         NA    0.000000        0
## 3224          1          9     NA         NA    0.000000        0
## 3225          1          9     NA         NA    0.000000        0
## 3226          1         NA     NA         NA    0.000000        0
## 3227          1          9      9          3  400.000000     4800
## 3228          1          9      3          1   50.000000      600
## 3229          1          9      5          1  400.000000     4800
## 3230          1          9      6          4  180.000000     2160
## 3231          1          1     NA         NA    0.000000        0
## 3232          1          1     NA         NA    0.000000        0
## 3233          1          3     NA         NA    0.000000        0
## 3234          2         10     NA         NA    0.000000        0
## 3235          1          9      6          5  300.000000     3600
## 3236          1          9      6          1  300.000000     3600
## 3237         NA          7      3          1  180.000000     2160
## 3238          1          1     NA         NA    0.000000        0
## 3239          2         NA     NA         NA    0.000000        0
## 3240          1          3     NA         NA    0.000000        0
## 3241          1          9      1          5    0.000000        0
## 3242          1          9      1          5    0.000000        0
## 3243          1          3     NA         NA    0.000000        0
## 3244          1          9      9          3  180.000000     2160
## 3245          1          9      8          1  150.000000     1800
## 3246          1          3     NA         NA    0.000000        0
## 3247          1          9      6          3  180.000000     2160
## 3248          1          8     NA         NA    0.000000        0
## 3249          1          9      9          3  326.666656     3920
## 3250         NA          6     NA         NA    0.000000        0
## 3251          1          3     NA         NA    0.000000        0
## 3252          1          9      9          3  300.000000     3600
## 3253          1          9      9          3  600.000000     7200
## 3254         NA          6     NA         NA    0.000000        0
## 3255          1          9      7          1  404.166656     4850
## 3256          1          9      6          1  204.166672     2450
## 3257          1          9      9          1  254.166672     3050
## 3258          1          9      9          1  230.000000     2760
## 3259          1          9      6          1  180.000000     2160
## 3260          2         NA     NA         NA    0.000000        0
## 3261          1          9      6          1  300.000000     3600
## 3262          1          3     NA         NA    0.000000        0
## 3263          1          9      6          1  180.000000     2160
## 3264          1          9      9          1  362.500000     4350
## 3265          1          9      3          1  575.000000     6900
## 3266          1          3     NA         NA    0.000000        0
## 3267          1          3     NA         NA    0.000000        0
## 3268          1          9      9          3  362.500000     4350
## 3269          1         NA     NA         NA    0.000000        0
## 3270          1          9      9          3  508.333344     6100
## 3271          1         10     NA         NA    0.000000        0
## 3272          1         NA     NA         NA    0.000000        0
## 3273          1          9      3          1  404.166656     4850
## 3274          1          9      3          1  254.166672     3050
## 3275          1          9      3          1  254.166672     3050
## 3276          1          3     NA         NA    0.000000        0
## 3277          1          9      3          1 1141.666626    13700
## 3278          1          3     NA         NA    0.000000        0
## 3279          1          9      9          3  570.000000     6840
## 3280          1          9      6          1  180.000000     2160
## 3281          1         NA     NA         NA    0.000000        0
## 3282          1         NA     NA         NA    0.000000        0
## 3283          1          9      6          5  160.000000     1920
## 3284          1          9      6          5  300.000000     3600
## 3285         NA          6     NA         NA    0.000000        0
## 3286          1          9      6          1  300.000000     3600
## 3287          1          9      3          1  324.166656     3890
## 3288          1          9      9          3  333.000000     3996
## 3289          1          1     NA         NA    0.000000        0
## 3290          1          9      6          5 2000.000000    24000
## 3291          1          9      6          5 1000.000000    12000
## 3292          1          1     NA         NA    0.000000        0
## 3293          1         NA     NA         NA    0.000000        0
## 3294          1          9      1          5    0.000000        0
## 3295          1          9      9          3  293.333344     3520
## 3296          1          3     NA         NA    0.000000        0
## 3297          1          9      1          5    0.000000        0
## 3298          1          9      3          1  180.000000     2160
## 3299          1          3     NA         NA    0.000000        0
## 3300          1          3     NA         NA    0.000000        0
## 3301          1          9      3          1  180.000000     2160
## 3302          1          9      1          5    0.000000        0
## 3303          1          9      6          1  200.000000     2400
## 3304          1          9      1          5    0.000000        0
## 3305          1          3     NA         NA    0.000000        0
## 3306          1          9      6          1  600.000000     7200
## 3307          1          9      8          1  400.000000     4800
## 3308          1          9      5          1  466.666656     5600
## 3309          1          2     NA         NA    0.000000        0
## 3310          1         NA     NA         NA    0.000000        0
## 3311          1          9      6          4  450.000000     5400
## 3312          1          9      3          1  300.000000     3600
## 3313          1         NA     NA         NA    0.000000        0
## 3314          1          9      9          3  260.000000     3120
## 3315          1         NA     NA         NA    0.000000        0
## 3316          1          9      1          1  250.000000     3000
## 3317          1          9      4          3  412.500000     4950
## 3318          1          3     NA         NA    0.000000        0
## 3319          1          9      6          3 1841.666626    22100
## 3320          1          9      8          3  300.000000     3600
## 3321          1         NA     NA         NA    0.000000        0
## 3322          1         NA     NA         NA    0.000000        0
## 3323          1          9      9          3  199.166672     2390
## 3324          1          9      9          1  282.500000     3390
## 3325          1          9      3          1  302.083344     3625
## 3326          1          2     NA         NA    0.000000        0
## 3327          1         NA     NA         NA    0.000000        0
## 3328          1         NA     NA         NA    0.000000        0
## 3329          1          9     NA         NA    0.000000        0
## 3330          1          9     NA         NA    0.000000        0
## 3331          1          9      1          1  300.000000     3600
## 3332          1          9      1          1  300.000000     3600
## 3333          1          1     NA         NA    0.000000        0
## 3334          1         NA     NA         NA    0.000000        0
## 3335          1          4     NA         NA    0.000000        0
## 3336          1         10     NA         NA    0.000000        0
## 3337          1          3     NA         NA    0.000000        0
## 3338          1          9      9          3  184.166672     2210
## 3339          1          2     NA         NA    0.000000        0
## 3340          1         NA     NA         NA    0.000000        0
## 3341          1         NA     NA         NA    0.000000        0
## 3342          1          9      1          5  200.000000     2400
## 3343          1          9      9          3  312.500000     3750
## 3344          2         NA     NA         NA    0.000000        0
## 3345          1         NA     NA         NA    0.000000        0
## 3346          1          9      6          5  400.000000     4800
## 3347          1         NA     NA         NA    0.000000        0
## 3348          1          9      1          4  180.000000     2160
## 3349          1          9      1          4  180.000000     2160
## 3350          1         NA     NA         NA    0.000000        0
## 3351          1         NA     NA         NA    0.000000        0
## 3352          1          9      1          5    0.000000        0
## 3353          1          3     NA         NA    0.000000        0
## 3354          1          9      9          3  420.000000     5040
## 3355          1          9      9          3  180.000000     2160
## 3356          1         NA     NA         NA    0.000000        0
## 3357          1          9      8          1  100.000000     1200
## 3358          1          9     NA         NA    0.000000        0
## 3359          1          9      1          1  300.000000     3600
## 3360          1          9      5          1  290.000000     3480
## 3361          1          9      5          1  290.000000     3480
## 3362          1          9      9          1  200.000000     2400
## 3363          1          9      9          3  816.666687     9800
## 3364          1          1     NA         NA    0.000000        0
## 3365          1          9      3          1  800.000000     9600
## 3366          1          2     NA         NA    0.000000        0
## 3367          1         NA     NA         NA    0.000000        0
## 3368          1         NA     NA         NA    0.000000        0
## 3369          1         10     NA         NA    0.000000        0
## 3370          1         10     NA         NA    0.000000        0
## 3371          1         NA     NA         NA    0.000000        0
## 3372          1          9      9          3  200.000000     2400
## 3373          1          9     NA         NA    0.000000        0
## 3374          1          2     NA         NA    0.000000        0
## 3375          1         10     NA         NA    0.000000        0
## 3376          1         10     NA         NA    0.000000        0
## 3377          1         NA     NA         NA    0.000000        0
## 3378          1         NA     NA         NA    0.000000        0
## 3379          1          9      9          3  180.000000     2160
## 3380          1          9     NA         NA    0.000000        0
## 3381          1          9      9          3  200.000000     2400
## 3382          1          9      3          1  200.000000     2400
## 3383          1          9      5          1  200.000000     2400
## 3384         NA          6     NA         NA    0.000000        0
## 3385          1          9      9          3  500.000000     6000
## 3386          2         NA     NA         NA    0.000000        0
## 3387          1         NA     NA         NA    0.000000        0
## 3388          1         NA     NA         NA    0.000000        0
## 3389          1          9      5          1  400.000000     4800
## 3390          1          2     NA         NA    0.000000        0
## 3391          1          9      6          1  180.000000     2160
## 3392          1          9      9          2   80.000000      960
## 3393          1         NA     NA         NA    0.000000        0
## 3394          1          9      7          1  200.000000     2400
## 3395          1          9      9          3  280.000000     3360
## 3396          1          2     NA         NA    0.000000        0
## 3397          1          9     NA         NA    0.000000        0
## 3398          1          9      9          5  500.000000     6000
## 3399          1          3     NA         NA    0.000000        0
## 3400          1          9     NA         NA    0.000000        0
## 3401          1          3     NA         NA    0.000000        0
## 3402          1          3     NA         NA    0.000000        0
## 3403          1          3     NA         NA    0.000000        0
## 3404          1         NA     NA         NA    0.000000        0
## 3405          1          9      6          1  325.000000     3900
## 3406          1          3     NA         NA    0.000000        0
## 3407          1          9      6          1  300.000000     3600
## 3408          1          1     NA         NA    0.000000        0
## 3409          1          9      9          1  500.000000     6000
## 3410          1          9      6          1  300.000000     3600
## 3411          1          9      6          1  516.666687     6200
## 3412          1          9      6          1  420.833344     5050
## 3413          1          9      5          1  600.000000     7200
## 3414          1          9      6          1  305.833344     3670
## 3415          1          9      6          1  288.333344     3460
## 3416          1          1     NA         NA    0.000000        0
## 3417          1          3     NA         NA    0.000000        0
## 3418          1          3     NA         NA    0.000000        0
## 3419          1          9      7          1  520.833313     6250
## 3420          1          9      9          5  800.000000     9600
## 3421          1          9      9          5  300.000000     3600
## 3422          1         NA     NA         NA    0.000000        0
## 3423          1          3     NA         NA    0.000000        0
## 3424          1          3     NA         NA    0.000000        0
## 3425          1          9      3          1  401.666656     4820
## 3426          1          3     NA         NA    0.000000        0
## 3427          1          9      9          3  351.666656     4220
## 3428          1          9      9          1  200.000000     2400
## 3429          1          9      5          1  500.000000     6000
## 3430          1          9      3          1  180.000000     2160
## 3431          1         NA     NA         NA    0.000000        0
## 3432          1         NA     NA         NA    0.000000        0
## 3433          1          3     NA         NA    0.000000        0
## 3434          1          3     NA         NA    0.000000        0
## 3435          1          9      6          5  600.000000     7200
## 3436          1          9      1          5  250.000000     3000
## 3437          1          1     NA         NA    0.000000        0
## 3438          1         NA     NA         NA    0.000000        0
## 3439          1          9      5          1  600.000000     7200
## 3440          2         NA     NA         NA    0.000000        0
## 3441          1          1     NA         NA    0.000000        0
## 3442          1          9      1          5    0.000000        0
## 3443          2         NA     NA         NA    0.000000        0
## 3444          1          1     NA         NA    0.000000        0
## 3445          1         NA     NA         NA    0.000000        0
## 3446          1          9      3          1  400.000000     4800
## 3447          1          2     NA         NA    0.000000        0
## 3448          1         NA     NA         NA    0.000000        0
## 3449          1         NA     NA         NA    0.000000        0
## 3450         NA          7     NA         NA    0.000000        0
## 3451          1          3     NA         NA    0.000000        0
## 3452          1          9      3          1  250.000000     3000
## 3453          1          9      3          1  250.000000     3000
## 3454          1          3     NA         NA    0.000000        0
## 3455          1          3     NA         NA    0.000000        0
## 3456          1          2     NA         NA    0.000000        0
## 3457          1          3     NA         NA    0.000000        0
## 3458          1          2     NA         NA    0.000000        0
## 3459          1          3     NA         NA    0.000000        0
## 3460          2         NA     NA         NA    0.000000        0
## 3461          1          2     NA         NA    0.000000        0
## 3462          1         NA     NA         NA    0.000000        0
## 3463          1         NA     NA         NA    0.000000        0
## 3464          1          9      9          3  328.333344     3940
## 3465          1          9      5          4  500.000000     6000
## 3466          1          2     NA         NA    0.000000        0
## 3467          1         NA     NA         NA    0.000000        0
## 3468          1         NA     NA         NA    0.000000        0
## 3469          1          9      7          1 1200.000000    14400
## 3470          1          3     NA         NA    0.000000        0
## 3471          1          9      5          1  400.000000     4800
## 3472          1          1     NA         NA    0.000000        0
## 3473          1          2     NA         NA    0.000000        0
## 3474          1          9      6          1  616.666626     7400
## 3475          1          9      6          4  200.000000     2400
## 3476          1          2     NA         NA    0.000000        0
## 3477          1         NA     NA         NA    0.000000        0
## 3478          1          9      1          5  200.000000     2400
## 3479          1          9      1          5  200.000000     2400
## 3480          1          3     NA         NA    0.000000        0
## 3481          1          9      4          1  180.000000     2160
## 3482          1          9      1          5  100.000000     1200
## 3483          1         10     NA         NA    0.000000        0
## 3484          1          3     NA         NA    0.000000        0
## 3485          1          4     NA         NA    0.000000        0
## 3486          1          4     NA         NA    0.000000        0
## 3487          1          9      4          2  130.000000     1560
## 3488          1          9      5          1  170.000000     2040
## 3489          1          9      8          3  350.000000     4200
## 3490          1          9      8          3  300.000000     3600
## 3491          1          9      9          1  720.833313     8650
## 3492          1          9      5          1  200.000000     2400
## 3493          1          9     NA         NA    0.000000        0
## 3494          1          9      6          1  400.000000     4800
## 3495          1          9      6          1  200.000000     2400
## 3496          1         NA     NA         NA    0.000000        0
## 3497          1          3     NA         NA    0.000000        0
## 3498          1          3     NA         NA    0.000000        0
## 3499          1          9      5          1  300.000000     3600
## 3500          1          9      1          5  150.000000     1800
## 3501          1         NA     NA         NA    0.000000        0
## 3502          1         NA     NA         NA    0.000000        0
## 3503          1          9      1          5    0.000000        0
## 3504          1          9      3          1  250.000000     3000
## 3505          1          9      1          5    0.000000        0
## 3506          1          9      5          1  500.000000     6000
## 3507         NA          6      1          5    0.000000        0
## 3508          1          1     NA         NA    0.000000        0
## 3509          1         NA     NA         NA    0.000000        0
## 3510          1          9      1          5    0.000000        0
## 3511          1          9      1          5    0.000000        0
## 3512          1          9      3          1  230.000000     2760
## 3513          1          9      6          1  200.000000     2400
## 3514          1          9      3          1  185.000000     2220
## 3515          1          9      5          1  350.000000     4200
## 3516          1          9      3          1  300.000000     3600
## 3517          1          9      6          5  300.000000     3600
## 3518          1          9      3          1  350.000000     4200
## 3519          1          3     NA         NA    0.000000        0
## 3520          1          3     NA         NA    0.000000        0
## 3521          1          9      3          1  220.000000     2640
## 3522          1          9      1          1  220.000000     2640
## 3523          1          9      9          3  188.333328     2260
## 3524          1          2     NA         NA    0.000000        0
## 3525          1         NA     NA         NA    0.000000        0
## 3526          1          9      3          1  180.000000     2160
## 3527          1          9      1          5    0.000000        0
## 3528          2         NA     NA         NA    0.000000        0
## 3529          1         NA     NA         NA    0.000000        0
## 3530          1          3     NA         NA    0.000000        0
## 3531          1          3     NA         NA    0.000000        0
## 3532          1          9      1          5    0.000000        0
## 3533          1          4     NA         NA    0.000000        0
## 3534          1          9      9          3  200.000000     2400
## 3535          1         NA     NA         NA    0.000000        0
## 3536          1         NA     NA         NA    0.000000        0
## 3537          1          9      9          1  120.000000     1440
## 3538          1          3     NA         NA    0.000000        0
## 3539          1          9      1          5    0.000000        0
## 3540          1          4     NA         NA    0.000000        0
## 3541          1         NA     NA         NA    0.000000        0
## 3542          1         NA     NA         NA    0.000000        0
## 3543          1          3     NA         NA    0.000000        0
## 3544          1          9      5          1  300.000000     3600
## 3545          1          3     NA         NA    0.000000        0
## 3546          1          9      4          1  320.000000     3840
## 3547          1         NA     NA         NA    0.000000        0
## 3548          1          9      9          1  250.000000     3000
## 3549          1          9      1          5    0.000000        0
## 3550          1          9      6          1    0.000000        0
## 3551          1          1     NA         NA    0.000000        0
## 3552          1          3     NA         NA    0.000000        0
## 3553          2         NA     NA         NA    0.000000        0
## 3554          1          9      3          1  180.000000     2160
## 3555          1         NA     NA         NA    0.000000        0
## 3556          1          9      1          5    0.000000        0
## 3557          1          9      1          3  100.000000     1200
## 3558          1          1     NA         NA    0.000000        0
## 3559          1          3     NA         NA    0.000000        0
## 3560          1          9      5          1  184.166672     2210
## 3561         NA          7      1          5    0.000000        0
## 3562          1          9      2          1  250.000000     3000
## 3563          1          9      3          1  200.000000     2400
## 3564          1         NA     NA         NA    0.000000        0
## 3565          1          3     NA         NA    0.000000        0
## 3566          1          9      9          3  200.000000     2400
## 3567          1          9      9          1  800.000000     9600
## 3568          1          9      6          1  220.000000     2640
## 3569          1          9      9          1  250.000000     3000
## 3570          2         NA     NA         NA    0.000000        0
## 3571          1          9      9          1  246.666672     2960
## 3572          1          9      9          3  616.666687     7400
## 3573          1          3     NA         NA    0.000000        0
## 3574          1          1     NA         NA    0.000000        0
## 3575          1         NA     NA         NA    0.000000        0
## 3576          1          9      6          5  380.000000     4560
## 3577          1          9      9          3  180.000000     2160
## 3578          1          3     NA         NA    0.000000        0
## 3579          1          9      9          3  291.666656     3500
## 3580          1          9      8          1  700.000000     8400
## 3581          1         NA     NA         NA    0.000000        0
## 3582          1         NA     NA         NA    0.000000        0
## 3583          1          9      9          3  194.000000     2328
## 3584          1          9      9          3  170.000000     2040
## 3585          2         NA     NA         NA    0.000000        0
## 3586          1         NA     NA         NA    0.000000        0
## 3587          1         NA     NA         NA    0.000000        0
## 3588          1         NA     NA         NA    0.000000        0
## 3589          1          3     NA         NA    0.000000        0
## 3590          1          3     NA         NA    0.000000        0
## 3591          1          3     NA         NA    0.000000        0
## 3592          1          9      1          4  250.000000     3000
## 3593          1          9      9          3  184.000000     2208
## 3594          1          1     NA         NA    0.000000        0
## 3595         NA          6     NA         NA    0.000000        0
## 3596          1          2     NA         NA    0.000000        0
## 3597          1         NA     NA         NA    0.000000        0
## 3598          1         NA     NA         NA    0.000000        0
## 3599          1          3     NA         NA    0.000000        0
## 3600          1          9      2          1  350.000000     4200
## 3601          1          9      9          3  184.000000     2208
## 3602          1          3     NA         NA    0.000000        0
## 3603          1          3     NA         NA    0.000000        0
## 3604          1          9      1          5    0.000000        0
## 3605          1          9      9          2  180.000000     2160
## 3606          1          3     NA         NA    0.000000        0
## 3607          1          9      1          5    0.000000        0
## 3608          1          9      3          1  278.333344     3340
## 3609          1          9      1          5    0.000000        0
## 3610          1          1     NA         NA    0.000000        0
## 3611          1          9      9          3  408.333344     4900
## 3612          1          9      9          5    0.000000        0
## 3613          1          1     NA         NA    0.000000        0
## 3614          1          9      1          5    0.000000        0
## 3615          1          9      1          5    0.000000        0
## 3616          1          9      5          1  280.000000     3360
## 3617          1          9      5          1  300.000000     3600
## 3618          1          9      5          1  280.000000     3360
## 3619          1          1     NA         NA    0.000000        0
## 3620          1         NA     NA         NA    0.000000        0
## 3621          1          9      1          5    0.000000        0
## 3622          1          3     NA         NA    0.000000        0
## 3623          1          9      1          5    0.000000        0
## 3624          1          9      1          1  150.000000     1800
## 3625          1          9      6          1  400.000000     4800
## 3626          1          9      1          5    0.000000        0
## 3627          1         NA     NA         NA    0.000000        0
## 3628          1         NA     NA         NA    0.000000        0
## 3629          1          9      5          1  500.000000     6000
## 3630          1          9      9          3   30.000000      360
## 3631          1          9     NA         NA    0.000000        0
## 3632          1          9      9          3  358.333344     4300
## 3633          1          2     NA         NA    0.000000        0
## 3634          1          1     NA         NA    0.000000        0
## 3635          2         NA     NA         NA    0.000000        0
## 3636          2         NA     NA         NA    0.000000        0
## 3637          1          9      3          1  368.333344     4420
## 3638          1          9      3          1  328.333344     3940
## 3639          1         NA     NA         NA    0.000000        0
## 3640          1         NA     NA         NA    0.000000        0
## 3641          1          3     NA         NA    0.000000        0
## 3642          1          3     NA         NA    0.000000        0
## 3643          1          9      6          1  200.000000     2400
## 3644          1          9      9          1  300.000000     3600
## 3645          1          9      9          3  300.000000     3600
## 3646          1          1     NA         NA    0.000000        0
## 3647          1          9      3          1  300.000000     3600
## 3648          1          4     NA         NA    0.000000        0
## 3649          1          9      3          1  525.000000     6300
## 3650          1          9      9          3  306.666656     3680
## 3651          1          9      9          1  430.000000     5160
## 3652          1          3     NA         NA    0.000000        0
## 3653          1          9      3          1  260.000000     3120
## 3654          1          3     NA         NA    0.000000        0
## 3655          1          9      3          1  300.000000     3600
## 3656          1          9      9          1  190.000000     2280
## 3657          1         NA     NA         NA    0.000000        0
## 3658          1         NA     NA         NA    0.000000        0
## 3659          1          3     NA         NA    0.000000        0
## 3660          1          3     NA         NA    0.000000        0
## 3661          1          9      3          1  220.000000     2640
## 3662          1          9      7          3  230.000000     2760
## 3663          1          1     NA         NA    0.000000        0
## 3664          1         NA     NA         NA    0.000000        0
## 3665          1          3     NA         NA    0.000000        0
## 3666          1          3     NA         NA    0.000000        0
## 3667          1          3     NA         NA    0.000000        0
## 3668          1          3     NA         NA    0.000000        0
## 3669          1          3     NA         NA    0.000000        0
## 3670          2         NA     NA         NA    0.000000        0
## 3671          2         NA     NA         NA    0.000000        0
## 3672          1          9      3          1  300.000000     3600
## 3673          1          9      6          1   80.000000      960
## 3674          1          1     NA         NA    0.000000        0
## 3675          1          9      1          4  160.000000     1920
## 3676          1         NA     NA         NA    0.000000        0
## 3677          1         NA     NA         NA    0.000000        0
## 3678          1          3     NA         NA    0.000000        0
## 3679          1          3     NA         NA    0.000000        0
## 3680          1          3     NA         NA    0.000000        0
## 3681          1          9      7          1  150.000000     1800
## 3682          2         NA     NA         NA    0.000000        0
## 3683          1          9      1          5    0.000000        0
## 3684          1          9      1          5    0.000000        0
## 3685          2         NA     NA         NA    0.000000        0
## 3686          2         NA     NA         NA    0.000000        0
## 3687          1          9      6          5  200.000000     2400
## 3688          1          9      6          5  180.000000     2160
## 3689          1          3     NA         NA    0.000000        0
## 3690          1          9      3          1  450.000000     5400
## 3691          1          9     NA         NA    0.000000        0
## 3692          1          3     NA         NA    0.000000        0
## 3693          1          9      9          3  198.333328     2380
## 3694          1          9      4          1  450.000000     5400
## 3695          1          9      1          1  100.000000     1200
## 3696          1         NA     NA         NA    0.000000        0
## 3697          1          9      1          5    0.000000        0
## 3698          1          1     NA         NA    0.000000        0
## 3699          1          3     NA         NA    0.000000        0
## 3700          1          4     NA         NA    0.000000        0
## 3701          1          3     NA         NA    0.000000        0
## 3702          1          9      4          3  190.000000     2280
## 3703          1          9      5          1  500.000000     6000
##      hours_week hours_mnt fulltime      hhexp legacy_pension_amt
## 1            NA        NA       NA  100.04420                 NA
## 2            NA        NA       NA  100.04420                 NA
## 3            NA        NA       NA  100.04420                 NA
## 4            NA        NA       NA  342.51840                 NA
## 5            NA        NA       NA  342.51840                 NA
## 6            NA        NA       NA  109.79494                 NA
## 7            30     129.0        1  472.62714                 NA
## 8            35     150.5        1  472.62714                 NA
## 9            NA        NA       NA  221.28520                 NA
## 10           NA        NA       NA  159.14299                 NA
## 11           20      86.0        1  299.65723                 NA
## 12           12      51.6        1  299.65723                 NA
## 13           NA        NA       NA  376.70660                 NA
## 14           NA        NA       NA  376.70660                 NA
## 15           51     219.3        2  403.70822                 NA
## 16           NA        NA       NA  403.70822                 NA
## 17           NA        NA       NA  403.70822                 NA
## 18           40     172.0        2 1690.93030                 NA
## 19           40     172.0        2 1690.93030                 NA
## 20           NA        NA       NA 1690.93030                 NA
## 21           NA        NA       NA  390.34558                 NA
## 22           NA        NA       NA  390.34558                 NA
## 23           NA        NA       NA  187.28897                 NA
## 24           NA        NA       NA  187.28897                 NA
## 25           30     129.0        1  701.44232                 NA
## 26           20      86.0        1  701.44232                 NA
## 27           40     172.0        2  701.44232                 NA
## 28           NA        NA       NA  701.44232                 NA
## 29           NA        NA       NA  701.44232                 NA
## 30           NA        NA       NA  437.99924                 NA
## 31           NA        NA       NA  437.99924                 NA
## 32           54     232.2        2  437.99924                 NA
## 33           NA        NA       NA  369.65625                 NA
## 34           NA        NA       NA  369.65625                 NA
## 35           NA        NA       NA  344.08527                 NA
## 36           NA        NA       NA  344.08527                 NA
## 37           NA        NA       NA  226.93495                 NA
## 38           48     206.4        2  859.22125                 NA
## 39           NA        NA       NA  859.22125                 NA
## 40           NA        NA       NA  859.22125                 NA
## 41           NA        NA       NA  622.54553                 NA
## 42           NA        NA       NA  622.54553                 NA
## 43           NA        NA       NA  622.54553                 NA
## 44           40     172.0        2  933.39423                 NA
## 45           NA        NA       NA  933.39423                 NA
## 46           NA        NA       NA  933.39423                 NA
## 47           NA        NA       NA  933.39423                 NA
## 48           NA        NA       NA  460.71573                 NA
## 49           NA        NA       NA  460.71573                 NA
## 50           NA        NA       NA  460.71573                 NA
## 51           NA        NA       NA  267.88315                 NA
## 52           NA        NA       NA  267.88315                 NA
## 53           NA        NA       NA  267.88315                 NA
## 54           NA        NA       NA  267.88315                 NA
## 55           NA        NA       NA  267.88315                 NA
## 56           NA        NA       NA  267.88315                 NA
## 57           42     180.6        2  726.93933                 NA
## 58           40     172.0        2  726.93933                 NA
## 59           28     120.4        1  726.93933                 NA
## 60           NA        NA       NA  726.93933                 NA
## 61           NA        NA       NA  553.58014                 NA
## 62           NA        NA       NA  553.58014                 NA
## 63           40     172.0        2 1984.08777                 NA
## 64           40     172.0        2 1984.08777                 NA
## 65           NA        NA       NA 1984.08777                 NA
## 66           NA        NA       NA 1984.08777                 NA
## 67           NA        NA       NA 1984.08777                 NA
## 68           25     107.5        1  583.50934                 NA
## 69           40     172.0        2  583.50934                 NA
## 70           NA        NA       NA  583.50934                 NA
## 71           40     172.0        2  569.37738                 NA
## 72           40     172.0        2  569.37738                 NA
## 73           NA        NA       NA  569.37738                 NA
## 74           NA        NA       NA  569.37738                 NA
## 75           45     193.5        2  777.60455                 NA
## 76           NA        NA       NA  959.63806                 NA
## 77           NA        NA       NA  959.63806                 NA
## 78           NA        NA       NA  959.63806           20.00000
## 79           40     172.0        2  614.16479                 NA
## 80           40     172.0        2  614.16479                 NA
## 81           NA        NA       NA  614.16479                 NA
## 82           NA        NA       NA  614.16479                 NA
## 83           24     103.2        1  348.28180                 NA
## 84           NA        NA       NA  348.28180                 NA
## 85           NA        NA       NA  406.83841                 NA
## 86           NA        NA       NA  406.83841                 NA
## 87           70     301.0        2 1410.38977                 NA
## 88           40     172.0        2 1410.38977                 NA
## 89           NA        NA       NA 1410.38977                 NA
## 90           42     180.6        2  678.23938                 NA
## 91           NA        NA       NA  678.23938                 NA
## 92           NA        NA       NA  744.65216                 NA
## 93           NA        NA       NA  744.65216                 NA
## 94           40     172.0        2  744.65216                 NA
## 95           40     172.0        2  744.65216                 NA
## 96           25     107.5        1  744.65216                 NA
## 97           40     172.0        2  386.30624                 NA
## 98           NA        NA       NA  386.30624                 NA
## 99           NA        NA       NA  165.46175                 NA
## 100          28     120.4        1  663.78638                 NA
## 101           6      25.8        1  663.78638                 NA
## 102          NA        NA       NA  563.34900                 NA
## 103          NA        NA       NA  563.34900                 NA
## 104          NA        NA       NA  546.18408                 NA
## 105          NA        NA       NA  546.18408                 NA
## 106          NA        NA       NA  172.34801           27.00000
## 107          40     172.0        2  227.89372                 NA
## 108          NA        NA       NA  227.89372                 NA
## 109          NA        NA       NA  227.89372                 NA
## 110          NA        NA       NA  227.89372                 NA
## 111          40     172.0        2  835.77942                 NA
## 112          40     172.0        2  835.77942                 NA
## 113          NA        NA       NA  835.77942                 NA
## 114          NA        NA       NA  835.77942                 NA
## 115          50     215.0        2  219.70781                 NA
## 116          NA        NA       NA  219.70781                 NA
## 117          NA        NA       NA  538.37238                 NA
## 118          NA        NA       NA  538.37238                 NA
## 119          40     172.0        2  538.37238                 NA
## 120          NA        NA       NA  436.17148                 NA
## 121          NA        NA       NA  436.17148                 NA
## 122          40     172.0        2  508.87817                 NA
## 123          NA        NA       NA  508.87817                 NA
## 124          NA        NA       NA  508.87817                 NA
## 125          40     172.0        2  557.83490                 NA
## 126          NA        NA       NA  557.83490                 NA
## 127          60     258.0        2 1645.90698                 NA
## 128          54     232.2        2 1645.90698                 NA
## 129          NA        NA       NA 1645.90698                 NA
## 130          NA        NA       NA 1645.90698                 NA
## 131          40     172.0        2 1155.06335                 NA
## 132          48     206.4        2 1155.06335                 NA
## 133          NA        NA       NA 1155.06335                 NA
## 134          40     172.0        2  521.60919                 NA
## 135          40     172.0        2  521.60919                 NA
## 136          58     249.4        2  357.50085                 NA
## 137          20      86.0        1  357.50085                 NA
## 138          30     129.0        1  357.50085                 NA
## 139          40     172.0        2  384.73615                 NA
## 140          NA        NA       NA   64.47168                 NA
## 141          NA        NA       NA  382.24072                 NA
## 142          NA        NA       NA  382.24072                 NA
## 143          NA        NA       NA  382.24072                 NA
## 144          NA        NA       NA  382.24072                 NA
## 145          NA        NA       NA  382.24072                 NA
## 146          NA        NA       NA  382.24072                 NA
## 147          NA        NA       NA  290.43973                 NA
## 148          NA        NA       NA  290.43973                 NA
## 149          NA        NA       NA  290.43973                 NA
## 150          NA        NA       NA  290.43973                 NA
## 151          NA        NA       NA  290.43973                 NA
## 152          NA        NA       NA  290.43973                 NA
## 153          NA        NA       NA  290.43973                 NA
## 154          NA        NA       NA  361.30399                 NA
## 155          NA        NA       NA  361.30399                 NA
## 156          NA        NA       NA  118.90894           25.00000
## 157          NA        NA       NA  765.07758           17.00000
## 158          40     172.0        2  765.07758                 NA
## 159          20      86.0        1  765.07758                 NA
## 160          30     129.0        1  319.99033                 NA
## 161          30     129.0        1  319.99033                 NA
## 162          40     172.0        2  484.50385                 NA
## 163          NA        NA       NA  484.50385                 NA
## 164          NA        NA       NA  398.50946                 NA
## 165          60     258.0        2 1789.32349                 NA
## 166          50     215.0        2 1789.32349                 NA
## 167          NA        NA       NA 1789.32349                 NA
## 168          NA        NA       NA 1789.32349                 NA
## 169          NA        NA       NA  382.88480                 NA
## 170          NA        NA       NA  382.88480                 NA
## 171          NA        NA       NA  382.88480                 NA
## 172          NA        NA       NA 1128.20740           20.83333
## 173          40     172.0        2 1128.20740                 NA
## 174          NA        NA       NA 1128.20740                 NA
## 175          NA        NA       NA 1128.20740                 NA
## 176          NA        NA       NA 1128.20740                 NA
## 177          NA        NA       NA 1128.20740                 NA
## 178          NA        NA       NA 1128.20740                 NA
## 179          NA        NA       NA  323.54883                 NA
## 180          NA        NA       NA  262.77100                 NA
## 181          NA        NA       NA  262.77100                 NA
## 182          NA        NA       NA  298.43341                 NA
## 183          NA        NA       NA  298.43341                 NA
## 184          NA        NA       NA  298.43341                 NA
## 185          40     172.0        2 1208.91833                 NA
## 186          40     172.0        2 1208.91833                 NA
## 187          NA        NA       NA 1208.91833                 NA
## 188          42     180.6        2 1208.91833                 NA
## 189          42     180.6        2 1208.91833                 NA
## 190          40     172.0        2 1197.22266                 NA
## 191          40     172.0        2 1197.22266                 NA
## 192          40     172.0        2 1197.22266                 NA
## 193          NA        NA       NA 1197.22266                 NA
## 194          50     215.0        2  595.71027                 NA
## 195          NA        NA       NA  595.71027                 NA
## 196          NA        NA       NA 1346.27136                 NA
## 197          40     172.0        2 1346.27136                 NA
## 198          NA        NA       NA 1346.27136                 NA
## 199          NA        NA       NA 1003.74719                 NA
## 200          40     172.0        2 1003.74719                 NA
## 201          40     172.0        2 1003.74719                 NA
## 202          40     172.0        2 1003.74719                 NA
## 203          NA        NA       NA 1003.74719                 NA
## 204          NA        NA       NA 1003.74719                 NA
## 205          25     107.5        1  268.44232           23.00000
## 206          40     172.0        2  746.58698                 NA
## 207          45     193.5        2  746.58698                 NA
## 208          NA        NA       NA  746.58698                 NA
## 209          NA        NA       NA  186.86409                 NA
## 210          10      43.0        1 1134.16833                 NA
## 211          30     129.0        1 1134.16833                 NA
## 212          40     172.0        2 1134.16833                 NA
## 213          48     206.4        2  390.36697                 NA
## 214          NA        NA       NA  390.36697                 NA
## 215          NA        NA       NA  590.54889                 NA
## 216          NA        NA       NA  590.54889                 NA
## 217          NA        NA       NA  590.54889                 NA
## 218          NA        NA       NA  590.54889                 NA
## 219          NA        NA       NA  590.54889                 NA
## 220          NA        NA       NA  242.77496                 NA
## 221          NA        NA       NA  242.77496                 NA
## 222          NA        NA       NA  242.77496                 NA
## 223          NA        NA       NA  242.77496                 NA
## 224          NA        NA       NA  282.25308                 NA
## 225          NA        NA       NA  282.25308                 NA
## 226          NA        NA       NA  282.25308                 NA
## 227          NA        NA       NA  282.25308                 NA
## 228          NA        NA       NA  282.25308                 NA
## 229          35     150.5        1  727.52234                 NA
## 230          25     107.5        1  727.52234                 NA
## 231          20      86.0        1 1048.20581                 NA
## 232          20      86.0        1 1048.20581                 NA
## 233          56     240.8        2 1048.20581                 NA
## 234          20      86.0        1 1048.20581                 NA
## 235          NA        NA       NA 1048.20581                 NA
## 236          52     223.6        2  960.08099                 NA
## 237          40     172.0        2  960.08099                 NA
## 238          NA        NA       NA  213.03043                 NA
## 239          NA        NA       NA  224.68001                 NA
## 240          NA        NA       NA  503.28836                 NA
## 241          NA        NA       NA  503.28836                 NA
## 242          NA        NA       NA  360.94098                 NA
## 243          NA        NA       NA  360.94098                 NA
## 244          20      86.0        1  934.02380                 NA
## 245          40     172.0        2  934.02380                 NA
## 246          NA        NA       NA  934.02380                 NA
## 247          NA        NA       NA  934.02380                 NA
## 248          NA        NA       NA  208.56975                 NA
## 249          NA        NA       NA  222.26704                 NA
## 250          NA        NA       NA  410.14261                 NA
## 251          40     172.0        2  410.14261                 NA
## 252          NA        NA       NA  410.14261                 NA
## 253          NA        NA       NA  410.14261                 NA
## 254          NA        NA       NA  410.14261                 NA
## 255           7      30.1        1  568.62177                 NA
## 256           7      30.1        1  568.62177                 NA
## 257          NA        NA       NA  268.05530                 NA
## 258          NA        NA       NA  268.05530                 NA
## 259          NA        NA       NA  649.72418                 NA
## 260          45     193.5        2  649.72418                 NA
## 261          NA        NA       NA  649.72418                 NA
## 262          NA        NA       NA  649.72418                 NA
## 263          NA        NA       NA  649.72418                 NA
## 264          48     206.4        2  754.97845                 NA
## 265          40     172.0        2  754.97845                 NA
## 266          NA        NA       NA  601.54498                 NA
## 267          NA        NA       NA  601.54498                 NA
## 268          NA        NA       NA  428.39963                 NA
## 269          NA        NA       NA  428.39963                 NA
## 270          NA        NA       NA  179.89392                 NA
## 271          40     172.0        2 1213.37183                 NA
## 272          40     172.0        2 1213.37183                 NA
## 273          NA        NA       NA 1213.37183                 NA
## 274          NA        NA       NA  401.08884                 NA
## 275          NA        NA       NA  401.08884                 NA
## 276          NA        NA       NA  177.21538                 NA
## 277          NA        NA       NA  272.47513                 NA
## 278          72     309.6        2 1993.24524                 NA
## 279          NA        NA       NA 1993.24524                 NA
## 280          NA        NA       NA 1993.24524                 NA
## 281          40     172.0        2 1993.24524                 NA
## 282          16      68.8        1  276.65234                 NA
## 283          40     172.0        2  465.76453                 NA
## 284          NA        NA       NA  465.76453                 NA
## 285          40     172.0        2  465.76453                 NA
## 286          20      86.0        1  296.51086                 NA
## 287          20      86.0        1  410.81113                 NA
## 288          20      86.0        1  410.81113                 NA
## 289          NA        NA       NA 1230.54797                 NA
## 290          40     172.0        2 1230.54797                 NA
## 291          NA        NA       NA 1230.54797           21.00000
## 292          40     172.0        2 1230.54797                 NA
## 293          40     172.0        2 1230.54797                 NA
## 294          40     172.0        2 1230.54797                 NA
## 295          NA        NA       NA 1230.54797                 NA
## 296          NA        NA       NA  991.20337                 NA
## 297          NA        NA       NA  991.20337                 NA
## 298          NA        NA       NA  991.20337                 NA
## 299          NA        NA       NA  413.46591                 NA
## 300          NA        NA       NA  413.46591                 NA
## 301          NA        NA       NA  243.12984                 NA
## 302          30     129.0        1 1088.63208                 NA
## 303          NA        NA       NA 1088.63208                 NA
## 304          NA        NA       NA 1088.63208                 NA
## 305          NA        NA       NA 1088.63208                 NA
## 306          NA        NA       NA 1088.63208           50.00000
## 307          NA        NA       NA 1088.63208                 NA
## 308          NA        NA       NA 1088.63208                 NA
## 309          NA        NA       NA  389.69583                 NA
## 310          NA        NA       NA  389.69583                 NA
## 311          12      51.6        1  326.87891                 NA
## 312          10      43.0        1  326.87891                 NA
## 313          40     172.0        2  868.58466                 NA
## 314          40     172.0        2 1098.66125                 NA
## 315          40     172.0        2 1098.66125                 NA
## 316          40     172.0        2 1098.66125                 NA
## 317          40     172.0        2 1098.66125                 NA
## 318          NA        NA       NA 1098.66125                 NA
## 319          NA        NA       NA  667.91046                 NA
## 320          NA        NA       NA  667.91046                 NA
## 321          NA        NA       NA  314.02020                 NA
## 322          NA        NA       NA  314.02020                 NA
## 323          40     172.0        2  551.30151                 NA
## 324          40     172.0        2  551.30151                 NA
## 325          42     180.6        2  551.30151                 NA
## 326          42     180.6        2  551.30151                 NA
## 327          40     172.0        2  435.03317                 NA
## 328          NA        NA       NA  435.03317                 NA
## 329          NA        NA       NA  187.38016                 NA
## 330          NA        NA       NA  289.34055                 NA
## 331          40     172.0        2  519.96680                 NA
## 332          40     172.0        2  519.96680                 NA
## 333          40     172.0        2  519.96680                 NA
## 334          NA        NA       NA  519.96680                 NA
## 335          30     129.0        1  547.70532                 NA
## 336          NA        NA       NA  547.70532                 NA
## 337          NA        NA       NA  547.70532                 NA
## 338          NA        NA       NA  547.70532                 NA
## 339          NA        NA       NA  547.70532                 NA
## 340          40     172.0        2  881.96875                 NA
## 341          50     215.0        2  881.96875                 NA
## 342          50     215.0        2  881.96875                 NA
## 343          NA        NA       NA  881.96875                 NA
## 344          NA        NA       NA  881.96875                 NA
## 345          NA        NA       NA  481.31433                 NA
## 346          NA        NA       NA  481.31433                 NA
## 347          40     172.0        2 1242.28638                 NA
## 348          NA        NA       NA 1242.28638                 NA
## 349          40     172.0        2 1242.28638                 NA
## 350          NA        NA       NA  189.92221                 NA
## 351          40     172.0        2 1238.77124                 NA
## 352          40     172.0        2 1238.77124                 NA
## 353          40     172.0        2  551.42511                 NA
## 354          NA        NA       NA  551.42511                 NA
## 355          NA        NA       NA  551.42511                 NA
## 356          NA        NA       NA  551.42511                 NA
## 357          NA        NA       NA  551.42511                 NA
## 358          NA        NA       NA  551.42511                 NA
## 359          NA        NA       NA  314.39441                 NA
## 360          60     258.0        2  314.39441                 NA
## 361          NA        NA       NA  314.39441                 NA
## 362          NA        NA       NA  283.20993                 NA
## 363          NA        NA       NA  283.20993                 NA
## 364          50     215.0        2  283.20993                 NA
## 365          28     120.4        1  638.48297                 NA
## 366          40     172.0        2  638.48297                 NA
## 367          48     206.4        2  979.26019                 NA
## 368          40     172.0        2  979.26019                 NA
## 369          48     206.4        2  979.26019                 NA
## 370          48     206.4        2  979.26019                 NA
## 371          NA        NA       NA  979.26019                 NA
## 372          40     172.0        2  780.58234           50.00000
## 373          40     172.0        2  780.58234                 NA
## 374          60     258.0        2  780.58234                 NA
## 375          50     215.0        2 1116.88452                 NA
## 376          40     172.0        2 1116.88452                 NA
## 377          60     258.0        2 1116.88452                 NA
## 378          NA        NA       NA 1116.88452                 NA
## 379          NA        NA       NA 1116.88452                 NA
## 380          NA        NA       NA 1116.88452                 NA
## 381          50     215.0        2 1160.80396                 NA
## 382          50     215.0        2 1160.80396                 NA
## 383          60     258.0        2 1160.80396                 NA
## 384          NA        NA       NA 1160.80396                 NA
## 385          40     172.0        2 1160.80396                 NA
## 386          NA        NA       NA 1160.80396                 NA
## 387          NA        NA       NA 1160.80396                 NA
## 388          40     172.0        2 1424.96985                 NA
## 389          50     215.0        2 1424.96985                 NA
## 390          60     258.0        2 1424.96985                 NA
## 391          NA        NA       NA 1424.96985                 NA
## 392          NA        NA       NA 1424.96985                 NA
## 393          NA        NA       NA 1424.96985                 NA
## 394          50     215.0        2  751.54138                 NA
## 395          40     172.0        2  751.54138                 NA
## 396          20      86.0        1  413.71713                 NA
## 397          20      86.0        1  413.71713                 NA
## 398          NA        NA       NA  480.39670                 NA
## 399          40     172.0        2  480.39670                 NA
## 400          45     193.5        2  770.74030                 NA
## 401          54     232.2        2  770.74030                 NA
## 402          21      90.3        1  672.47333                 NA
## 403          21      90.3        1  672.47333                 NA
## 404          NA        NA       NA  507.09097                 NA
## 405          40     172.0        2  507.09097                 NA
## 406          40     172.0        2 1088.88696                 NA
## 407          40     172.0        2 1088.88696                 NA
## 408          40     172.0        2 1088.88696                 NA
## 409          40     172.0        2 1088.88696                 NA
## 410          NA        NA       NA  973.25427                 NA
## 411          NA        NA       NA  973.25427                 NA
## 412          21      90.3        1  254.88004                 NA
## 413          NA        NA       NA  256.31937                 NA
## 414          NA        NA       NA  256.31937                 NA
## 415          36     154.8        1  607.46283                 NA
## 416          28     120.4        1  607.46283                 NA
## 417          21      90.3        1  531.46185                 NA
## 418          21      90.3        1  531.46185                 NA
## 419          40     172.0        2 1108.90198                 NA
## 420          40     172.0        2 1108.90198                 NA
## 421          NA        NA       NA 1108.90198                 NA
## 422          NA        NA       NA 1108.90198                 NA
## 423          40     172.0        2  896.08496                 NA
## 424          40     172.0        2  896.08496                 NA
## 425          NA        NA       NA  896.08496                 NA
## 426          NA        NA       NA  896.08496                 NA
## 427          40     172.0        2  937.91675                 NA
## 428          48     206.4        2  937.91675                 NA
## 429          48     206.4        2  937.91675                 NA
## 430          NA        NA       NA  937.91675                 NA
## 431          NA        NA       NA  717.46490           54.00000
## 432          40     172.0        2  717.46490                 NA
## 433          NA        NA       NA 1156.35571                 NA
## 434          40     172.0        2 1156.35571                 NA
## 435          NA        NA       NA 1156.35571           63.00000
## 436          NA        NA       NA 1156.35571                 NA
## 437          NA        NA       NA  233.16829           38.00000
## 438          40     172.0        2  867.35809                 NA
## 439          40     172.0        2  867.35809                 NA
## 440          NA        NA       NA  867.35809                 NA
## 441          NA        NA       NA  867.35809                 NA
## 442          40     172.0        2  620.85333                 NA
## 443          NA        NA       NA  620.85333                 NA
## 444          NA        NA       NA  620.85333                 NA
## 445          NA        NA       NA  620.85333                 NA
## 446          40     172.0        2  493.73624           75.00000
## 447          40     172.0        2  493.73624                 NA
## 448          48     206.4        2  634.10693                 NA
## 449          40     172.0        2  634.10693                 NA
## 450          48     206.4        2  634.10693                 NA
## 451          NA        NA       NA  634.10693                 NA
## 452          NA        NA       NA  308.62747                 NA
## 453          40     172.0        2  308.62747                 NA
## 454          60     258.0        2  958.35663                 NA
## 455          NA        NA       NA  958.35663                 NA
## 456          40     172.0        2  690.11469                 NA
## 457          40     172.0        2  690.11469                 NA
## 458          NA        NA       NA  690.11469                 NA
## 459          NA        NA       NA  690.11469           10.00000
## 460          15      64.5        1  410.75394                 NA
## 461          NA        NA       NA  410.75394                 NA
## 462          40     172.0        2  410.75394                 NA
## 463          NA        NA       NA  381.94370                 NA
## 464          NA        NA       NA  381.94370                 NA
## 465          NA        NA       NA  858.45520           20.00000
## 466          42     180.6        2  858.45520                 NA
## 467          60     258.0        2  858.45520                 NA
## 468          NA        NA       NA  232.52730          100.00000
## 469          50     215.0        2  739.64423                 NA
## 470          50     215.0        2  739.64423                 NA
## 471          NA        NA       NA  739.64423                 NA
## 472          40     172.0        2  651.33331                 NA
## 473          21      90.3        1  651.33331                 NA
## 474          NA        NA       NA  651.33331                 NA
## 475          60     258.0        2  651.33331                 NA
## 476          40     172.0        2 1159.92529                 NA
## 477          40     172.0        2 1159.92529                 NA
## 478          NA        NA       NA 1159.92529                 NA
## 479          NA        NA       NA 1159.92529                 NA
## 480          NA        NA       NA 1159.92529                 NA
## 481          50     215.0        2  949.86237                 NA
## 482          40     172.0        2  949.86237                 NA
## 483          NA        NA       NA  949.86237                 NA
## 484          NA        NA       NA  318.00671                 NA
## 485          20      86.0        1  318.00671                 NA
## 486          50     215.0        2 1255.87085                 NA
## 487          NA        NA       NA 1255.87085                 NA
## 488          NA        NA       NA 1255.87085                 NA
## 489          NA        NA       NA 1255.87085                 NA
## 490          NA        NA       NA  829.02850                 NA
## 491          40     172.0        2  829.02850                 NA
## 492          NA        NA       NA  804.04828                 NA
## 493          NA        NA       NA  804.04828                 NA
## 494          NA        NA       NA  804.04828                 NA
## 495          NA        NA       NA 1791.39746                 NA
## 496          NA        NA       NA 1791.39746                 NA
## 497          NA        NA       NA  890.55927                 NA
## 498          40     172.0        2  890.55927                 NA
## 499          40     172.0        2  859.47729                 NA
## 500          20      86.0        1  859.47729                 NA
## 501          NA        NA       NA  831.72583                 NA
## 502          NA        NA       NA  831.72583                 NA
## 503          NA        NA       NA  831.72583                 NA
## 504          NA        NA       NA  363.77527                 NA
## 505          NA        NA       NA  363.77527                 NA
## 506          45     193.5        2  692.41174                 NA
## 507          40     172.0        2  692.41174                 NA
## 508          40     172.0        2  692.41174                 NA
## 509          20      86.0        1  274.94983                 NA
## 510          NA        NA       NA  274.94983                 NA
## 511          NA        NA       NA 1072.30103                 NA
## 512          NA        NA       NA 1072.30103                 NA
## 513          40     172.0        2 1072.30103                 NA
## 514          40     172.0        2 1072.30103                 NA
## 515          NA        NA       NA 1072.30103                 NA
## 516          NA        NA       NA 1072.30103                 NA
## 517          20      86.0        1  430.57895                 NA
## 518          25     107.5        1  430.57895                 NA
## 519          35     150.5        1  486.87375                 NA
## 520          NA        NA       NA  486.87375           95.00000
## 521          40     172.0        2  640.04663                 NA
## 522          28     120.4        1  640.04663                 NA
## 523          NA        NA       NA  640.04663                 NA
## 524          40     172.0        2  406.61429                 NA
## 525          NA        NA       NA  406.61429                 NA
## 526          40     172.0        2  925.59424                 NA
## 527          40     172.0        2  925.59424                 NA
## 528          NA        NA       NA  925.59424                 NA
## 529          NA        NA       NA  925.59424                 NA
## 530          40     172.0        2  534.10315                 NA
## 531          40     172.0        2  534.10315                 NA
## 532          40     172.0        2  877.76660                 NA
## 533          40     172.0        2  877.76660                 NA
## 534          40     172.0        2  710.34460                 NA
## 535          40     172.0        2  710.34460                 NA
## 536          NA        NA       NA  478.15005                 NA
## 537          40     172.0        2  984.80157                 NA
## 538          40     172.0        2  984.80157                 NA
## 539          NA        NA       NA  984.80157                 NA
## 540          70     301.0        2  984.80157                 NA
## 541          40     172.0        2  288.86441                 NA
## 542          40     172.0        2  779.52679                 NA
## 543          40     172.0        2  779.52679                 NA
## 544          NA        NA       NA  779.52679                 NA
## 545          40     172.0        2  451.03210                 NA
## 546          40     172.0        2  451.03210                 NA
## 547          66     283.8        2 1174.72217                 NA
## 548          40     172.0        2 1174.72217                 NA
## 549          NA        NA       NA 1174.72217                 NA
## 550          30     129.0        1 1174.72217           17.00000
## 551          28     120.4        1  249.58824                 NA
## 552          12      51.6        1  249.58824           14.00000
## 553          15      64.5        1  390.04688           14.00000
## 554          45     193.5        2 2054.26685                 NA
## 555          NA        NA       NA 2054.26685                 NA
## 556          NA        NA       NA 2054.26685                 NA
## 557          NA        NA       NA  185.25359           22.00000
## 558          40     172.0        2 1493.63489                 NA
## 559          NA        NA       NA 1493.63489                 NA
## 560          40     172.0        2 1493.63489                 NA
## 561          40     172.0        2 1493.63489                 NA
## 562          NA        NA       NA 1493.63489                 NA
## 563          NA        NA       NA  567.44464                 NA
## 564          NA        NA       NA  567.44464                 NA
## 565          20      86.0        1  567.44464                 NA
## 566          NA        NA       NA  567.44464                 NA
## 567          NA        NA       NA  567.44464                 NA
## 568          40     172.0        2 1485.88428                 NA
## 569          40     172.0        2 1485.88428                 NA
## 570          50     215.0        2 1485.88428                 NA
## 571          20      86.0        1  430.88376                 NA
## 572          NA        NA       NA  430.88376                 NA
## 573          40     172.0        2  707.14362                 NA
## 574          40     172.0        2  707.14362                 NA
## 575          72     309.6        2 1156.53723                 NA
## 576          45     193.5        2 1156.53723                 NA
## 577          NA        NA       NA 1156.53723                 NA
## 578          48     206.4        2 1423.12378                 NA
## 579          60     258.0        2 1423.12378                 NA
## 580          48     206.4        2 1423.12378                 NA
## 581          50     215.0        2  753.01587                 NA
## 582          50     215.0        2  753.01587                 NA
## 583          48     206.4        2  753.01587                 NA
## 584          40     172.0        2  378.36450                 NA
## 585          40     172.0        2  378.36450                 NA
## 586          30     129.0        1  147.22392                 NA
## 587          30     129.0        1  147.22392                 NA
## 588          NA        NA       NA  147.22392                 NA
## 589          NA        NA       NA  147.22392                 NA
## 590          NA        NA       NA  147.22392                 NA
## 591          NA        NA       NA  147.22392                 NA
## 592          NA        NA       NA  330.34558                 NA
## 593          NA        NA       NA  330.34558                 NA
## 594          NA        NA       NA  330.34558                 NA
## 595          NA        NA       NA  330.34558                 NA
## 596          70     301.0        2  789.29224                 NA
## 597          70     301.0        2  789.29224                 NA
## 598          48     206.4        2  449.65631                 NA
## 599          NA        NA       NA  449.65631                 NA
## 600          NA        NA       NA  449.65631                 NA
## 601          NA        NA       NA  449.65631                 NA
## 602          48     206.4        2  227.61508                 NA
## 603          NA        NA       NA  400.77359                 NA
## 604          NA        NA       NA  400.77359                 NA
## 605          NA        NA       NA  400.77359                 NA
## 606          40     172.0        2  592.19476                 NA
## 607          48     206.4        2  592.19476                 NA
## 608          NA        NA       NA  592.19476                 NA
## 609          40     172.0        2 1039.74792                 NA
## 610          NA        NA       NA 1039.74792                 NA
## 611          NA        NA       NA 1039.74792                 NA
## 612          40     172.0        2 1039.74792                 NA
## 613          40     172.0        2 1039.74792                 NA
## 614          40     172.0        2  735.35834                 NA
## 615          40     172.0        2  735.35834                 NA
## 616          NA        NA       NA  735.35834                 NA
## 617          48     206.4        2  529.66583                 NA
## 618          NA        NA       NA  529.66583                 NA
## 619          NA        NA       NA  529.66583                 NA
## 620          NA        NA       NA  529.66583                 NA
## 621          40     172.0        2  710.85468                 NA
## 622          40     172.0        2  710.85468                 NA
## 623          40     172.0        2  697.16144                 NA
## 624          NA        NA       NA  697.16144                 NA
## 625          NA        NA       NA  868.95038                 NA
## 626          NA        NA       NA  868.95038                 NA
## 627          NA        NA       NA  868.95038                 NA
## 628          NA        NA       NA  868.95038                 NA
## 629          NA        NA       NA  242.12303                 NA
## 630          NA        NA       NA  242.12303                 NA
## 631          58     249.4        2  401.58646                 NA
## 632          NA        NA       NA  401.58646                 NA
## 633          NA        NA       NA  401.58646                 NA
## 634          NA        NA       NA  212.37120                 NA
## 635          NA        NA       NA  212.37120                 NA
## 636          70     301.0        2  242.82869                 NA
## 637          NA        NA       NA  242.82869                 NA
## 638          70     301.0        2  242.82869                 NA
## 639          NA        NA       NA  242.82869                 NA
## 640          60     258.0        2  327.00049                 NA
## 641          35     150.5        1  327.00049                 NA
## 642          NA        NA       NA  327.00049                 NA
## 643          NA        NA       NA  327.00049                 NA
## 644          NA        NA       NA   67.82517                 NA
## 645          NA        NA       NA  117.06168                 NA
## 646           8      34.4        1  117.06168                 NA
## 647          NA        NA       NA  117.06168                 NA
## 648          40     172.0        2  612.26477                 NA
## 649          40     172.0        2  612.26477                 NA
## 650          NA        NA       NA  612.26477                 NA
## 651          NA        NA       NA  612.26477                 NA
## 652          40     172.0        2  583.57788                 NA
## 653          NA        NA       NA  583.57788                 NA
## 654          NA        NA       NA  583.57788                 NA
## 655          NA        NA       NA  583.57788                 NA
## 656          NA        NA       NA  583.57788                 NA
## 657          NA        NA       NA  583.57788                 NA
## 658          40     172.0        2 1734.84863                 NA
## 659          NA        NA       NA 1734.84863                 NA
## 660          40     172.0        2 1734.84863                 NA
## 661          NA        NA       NA  966.65045                 NA
## 662          40     172.0        2  966.65045                 NA
## 663          NA        NA       NA  966.65045                 NA
## 664          46     197.8        2  966.65045                 NA
## 665          40     172.0        2 1820.53345                 NA
## 666          NA        NA       NA 1820.53345                 NA
## 667          40     172.0        2 1820.53345                 NA
## 668          40     172.0        2 1820.53345                 NA
## 669          NA        NA       NA 1820.53345                 NA
## 670          40     172.0        2 1820.53345                 NA
## 671          40     172.0        2  423.03973                 NA
## 672          40     172.0        2  423.03973                 NA
## 673          40     172.0        2 1608.65686                 NA
## 674          40     172.0        2 1608.65686                 NA
## 675          40     172.0        2 1608.65686                 NA
## 676          NA        NA       NA 1608.65686                 NA
## 677          10      43.0        1  496.10394                 NA
## 678          NA        NA       NA  496.10394                 NA
## 679          NA        NA       NA  496.10394                 NA
## 680          NA        NA       NA  496.10394                 NA
## 681          40     172.0        2 1381.45386                 NA
## 682          40     172.0        2 1381.45386                 NA
## 683          NA        NA       NA 1381.45386                 NA
## 684          NA        NA       NA 1381.45386                 NA
## 685          48     206.4        2  493.17422                 NA
## 686          NA        NA       NA  493.17422                 NA
## 687          NA        NA       NA 1306.39148                 NA
## 688          NA        NA       NA 1306.39148                 NA
## 689          48     206.4        2 1306.39148                 NA
## 690          NA        NA       NA 1306.39148                 NA
## 691          40     172.0        2  692.48425                 NA
## 692          40     172.0        2  692.48425                 NA
## 693          NA        NA       NA  371.40741           20.00000
## 694          NA        NA       NA  248.16179           24.00000
## 695          NA        NA       NA  377.74216                 NA
## 696          NA        NA       NA  377.74216                 NA
## 697          NA        NA       NA  311.99194                 NA
## 698          NA        NA       NA  311.99194                 NA
## 699          NA        NA       NA  134.56445           20.00000
## 700          NA        NA       NA  253.33380           20.00000
## 701          NA        NA       NA  253.33380                 NA
## 702          40     172.0        2  370.38748                 NA
## 703          NA        NA       NA  370.38748           19.83333
## 704          40     172.0        2 1321.98340                 NA
## 705          40     172.0        2 1321.98340                 NA
## 706          40     172.0        2 1321.98340                 NA
## 707          40     172.0        2 1321.98340                 NA
## 708          40     172.0        2  302.45593                 NA
## 709          NA        NA       NA  302.45593                 NA
## 710          40     172.0        2  666.54547                 NA
## 711          40     172.0        2  666.54547                 NA
## 712          NA        NA       NA  144.71976                 NA
## 713          70     301.0        2  163.61073                 NA
## 714          NA        NA       NA  386.55725                 NA
## 715          NA        NA       NA  415.87091                 NA
## 716          NA        NA       NA  415.87091                 NA
## 717          40     172.0        2 1221.93457                 NA
## 718          40     172.0        2 1221.93457                 NA
## 719          40     172.0        2 1221.93457                 NA
## 720          NA        NA       NA  651.56140                 NA
## 721          NA        NA       NA  651.56140                 NA
## 722          NA        NA       NA  651.56140                 NA
## 723          NA        NA       NA  651.56140                 NA
## 724          40     172.0        2  578.13495                 NA
## 725          40     172.0        2  578.13495                 NA
## 726          NA        NA       NA 1394.91589                 NA
## 727          40     172.0        2 1394.91589                 NA
## 728          40     172.0        2 1394.91589                 NA
## 729          40     172.0        2 2204.64502                 NA
## 730          NA        NA       NA 2204.64502                 NA
## 731          NA        NA       NA 2204.64502                 NA
## 732          NA        NA       NA 2204.64502                 NA
## 733          NA        NA       NA 2204.64502                 NA
## 734          NA        NA       NA  279.92169                 NA
## 735          NA        NA       NA  279.92169                 NA
## 736          NA        NA       NA  315.30981                 NA
## 737          NA        NA       NA  315.30981                 NA
## 738          NA        NA       NA  212.01471                 NA
## 739          NA        NA       NA  398.84222                 NA
## 740          NA        NA       NA  398.84222                 NA
## 741          NA        NA       NA  313.97610                 NA
## 742          NA        NA       NA  313.97610                 NA
## 743           6      25.8        1  206.79341                 NA
## 744          NA        NA       NA  206.79341                 NA
## 745          NA        NA       NA  206.79341                 NA
## 746          NA        NA       NA  535.32623                 NA
## 747          NA        NA       NA  535.32623                 NA
## 748          NA        NA       NA  535.32623                 NA
## 749          50     215.0        2 1101.28503                 NA
## 750          30     129.0        1 1101.28503                 NA
## 751          NA        NA       NA 1101.28503           30.00000
## 752          NA        NA       NA 1101.28503                 NA
## 753          NA        NA       NA 1101.28503                 NA
## 754          40     172.0        2 1300.03760                 NA
## 755          40     172.0        2 1300.03760                 NA
## 756          NA        NA       NA 1300.03760                 NA
## 757          10      43.0        1  698.30945           45.00000
## 758          40     172.0        2  331.76028                 NA
## 759          40     172.0        2  331.76028                 NA
## 760          70     301.0        2  879.76483                 NA
## 761          80     344.0        2  879.76483                 NA
## 762          NA        NA       NA  879.76483                 NA
## 763          NA        NA       NA  879.76483                 NA
## 764          NA        NA       NA  461.51117                 NA
## 765          NA        NA       NA  461.51117                 NA
## 766          70     301.0        2 1372.66650                 NA
## 767          NA        NA       NA 1372.66650                 NA
## 768          40     172.0        2 1372.66650                 NA
## 769          NA        NA       NA  347.44620                 NA
## 770          NA        NA       NA  347.44620                 NA
## 771          NA        NA       NA 1036.90588                 NA
## 772          20      86.0        1 1036.90588                 NA
## 773          NA        NA       NA  233.53246                 NA
## 774          NA        NA       NA  469.10086                 NA
## 775          40     172.0        2  469.10086                 NA
## 776          NA        NA       NA  660.97626                 NA
## 777          48     206.4        2  660.97626                 NA
## 778          25     107.5        1  309.33115                 NA
## 779          20      86.0        1  934.22595                 NA
## 780          40     172.0        2  934.22595                 NA
## 781          NA        NA       NA  256.66837           46.00000
## 782          NA        NA       NA  387.39600                 NA
## 783          NA        NA       NA  387.39600                 NA
## 784          NA        NA       NA  516.21552                 NA
## 785          NA        NA       NA  516.21552                 NA
## 786          NA        NA       NA  236.00212                 NA
## 787          10      43.0        1  710.89099           27.00000
## 788          NA        NA       NA  710.89099                 NA
## 789          40     172.0        2  710.89099                 NA
## 790          NA        NA       NA  421.83008                 NA
## 791          NA        NA       NA  421.83008                 NA
## 792          NA        NA       NA  421.83008                 NA
## 793          NA        NA       NA  421.83008                 NA
## 794          NA        NA       NA  864.89685                 NA
## 795          40     172.0        2  864.89685                 NA
## 796          NA        NA       NA  864.89685                 NA
## 797          NA        NA       NA  628.77417                 NA
## 798          40     172.0        2  628.77417                 NA
## 799          NA        NA       NA  628.77417                 NA
## 800           6      25.8        1  191.52438           30.00000
## 801          18      77.4        1  221.60481                 NA
## 802          NA        NA       NA  221.60481                 NA
## 803          NA        NA       NA  445.08322                 NA
## 804          NA        NA       NA  445.08322                 NA
## 805          NA        NA       NA  219.19679                 NA
## 806          20      86.0        1  395.14102                 NA
## 807          NA        NA       NA  395.14102                 NA
## 808          60     258.0        2 1376.54138                 NA
## 809          40     172.0        2 1376.54138                 NA
## 810          NA        NA       NA 1376.54138                 NA
## 811          48     206.4        2  549.74164                 NA
## 812          40     172.0        2  549.74164                 NA
## 813          NA        NA       NA  549.74164                 NA
## 814          NA        NA       NA  331.76712                 NA
## 815          NA        NA       NA  331.76712                 NA
## 816          40     172.0        2  918.25238                 NA
## 817          60     258.0        2  918.25238                 NA
## 818          NA        NA       NA  918.25238                 NA
## 819          NA        NA       NA  918.25238                 NA
## 820          48     206.4        2  391.41782                 NA
## 821          48     206.4        2  391.41782                 NA
## 822          NA        NA       NA  391.41782                 NA
## 823          NA        NA       NA  513.81671                 NA
## 824          NA        NA       NA  513.81671                 NA
## 825          NA        NA       NA  513.81671                 NA
## 826          NA        NA       NA  513.81671                 NA
## 827          NA        NA       NA  422.10806                 NA
## 828          NA        NA       NA  422.10806                 NA
## 829          60     258.0        2  422.10806                 NA
## 830          NA        NA       NA  422.10806                 NA
## 831          NA        NA       NA  422.10806                 NA
## 832          NA        NA       NA  228.56474                 NA
## 833          48     206.4        2  228.56474                 NA
## 834          NA        NA       NA  228.56474                 NA
## 835          NA        NA       NA  228.56474                 NA
## 836          NA        NA       NA  228.56474                 NA
## 837          NA        NA       NA  197.65027                 NA
## 838          NA        NA       NA  197.65027                 NA
## 839          NA        NA       NA  962.44086                 NA
## 840          54     232.2        2  962.44086                 NA
## 841          NA        NA       NA  962.44086                 NA
## 842          NA        NA       NA  962.44086                 NA
## 843          NA        NA       NA  493.35504                 NA
## 844          NA        NA       NA  493.35504                 NA
## 845          NA        NA       NA  493.35504                 NA
## 846          NA        NA       NA  150.44029                 NA
## 847          NA        NA       NA  918.82477                 NA
## 848          NA        NA       NA  918.82477                 NA
## 849          NA        NA       NA  918.82477                 NA
## 850          NA        NA       NA  918.82477                 NA
## 851          NA        NA       NA  918.82477                 NA
## 852          40     172.0        2  918.82477                 NA
## 853          NA        NA       NA  918.82477                 NA
## 854          NA        NA       NA  918.82477                 NA
## 855          NA        NA       NA  918.82477                 NA
## 856          NA        NA       NA  918.82477                 NA
## 857          NA        NA       NA 1379.30566                 NA
## 858          40     172.0        2 1379.30566                 NA
## 859          NA        NA       NA 1379.30566                 NA
## 860          NA        NA       NA 1379.30566           85.00000
## 861          NA        NA       NA 1379.30566           85.00000
## 862          NA        NA       NA 1379.30566                 NA
## 863          NA        NA       NA 1379.30566                 NA
## 864          48     206.4        2 1386.18359                 NA
## 865          48     206.4        2 1386.18359                 NA
## 866          48     206.4        2 1386.18359                 NA
## 867          NA        NA       NA 1386.18359                 NA
## 868          54     232.2        2 2180.91382                 NA
## 869          54     232.2        2 2180.91382                 NA
## 870          NA        NA       NA 2180.91382                 NA
## 871          NA        NA       NA 2180.91382                 NA
## 872          NA        NA       NA 2180.91382                 NA
## 873          60     258.0        2  946.93146                 NA
## 874          40     172.0        2  946.93146                 NA
## 875          NA        NA       NA  323.35706                 NA
## 876          NA        NA       NA  323.35706                 NA
## 877           5      21.5        1  713.59045                 NA
## 878           5      21.5        1  713.59045                 NA
## 879          NA        NA       NA  388.93765           35.00000
## 880          NA        NA       NA  388.93765                 NA
## 881          NA        NA       NA  388.93765           10.00000
## 882          NA        NA       NA 2872.54443                 NA
## 883          60     258.0        2 2872.54443                 NA
## 884          NA        NA       NA 2872.54443                 NA
## 885          NA        NA       NA 2872.54443                 NA
## 886          NA        NA       NA 2872.54443                 NA
## 887          30     129.0        1 1819.13049                 NA
## 888          30     129.0        1 1819.13049                 NA
## 889          48     206.4        2 1819.13049                 NA
## 890          NA        NA       NA  450.71652                 NA
## 891          40     172.0        2  883.77319                 NA
## 892          40     172.0        2  883.77319                 NA
## 893          NA        NA       NA  883.77319                 NA
## 894          40     172.0        2  883.77319                 NA
## 895          NA        NA       NA 1014.57892                 NA
## 896          40     172.0        2 1014.57892                 NA
## 897          NA        NA       NA 1014.57892                 NA
## 898          40     172.0        2  872.28870                 NA
## 899          40     172.0        2  872.28870                 NA
## 900          40     172.0        2  872.28870                 NA
## 901          NA        NA       NA  351.30945                 NA
## 902          NA        NA       NA  351.30945                 NA
## 903          40     172.0        2 1028.43872                 NA
## 904          40     172.0        2 1028.43872                 NA
## 905          NA        NA       NA 1028.43872                 NA
## 906          NA        NA       NA 1028.43872                 NA
## 907          40     172.0        2  664.95953                 NA
## 908          NA        NA       NA  664.95953                 NA
## 909          48     206.4        2  724.54834                 NA
## 910          48     206.4        2  724.54834                 NA
## 911          NA        NA       NA  724.54834                 NA
## 912          NA        NA       NA  529.14014                 NA
## 913          NA        NA       NA  529.14014                 NA
## 914           7      30.1        1  326.14395                 NA
## 915          NA        NA       NA  225.55850                 NA
## 916           4      17.2        1  196.63678                 NA
## 917          NA        NA       NA  255.32474                 NA
## 918          NA        NA       NA  100.42355                 NA
## 919          NA        NA       NA  100.42355                 NA
## 920          40     172.0        2  995.03119                 NA
## 921          NA        NA       NA  995.03119                 NA
## 922          40     172.0        2 1743.30286                 NA
## 923          40     172.0        2 1743.30286                 NA
## 924          NA        NA       NA 1743.30286                 NA
## 925          NA        NA       NA 1743.30286                 NA
## 926          40     172.0        2 1142.32288                 NA
## 927          NA        NA       NA 1142.32288                 NA
## 928          NA        NA       NA 1142.32288                 NA
## 929          NA        NA       NA 1142.32288                 NA
## 930          NA        NA       NA  428.86398                 NA
## 931          NA        NA       NA  428.86398                 NA
## 932           6      25.8        1  419.95462                 NA
## 933          40     172.0        2  419.95462                 NA
## 934           6      25.8        1  419.95462                 NA
## 935          NA        NA       NA  496.08783                 NA
## 936          NA        NA       NA  496.08783                 NA
## 937          40     172.0        2  496.08783                 NA
## 938          40     172.0        2  877.25769                 NA
## 939          60     258.0        2  877.25769                 NA
## 940          NA        NA       NA  877.25769                 NA
## 941          NA        NA       NA  877.25769                 NA
## 942          NA        NA       NA  766.27020                 NA
## 943          40     172.0        2  766.27020                 NA
## 944          NA        NA       NA  766.27020                 NA
## 945          NA        NA       NA  457.20367                 NA
## 946          40     172.0        2  457.20367                 NA
## 947          NA        NA       NA  252.60707                 NA
## 948          NA        NA       NA  252.60707                 NA
## 949          NA        NA       NA  327.84555                 NA
## 950          NA        NA       NA  327.84555                 NA
## 951          40     172.0        2  795.00671                 NA
## 952          40     172.0        2  795.00671                 NA
## 953          NA        NA       NA  795.00671                 NA
## 954          NA        NA       NA  795.00671                 NA
## 955          NA        NA       NA  795.00671                 NA
## 956          40     172.0        2  434.56290                 NA
## 957          NA        NA       NA  434.56290                 NA
## 958          NA        NA       NA  256.44867                 NA
## 959          NA        NA       NA  256.44867                 NA
## 960          NA        NA       NA  415.79044                 NA
## 961          40     172.0        2  415.79044                 NA
## 962          NA        NA       NA  513.21130                 NA
## 963          40     172.0        2  513.21130                 NA
## 964          35     150.5        1  451.43347                 NA
## 965          15      64.5        1  451.43347                 NA
## 966          15      64.5        1  577.65320           20.00000
## 967          48     206.4        2  577.65320                 NA
## 968          48     206.4        2  577.65320                 NA
## 969          NA        NA       NA  577.65320                 NA
## 970          NA        NA       NA  577.65320                 NA
## 971          35     150.5        1  480.77307                 NA
## 972          25     107.5        1  480.77307                 NA
## 973          35     150.5        1  529.22565                 NA
## 974          40     172.0        2  529.22565                 NA
## 975          40     172.0        2  529.22565                 NA
## 976          NA        NA       NA  434.81995                 NA
## 977          NA        NA       NA  434.81995                 NA
## 978          NA        NA       NA  434.81995                 NA
## 979          NA        NA       NA  434.81995                 NA
## 980          NA        NA       NA   92.28585                 NA
## 981          40     172.0        2  698.92279                 NA
## 982          40     172.0        2  698.92279                 NA
## 983          NA        NA       NA  698.92279                 NA
## 984          40     172.0        2  385.12289                 NA
## 985          40     172.0        2  385.12289                 NA
## 986          40     172.0        2  840.26562                 NA
## 987          40     172.0        2  840.26562                 NA
## 988          NA        NA       NA  840.26562                 NA
## 989          NA        NA       NA  840.26562                 NA
## 990          40     172.0        2  384.25528                 NA
## 991          NA        NA       NA  380.77536                 NA
## 992          NA        NA       NA  380.77536                 NA
## 993          NA        NA       NA  465.10577                 NA
## 994          48     206.4        2  465.10577                 NA
## 995          40     172.0        2  465.10577                 NA
## 996          40     172.0        2  465.10577                 NA
## 997          NA        NA       NA 1747.50586                 NA
## 998          42     180.6        2 1747.50586                 NA
## 999          NA        NA       NA 1747.50586                 NA
## 1000         NA        NA       NA  565.03125           30.00000
## 1001         48     206.4        2  565.03125                 NA
## 1002         NA        NA       NA  298.50302                 NA
## 1003          7      30.1        1  298.50302                 NA
## 1004         40     172.0        2  726.22192                 NA
## 1005         NA        NA       NA  726.22192                 NA
## 1006         NA        NA       NA  726.22192                 NA
## 1007         NA        NA       NA  726.22192                 NA
## 1008         NA        NA       NA  832.96893                 NA
## 1009         48     206.4        2  832.96893                 NA
## 1010         48     206.4        2  832.96893                 NA
## 1011         40     172.0        2 1081.90503                 NA
## 1012         40     172.0        2 1081.90503                 NA
## 1013         NA        NA       NA 1081.90503                 NA
## 1014         NA        NA       NA 1081.90503                 NA
## 1015         14      60.2        1  559.89325                 NA
## 1016         NA        NA       NA  559.89325                 NA
## 1017         NA        NA       NA  559.89325                 NA
## 1018         NA        NA       NA  559.89325                 NA
## 1019         40     172.0        2  920.11243                 NA
## 1020         NA        NA       NA  920.11243                 NA
## 1021         40     172.0        2  920.11243                 NA
## 1022         40     172.0        2  920.11243                 NA
## 1023         NA        NA       NA  920.11243                 NA
## 1024         NA        NA       NA  920.11243                 NA
## 1025         NA        NA       NA  920.11243                 NA
## 1026         35     150.5        1 1243.01233                 NA
## 1027         15      64.5        1 1243.01233                 NA
## 1028         40     172.0        2 1243.01233                 NA
## 1029         40     172.0        2 1243.01233                 NA
## 1030         40     172.0        2 1243.01233                 NA
## 1031         60     258.0        2 2118.62476                 NA
## 1032         48     206.4        2 2118.62476                 NA
## 1033         48     206.4        2 2118.62476                 NA
## 1034         NA        NA       NA 2118.62476           60.00000
## 1035         40     172.0        2  754.77032                 NA
## 1036         NA        NA       NA  754.77032                 NA
## 1037         NA        NA       NA  754.77032                 NA
## 1038         45     193.5        2  754.77032                 NA
## 1039         NA        NA       NA  754.77032                 NA
## 1040         40     172.0        2  802.90540                 NA
## 1041         15      64.5        1  802.90540                 NA
## 1042         NA        NA       NA  802.90540                 NA
## 1043         NA        NA       NA  802.90540                 NA
## 1044         40     172.0        2  532.65430                 NA
## 1045         48     206.4        2  532.65430                 NA
## 1046         42     180.6        2 1226.15649                 NA
## 1047         NA        NA       NA 1226.15649                 NA
## 1048         NA        NA       NA  297.25119                 NA
## 1049         NA        NA       NA  483.50095                 NA
## 1050         40     172.0        2 1172.76685                 NA
## 1051         40     172.0        2 1172.76685                 NA
## 1052         40     172.0        2 1172.76685                 NA
## 1053         40     172.0        2  634.19916                 NA
## 1054         40     172.0        2  634.19916                 NA
## 1055         NA        NA       NA  634.19916                 NA
## 1056         NA        NA       NA  634.19916                 NA
## 1057         40     172.0        2  862.55389                 NA
## 1058         40     172.0        2  862.55389                 NA
## 1059         NA        NA       NA  862.55389                 NA
## 1060         NA        NA       NA  862.55389                 NA
## 1061         28     120.4        1  984.54156                 NA
## 1062         40     172.0        2  984.54156                 NA
## 1063         40     172.0        2  984.54156                 NA
## 1064         50     215.0        2  939.64685                 NA
## 1065         40     172.0        2  939.64685                 NA
## 1066         NA        NA       NA  939.64685                 NA
## 1067          6      25.8        1  939.64685           20.00000
## 1068         40     172.0        2 1959.00403                 NA
## 1069         40     172.0        2 1959.00403                 NA
## 1070         48     206.4        2 1959.00403                 NA
## 1071         NA        NA       NA  338.14288                 NA
## 1072         NA        NA       NA  338.14288                 NA
## 1073         NA        NA       NA  338.14288                 NA
## 1074         56     240.8        2  836.68225                 NA
## 1075         60     258.0        2  836.68225                 NA
## 1076         NA        NA       NA  836.68225                 NA
## 1077         NA        NA       NA  836.68225                 NA
## 1078         NA        NA       NA  836.68225                 NA
## 1079         NA        NA       NA  507.63531                 NA
## 1080         28     120.4        1  507.63531                 NA
## 1081         NA        NA       NA  490.05640                 NA
## 1082         21      90.3        1  490.05640                 NA
## 1083         NA        NA       NA  197.53210                 NA
## 1084         40     172.0        2  651.74579                 NA
## 1085         NA        NA       NA  651.74579                 NA
## 1086         NA        NA       NA  651.74579                 NA
## 1087         NA        NA       NA  579.45331                 NA
## 1088         NA        NA       NA  579.45331                 NA
## 1089         NA        NA       NA  174.68903           20.00000
## 1090         NA        NA       NA  147.37502                 NA
## 1091         NA        NA       NA  177.88164                 NA
## 1092         40     172.0        2  486.27225                 NA
## 1093         NA        NA       NA  486.27225                 NA
## 1094         48     206.4        2  486.27225                 NA
## 1095         48     206.4        2  396.66379                 NA
## 1096         NA        NA       NA  396.66379                 NA
## 1097         NA        NA       NA  396.66379                 NA
## 1098         NA        NA       NA  409.81592                 NA
## 1099         NA        NA       NA  409.81592                 NA
## 1100         NA        NA       NA  409.81592                 NA
## 1101         NA        NA       NA  409.81592                 NA
## 1102         NA        NA       NA  409.81592                 NA
## 1103         NA        NA       NA  414.53421                 NA
## 1104         40     172.0        2  414.53421                 NA
## 1105         NA        NA       NA  414.53421                 NA
## 1106         NA        NA       NA  600.45862                 NA
## 1107         40     172.0        2  600.45862                 NA
## 1108         NA        NA       NA  600.45862                 NA
## 1109         NA        NA       NA  600.45862                 NA
## 1110         NA        NA       NA  600.45862                 NA
## 1111         NA        NA       NA  600.45862                 NA
## 1112         NA        NA       NA  600.45862                 NA
## 1113         NA        NA       NA  600.45862                 NA
## 1114         NA        NA       NA  240.42751                 NA
## 1115         NA        NA       NA  240.42751                 NA
## 1116         NA        NA       NA  528.25604                 NA
## 1117         NA        NA       NA  528.25604                 NA
## 1118         40     172.0        2  528.25604                 NA
## 1119         30     129.0        1  308.78909                 NA
## 1120         10      43.0        1  308.78909                 NA
## 1121         40     172.0        2  636.79919                 NA
## 1122         48     206.4        2  636.79919                 NA
## 1123         40     172.0        2  675.70135                 NA
## 1124         40     172.0        2  675.70135                 NA
## 1125         50     215.0        2 1113.75635                 NA
## 1126         50     215.0        2 1113.75635                 NA
## 1127         40     172.0        2  924.11523                 NA
## 1128         40     172.0        2  924.11523                 NA
## 1129         48     206.4        2  924.11523                 NA
## 1130         NA        NA       NA  924.11523                 NA
## 1131         NA        NA       NA  924.11523                 NA
## 1132         NA        NA       NA  183.50467                 NA
## 1133         40     172.0        2  600.73163                 NA
## 1134         NA        NA       NA  600.73163                 NA
## 1135         NA        NA       NA  600.73163                 NA
## 1136         40     172.0        2  666.88403                 NA
## 1137         40     172.0        2  666.88403                 NA
## 1138         40     172.0        2  666.88403                 NA
## 1139         48     206.4        2 1402.06567                 NA
## 1140         40     172.0        2 1402.06567                 NA
## 1141         50     215.0        2 1402.06567                 NA
## 1142         50     215.0        2 1402.06567                 NA
## 1143         40     172.0        2  600.40277                 NA
## 1144         40     172.0        2  600.40277                 NA
## 1145         40     172.0        2  600.40277                 NA
## 1146         50     215.0        2  457.12360                 NA
## 1147         NA        NA       NA  457.12360                 NA
## 1148         NA        NA       NA  457.12360                 NA
## 1149         NA        NA       NA  698.94684                 NA
## 1150         NA        NA       NA  698.94684                 NA
## 1151         NA        NA       NA  698.94684                 NA
## 1152         NA        NA       NA  241.91579                 NA
## 1153         NA        NA       NA  241.91579                 NA
## 1154         NA        NA       NA  241.91579                 NA
## 1155         NA        NA       NA  241.91579                 NA
## 1156         10      43.0        1  575.96191                 NA
## 1157         NA        NA       NA  575.96191                 NA
## 1158         NA        NA       NA  575.96191                 NA
## 1159         NA        NA       NA  575.96191                 NA
## 1160         40     172.0        2  829.30743                 NA
## 1161         NA        NA       NA  829.30743                 NA
## 1162         40     172.0        2  829.30743                 NA
## 1163         40     172.0        2 2808.71191                 NA
## 1164         45     193.5        2 2808.71191                 NA
## 1165         40     172.0        2 2808.71191                 NA
## 1166         40     172.0        2 2808.71191                 NA
## 1167         NA        NA       NA  621.35046                 NA
## 1168         NA        NA       NA  621.35046                 NA
## 1169         48     206.4        2  621.35046                 NA
## 1170         40     172.0        2  684.91510                 NA
## 1171         40     172.0        2  684.91510                 NA
## 1172         NA        NA       NA  263.23505                 NA
## 1173         NA        NA       NA  263.23505                 NA
## 1174         48     206.4        2 1453.28552                 NA
## 1175         48     206.4        2 1453.28552                 NA
## 1176         NA        NA       NA 1453.28552                 NA
## 1177         NA        NA       NA 1453.28552                 NA
## 1178         NA        NA       NA 1453.28552                 NA
## 1179         40     172.0        2  965.00360                 NA
## 1180         45     193.5        2  965.00360                 NA
## 1181         40     172.0        2  965.00360                 NA
## 1182         45     193.5        2  965.00360                 NA
## 1183         NA        NA       NA  965.00360                 NA
## 1184          5      21.5        1  207.45914                 NA
## 1185         NA        NA       NA 1048.32825           20.00000
## 1186         42     180.6        2 1048.32825                 NA
## 1187         NA        NA       NA 1048.32825                 NA
## 1188         NA        NA       NA  552.78088                 NA
## 1189         NA        NA       NA  552.78088                 NA
## 1190         NA        NA       NA  272.20319           16.66667
## 1191         NA        NA       NA  414.41971                 NA
## 1192         NA        NA       NA  414.41971                 NA
## 1193         48     206.4        2 1041.90637                 NA
## 1194         NA        NA       NA 1041.90637                 NA
## 1195         NA        NA       NA 1041.90637                 NA
## 1196         NA        NA       NA 1041.90637                 NA
## 1197         NA        NA       NA  511.24551           20.00000
## 1198         40     172.0        2  511.24551                 NA
## 1199         40     172.0        2 1459.47168                 NA
## 1200         40     172.0        2 1459.47168                 NA
## 1201         40     172.0        2 1459.47168                 NA
## 1202         NA        NA       NA 1459.47168                 NA
## 1203         NA        NA       NA  259.55881                 NA
## 1204         40     172.0        2  871.88428                 NA
## 1205         40     172.0        2  871.88428                 NA
## 1206         40     172.0        2  871.88428                 NA
## 1207         40     172.0        2  542.54974                 NA
## 1208         48     206.4        2  542.54974                 NA
## 1209         NA        NA       NA  542.54974                 NA
## 1210         NA        NA       NA  542.54974                 NA
## 1211         40     172.0        2 2206.86426                 NA
## 1212         40     172.0        2 2206.86426                 NA
## 1213         NA        NA       NA 2206.86426                 NA
## 1214         NA        NA       NA 2206.86426                 NA
## 1215         NA        NA       NA  415.27283                 NA
## 1216         NA        NA       NA  415.27283                 NA
## 1217         NA        NA       NA  203.19710                 NA
## 1218         NA        NA       NA  631.39142                 NA
## 1219         NA        NA       NA  631.39142                 NA
## 1220         NA        NA       NA  366.26343                 NA
## 1221         NA        NA       NA  366.26343                 NA
## 1222         40     172.0        2  858.46326                 NA
## 1223         NA        NA       NA  858.46326                 NA
## 1224         40     172.0        2  858.46326                 NA
## 1225         NA        NA       NA  822.01129                 NA
## 1226         NA        NA       NA  822.01129                 NA
## 1227         40     172.0        2  822.01129                 NA
## 1228         28     120.4        1  608.36176                 NA
## 1229         20      86.0        1  608.36176                 NA
## 1230         40     172.0        2 1956.81433                 NA
## 1231         40     172.0        2 1956.81433                 NA
## 1232         40     172.0        2 1527.75928                 NA
## 1233         40     172.0        2 1527.75928                 NA
## 1234         48     206.4        2 1527.75928                 NA
## 1235         NA        NA       NA 1527.75928                 NA
## 1236         40     172.0        2 1717.52612                 NA
## 1237         40     172.0        2 1717.52612                 NA
## 1238         40     172.0        2 1717.52612                 NA
## 1239         NA        NA       NA 1717.52612                 NA
## 1240         NA        NA       NA 1717.52612                 NA
## 1241         48     206.4        2 1352.14819                 NA
## 1242         40     172.0        2 1352.14819                 NA
## 1243         NA        NA       NA 1352.14819                 NA
## 1244         40     172.0        2  431.85684                 NA
## 1245         35     150.5        1  431.85684                 NA
## 1246         49     210.7        2  431.85684                 NA
## 1247         NA        NA       NA  431.85684                 NA
## 1248         NA        NA       NA  431.85684                 NA
## 1249         NA        NA       NA  431.85684                 NA
## 1250         48     206.4        2 1713.77161                 NA
## 1251         NA        NA       NA 1713.77161                 NA
## 1252         48     206.4        2 1713.77161                 NA
## 1253         NA        NA       NA 1713.77161                 NA
## 1254         NA        NA       NA 1713.77161                 NA
## 1255         NA        NA       NA  108.99002                 NA
## 1256         15      64.5        1  319.01862                 NA
## 1257         NA        NA       NA  319.01862                 NA
## 1258         40     172.0        2 1538.55225                 NA
## 1259         40     172.0        2 1538.55225                 NA
## 1260         NA        NA       NA 1538.55225                 NA
## 1261         NA        NA       NA 1538.55225                 NA
## 1262         48     206.4        2 1254.04736                 NA
## 1263         NA        NA       NA 1254.04736                 NA
## 1264         72     309.6        2 1254.04736           75.00000
## 1265         NA        NA       NA  203.79045           25.00000
## 1266         50     215.0        2  945.15918                 NA
## 1267         48     206.4        2  945.15918                 NA
## 1268         40     172.0        2  945.15918                 NA
## 1269         40     172.0        2 1134.33447                 NA
## 1270         40     172.0        2 1134.33447                 NA
## 1271         40     172.0        2 1134.33447                 NA
## 1272         NA        NA       NA 1134.33447                 NA
## 1273         48     206.4        2  638.96106                 NA
## 1274         30     129.0        1  638.96106                 NA
## 1275         NA        NA       NA  638.96106                 NA
## 1276         NA        NA       NA  649.64856            7.00000
## 1277         45     193.5        2  649.64856                 NA
## 1278         NA        NA       NA  631.64423                 NA
## 1279         NA        NA       NA  631.64423                 NA
## 1280         40     172.0        2  631.64423                 NA
## 1281         NA        NA       NA  904.70032                 NA
## 1282         49     210.7        2  904.70032                 NA
## 1283         NA        NA       NA  904.70032                 NA
## 1284         NA        NA       NA  904.70032                 NA
## 1285          6      25.8        1  174.69481                 NA
## 1286          8      34.4        1  174.69481                 NA
## 1287         40     172.0        2  493.66525                 NA
## 1288         40     172.0        2  493.66525                 NA
## 1289         60     258.0        2  344.09323                 NA
## 1290         40     172.0        2  344.09323                 NA
## 1291         45     193.5        2  832.92999                 NA
## 1292         40     172.0        2  832.92999                 NA
## 1293         NA        NA       NA  832.92999                 NA
## 1294         NA        NA       NA  832.92999                 NA
## 1295         48     206.4        2 1095.62256                 NA
## 1296         40     172.0        2 1095.62256                 NA
## 1297         40     172.0        2 1095.62256                 NA
## 1298         NA        NA       NA 1095.62256                 NA
## 1299         10      43.0        1  309.86456           25.00000
## 1300         26     111.8        1  392.56299                 NA
## 1301         NA        NA       NA  392.56299                 NA
## 1302         NA        NA       NA  392.56299                 NA
## 1303         40     172.0        2  486.38736           20.00000
## 1304         40     172.0        2 1985.87158                 NA
## 1305         40     172.0        2 1985.87158                 NA
## 1306         NA        NA       NA 1985.87158                 NA
## 1307         NA        NA       NA 1985.87158                 NA
## 1308          7      30.1        1  456.76395                 NA
## 1309          7      30.1        1  456.76395                 NA
## 1310         NA        NA       NA  175.42546           10.00000
## 1311         NA        NA       NA 1380.25879                 NA
## 1312         NA        NA       NA 1380.25879                 NA
## 1313         NA        NA       NA 1380.25879                 NA
## 1314         NA        NA       NA 1380.25879                 NA
## 1315         NA        NA       NA 1380.25879           21.00000
## 1316         30     129.0        1  518.22125                 NA
## 1317         25     107.5        1  518.22125                 NA
## 1318         25     107.5        1  587.52191                 NA
## 1319         20      86.0        1  587.52191                 NA
## 1320         20      86.0        1  955.34680                 NA
## 1321         NA        NA       NA  955.34680                 NA
## 1322         40     172.0        2  955.34680                 NA
## 1323         NA        NA       NA  955.34680                 NA
## 1324         NA        NA       NA  955.34680                 NA
## 1325         NA        NA       NA  955.34680                 NA
## 1326         20      86.0        1 1240.73975                 NA
## 1327         NA        NA       NA 1240.73975                 NA
## 1328         40     172.0        2 1240.73975                 NA
## 1329         40     172.0        2 1240.73975                 NA
## 1330         NA        NA       NA 1240.73975                 NA
## 1331         NA        NA       NA 1240.73975                 NA
## 1332         20      86.0        1  844.06024                 NA
## 1333         NA        NA       NA  844.06024                 NA
## 1334         40     172.0        2  844.06024                 NA
## 1335         40     172.0        2  844.06024                 NA
## 1336         NA        NA       NA  844.06024                 NA
## 1337         NA        NA       NA  844.06024                 NA
## 1338         NA        NA       NA  119.56606                 NA
## 1339         40     172.0        2  567.48694                 NA
## 1340         40     172.0        2  567.48694                 NA
## 1341         40     172.0        2  819.74847           10.00000
## 1342         40     172.0        2  819.74847                 NA
## 1343         NA        NA       NA  819.74847           50.00000
## 1344         40     172.0        2 1057.24438                 NA
## 1345         40     172.0        2 1057.24438                 NA
## 1346         10      43.0        1 1057.24438           14.00000
## 1347         40     172.0        2  758.42041                 NA
## 1348         40     172.0        2  758.42041                 NA
## 1349         40     172.0        2 1527.32263                 NA
## 1350         40     172.0        2 1527.32263                 NA
## 1351         NA        NA       NA 1527.32263                 NA
## 1352         70     301.0        2  292.44672                 NA
## 1353         NA        NA       NA  292.44672                 NA
## 1354         NA        NA       NA  292.44672                 NA
## 1355         15      64.5        1  373.72153                 NA
## 1356         NA        NA       NA  373.72153                 NA
## 1357         16      68.8        1  356.94012                 NA
## 1358         NA        NA       NA  760.39368                 NA
## 1359         NA        NA       NA  760.39368                 NA
## 1360         NA        NA       NA  760.39368                 NA
## 1361         NA        NA       NA  282.58405           20.00000
## 1362         84     361.2        2 1480.67334                 NA
## 1363         NA        NA       NA 1480.67334                 NA
## 1364         NA        NA       NA 1480.67334                 NA
## 1365         NA        NA       NA 1480.67334                 NA
## 1366         48     206.4        2 1480.67334           20.00000
## 1367         40     172.0        2 1513.28979                 NA
## 1368         40     172.0        2 1513.28979                 NA
## 1369         40     172.0        2 1513.28979                 NA
## 1370         46     197.8        2  527.00696                 NA
## 1371         30     129.0        1  527.00696                 NA
## 1372         NA        NA       NA  527.00696                 NA
## 1373         40     172.0        2  509.64462                 NA
## 1374         NA        NA       NA  509.64462                 NA
## 1375         NA        NA       NA  509.64462                 NA
## 1376         NA        NA       NA  509.64462                 NA
## 1377         56     240.8        2  823.59985                 NA
## 1378         56     240.8        2  823.59985                 NA
## 1379         46     197.8        2  823.59985                 NA
## 1380         NA        NA       NA  823.59985                 NA
## 1381         NA        NA       NA  823.59985                 NA
## 1382         40     172.0        2  823.59985                 NA
## 1383         NA        NA       NA  482.92181                 NA
## 1384         NA        NA       NA  482.92181                 NA
## 1385         NA        NA       NA  482.92181                 NA
## 1386         NA        NA       NA  482.92181                 NA
## 1387         NA        NA       NA  461.02036                 NA
## 1388         40     172.0        2  461.02036                 NA
## 1389         NA        NA       NA  249.07843           38.00000
## 1390         48     206.4        2  311.89465                 NA
## 1391         48     206.4        2  780.43860                 NA
## 1392         NA        NA       NA  780.43860                 NA
## 1393         20      86.0        1  780.43860                 NA
## 1394         NA        NA       NA  334.75485                 NA
## 1395         NA        NA       NA  334.75485                 NA
## 1396         40     172.0        2  633.10449                 NA
## 1397         NA        NA       NA  633.10449                 NA
## 1398         60     258.0        2 1276.49451                 NA
## 1399         NA        NA       NA 1276.49451                 NA
## 1400         NA        NA       NA 1276.49451                 NA
## 1401         NA        NA       NA 1276.49451                 NA
## 1402         40     172.0        2 1276.49451                 NA
## 1403         48     206.4        2  531.96948                 NA
## 1404         NA        NA       NA  531.96948                 NA
## 1405         48     206.4        2  823.31317                 NA
## 1406         NA        NA       NA  823.31317                 NA
## 1407         NA        NA       NA  823.31317                 NA
## 1408         40     172.0        2  674.55511                 NA
## 1409         NA        NA       NA  655.84009                 NA
## 1410         NA        NA       NA  655.84009                 NA
## 1411         48     206.4        2 1009.00995                 NA
## 1412         40     172.0        2 1009.00995                 NA
## 1413         NA        NA       NA 1009.00995                 NA
## 1414         54     232.2        2 1077.65540                 NA
## 1415         40     172.0        2 1077.65540                 NA
## 1416         NA        NA       NA  176.29744                 NA
## 1417         57     245.1        2 2010.84204                 NA
## 1418         40     172.0        2 2010.84204                 NA
## 1419         40     172.0        2 2010.84204                 NA
## 1420         15      64.5        1  335.32239                 NA
## 1421         NA        NA       NA  335.32239                 NA
## 1422         NA        NA       NA  453.32172                 NA
## 1423         NA        NA       NA  453.32172                 NA
## 1424         40     172.0        2  562.02625                 NA
## 1425         NA        NA       NA  562.02625                 NA
## 1426         NA        NA       NA  562.02625                 NA
## 1427         NA        NA       NA  562.02625                 NA
## 1428         40     172.0        2  562.02625                 NA
## 1429         NA        NA       NA  562.02625                 NA
## 1430         40     172.0        2  520.07324                 NA
## 1431         NA        NA       NA  520.07324                 NA
## 1432         NA        NA       NA  222.47958                 NA
## 1433         NA        NA       NA  222.47958                 NA
## 1434         40     172.0        2  488.64853                 NA
## 1435         40     172.0        2  488.64853                 NA
## 1436         48     206.4        2  482.60696                 NA
## 1437         12      51.6        1  482.60696                 NA
## 1438         50     215.0        2 1872.82837                 NA
## 1439         40     172.0        2 1872.82837                 NA
## 1440         40     172.0        2 1872.82837                 NA
## 1441         72     309.6        2 1872.82837                 NA
## 1442         NA        NA       NA 1872.82837                 NA
## 1443         NA        NA       NA  576.17371                 NA
## 1444         60     258.0        2  576.17371                 NA
## 1445         40     172.0        2  424.52991                 NA
## 1446         NA        NA       NA  424.52991                 NA
## 1447         NA        NA       NA  424.52991                 NA
## 1448         NA        NA       NA  424.52991                 NA
## 1449         NA        NA       NA  424.52991                 NA
## 1450         NA        NA       NA  245.20166                 NA
## 1451         NA        NA       NA  245.20166                 NA
## 1452         40     172.0        2  434.12543                 NA
## 1453         56     240.8        2 1507.85718                 NA
## 1454         NA        NA       NA 1507.85718                 NA
## 1455         50     215.0        2 1507.85718                 NA
## 1456         48     206.4        2 1507.85718                 NA
## 1457         40     172.0        2 1422.67114                 NA
## 1458         NA        NA       NA 1422.67114                 NA
## 1459         40     172.0        2 1422.67114                 NA
## 1460         NA        NA       NA 1422.67114                 NA
## 1461         NA        NA       NA 1422.67114                 NA
## 1462         40     172.0        2  836.16357                 NA
## 1463         40     172.0        2  836.16357                 NA
## 1464         NA        NA       NA  836.16357                 NA
## 1465         NA        NA       NA  836.16357                 NA
## 1466         NA        NA       NA  488.47800                 NA
## 1467         NA        NA       NA  488.47800                 NA
## 1468         40     172.0        2  596.41113                 NA
## 1469         NA        NA       NA  596.41113                 NA
## 1470         40     172.0        2  596.41113                 NA
## 1471         NA        NA       NA  596.41113                 NA
## 1472         40     172.0        2 1668.36243                 NA
## 1473         40     172.0        2 1668.36243                 NA
## 1474         NA        NA       NA 1668.36243                 NA
## 1475         45     193.5        2  851.28278                 NA
## 1476         16      68.8        1  851.28278                 NA
## 1477         60     258.0        2  851.28278                 NA
## 1478         40     172.0        2  851.28278                 NA
## 1479         20      86.0        1  851.28278                 NA
## 1480         NA        NA       NA  851.28278                 NA
## 1481         40     172.0        2  179.96196           50.00000
## 1482         NA        NA       NA  677.61877                 NA
## 1483         40     172.0        2  677.61877                 NA
## 1484         NA        NA       NA  677.61877                 NA
## 1485         NA        NA       NA  435.99695           30.00000
## 1486         40     172.0        2  435.99695                 NA
## 1487         40     172.0        2  435.99695                 NA
## 1488         NA        NA       NA  435.99695                 NA
## 1489         NA        NA       NA  435.99695                 NA
## 1490         40     172.0        2 1016.52185           70.00000
## 1491         40     172.0        2 1016.52185                 NA
## 1492         48     206.4        2 1016.52185                 NA
## 1493         40     172.0        2  684.37756                 NA
## 1494         10      43.0        1  684.37756                 NA
## 1495         NA        NA       NA  684.37756                 NA
## 1496         NA        NA       NA  684.37756                 NA
## 1497         40     172.0        2 1049.75928                 NA
## 1498         48     206.4        2 1049.75928                 NA
## 1499         40     172.0        2 1049.75928                 NA
## 1500         NA        NA       NA  810.56482                 NA
## 1501         NA        NA       NA  810.56482                 NA
## 1502         NA        NA       NA  810.56482                 NA
## 1503         NA        NA       NA  352.46378                 NA
## 1504         35     150.5        1  600.89185                 NA
## 1505         NA        NA       NA  600.89185          108.33334
## 1506         NA        NA       NA  343.05710                 NA
## 1507         NA        NA       NA  343.05710                 NA
## 1508         NA        NA       NA 1064.73047                 NA
## 1509         40     172.0        2 1064.73047                 NA
## 1510         NA        NA       NA 1064.73047                 NA
## 1511         NA        NA       NA 1064.73047                 NA
## 1512         48     206.4        2 1178.08887                 NA
## 1513         40     172.0        2 1178.08887                 NA
## 1514         NA        NA       NA 1178.08887                 NA
## 1515         40     172.0        2  698.00031                 NA
## 1516         NA        NA       NA  698.00031                 NA
## 1517         50     215.0        2         NA                 NA
## 1518         NA        NA       NA         NA                 NA
## 1519         NA        NA       NA         NA                 NA
## 1520         NA        NA       NA  397.44785                 NA
## 1521         NA        NA       NA  397.44785                 NA
## 1522         NA        NA       NA  397.44785                 NA
## 1523         NA        NA       NA         NA                 NA
## 1524         NA        NA       NA         NA                 NA
## 1525         NA        NA       NA         NA                 NA
## 1526         35     150.5        1  939.01837                 NA
## 1527         NA        NA       NA  939.01837                 NA
## 1528         15      64.5        1  939.01837                 NA
## 1529         NA        NA       NA  939.01837                 NA
## 1530         NA        NA       NA  467.45712                 NA
## 1531         NA        NA       NA  467.45712                 NA
## 1532         NA        NA       NA  467.45712                 NA
## 1533         NA        NA       NA  467.45712                 NA
## 1534         NA        NA       NA  467.45712                 NA
## 1535         NA        NA       NA  467.45712                 NA
## 1536         NA        NA       NA  467.45712                 NA
## 1537         NA        NA       NA  242.70120                 NA
## 1538         NA        NA       NA  242.70120                 NA
## 1539         40     172.0        2  911.50128                 NA
## 1540         NA        NA       NA  911.50128                 NA
## 1541         NA        NA       NA  911.50128                 NA
## 1542         NA        NA       NA  911.50128                 NA
## 1543         40     172.0        2  908.46478                 NA
## 1544         48     206.4        2  908.46478                 NA
## 1545         NA        NA       NA  908.46478                 NA
## 1546         NA        NA       NA  908.46478                 NA
## 1547         56     240.8        2 1031.36060                 NA
## 1548         40     172.0        2 1031.36060                 NA
## 1549         NA        NA       NA 1031.36060                 NA
## 1550         NA        NA       NA 1031.36060                 NA
## 1551         NA        NA       NA 1013.60004                 NA
## 1552         NA        NA       NA 1013.60004                 NA
## 1553         NA        NA       NA 1013.60004                 NA
## 1554         20      86.0        1  465.09805                 NA
## 1555         NA        NA       NA  465.09805                 NA
## 1556         NA        NA       NA  270.05243                 NA
## 1557         40     172.0        2  761.14935                 NA
## 1558         25     107.5        1  761.14935                 NA
## 1559         NA        NA       NA  761.14935                 NA
## 1560         40     172.0        2  611.24890                 NA
## 1561         40     172.0        2  611.24890                 NA
## 1562         NA        NA       NA  826.81104                 NA
## 1563         48     206.4        2  826.81104                 NA
## 1564         40     172.0        2 3446.69702                 NA
## 1565         40     172.0        2 3446.69702                 NA
## 1566         40     172.0        2 3446.69702                 NA
## 1567         70     301.0        2 3446.69702                 NA
## 1568         70     301.0        2 3446.69702                 NA
## 1569         70     301.0        2 3446.69702                 NA
## 1570         40     172.0        2 1576.98975                 NA
## 1571         40     172.0        2 1576.98975                 NA
## 1572         NA        NA       NA 1576.98975                 NA
## 1573         NA        NA       NA 1576.98975                 NA
## 1574         40     172.0        2 1576.98975                 NA
## 1575         NA        NA       NA  556.68188                 NA
## 1576         NA        NA       NA  556.68188                 NA
## 1577         NA        NA       NA  962.24579                 NA
## 1578         20      86.0        1  962.24579                 NA
## 1579         40     172.0        2  962.24579                 NA
## 1580         40     172.0        2  962.24579                 NA
## 1581         NA        NA       NA  962.24579                 NA
## 1582         NA        NA       NA  272.57236                 NA
## 1583         NA        NA       NA  272.57236                 NA
## 1584         NA        NA       NA  272.57236                 NA
## 1585         NA        NA       NA  376.94058           15.00000
## 1586         60     258.0        2  376.94058                 NA
## 1587         40     172.0        2  376.94058                 NA
## 1588         40     172.0        2  376.94058                 NA
## 1589         NA        NA       NA  376.94058                 NA
## 1590         NA        NA       NA 1050.29541                 NA
## 1591         50     215.0        2 1050.29541                 NA
## 1592         50     215.0        2 1050.29541                 NA
## 1593         NA        NA       NA 1050.29541                 NA
## 1594         NA        NA       NA 1050.29541                 NA
## 1595         40     172.0        2  265.26758           20.00000
## 1596         NA        NA       NA  157.32173           10.00000
## 1597         42     180.6        2  718.21777                 NA
## 1598         NA        NA       NA  718.21777                 NA
## 1599         NA        NA       NA  718.21777                 NA
## 1600         NA        NA       NA  718.21777                 NA
## 1601         40     172.0        2  804.56183                 NA
## 1602         NA        NA       NA  804.56183           41.00000
## 1603         NA        NA       NA  804.56183                 NA
## 1604         56     240.8        2  804.56183                 NA
## 1605         40     172.0        2  520.32019                 NA
## 1606         40     172.0        2  520.32019                 NA
## 1607         NA        NA       NA  520.32019                 NA
## 1608         48     206.4        2  378.85992                 NA
## 1609         35     150.5        1  173.35709                 NA
## 1610         NA        NA       NA  173.35709                 NA
## 1611         14      60.2        1  490.00180                 NA
## 1612         40     172.0        2  490.00180                 NA
## 1613         30     129.0        1  406.35776                 NA
## 1614         30     129.0        1  406.35776                 NA
## 1615         35     150.5        1  213.40448                 NA
## 1616         NA        NA       NA 1194.12488                 NA
## 1617         40     172.0        2 1194.12488                 NA
## 1618         40     172.0        2 1017.96674                 NA
## 1619         30     129.0        1 1017.96674                 NA
## 1620         NA        NA       NA 1017.96674                 NA
## 1621         NA        NA       NA 1017.96674                 NA
## 1622         40     172.0        2  677.03156                 NA
## 1623         40     172.0        2  677.03156                 NA
## 1624         40     172.0        2  677.03156                 NA
## 1625         15      64.5        1 1253.24512                 NA
## 1626         40     172.0        2 1253.24512                 NA
## 1627         40     172.0        2 1253.24512                 NA
## 1628         40     172.0        2 1253.24512                 NA
## 1629         28     120.4        1  461.80984                 NA
## 1630         NA        NA       NA  461.80984                 NA
## 1631         NA        NA       NA  461.80984                 NA
## 1632         46     197.8        2  500.04715                 NA
## 1633         40     172.0        2  519.84674                 NA
## 1634         40     172.0        2  519.84674                 NA
## 1635         40     172.0        2  519.84674                 NA
## 1636         60     258.0        2  838.89404                 NA
## 1637         54     232.2        2  838.89404                 NA
## 1638         35     150.5        1  362.36920                 NA
## 1639         35     150.5        1  362.36920                 NA
## 1640         20      86.0        1  652.31500                 NA
## 1641         30     129.0        1  652.31500                 NA
## 1642         20      86.0        1  652.31500                 NA
## 1643         NA        NA       NA  590.29517                 NA
## 1644         NA        NA       NA  590.29517                 NA
## 1645         NA        NA       NA  590.29517                 NA
## 1646         40     172.0        2 1580.85010                 NA
## 1647         40     172.0        2 1580.85010                 NA
## 1648         NA        NA       NA 1580.85010                 NA
## 1649         NA        NA       NA 1580.85010                 NA
## 1650         NA        NA       NA 1580.85010                 NA
## 1651         NA        NA       NA  119.97074           36.00000
## 1652         NA        NA       NA  209.74582           20.00000
## 1653         NA        NA       NA  209.74582                 NA
## 1654         40     172.0        2  735.85071                 NA
## 1655         40     172.0        2  735.85071                 NA
## 1656         15      64.5        1  332.09787                 NA
## 1657         15      64.5        1  332.09787                 NA
## 1658         40     172.0        2 1008.12915                 NA
## 1659         40     172.0        2 1008.12915                 NA
## 1660         20      86.0        1 1008.12915                 NA
## 1661         NA        NA       NA  242.70200                 NA
## 1662         NA        NA       NA  242.70200                 NA
## 1663         63     270.9        2  608.99103                 NA
## 1664         20      86.0        1  608.99103                 NA
## 1665         54     232.2        2  608.99103                 NA
## 1666         21      90.3        1  262.53278                 NA
## 1667         21      90.3        1  262.53278                 NA
## 1668         NA        NA       NA  102.64061                 NA
## 1669         40     172.0        2 2922.20923                 NA
## 1670         40     172.0        2 2922.20923                 NA
## 1671         40     172.0        2 2922.20923                 NA
## 1672         NA        NA       NA 2922.20923                 NA
## 1673         NA        NA       NA 1136.06531                 NA
## 1674         NA        NA       NA 1136.06531                 NA
## 1675         40     172.0        2 1136.06531                 NA
## 1676         NA        NA       NA 1136.06531                 NA
## 1677         NA        NA       NA 1350.25537                 NA
## 1678         NA        NA       NA 1350.25537                 NA
## 1679         50     215.0        2 1350.25537                 NA
## 1680         40     172.0        2  892.93713                 NA
## 1681         NA        NA       NA  892.93713                 NA
## 1682         40     172.0        2  892.93713                 NA
## 1683         NA        NA       NA  892.93713                 NA
## 1684         36     154.8        1  516.16187                 NA
## 1685          7      30.1        1  516.16187                 NA
## 1686         40     172.0        2 1974.30103                 NA
## 1687         40     172.0        2 1974.30103                 NA
## 1688         NA        NA       NA 1974.30103                 NA
## 1689          7      30.1        1  370.02762                 NA
## 1690         40     172.0        2  370.02762                 NA
## 1691         30     129.0        1  767.61774                 NA
## 1692         NA        NA       NA  767.61774                 NA
## 1693         NA        NA       NA  767.61774                 NA
## 1694         NA        NA       NA  767.61774                 NA
## 1695         48     206.4        2  809.31647                 NA
## 1696         NA        NA       NA  809.31647                 NA
## 1697         NA        NA       NA  809.31647                 NA
## 1698         NA        NA       NA  564.54797                 NA
## 1699         NA        NA       NA  564.54797                 NA
## 1700         36     154.8        1  564.54797                 NA
## 1701         40     172.0        2  694.52881                 NA
## 1702         40     172.0        2  694.52881                 NA
## 1703         48     206.4        2  903.07532                 NA
## 1704         48     206.4        2  903.07532                 NA
## 1705         NA        NA       NA  903.07532                 NA
## 1706         NA        NA       NA  982.69879                 NA
## 1707         NA        NA       NA  982.69879                 NA
## 1708         43     184.9        2  982.69879                 NA
## 1709         NA        NA       NA  982.69879                 NA
## 1710         43     184.9        2  982.69879                 NA
## 1711         56     240.8        2  982.69879                 NA
## 1712         NA        NA       NA  982.69879                 NA
## 1713         NA        NA       NA  597.13208                 NA
## 1714          6      25.8        1  597.13208                 NA
## 1715         NA        NA       NA  597.13208                 NA
## 1716         40     172.0        2  504.39178                 NA
## 1717         40     172.0        2  504.39178                 NA
## 1718         NA        NA       NA  504.39178                 NA
## 1719         NA        NA       NA  504.39178                 NA
## 1720         NA        NA       NA 1262.66333                 NA
## 1721         40     172.0        2 1262.66333                 NA
## 1722         NA        NA       NA 1262.66333                 NA
## 1723         NA        NA       NA 1262.66333                 NA
## 1724         NA        NA       NA 1262.66333                 NA
## 1725         NA        NA       NA 1262.66333                 NA
## 1726         NA        NA       NA         NA                 NA
## 1727         NA        NA       NA         NA                 NA
## 1728         40     172.0        2 1067.96008                 NA
## 1729         40     172.0        2 1067.96008                 NA
## 1730         NA        NA       NA  584.63678                 NA
## 1731         40     172.0        2  584.63678                 NA
## 1732         NA        NA       NA  584.63678                 NA
## 1733         NA        NA       NA  584.63678                 NA
## 1734         NA        NA       NA  584.63678                 NA
## 1735         28     120.4        1  645.29614                 NA
## 1736         14      60.2        1  645.29614                 NA
## 1737         40     172.0        2  299.03369                 NA
## 1738         NA        NA       NA  299.03369                 NA
## 1739         50     215.0        2 1201.19885                 NA
## 1740         30     129.0        1 1201.19885                 NA
## 1741         48     206.4        2 1201.19885                 NA
## 1742         40     172.0        2  352.45627                 NA
## 1743         40     172.0        2  352.45627                 NA
## 1744         NA        NA       NA  352.45627                 NA
## 1745         40     172.0        2  417.84399                 NA
## 1746         40     172.0        2  417.84399                 NA
## 1747         NA        NA       NA  417.84399                 NA
## 1748         NA        NA       NA  544.43658                 NA
## 1749         40     172.0        2  544.43658                 NA
## 1750         NA        NA       NA  544.43658                 NA
## 1751         40     172.0        2  544.43658                 NA
## 1752         40     172.0        2  544.43658                 NA
## 1753         60     258.0        2 1164.21960                 NA
## 1754         NA        NA       NA 1164.21960                 NA
## 1755         60     258.0        2 1164.21960                 NA
## 1756         60     258.0        2 1164.21960                 NA
## 1757         NA        NA       NA 1164.21960                 NA
## 1758         NA        NA       NA 1164.21960           15.00000
## 1759         NA        NA       NA 1164.21960                 NA
## 1760         42     180.6        2  606.72198                 NA
## 1761         20      86.0        1  606.72198                 NA
## 1762         60     258.0        2 1042.93738                 NA
## 1763         NA        NA       NA 1042.93738                 NA
## 1764         NA        NA       NA 1042.93738                 NA
## 1765         40     172.0        2 1417.55200                 NA
## 1766         40     172.0        2 1417.55200                 NA
## 1767         NA        NA       NA 1417.55200                 NA
## 1768         NA        NA       NA 1417.55200                 NA
## 1769         60     258.0        2  623.57239                 NA
## 1770         NA        NA       NA  623.57239                 NA
## 1771         NA        NA       NA  623.57239                 NA
## 1772         NA        NA       NA  623.57239                 NA
## 1773         54     232.2        2 1950.40405                 NA
## 1774         30     129.0        1 1950.40405                 NA
## 1775         NA        NA       NA 1950.40405                 NA
## 1776         NA        NA       NA 1950.40405                 NA
## 1777         NA        NA       NA 1950.40405                 NA
## 1778         NA        NA       NA 1570.02039                 NA
## 1779         NA        NA       NA 1570.02039                 NA
## 1780         NA        NA       NA 1570.02039                 NA
## 1781         NA        NA       NA 1570.02039                 NA
## 1782         48     206.4        2 1570.02039                 NA
## 1783         40     172.0        2 1570.02039                 NA
## 1784         NA        NA       NA 1570.02039                 NA
## 1785         NA        NA       NA 1570.02039                 NA
## 1786         NA        NA       NA  732.53723                 NA
## 1787         21      90.3        1  732.53723                 NA
## 1788         NA        NA       NA  732.53723                 NA
## 1789         60     258.0        2  732.53723                 NA
## 1790         NA        NA       NA  732.53723                 NA
## 1791         NA        NA       NA  732.53723                 NA
## 1792         14      60.2        1  264.42871                 NA
## 1793         NA        NA       NA  264.42871                 NA
## 1794         60     258.0        2  387.65182                 NA
## 1795         35     150.5        1  387.65182                 NA
## 1796         30     129.0        1  387.65182                 NA
## 1797         35     150.5        1  352.50525                 NA
## 1798         NA        NA       NA  352.50525                 NA
## 1799         60     258.0        2  352.50525                 NA
## 1800         NA        NA       NA  223.97934                 NA
## 1801         NA        NA       NA  824.10486                 NA
## 1802         NA        NA       NA  824.10486                 NA
## 1803         40     172.0        2  555.95172                 NA
## 1804         40     172.0        2  555.95172                 NA
## 1805         NA        NA       NA  555.95172                 NA
## 1806         40     172.0        2  217.10089                 NA
## 1807         NA        NA       NA  217.10089                 NA
## 1808         15      64.5        1  252.03532           28.00000
## 1809         40     172.0        2  926.86029                 NA
## 1810         40     172.0        2  926.86029                 NA
## 1811         40     172.0        2  926.86029                 NA
## 1812         NA        NA       NA  926.86029                 NA
## 1813         40     172.0        2 1043.12915                 NA
## 1814         40     172.0        2 1043.12915                 NA
## 1815         NA        NA       NA 1043.12915                 NA
## 1816         NA        NA       NA 1043.12915                 NA
## 1817         40     172.0        2  370.85114                 NA
## 1818         NA        NA       NA  370.85114                 NA
## 1819         40     172.0        2         NA                 NA
## 1820         NA        NA       NA         NA                 NA
## 1821         NA        NA       NA         NA                 NA
## 1822         NA        NA       NA         NA                 NA
## 1823         NA        NA       NA  680.92981                 NA
## 1824         NA        NA       NA  680.92981                 NA
## 1825         NA        NA       NA  680.92981                 NA
## 1826         NA        NA       NA  680.92981                 NA
## 1827         NA        NA       NA  680.92981                 NA
## 1828         NA        NA       NA  680.92981                 NA
## 1829         NA        NA       NA  680.92981                 NA
## 1830         40     172.0        2 1186.68274                 NA
## 1831         72     309.6        2 1186.68274                 NA
## 1832         NA        NA       NA 1186.68274                 NA
## 1833         NA        NA       NA 1186.68274                 NA
## 1834         NA        NA       NA 2776.02808                 NA
## 1835         40     172.0        2 2776.02808                 NA
## 1836         40     172.0        2 2776.02808                 NA
## 1837         40     172.0        2 2776.02808                 NA
## 1838         40     172.0        2 2776.02808                 NA
## 1839         NA        NA       NA 2776.02808                 NA
## 1840         NA        NA       NA  336.47778                 NA
## 1841         NA        NA       NA  336.47778                 NA
## 1842         56     240.8        2         NA                 NA
## 1843         NA        NA       NA         NA                 NA
## 1844         NA        NA       NA         NA                 NA
## 1845         NA        NA       NA  616.37378                 NA
## 1846         NA        NA       NA  616.37378                 NA
## 1847         NA        NA       NA  616.37378                 NA
## 1848         NA        NA       NA  616.37378                 NA
## 1849         40     172.0        2 1296.04346                 NA
## 1850         40     172.0        2 1296.04346                 NA
## 1851         40     172.0        2 1296.04346                 NA
## 1852         NA        NA       NA 1296.04346                 NA
## 1853         NA        NA       NA 1296.04346                 NA
## 1854         NA        NA       NA 1296.04346                 NA
## 1855         40     172.0        2  477.43781                 NA
## 1856         NA        NA       NA  477.43781                 NA
## 1857         60     258.0        2  675.54144                 NA
## 1858         20      86.0        1  675.54144                 NA
## 1859         10      43.0        1  675.54144                 NA
## 1860         10      43.0        1  675.54144                 NA
## 1861         NA        NA       NA  675.54144                 NA
## 1862         60     258.0        2  463.81055                 NA
## 1863         30     129.0        1  463.81055                 NA
## 1864         60     258.0        2  463.81055                 NA
## 1865         NA        NA       NA  463.81055                 NA
## 1866         NA        NA       NA  144.82689           23.00000
## 1867         NA        NA       NA  212.79129           23.00000
## 1868         NA        NA       NA  179.87854           22.00000
## 1869         40     172.0        2 1062.75635                 NA
## 1870         40     172.0        2 1062.75635                 NA
## 1871         NA        NA       NA 1062.75635                 NA
## 1872         40     172.0        2 1115.95654                 NA
## 1873         30     129.0        1 1115.95654                 NA
## 1874         NA        NA       NA 1115.95654                 NA
## 1875         40     172.0        2 1171.66614                 NA
## 1876         40     172.0        2 1171.66614                 NA
## 1877         NA        NA       NA 1171.66614                 NA
## 1878         NA        NA       NA 1171.66614                 NA
## 1879         NA        NA       NA 1171.66614                 NA
## 1880         10      43.0        1  850.39404                 NA
## 1881         43     184.9        2  850.39404                 NA
## 1882         43     184.9        2  850.39404                 NA
## 1883         NA        NA       NA  850.39404                 NA
## 1884         NA        NA       NA  367.80655                 NA
## 1885         NA        NA       NA  367.80655                 NA
## 1886         48     206.4        2  367.80655                 NA
## 1887         NA        NA       NA  367.80655                 NA
## 1888         NA        NA       NA  367.80655                 NA
## 1889         NA        NA       NA  367.80655                 NA
## 1890         40     172.0        2  529.73547                 NA
## 1891         NA        NA       NA  529.73547                 NA
## 1892         NA        NA       NA  529.73547                 NA
## 1893         NA        NA       NA  529.73547                 NA
## 1894         NA        NA       NA  294.85153                 NA
## 1895         NA        NA       NA  294.85153                 NA
## 1896         NA        NA       NA  864.50165                 NA
## 1897         43     184.9        2  864.50165                 NA
## 1898         43     184.9        2  864.50165                 NA
## 1899         NA        NA       NA  864.50165                 NA
## 1900         NA        NA       NA  864.50165                 NA
## 1901         NA        NA       NA  864.50165                 NA
## 1902         NA        NA       NA  300.17432                 NA
## 1903         NA        NA       NA  300.17432                 NA
## 1904          4      17.2        1  185.04517           20.00000
## 1905         NA        NA       NA  237.60986                 NA
## 1906         48     206.4        2  237.60986                 NA
## 1907         40     172.0        2  540.88782                 NA
## 1908         48     206.4        2  540.88782                 NA
## 1909         NA        NA       NA  540.88782                 NA
## 1910         NA        NA       NA  540.88782                 NA
## 1911         NA        NA       NA  540.88782                 NA
## 1912         50     215.0        2  641.21436                 NA
## 1913         50     215.0        2  641.21436                 NA
## 1914         50     215.0        2  641.21436                 NA
## 1915         NA        NA       NA  609.22882                 NA
## 1916         NA        NA       NA  609.22882                 NA
## 1917         NA        NA       NA  609.22882                 NA
## 1918         48     206.4        2  504.64780                 NA
## 1919         NA        NA       NA  504.64780                 NA
## 1920         NA        NA       NA  504.64780                 NA
## 1921         NA        NA       NA  504.64780                 NA
## 1922         NA        NA       NA  504.64780                 NA
## 1923         NA        NA       NA  249.90916           60.00000
## 1924         NA        NA       NA  249.90916                 NA
## 1925         40     172.0        2 1208.19397                 NA
## 1926         40     172.0        2 1208.19397                 NA
## 1927         40     172.0        2 1208.19397                 NA
## 1928         40     172.0        2 1155.46265                 NA
## 1929         NA        NA       NA 1155.46265                 NA
## 1930         50     215.0        2  673.18970                 NA
## 1931         50     215.0        2  673.18970                 NA
## 1932         50     215.0        2  673.18970                 NA
## 1933         50     215.0        2  673.18970                 NA
## 1934         NA        NA       NA  673.18970                 NA
## 1935         40     172.0        2 1093.63599                 NA
## 1936         40     172.0        2 1093.63599                 NA
## 1937         NA        NA       NA 1093.63599                 NA
## 1938         NA        NA       NA  648.56799                 NA
## 1939         48     206.4        2  648.56799                 NA
## 1940         30     129.0        1  641.94714                 NA
## 1941         40     172.0        2  641.94714                 NA
## 1942         40     172.0        2  641.94714                 NA
## 1943         NA        NA       NA  641.94714                 NA
## 1944         NA        NA       NA  641.94714                 NA
## 1945         25     107.5        1  445.14694                 NA
## 1946         NA        NA       NA  445.14694                 NA
## 1947         15      64.5        1  622.10791                 NA
## 1948         12      51.6        1  622.10791                 NA
## 1949         40     172.0        2  622.10791                 NA
## 1950         40     172.0        2  622.10791                 NA
## 1951         NA        NA       NA  622.10791                 NA
## 1952         NA        NA       NA  622.10791                 NA
## 1953         30     129.0        1  564.07306                 NA
## 1954         NA        NA       NA  564.07306                 NA
## 1955         48     206.4        2  716.24609                 NA
## 1956         NA        NA       NA  716.24609                 NA
## 1957         NA        NA       NA  716.24609                 NA
## 1958         NA        NA       NA  716.24609                 NA
## 1959         NA        NA       NA  343.58182                 NA
## 1960         NA        NA       NA  343.58182                 NA
## 1961         56     240.8        2 1095.13171                 NA
## 1962         40     172.0        2 1095.13171                 NA
## 1963         NA        NA       NA 1095.13171                 NA
## 1964         48     206.4        2  771.33673                 NA
## 1965         NA        NA       NA  771.33673                 NA
## 1966         NA        NA       NA  771.33673                 NA
## 1967         NA        NA       NA  234.03743           10.00000
## 1968         40     172.0        2  838.08301                 NA
## 1969         NA        NA       NA  838.08301                 NA
## 1970         40     172.0        2  495.87146                 NA
## 1971         NA        NA       NA  495.87146                 NA
## 1972         NA        NA       NA  495.87146                 NA
## 1973         NA        NA       NA  495.87146                 NA
## 1974         NA        NA       NA  293.45761                 NA
## 1975         NA        NA       NA  208.27042           34.00000
## 1976         20      86.0        1  160.21519           25.00000
## 1977         48     206.4        2  327.78729                 NA
## 1978         NA        NA       NA  327.78729                 NA
## 1979         NA        NA       NA  327.78729                 NA
## 1980         NA        NA       NA  208.76208           30.00000
## 1981         NA        NA       NA  153.06590           20.00000
## 1982          6      25.8        1  545.09851                 NA
## 1983         40     172.0        2  545.09851                 NA
## 1984         NA        NA       NA  545.09851                 NA
## 1985         NA        NA       NA  545.09851           20.00000
## 1986         30     129.0        1  986.03772                 NA
## 1987         43     184.9        2  986.03772                 NA
## 1988         NA        NA       NA  986.03772                 NA
## 1989         NA        NA       NA 1016.62170                 NA
## 1990         40     172.0        2 1016.62170                 NA
## 1991          9      38.7        1 1016.62170                 NA
## 1992         NA        NA       NA 1016.62170                 NA
## 1993         48     206.4        2  797.14471                 NA
## 1994         30     129.0        1  797.14471                 NA
## 1995         NA        NA       NA  797.14471                 NA
## 1996         NA        NA       NA  362.08377                 NA
## 1997         NA        NA       NA  362.08377                 NA
## 1998         NA        NA       NA  279.82150           28.00000
## 1999         NA        NA       NA  374.12906                 NA
## 2000         NA        NA       NA  374.12906                 NA
## 2001         NA        NA       NA  251.57349           34.00000
## 2002         NA        NA       NA  221.88983           16.00000
## 2003         12      51.6        1  296.48563                 NA
## 2004         30     129.0        1  296.48563                 NA
## 2005         NA        NA       NA  296.48563                 NA
## 2006         NA        NA       NA  296.48563                 NA
## 2007         40     172.0        2  231.89885                 NA
## 2008         NA        NA       NA  231.89885                 NA
## 2009         NA        NA       NA  231.89885                 NA
## 2010         NA        NA       NA  231.89885                 NA
## 2011         NA        NA       NA  306.85892                 NA
## 2012         40     172.0        2 1453.97754                 NA
## 2013         40     172.0        2 1453.97754                 NA
## 2014         40     172.0        2 1453.97754                 NA
## 2015         40     172.0        2 1453.97754                 NA
## 2016         40     172.0        2  925.98260                 NA
## 2017         40     172.0        2  925.98260                 NA
## 2018         NA        NA       NA  925.98260                 NA
## 2019         28     120.4        1  455.82245                 NA
## 2020         10      43.0        1  455.82245                 NA
## 2021         NA        NA       NA  455.82245                 NA
## 2022         NA        NA       NA  438.86932                 NA
## 2023         21      90.3        1  438.86932                 NA
## 2024         40     172.0        2  438.86932                 NA
## 2025         40     172.0        2  438.86932                 NA
## 2026         70     301.0        2  502.49902                 NA
## 2027         NA        NA       NA  225.96796                 NA
## 2028         60     258.0        2  225.96796                 NA
## 2029         NA        NA       NA 1588.14136                 NA
## 2030         70     301.0        2 1588.14136                 NA
## 2031         48     206.4        2 1588.14136                 NA
## 2032         70     301.0        2 1588.14136                 NA
## 2033         40     172.0        2  980.01624                 NA
## 2034         50     215.0        2  980.01624                 NA
## 2035         NA        NA       NA  980.01624                 NA
## 2036         NA        NA       NA  980.01624                 NA
## 2037         NA        NA       NA  992.14575                 NA
## 2038         NA        NA       NA  992.14575                 NA
## 2039         40     172.0        2  992.14575                 NA
## 2040         60     258.0        2  992.14575                 NA
## 2041         NA        NA       NA  992.14575                 NA
## 2042         40     172.0        2 1189.32068                 NA
## 2043         40     172.0        2 1189.32068                 NA
## 2044         NA        NA       NA 1189.32068                 NA
## 2045         NA        NA       NA 1189.32068                 NA
## 2046         40     172.0        2 1062.12048                 NA
## 2047         NA        NA       NA 1062.12048                 NA
## 2048         NA        NA       NA 1062.12048                 NA
## 2049         28     120.4        1  143.36540                 NA
## 2050         56     240.8        2  699.16260                 NA
## 2051         28     120.4        1  699.16260                 NA
## 2052         56     240.8        2  699.16260                 NA
## 2053         45     193.5        2  588.23035                 NA
## 2054         15      64.5        1  588.23035                 NA
## 2055         48     206.4        2  588.23035                 NA
## 2056         24     103.2        1  227.13867                 NA
## 2057         14      60.2        1  227.13867                 NA
## 2058         40     172.0        2  645.50537                 NA
## 2059         70     301.0        2  645.50537                 NA
## 2060         40     172.0        2  323.63922                 NA
## 2061         28     120.4        1  323.63922                 NA
## 2062         NA        NA       NA  860.74408                 NA
## 2063         50     215.0        2  860.74408                 NA
## 2064         50     215.0        2  860.74408                 NA
## 2065         NA        NA       NA  860.74408                 NA
## 2066         NA        NA       NA  450.44928                 NA
## 2067         NA        NA       NA  450.44928                 NA
## 2068         48     206.4        2  450.44928                 NA
## 2069         30     129.0        1  921.08026                 NA
## 2070         48     206.4        2  921.08026                 NA
## 2071         48     206.4        2  921.08026                 NA
## 2072         NA        NA       NA  921.08026                 NA
## 2073         48     206.4        2  286.07150                 NA
## 2074          7      30.1        1 1349.92432                 NA
## 2075          7      30.1        1 1349.92432                 NA
## 2076         21      90.3        1 1349.92432                 NA
## 2077         NA        NA       NA 1349.92432                 NA
## 2078         NA        NA       NA 1349.92432                 NA
## 2079         20      86.0        1  378.79440                 NA
## 2080         14      60.2        1  378.79440                 NA
## 2081         NA        NA       NA  378.79440                 NA
## 2082         16      68.8        1  311.61649                 NA
## 2083         16      68.8        1  311.61649                 NA
## 2084         50     215.0        2  647.21588                 NA
## 2085         NA        NA       NA  647.21588           15.00000
## 2086         NA        NA       NA  592.14166                 NA
## 2087         20      86.0        1  592.14166                 NA
## 2088         24     103.2        1   81.91538                 NA
## 2089         40     172.0        2 1558.56848                 NA
## 2090         48     206.4        2 1558.56848                 NA
## 2091         NA        NA       NA 1558.56848                 NA
## 2092         40     172.0        2  737.35864                 NA
## 2093         30     129.0        1  737.35864                 NA
## 2094         40     172.0        2  737.35864                 NA
## 2095         NA        NA       NA  737.35864                 NA
## 2096         56     240.8        2  701.78571                 NA
## 2097         14      60.2        1  701.78571                 NA
## 2098         14      60.2        1  701.78571                 NA
## 2099         NA        NA       NA  701.78571           20.00000
## 2100         28     120.4        1  284.41412                 NA
## 2101         20      86.0        1  284.41412                 NA
## 2102         50     215.0        2 1345.49170                 NA
## 2103         15      64.5        1 1345.49170                 NA
## 2104         40     172.0        2 1345.49170                 NA
## 2105         40     172.0        2 1345.49170                 NA
## 2106         10      43.0        1 1345.49170                 NA
## 2107         15      64.5        1 1345.49170                 NA
## 2108         66     283.8        2 1123.63757                 NA
## 2109         60     258.0        2 1123.63757                 NA
## 2110         21      90.3        1 1123.63757           25.00000
## 2111         NA        NA       NA  460.83331                 NA
## 2112         NA        NA       NA  460.83331                 NA
## 2113         NA        NA       NA  460.83331                 NA
## 2114         NA        NA       NA  189.82080                 NA
## 2115         NA        NA       NA  982.09369                 NA
## 2116         40     172.0        2  982.09369                 NA
## 2117         40     172.0        2  982.09369                 NA
## 2118         NA        NA       NA  447.67706                 NA
## 2119         70     301.0        2  447.67706                 NA
## 2120         NA        NA       NA  447.67706                 NA
## 2121         NA        NA       NA  527.07520                 NA
## 2122         NA        NA       NA  527.07520                 NA
## 2123         48     206.4        2  450.19882                 NA
## 2124         NA        NA       NA  450.19882                 NA
## 2125         15      64.5        1  363.46478                 NA
## 2126         NA        NA       NA  363.46478                 NA
## 2127         40     172.0        2 1144.57092                 NA
## 2128         40     172.0        2 1144.57092                 NA
## 2129         48     206.4        2 1496.38586                 NA
## 2130         NA        NA       NA 1496.38586                 NA
## 2131         NA        NA       NA 1496.38586                 NA
## 2132         NA        NA       NA 1496.38586                 NA
## 2133         40     172.0        2  841.38849                 NA
## 2134         40     172.0        2  841.38849                 NA
## 2135         45     193.5        2  841.38849                 NA
## 2136         72     309.6        2 1138.73621                 NA
## 2137         NA        NA       NA 1138.73621                 NA
## 2138         46     197.8        2 1138.73621                 NA
## 2139         NA        NA       NA  294.89154                 NA
## 2140         NA        NA       NA  294.89154                 NA
## 2141          1       4.3        1  831.10974                 NA
## 2142         46     197.8        2  831.10974                 NA
## 2143         NA        NA       NA  831.10974                 NA
## 2144         NA        NA       NA  936.55548                 NA
## 2145         40     172.0        2  936.55548                 NA
## 2146         NA        NA       NA  936.55548                 NA
## 2147         NA        NA       NA  936.55548                 NA
## 2148         40     172.0        2  832.97028                 NA
## 2149         40     172.0        2  832.97028                 NA
## 2150         NA        NA       NA  832.97028                 NA
## 2151         NA        NA       NA  300.66302                 NA
## 2152         NA        NA       NA  300.66302                 NA
## 2153         40     172.0        2  956.31030                 NA
## 2154         NA        NA       NA  956.31030                 NA
## 2155         48     206.4        2  956.31030                 NA
## 2156         48     206.4        2  956.31030                 NA
## 2157         40     172.0        2 1516.13538                 NA
## 2158         40     172.0        2 1516.13538                 NA
## 2159         48     206.4        2 1516.13538                 NA
## 2160         40     172.0        2 1516.13538                 NA
## 2161         NA        NA       NA 1516.13538                 NA
## 2162         NA        NA       NA  633.98657                 NA
## 2163         40     172.0        2  633.98657                 NA
## 2164         NA        NA       NA  633.98657                 NA
## 2165         55     236.5        2  323.44867                 NA
## 2166         NA        NA       NA  323.44867                 NA
## 2167         60     258.0        2  867.27411                 NA
## 2168         40     172.0        2  867.27411                 NA
## 2169         NA        NA       NA  867.27411                 NA
## 2170         NA        NA       NA  867.27411           23.91667
## 2171         40     172.0        2  846.61249                 NA
## 2172         40     172.0        2  846.61249                 NA
## 2173         NA        NA       NA  846.61249                 NA
## 2174         NA        NA       NA  846.61249           23.00000
## 2175         40     172.0        2 1584.29138                 NA
## 2176         48     206.4        2 1584.29138                 NA
## 2177         NA        NA       NA 1584.29138                 NA
## 2178         NA        NA       NA 2666.54956                 NA
## 2179         NA        NA       NA 2666.54956                 NA
## 2180         NA        NA       NA  269.63531                 NA
## 2181         NA        NA       NA  269.63531                 NA
## 2182         NA        NA       NA  269.63531                 NA
## 2183         NA        NA       NA  269.63531                 NA
## 2184         NA        NA       NA  269.63531                 NA
## 2185         NA        NA       NA  269.63531           16.66667
## 2186         NA        NA       NA  269.63531                 NA
## 2187         40     172.0        2  332.26123                 NA
## 2188         25     107.5        1  332.26123                 NA
## 2189         50     215.0        2 1424.53723                 NA
## 2190         NA        NA       NA 1424.53723                 NA
## 2191         60     258.0        2 1424.53723                 NA
## 2192         40     172.0        2 1424.53723                 NA
## 2193         NA        NA       NA 1424.53723                 NA
## 2194         NA        NA       NA 1424.53723                 NA
## 2195         NA        NA       NA 1424.53723           21.00000
## 2196         40     172.0        2 1204.58691                 NA
## 2197         40     172.0        2 1204.58691                 NA
## 2198         NA        NA       NA 1204.58691                 NA
## 2199         NA        NA       NA 1204.58691                 NA
## 2200         40     172.0        2 1191.32507                 NA
## 2201         NA        NA       NA 1191.32507                 NA
## 2202         48     206.4        2 1191.32507                 NA
## 2203         40     172.0        2 1191.32507                 NA
## 2204         NA        NA       NA 1191.32507                 NA
## 2205         40     172.0        2 1317.42468                 NA
## 2206         40     172.0        2 1317.42468                 NA
## 2207         NA        NA       NA 1317.42468                 NA
## 2208         NA        NA       NA 1317.42468                 NA
## 2209         NA        NA       NA 1317.42468           23.00000
## 2210         NA        NA       NA  457.68564                 NA
## 2211         NA        NA       NA  457.68564                 NA
## 2212         NA        NA       NA  457.68564                 NA
## 2213         NA        NA       NA  457.68564                 NA
## 2214         NA        NA       NA  457.68564                 NA
## 2215         40     172.0        2  845.94318                 NA
## 2216         40     172.0        2  845.94318                 NA
## 2217         42     180.6        2  845.94318                 NA
## 2218         NA        NA       NA  845.94318                 NA
## 2219         NA        NA       NA  239.09761                 NA
## 2220         40     172.0        2  239.09761                 NA
## 2221         NA        NA       NA  652.85852                 NA
## 2222         20      86.0        1  652.85852                 NA
## 2223         30     129.0        1  652.85852                 NA
## 2224         40     172.0        2  652.85852                 NA
## 2225         34     146.2        1  928.63214                 NA
## 2226         34     146.2        1  928.63214                 NA
## 2227         NA        NA       NA  928.63214                 NA
## 2228         40     172.0        2 1058.26160                 NA
## 2229         NA        NA       NA 1058.26160                 NA
## 2230         NA        NA       NA 1058.26160                 NA
## 2231         36     154.8        1  291.37900                 NA
## 2232         36     154.8        1  291.37900                 NA
## 2233         75     322.5        2  328.56845           54.00000
## 2234         24     103.2        1  283.07193                 NA
## 2235         24     103.2        1  283.07193                 NA
## 2236         NA        NA       NA  430.47803                 NA
## 2237         NA        NA       NA  430.47803                 NA
## 2238         40     172.0        2  430.47803                 NA
## 2239         40     172.0        2 1807.93457                 NA
## 2240         40     172.0        2 1807.93457                 NA
## 2241         40     172.0        2 1807.93457                 NA
## 2242         65     279.5        2  928.96082                 NA
## 2243         NA        NA       NA  928.96082                 NA
## 2244         45     193.5        2  953.41718                 NA
## 2245         21      90.3        1  953.41718                 NA
## 2246         NA        NA       NA  953.41718                 NA
## 2247         NA        NA       NA  953.41718                 NA
## 2248         NA        NA       NA  338.25916                 NA
## 2249         NA        NA       NA  338.25916                 NA
## 2250         60     258.0        2 1470.46411                 NA
## 2251         48     206.4        2 1470.46411                 NA
## 2252         42     180.6        2 1470.46411                 NA
## 2253         NA        NA       NA  288.37125                 NA
## 2254         NA        NA       NA  288.37125                 NA
## 2255         48     206.4        2 1591.19336                 NA
## 2256         42     180.6        2 1591.19336                 NA
## 2257         NA        NA       NA 1591.19336                 NA
## 2258         NA        NA       NA 1591.19336                 NA
## 2259         44     189.2        2 1284.74023                 NA
## 2260         NA        NA       NA 1284.74023                 NA
## 2261         NA        NA       NA 1284.74023                 NA
## 2262         42     180.6        2  969.17926                 NA
## 2263         42     180.6        2  969.17926                 NA
## 2264         NA        NA       NA  969.17926                 NA
## 2265         NA        NA       NA  206.57861                 NA
## 2266         48     206.4        2  869.52673                 NA
## 2267         40     172.0        2  869.52673                 NA
## 2268         NA        NA       NA  869.52673                 NA
## 2269         NA        NA       NA  869.52673                 NA
## 2270         NA        NA       NA  869.52673           63.00000
## 2271         NA        NA       NA  869.52673           19.00000
## 2272         NA        NA       NA  220.93845                 NA
## 2273         NA        NA       NA  220.93845                 NA
## 2274         30     129.0        1  448.47437                 NA
## 2275         12      51.6        1  448.47437                 NA
## 2276         NA        NA       NA  448.47437                 NA
## 2277         NA        NA       NA  448.47437                 NA
## 2278         NA        NA       NA  448.47437                 NA
## 2279         NA        NA       NA  448.47437                 NA
## 2280         NA        NA       NA  335.10788           75.00000
## 2281         NA        NA       NA  335.10788                 NA
## 2282         NA        NA       NA  335.10788                 NA
## 2283         NA        NA       NA  335.10788                 NA
## 2284         NA        NA       NA  335.10788                 NA
## 2285         40     172.0        2  908.68634                 NA
## 2286         48     206.4        2  908.68634                 NA
## 2287         NA        NA       NA  908.68634                 NA
## 2288         30     129.0        1  209.74416                 NA
## 2289         40     172.0        2  209.74416                 NA
## 2290         NA        NA       NA  614.01343                 NA
## 2291         46     197.8        2  614.01343                 NA
## 2292         NA        NA       NA  614.01343                 NA
## 2293         60     258.0        2  646.47662                 NA
## 2294         66     283.8        2  646.47662                 NA
## 2295         NA        NA       NA  646.47662                 NA
## 2296         NA        NA       NA  646.47662                 NA
## 2297         40     172.0        2  871.02173                 NA
## 2298         99     425.7        2  871.02173                 NA
## 2299         60     258.0        2  871.02173                 NA
## 2300         40     172.0        2  940.79132                 NA
## 2301         NA        NA       NA  940.79132                 NA
## 2302         48     206.4        2  940.79132                 NA
## 2303         NA        NA       NA  940.79132                 NA
## 2304         NA        NA       NA  940.79132                 NA
## 2305         40     172.0        2  441.34851                 NA
## 2306         NA        NA       NA  441.34851                 NA
## 2307         40     172.0        2 1106.23181                 NA
## 2308         38     163.4        1 1106.23181                 NA
## 2309         36     154.8        1 1106.23181                 NA
## 2310         NA        NA       NA 1106.23181                 NA
## 2311         NA        NA       NA  419.77161                 NA
## 2312         NA        NA       NA  419.77161                 NA
## 2313         NA        NA       NA  419.77161                 NA
## 2314         40     172.0        2 1343.96558                 NA
## 2315         40     172.0        2 1343.96558                 NA
## 2316         40     172.0        2 1343.96558                 NA
## 2317         40     172.0        2 1343.96558                 NA
## 2318         48     206.4        2  928.02130                 NA
## 2319         NA        NA       NA  928.02130                 NA
## 2320         NA        NA       NA  928.02130                 NA
## 2321         25     107.5        1  928.02130                 NA
## 2322         48     206.4        2 1372.52014                 NA
## 2323         40     172.0        2 1372.52014                 NA
## 2324         NA        NA       NA 1372.52014                 NA
## 2325         40     172.0        2 1372.52014           75.00000
## 2326         40     172.0        2  337.52930           18.00000
## 2327         NA        NA       NA  317.03305                 NA
## 2328         NA        NA       NA  317.03305                 NA
## 2329         NA        NA       NA  393.81326                 NA
## 2330         NA        NA       NA  393.81326                 NA
## 2331         NA        NA       NA  393.81326                 NA
## 2332         NA        NA       NA  393.81326                 NA
## 2333         NA        NA       NA  611.54663           41.66667
## 2334         40     172.0        2  611.54663                 NA
## 2335         45     193.5        2  333.54813                 NA
## 2336         NA        NA       NA  227.96027           33.33333
## 2337         NA        NA       NA  353.46106           58.00000
## 2338         60     258.0        2 2848.90308                 NA
## 2339         60     258.0        2 2848.90308                 NA
## 2340         48     206.4        2 2848.90308                 NA
## 2341         NA        NA       NA 2848.90308                 NA
## 2342         NA        NA       NA 1031.22705                 NA
## 2343         NA        NA       NA 1031.22705                 NA
## 2344         40     172.0        2 1031.22705                 NA
## 2345         NA        NA       NA 1031.22705           10.00000
## 2346         40     172.0        2  869.90796                 NA
## 2347         NA        NA       NA  869.90796                 NA
## 2348         NA        NA       NA  869.90796                 NA
## 2349         NA        NA       NA  180.20422                 NA
## 2350         NA        NA       NA 1127.21057                 NA
## 2351         48     206.4        2 1127.21057                 NA
## 2352         NA        NA       NA 1127.21057                 NA
## 2353         NA        NA       NA 1127.21057                 NA
## 2354         48     206.4        2 1450.69470                 NA
## 2355         40     172.0        2 1450.69470                 NA
## 2356         NA        NA       NA 1450.69470                 NA
## 2357         82     352.6        2  233.94531                 NA
## 2358         NA        NA       NA  233.94531                 NA
## 2359         50     215.0        2  491.70743                 NA
## 2360         NA        NA       NA  491.70743                 NA
## 2361         NA        NA       NA  491.70743                 NA
## 2362         NA        NA       NA  491.70743                 NA
## 2363         NA        NA       NA  389.93643                 NA
## 2364         NA        NA       NA  389.93643                 NA
## 2365         NA        NA       NA  402.61713                 NA
## 2366         NA        NA       NA  402.61713                 NA
## 2367         70     301.0        2 1415.50098                 NA
## 2368         40     172.0        2 1415.50098                 NA
## 2369         48     206.4        2 1415.50098                 NA
## 2370         NA        NA       NA  554.56323                 NA
## 2371         NA        NA       NA  554.56323                 NA
## 2372         40     172.0        2  554.56323                 NA
## 2373         NA        NA       NA 1338.95544                 NA
## 2374         50     215.0        2 1338.95544                 NA
## 2375         NA        NA       NA 1338.95544                 NA
## 2376         NA        NA       NA 1338.95544                 NA
## 2377         NA        NA       NA 1338.95544                 NA
## 2378         NA        NA       NA 1338.95544                 NA
## 2379         NA        NA       NA  508.65610                 NA
## 2380         NA        NA       NA  508.65610                 NA
## 2381         NA        NA       NA 1016.90503                 NA
## 2382         NA        NA       NA 1016.90503                 NA
## 2383         NA        NA       NA 1016.90503                 NA
## 2384         NA        NA       NA 1016.90503                 NA
## 2385         NA        NA       NA 1016.90503                 NA
## 2386         NA        NA       NA  307.88907                 NA
## 2387         NA        NA       NA  307.88907                 NA
## 2388         40     172.0        2  820.59192                 NA
## 2389         40     172.0        2  820.59192                 NA
## 2390         NA        NA       NA  820.59192                 NA
## 2391         40     172.0        2  820.59192                 NA
## 2392         NA        NA       NA  328.79416           17.00000
## 2393         NA        NA       NA  328.79416                 NA
## 2394         NA        NA       NA  323.10388           11.00000
## 2395         40     172.0        2  323.10388                 NA
## 2396         NA        NA       NA  459.21811                 NA
## 2397         21      90.3        1  459.21811                 NA
## 2398         10      43.0        1  490.22375           20.00000
## 2399         20      86.0        1  490.22375                 NA
## 2400         40     172.0        2  490.22375                 NA
## 2401         NA        NA       NA  490.22375                 NA
## 2402         NA        NA       NA  490.22375                 NA
## 2403         40     172.0        2  437.31046                 NA
## 2404         40     172.0        2  437.31046                 NA
## 2405         NA        NA       NA  437.31046                 NA
## 2406         NA        NA       NA  437.31046                 NA
## 2407         NA        NA       NA  437.31046                 NA
## 2408         NA        NA       NA  331.61874           18.00000
## 2409         NA        NA       NA  331.61874                 NA
## 2410         NA        NA       NA  236.70096                 NA
## 2411         NA        NA       NA  236.70096                 NA
## 2412         NA        NA       NA  155.20647                 NA
## 2413         40     172.0        2  523.70404                 NA
## 2414         32     137.6        1  523.70404                 NA
## 2415         NA        NA       NA  523.70404                 NA
## 2416         40     172.0        2 1246.68994                 NA
## 2417         NA        NA       NA 1246.68994                 NA
## 2418         NA        NA       NA 1246.68994                 NA
## 2419         NA        NA       NA 1246.68994                 NA
## 2420         48     206.4        2  951.19537                 NA
## 2421         NA        NA       NA  951.19537                 NA
## 2422         NA        NA       NA  951.19537                 NA
## 2423         NA        NA       NA  951.19537                 NA
## 2424         20      86.0        1  238.01794                 NA
## 2425         NA        NA       NA   92.98051                 NA
## 2426         45     193.5        2  478.47571                 NA
## 2427         50     215.0        2  478.47571                 NA
## 2428         21      90.3        1  337.06631                 NA
## 2429         NA        NA       NA  337.06631                 NA
## 2430         40     172.0        2  337.06631                 NA
## 2431         NA        NA       NA  717.94373                 NA
## 2432         40     172.0        2  717.94373                 NA
## 2433         NA        NA       NA  226.56247                 NA
## 2434         NA        NA       NA  668.17426                 NA
## 2435         40     172.0        2  668.17426                 NA
## 2436         NA        NA       NA  535.13617                 NA
## 2437         NA        NA       NA  742.08057                 NA
## 2438         NA        NA       NA  742.08057                 NA
## 2439         NA        NA       NA  152.99893                 NA
## 2440         NA        NA       NA 1159.42212                 NA
## 2441         NA        NA       NA 1159.42212                 NA
## 2442         40     172.0        2 1159.42212                 NA
## 2443         NA        NA       NA 1159.42212                 NA
## 2444         NA        NA       NA 1159.42212                 NA
## 2445         NA        NA       NA 1159.42212                 NA
## 2446         NA        NA       NA  664.20007                 NA
## 2447         30     129.0        1  664.20007                 NA
## 2448         40     172.0        2  664.20007                 NA
## 2449         NA        NA       NA  664.20007                 NA
## 2450         NA        NA       NA  664.20007                 NA
## 2451         40     172.0        2  496.38031                 NA
## 2452         40     172.0        2  496.38031                 NA
## 2453         14      60.2        1  231.59424                 NA
## 2454         NA        NA       NA  466.33014                 NA
## 2455         NA        NA       NA  466.33014                 NA
## 2456         NA        NA       NA  466.33014                 NA
## 2457         84     361.2        2  795.25873                 NA
## 2458         42     180.6        2  795.25873                 NA
## 2459         34     146.2        1  344.81384                 NA
## 2460         24     103.2        1  344.81384                 NA
## 2461         NA        NA       NA  401.84637                 NA
## 2462         NA        NA       NA  401.84637           10.00000
## 2463         30     129.0        1  416.53903                 NA
## 2464         21      90.3        1  416.53903                 NA
## 2465         NA        NA       NA  320.47806                 NA
## 2466         NA        NA       NA  300.45493                 NA
## 2467         54     232.2        2 1034.91418                 NA
## 2468         NA        NA       NA 1034.91418                 NA
## 2469         40     172.0        2  590.36737                 NA
## 2470         40     172.0        2  590.36737                 NA
## 2471         NA        NA       NA  590.36737                 NA
## 2472         NA        NA       NA  590.36737                 NA
## 2473         40     172.0        2  289.91931                 NA
## 2474         NA        NA       NA  289.91931                 NA
## 2475         NA        NA       NA  198.87726                 NA
## 2476         NA        NA       NA  198.87726                 NA
## 2477         40     172.0        2 1102.23621                 NA
## 2478         40     172.0        2 1102.23621                 NA
## 2479         40     172.0        2 1102.23621                 NA
## 2480         NA        NA       NA  139.88350                 NA
## 2481         50     215.0        2 1098.26953                 NA
## 2482         40     172.0        2 1098.26953                 NA
## 2483         NA        NA       NA 1098.26953                 NA
## 2484         NA        NA       NA  536.07568                 NA
## 2485         NA        NA       NA  536.07568                 NA
## 2486         40     172.0        2 1304.36011                 NA
## 2487         NA        NA       NA 1304.36011                 NA
## 2488         NA        NA       NA 1304.36011                 NA
## 2489         48     206.4        2 1304.36011                 NA
## 2490         NA        NA       NA 1304.36011                 NA
## 2491         40     172.0        2 1651.94446                 NA
## 2492         40     172.0        2 1651.94446                 NA
## 2493         NA        NA       NA 1651.94446                 NA
## 2494         12      51.6        1  804.20880                 NA
## 2495         40     172.0        2  804.20880                 NA
## 2496         NA        NA       NA  804.20880                 NA
## 2497         NA        NA       NA  804.20880                 NA
## 2498         NA        NA       NA  804.20880           20.00000
## 2499         48     206.4        2  609.34381                 NA
## 2500         NA        NA       NA  609.34381                 NA
## 2501         NA        NA       NA  609.34381                 NA
## 2502         NA        NA       NA  609.34381                 NA
## 2503         40     172.0        2  987.50769                 NA
## 2504         40     172.0        2  987.50769                 NA
## 2505         NA        NA       NA  987.50769                 NA
## 2506         40     172.0        2  581.06451                 NA
## 2507         40     172.0        2  581.06451                 NA
## 2508         NA        NA       NA  401.89890                 NA
## 2509         NA        NA       NA  401.89890                 NA
## 2510         30     129.0        1  577.95001                 NA
## 2511         NA        NA       NA  577.95001                 NA
## 2512         48     206.4        2 4722.36475                 NA
## 2513         48     206.4        2 4722.36475                 NA
## 2514         40     172.0        2 4722.36475                 NA
## 2515         NA        NA       NA 4722.36475                 NA
## 2516         48     206.4        2 4722.36475                 NA
## 2517         NA        NA       NA 4722.36475                 NA
## 2518         NA        NA       NA 4722.36475                 NA
## 2519         NA        NA       NA 4722.36475                 NA
## 2520         NA        NA       NA 4722.36475                 NA
## 2521         40     172.0        2 1520.87805                 NA
## 2522         48     206.4        2 1520.87805                 NA
## 2523         48     206.4        2 1520.87805                 NA
## 2524         40     172.0        2 1520.87805                 NA
## 2525         48     206.4        2 1520.87805                 NA
## 2526         NA        NA       NA 1470.56921                 NA
## 2527         40     172.0        2 1470.56921                 NA
## 2528         40     172.0        2 1470.56921                 NA
## 2529         NA        NA       NA 1470.56921                 NA
## 2530         NA        NA       NA 1470.56921                 NA
## 2531         84     361.2        2 1776.16919                 NA
## 2532         NA        NA       NA 1776.16919                 NA
## 2533         48     206.4        2 1776.16919                 NA
## 2534         48     206.4        2 1776.16919                 NA
## 2535         48     206.4        2 1776.16919                 NA
## 2536         NA        NA       NA 1776.16919                 NA
## 2537         60     258.0        2  367.32825           19.00000
## 2538         48     206.4        2  927.65527                 NA
## 2539         40     172.0        2  927.65527                 NA
## 2540         48     206.4        2  927.65527                 NA
## 2541         NA        NA       NA  259.43137           22.00000
## 2542         NA        NA       NA  336.69897                 NA
## 2543         NA        NA       NA 1042.40991                 NA
## 2544         NA        NA       NA 1042.40991                 NA
## 2545         40     172.0        2 1042.40991                 NA
## 2546         40     172.0        2  719.39581                 NA
## 2547         NA        NA       NA  719.39581                 NA
## 2548         30     129.0        1  555.78784                 NA
## 2549         20      86.0        1  555.78784                 NA
## 2550         48     206.4        2 1138.92786                 NA
## 2551         40     172.0        2 1138.92786                 NA
## 2552         NA        NA       NA 1138.92786                 NA
## 2553         NA        NA       NA 1138.92786           28.00000
## 2554         40     172.0        2 1151.95447                 NA
## 2555         60     258.0        2 1151.95447                 NA
## 2556         NA        NA       NA 1151.95447                 NA
## 2557         NA        NA       NA  958.04004                 NA
## 2558         NA        NA       NA  958.04004           28.00000
## 2559         40     172.0        2  958.04004                 NA
## 2560         NA        NA       NA  357.30615                 NA
## 2561         NA        NA       NA  357.30615                 NA
## 2562         NA        NA       NA  241.49329                 NA
## 2563         NA        NA       NA  241.49329                 NA
## 2564         NA        NA       NA  256.79736                 NA
## 2565         40     172.0        2  256.79736                 NA
## 2566         NA        NA       NA  269.90433                 NA
## 2567         NA        NA       NA  269.90433                 NA
## 2568         40     172.0        2 1282.89148                 NA
## 2569         48     206.4        2 1282.89148                 NA
## 2570         NA        NA       NA 1282.89148                 NA
## 2571         50     215.0        2  570.52863                 NA
## 2572         40     172.0        2  570.52863                 NA
## 2573         60     258.0        2 1461.31714                 NA
## 2574         60     258.0        2 1461.31714                 NA
## 2575         NA        NA       NA 1461.31714                 NA
## 2576         NA        NA       NA 1461.31714           10.33333
## 2577         60     258.0        2  432.64832                 NA
## 2578         NA        NA       NA  432.64832                 NA
## 2579         NA        NA       NA  432.64832                 NA
## 2580         48     206.4        2 1112.03735                 NA
## 2581         40     172.0        2 1112.03735                 NA
## 2582         NA        NA       NA 1112.03735           33.33333
## 2583         45     193.5        2  833.04523                 NA
## 2584         45     193.5        2  833.04523                 NA
## 2585         NA        NA       NA  833.04523                 NA
## 2586         50     215.0        2  833.04523                 NA
## 2587         50     215.0        2  833.04523                 NA
## 2588         36     154.8        1  504.29968                 NA
## 2589         NA        NA       NA  573.52264          101.00000
## 2590         NA        NA       NA  573.52264                 NA
## 2591         NA        NA       NA  573.17914                 NA
## 2592         NA        NA       NA  573.17914                 NA
## 2593         NA        NA       NA  768.94177                 NA
## 2594         40     172.0        2  768.94177                 NA
## 2595         60     258.0        2  768.94177                 NA
## 2596         40     172.0        2  455.18768                 NA
## 2597         40     172.0        2  455.18768                 NA
## 2598         48     206.4        2  867.78571                 NA
## 2599         54     232.2        2  867.78571                 NA
## 2600         NA        NA       NA  335.21460           10.00000
## 2601         40     172.0        2  335.21460                 NA
## 2602         40     172.0        2 1418.17773                 NA
## 2603         40     172.0        2 1418.17773                 NA
## 2604         NA        NA       NA 1418.17773                 NA
## 2605         NA        NA       NA 1418.17773                 NA
## 2606         40     172.0        2 1418.17773                 NA
## 2607         NA        NA       NA  234.86522                 NA
## 2608         NA        NA       NA  234.86522                 NA
## 2609         NA        NA       NA  456.36603                 NA
## 2610         NA        NA       NA  456.36603                 NA
## 2611         NA        NA       NA  213.09315                 NA
## 2612         42     180.6        2 1388.38989                 NA
## 2613         NA        NA       NA 1388.38989                 NA
## 2614         NA        NA       NA 1388.38989                 NA
## 2615         NA        NA       NA  221.70673                 NA
## 2616         40     172.0        2  221.70673                 NA
## 2617         40     172.0        2  221.70673                 NA
## 2618         40     172.0        2  869.88721                 NA
## 2619         40     172.0        2  869.88721                 NA
## 2620         NA        NA       NA  869.88721                 NA
## 2621         NA        NA       NA  869.88721                 NA
## 2622         48     206.4        2 1862.94995                 NA
## 2623         40     172.0        2 1862.94995                 NA
## 2624         NA        NA       NA 1862.94995                 NA
## 2625         30     129.0        1  246.04247                 NA
## 2626         24     103.2        1  597.51447                 NA
## 2627         48     206.4        2  597.51447                 NA
## 2628         40     172.0        2 1076.66455                 NA
## 2629         40     172.0        2 1076.66455                 NA
## 2630         40     172.0        2 1076.66455                 NA
## 2631         24     103.2        1  833.97321                 NA
## 2632         24     103.2        1  833.97321                 NA
## 2633         NA        NA       NA  833.97321                 NA
## 2634         48     206.4        2  833.97321                 NA
## 2635         NA        NA       NA  833.97321                 NA
## 2636         NA        NA       NA  833.97321                 NA
## 2637         40     172.0        2  924.48584                 NA
## 2638         NA        NA       NA  924.48584                 NA
## 2639         40     172.0        2  924.48584                 NA
## 2640         NA        NA       NA  924.48584                 NA
## 2641         NA        NA       NA 1381.45105                 NA
## 2642          7      30.1        1 1381.45105                 NA
## 2643         28     120.4        1 1381.45105                 NA
## 2644         40     172.0        2 1381.45105                 NA
## 2645         40     172.0        2  509.61298                 NA
## 2646         30     129.0        1  509.61298                 NA
## 2647         48     206.4        2  509.61298                 NA
## 2648         48     206.4        2 1572.78516                 NA
## 2649         NA        NA       NA 1572.78516                 NA
## 2650         NA        NA       NA 1572.78516                 NA
## 2651         40     172.0        2  902.73535                 NA
## 2652         NA        NA       NA  902.73535           16.00000
## 2653         NA        NA       NA  902.73535                 NA
## 2654         NA        NA       NA  506.23016                 NA
## 2655         NA        NA       NA  506.23016                 NA
## 2656         84     361.2        2  614.13123                 NA
## 2657         84     361.2        2  614.13123                 NA
## 2658         40     172.0        2  614.13123                 NA
## 2659         40     172.0        2  614.13123                 NA
## 2660         55     236.5        2  854.87347                 NA
## 2661         48     206.4        2  854.87347                 NA
## 2662         55     236.5        2  854.87347                 NA
## 2663         NA        NA       NA  854.87347                 NA
## 2664         NA        NA       NA  854.87347                 NA
## 2665         40     172.0        2 3657.04907                 NA
## 2666         40     172.0        2 3657.04907                 NA
## 2667         40     172.0        2 3657.04907                 NA
## 2668         40     172.0        2 3657.04907                 NA
## 2669         55     236.5        2 1092.59436                 NA
## 2670         40     172.0        2 1092.59436                 NA
## 2671         NA        NA       NA 1092.59436                 NA
## 2672         28     120.4        1  252.69084                 NA
## 2673         40     172.0        2  329.53470                 NA
## 2674         NA        NA       NA  329.53470                 NA
## 2675         NA        NA       NA  270.27655                 NA
## 2676         48     206.4        2  596.05658                 NA
## 2677         35     150.5        1  596.05658                 NA
## 2678         48     206.4        2  596.05658                 NA
## 2679         NA        NA       NA  596.05658                 NA
## 2680         NA        NA       NA  596.05658                 NA
## 2681         NA        NA       NA  180.77353                 NA
## 2682         56     240.8        2 1142.88635                 NA
## 2683         30     129.0        1 1142.88635                 NA
## 2684         48     206.4        2 1142.88635                 NA
## 2685         56     240.8        2 1142.88635                 NA
## 2686         NA        NA       NA 1142.88635                 NA
## 2687         NA        NA       NA 1142.88635                 NA
## 2688         10      43.0        1  708.57013                 NA
## 2689         56     240.8        2  708.57013                 NA
## 2690         56     240.8        2  708.57013                 NA
## 2691         20      86.0        1  708.57013                 NA
## 2692         NA        NA       NA  708.57013                 NA
## 2693         NA        NA       NA  207.20900                 NA
## 2694         28     120.4        1  547.52478                 NA
## 2695         20      86.0        1  547.52478                 NA
## 2696         40     172.0        2  903.36627                 NA
## 2697         40     172.0        2  903.36627                 NA
## 2698         42     180.6        2  254.52632                 NA
## 2699         NA        NA       NA  254.52632                 NA
## 2700         50     215.0        2  461.76071                 NA
## 2701         NA        NA       NA  461.76071                 NA
## 2702         NA        NA       NA  189.27576                 NA
## 2703         40     172.0        2 1401.92969                 NA
## 2704         NA        NA       NA 1401.92969                 NA
## 2705         40     172.0        2 1401.92969                 NA
## 2706         NA        NA       NA 1401.92969                 NA
## 2707         40     172.0        2  371.52112                 NA
## 2708         45     193.5        2  371.52112                 NA
## 2709         NA        NA       NA  371.52112                 NA
## 2710         45     193.5        2  371.52112                 NA
## 2711         40     172.0        2  610.43408                 NA
## 2712         40     172.0        2  610.43408                 NA
## 2713         NA        NA       NA  610.43408                 NA
## 2714         NA        NA       NA  610.43408                 NA
## 2715         NA        NA       NA  745.24652                 NA
## 2716         40     172.0        2  745.24652                 NA
## 2717         NA        NA       NA  745.24652                 NA
## 2718         56     240.8        2  745.24652                 NA
## 2719         NA        NA       NA  745.24652                 NA
## 2720         40     172.0        2  981.45520                 NA
## 2721         40     172.0        2  981.45520                 NA
## 2722         40     172.0        2  981.45520                 NA
## 2723         NA        NA       NA  181.91948                 NA
## 2724         NA        NA       NA  365.36774                 NA
## 2725         NA        NA       NA  365.36774                 NA
## 2726         20      86.0        1 1793.86157                 NA
## 2727         48     206.4        2 1793.86157                 NA
## 2728         NA        NA       NA 1793.86157                 NA
## 2729         NA        NA       NA 1793.86157                 NA
## 2730         28     120.4        1  416.24066                 NA
## 2731         20      86.0        1  416.24066                 NA
## 2732         NA        NA       NA  371.39615                 NA
## 2733         NA        NA       NA  371.39615                 NA
## 2734         42     180.6        2  778.22681                 NA
## 2735         NA        NA       NA  778.22681                 NA
## 2736         NA        NA       NA  778.22681                 NA
## 2737         NA        NA       NA  793.81378                 NA
## 2738         NA        NA       NA  793.81378                 NA
## 2739         NA        NA       NA  793.81378                 NA
## 2740         40     172.0        2  793.81378                 NA
## 2741         NA        NA       NA  793.81378                 NA
## 2742         NA        NA       NA  793.81378                 NA
## 2743         NA        NA       NA  199.22357                 NA
## 2744         20      86.0        1  604.70734                 NA
## 2745         25     107.5        1  604.70734                 NA
## 2746         48     206.4        2 1475.90906                 NA
## 2747         40     172.0        2 1475.90906                 NA
## 2748         NA        NA       NA 1475.90906                 NA
## 2749         70     301.0        2 1657.51306                 NA
## 2750         70     301.0        2 1657.51306                 NA
## 2751         42     180.6        2 1657.51306                 NA
## 2752          5      21.5        1 1657.51306                 NA
## 2753         20      86.0        1  893.50684                 NA
## 2754         40     172.0        2  893.50684                 NA
## 2755         40     172.0        2  893.50684                 NA
## 2756         40     172.0        2  893.50684                 NA
## 2757         NA        NA       NA  893.50684                 NA
## 2758         40     172.0        2  268.96100                 NA
## 2759         40     172.0        2  548.91846                 NA
## 2760         NA        NA       NA  548.91846                 NA
## 2761         45     193.5        2  548.91846                 NA
## 2762         45     193.5        2  548.91846                 NA
## 2763         NA        NA       NA  548.91846                 NA
## 2764         NA        NA       NA  402.57339                 NA
## 2765         NA        NA       NA  402.57339                 NA
## 2766         40     172.0        2 1420.98352                 NA
## 2767         NA        NA       NA 1420.98352           11.00000
## 2768         NA        NA       NA 1420.98352                 NA
## 2769         NA        NA       NA 1420.98352                 NA
## 2770         42     180.6        2 1632.11804                 NA
## 2771         42     180.6        2 1632.11804                 NA
## 2772         NA        NA       NA 1632.11804                 NA
## 2773         NA        NA       NA 1632.11804                 NA
## 2774         50     215.0        2  469.81735                 NA
## 2775         NA        NA       NA  469.81735                 NA
## 2776         NA        NA       NA  469.81735                 NA
## 2777         NA        NA       NA  469.81735                 NA
## 2778         NA        NA       NA  469.81735                 NA
## 2779         NA        NA       NA  469.81735                 NA
## 2780         40     172.0        2 1141.21106                 NA
## 2781         40     172.0        2 1141.21106                 NA
## 2782         NA        NA       NA 1141.21106                 NA
## 2783         NA        NA       NA 1141.21106                 NA
## 2784         40     172.0        2  692.02850                 NA
## 2785         40     172.0        2  692.02850                 NA
## 2786         NA        NA       NA  692.02850                 NA
## 2787         48     206.4        2  457.89822                 NA
## 2788         NA        NA       NA  457.89822                 NA
## 2789         NA        NA       NA  457.89822                 NA
## 2790         NA        NA       NA  457.89822                 NA
## 2791         NA        NA       NA  948.84003                 NA
## 2792         NA        NA       NA  948.84003                 NA
## 2793         50     215.0        2  972.34991                 NA
## 2794         50     215.0        2  972.34991                 NA
## 2795         NA        NA       NA  972.34991                 NA
## 2796         NA        NA       NA  972.34991                 NA
## 2797         15      64.5        1  252.52299           14.58333
## 2798         NA        NA       NA  693.32489                 NA
## 2799         NA        NA       NA  693.32489                 NA
## 2800         NA        NA       NA  693.32489                 NA
## 2801         NA        NA       NA  364.50342                 NA
## 2802         NA        NA       NA  364.50342                 NA
## 2803         40     172.0        2  502.13446                 NA
## 2804         40     172.0        2  502.13446                 NA
## 2805         NA        NA       NA  502.13446           20.00000
## 2806         60     258.0        2  963.96338                 NA
## 2807         48     206.4        2  963.96338                 NA
## 2808         NA        NA       NA  963.96338                 NA
## 2809         NA        NA       NA  120.51241           40.00000
## 2810         14      60.2        1  515.57385                 NA
## 2811         48     206.4        2  515.57385                 NA
## 2812         30     129.0        1  515.57385                 NA
## 2813         NA        NA       NA  515.57385                 NA
## 2814         NA        NA       NA  515.57385                 NA
## 2815         NA        NA       NA  515.57385                 NA
## 2816         40     172.0        2  689.66943                 NA
## 2817         35     150.5        1  689.66943                 NA
## 2818         NA        NA       NA  689.66943                 NA
## 2819         NA        NA       NA  689.66943                 NA
## 2820         NA        NA       NA  540.96973                 NA
## 2821         42     180.6        2  540.96973                 NA
## 2822         30     129.0        1  540.96973           18.00000
## 2823         NA        NA       NA  540.96973                 NA
## 2824         NA        NA       NA  540.96973                 NA
## 2825         NA        NA       NA  540.96973                 NA
## 2826         NA        NA       NA  409.86996           12.50000
## 2827         48     206.4        2  450.73639                 NA
## 2828         NA        NA       NA  450.73639                 NA
## 2829         NA        NA       NA  450.73639                 NA
## 2830         42     180.6        2  528.43054                 NA
## 2831         40     172.0        2  528.43054                 NA
## 2832         60     258.0        2 2181.71313                 NA
## 2833         NA        NA       NA 2181.71313                 NA
## 2834         NA        NA       NA 2181.71313                 NA
## 2835         40     172.0        2  833.03418                 NA
## 2836         NA        NA       NA  833.03418                 NA
## 2837         NA        NA       NA  833.03418                 NA
## 2838         NA        NA       NA  833.03418                 NA
## 2839         NA        NA       NA  833.03418                 NA
## 2840         NA        NA       NA  211.87932                 NA
## 2841         NA        NA       NA  211.87932                 NA
## 2842         30     129.0        1  396.16171                 NA
## 2843         NA        NA       NA  396.16171                 NA
## 2844         40     172.0        2  556.15112                 NA
## 2845         40     172.0        2  556.15112                 NA
## 2846         60     258.0        2  810.31897                 NA
## 2847         40     172.0        2  810.31897                 NA
## 2848         40     172.0        2  810.31897                 NA
## 2849         NA        NA       NA  810.31897                 NA
## 2850         NA        NA       NA  810.31897                 NA
## 2851         60     258.0        2 1101.05981                 NA
## 2852         NA        NA       NA 1101.05981                 NA
## 2853         NA        NA       NA 1101.05981                 NA
## 2854         NA        NA       NA 1101.05981                 NA
## 2855         NA        NA       NA 1101.05981                 NA
## 2856         NA        NA       NA 1101.05981                 NA
## 2857         40     172.0        2  527.25049                 NA
## 2858         40     172.0        2  527.25049                 NA
## 2859         NA        NA       NA  527.25049                 NA
## 2860         NA        NA       NA  527.25049                 NA
## 2861         NA        NA       NA  564.03790                 NA
## 2862         NA        NA       NA  564.03790                 NA
## 2863         40     172.0        2  709.49792                 NA
## 2864         30     129.0        1  709.49792                 NA
## 2865         NA        NA       NA  709.49792                 NA
## 2866         NA        NA       NA  240.60555                 NA
## 2867         NA        NA       NA  240.60555                 NA
## 2868         NA        NA       NA  240.60555                 NA
## 2869         NA        NA       NA  336.45853           27.00000
## 2870         84     361.2        2  332.31665                 NA
## 2871         72     309.6        2 1155.45178                 NA
## 2872         40     172.0        2 1155.45178                 NA
## 2873         NA        NA       NA 1155.45178                 NA
## 2874         40     172.0        2 1107.65405                 NA
## 2875         35     150.5        1 1107.65405           36.00000
## 2876         40     172.0        2  960.47650                 NA
## 2877         40     172.0        2  960.47650                 NA
## 2878         NA        NA       NA  960.47650           20.00000
## 2879         21      90.3        1  346.20297                 NA
## 2880         21      90.3        1  346.20297                 NA
## 2881         NA        NA       NA  201.16342           20.00000
## 2882         40     172.0        2  356.06760                 NA
## 2883         50     215.0        2  417.54779                 NA
## 2884         50     215.0        2  417.54779                 NA
## 2885         21      90.3        1  687.28668                 NA
## 2886         21      90.3        1  687.28668                 NA
## 2887         48     206.4        2  616.87134                 NA
## 2888         42     180.6        2  616.87134                 NA
## 2889         NA        NA       NA  805.88721                 NA
## 2890         50     215.0        2  805.88721                 NA
## 2891         NA        NA       NA  805.88721                 NA
## 2892         NA        NA       NA  805.88721                 NA
## 2893         40     172.0        2 1947.38171                 NA
## 2894         40     172.0        2 1947.38171                 NA
## 2895         NA        NA       NA 1947.38171                 NA
## 2896         20      86.0        1  392.61136           25.00000
## 2897         NA        NA       NA  392.61136                 NA
## 2898         42     180.6        2  794.40369                 NA
## 2899         40     172.0        2  794.40369                 NA
## 2900         40     172.0        2  990.59894                 NA
## 2901         40     172.0        2  990.59894                 NA
## 2902         40     172.0        2  990.59894                 NA
## 2903         40     172.0        2  990.59894                 NA
## 2904         20      86.0        1  284.35159                 NA
## 2905         40     172.0        2  284.35159                 NA
## 2906         46     197.8        2  754.86078                 NA
## 2907         40     172.0        2  754.86078                 NA
## 2908         NA        NA       NA  754.86078                 NA
## 2909         40     172.0        2  603.97583                 NA
## 2910         NA        NA       NA  319.00836                 NA
## 2911         NA        NA       NA  319.00836                 NA
## 2912         NA        NA       NA  319.00836                 NA
## 2913         NA        NA       NA 2825.60571                 NA
## 2914         50     215.0        2 2825.60571                 NA
## 2915         NA        NA       NA 2825.60571                 NA
## 2916         NA        NA       NA 2825.60571                 NA
## 2917         26     111.8        1 2463.72827                 NA
## 2918         26     111.8        1 2463.72827                 NA
## 2919         40     172.0        2 2463.72827                 NA
## 2920         40     172.0        2 2463.72827                 NA
## 2921         NA        NA       NA 2463.72827                 NA
## 2922         40     172.0        2 2463.72827                 NA
## 2923         NA        NA       NA 2463.72827                 NA
## 2924         NA        NA       NA 2463.72827                 NA
## 2925         40     172.0        2 2463.72827                 NA
## 2926         NA        NA       NA 2463.72827                 NA
## 2927         40     172.0        2  634.01294                 NA
## 2928         NA        NA       NA  634.01294                 NA
## 2929         NA        NA       NA  634.01294                 NA
## 2930         40     172.0        2 1621.38733                 NA
## 2931         40     172.0        2 1621.38733                 NA
## 2932         40     172.0        2 1621.38733                 NA
## 2933         40     172.0        2 1621.38733                 NA
## 2934         NA        NA       NA 1621.38733                 NA
## 2935         NA        NA       NA 1047.29590                 NA
## 2936         40     172.0        2 1047.29590                 NA
## 2937         40     172.0        2 1047.29590                 NA
## 2938         NA        NA       NA 1047.29590                 NA
## 2939         NA        NA       NA 1047.29590                 NA
## 2940         NA        NA       NA 1047.29590                 NA
## 2941         NA        NA       NA  351.11246           45.00000
## 2942         NA        NA       NA  210.65587                 NA
## 2943         NA        NA       NA  525.07104                 NA
## 2944         NA        NA       NA  525.07104                 NA
## 2945         40     172.0        2  767.49170                 NA
## 2946         40     172.0        2  767.49170                 NA
## 2947         56     240.8        2  945.80011                 NA
## 2948         40     172.0        2  945.80011                 NA
## 2949         NA        NA       NA  586.60358                 NA
## 2950         40     172.0        2  586.60358                 NA
## 2951         48     206.4        2  603.38586                 NA
## 2952         48     206.4        2  603.38586                 NA
## 2953         48     206.4        2  603.38586                 NA
## 2954         40     172.0        2 1145.31787                 NA
## 2955         40     172.0        2 1145.31787                 NA
## 2956         NA        NA       NA 1145.31787                 NA
## 2957         NA        NA       NA  235.95515                 NA
## 2958         50     215.0        2  669.86035                 NA
## 2959         NA        NA       NA  669.86035                 NA
## 2960         NA        NA       NA  910.23505                 NA
## 2961         40     172.0        2  910.23505                 NA
## 2962         NA        NA       NA  287.86047           20.00000
## 2963         NA        NA       NA  287.86047           20.00000
## 2964         45     193.5        2  402.76950                 NA
## 2965         NA        NA       NA  402.76950                 NA
## 2966         40     172.0        2 1290.81433                 NA
## 2967         40     172.0        2 1290.81433                 NA
## 2968         NA        NA       NA 1290.81433                 NA
## 2969         NA        NA       NA 1290.81433                 NA
## 2970         NA        NA       NA 1290.81433                 NA
## 2971         NA        NA       NA 1086.65442                 NA
## 2972         NA        NA       NA 1086.65442                 NA
## 2973         40     172.0        2  618.02490                 NA
## 2974         NA        NA       NA  618.02490                 NA
## 2975         NA        NA       NA  548.66620                 NA
## 2976         30     129.0        1  548.66620                 NA
## 2977         NA        NA       NA  398.21771                 NA
## 2978         NA        NA       NA  398.21771                 NA
## 2979         40     172.0        2 1151.69287                 NA
## 2980         40     172.0        2 1151.69287                 NA
## 2981         NA        NA       NA 1151.69287                 NA
## 2982         40     172.0        2  767.65833                 NA
## 2983         NA        NA       NA  767.65833                 NA
## 2984         NA        NA       NA  767.65833                 NA
## 2985         40     172.0        2 1584.23816                 NA
## 2986         40     172.0        2 1584.23816                 NA
## 2987         NA        NA       NA 1584.23816                 NA
## 2988         NA        NA       NA 1584.23816                 NA
## 2989         NA        NA       NA  296.13782                 NA
## 2990         NA        NA       NA  296.13782                 NA
## 2991         60     258.0        2 1510.91357                 NA
## 2992         42     180.6        2 1510.91357                 NA
## 2993         50     215.0        2 1510.91357                 NA
## 2994         NA        NA       NA 1510.91357                 NA
## 2995         45     193.5        2  357.39209                 NA
## 2996         40     172.0        2  357.39209                 NA
## 2997         NA        NA       NA  357.39209                 NA
## 2998         NA        NA       NA  175.71777           20.00000
## 2999         40     172.0        2  631.30634                 NA
## 3000         40     172.0        2  631.30634                 NA
## 3001         40     172.0        2  631.30634                 NA
## 3002         NA        NA       NA  324.32285           20.00000
## 3003         14      60.2        1  304.32336                 NA
## 3004         14      60.2        1  304.32336                 NA
## 3005         28     120.4        1  286.94443                 NA
## 3006         NA        NA       NA  289.78040           22.00000
## 3007         48     206.4        2 2173.60303                 NA
## 3008         48     206.4        2 2173.60303                 NA
## 3009         NA        NA       NA 2173.60303                 NA
## 3010         NA        NA       NA 2173.60303                 NA
## 3011         49     210.7        2  190.88925           10.50000
## 3012         28     120.4        1  291.32126                 NA
## 3013         NA        NA       NA  291.32126                 NA
## 3014         40     172.0        2  771.63336                 NA
## 3015         NA        NA       NA  771.63336                 NA
## 3016         NA        NA       NA  771.63336                 NA
## 3017         25     107.5        1  370.93973                 NA
## 3018         NA        NA       NA  370.93973                 NA
## 3019         NA        NA       NA  370.93973           19.00000
## 3020         60     258.0        2  456.69550                 NA
## 3021         35     150.5        1  456.69550                 NA
## 3022         40     172.0        2  571.75940                 NA
## 3023         NA        NA       NA  571.75940                 NA
## 3024         NA        NA       NA  571.75940                 NA
## 3025         NA        NA       NA  229.73164           40.16667
## 3026         NA        NA       NA  134.75258           18.00000
## 3027         NA        NA       NA  420.95990                 NA
## 3028         40     172.0        2  420.95990                 NA
## 3029         40     172.0        2  895.78900                 NA
## 3030         40     172.0        2  895.78900                 NA
## 3031         NA        NA       NA  895.78900                 NA
## 3032         NA        NA       NA  895.78900                 NA
## 3033         40     172.0        2  773.63794                 NA
## 3034         46     197.8        2  773.63794                 NA
## 3035         46     197.8        2  773.63794                 NA
## 3036         40     172.0        2  723.88190                 NA
## 3037         40     172.0        2  723.88190                 NA
## 3038         40     172.0        2  723.88190                 NA
## 3039         NA        NA       NA  723.88190                 NA
## 3040         NA        NA       NA  522.01251                 NA
## 3041         NA        NA       NA  522.01251                 NA
## 3042         NA        NA       NA  522.01251                 NA
## 3043         NA        NA       NA  522.01251                 NA
## 3044         20      86.0        1  521.22571                 NA
## 3045         12      51.6        1  521.22571                 NA
## 3046         NA        NA       NA  521.22571                 NA
## 3047         NA        NA       NA  521.22571                 NA
## 3048         21      90.3        1  463.26602           10.00000
## 3049         NA        NA       NA  673.75006                 NA
## 3050         NA        NA       NA  673.75006                 NA
## 3051         43     184.9        2  737.46661                 NA
## 3052         43     184.9        2  737.46661                 NA
## 3053         NA        NA       NA  737.46661                 NA
## 3054         60     258.0        2  483.30087                 NA
## 3055         40     172.0        2  483.30087                 NA
## 3056         30     129.0        1  747.33221                 NA
## 3057         15      64.5        1  747.33221                 NA
## 3058         54     232.2        2  747.33221                 NA
## 3059         30     129.0        1  747.33221                 NA
## 3060         NA        NA       NA  544.48010                 NA
## 3061         NA        NA       NA  544.48010                 NA
## 3062         NA        NA       NA  544.48010                 NA
## 3063         48     206.4        2 1142.39282                 NA
## 3064         48     206.4        2 1142.39282                 NA
## 3065         48     206.4        2 1142.39282                 NA
## 3066         40     172.0        2 1142.39282                 NA
## 3067         40     172.0        2  669.67023                 NA
## 3068         40     172.0        2  669.67023                 NA
## 3069         NA        NA       NA  669.67023                 NA
## 3070         40     172.0        2  749.56299                 NA
## 3071         NA        NA       NA  749.56299                 NA
## 3072         NA        NA       NA  488.48209                 NA
## 3073         NA        NA       NA  488.48209                 NA
## 3074         NA        NA       NA  392.10605           20.00000
## 3075         NA        NA       NA  175.87708                 NA
## 3076         NA        NA       NA  437.42587                 NA
## 3077         NA        NA       NA  437.42587                 NA
## 3078         40     172.0        2  393.74429                 NA
## 3079         40     172.0        2  393.74429                 NA
## 3080         NA        NA       NA 2321.81543                 NA
## 3081         NA        NA       NA 2321.81543                 NA
## 3082         40     172.0        2 2321.81543                 NA
## 3083         20      86.0        1 2321.81543                 NA
## 3084         NA        NA       NA 2321.81543                 NA
## 3085         NA        NA       NA 2321.81543                 NA
## 3086         40     172.0        2 2321.81543                 NA
## 3087         40     172.0        2 2321.81543                 NA
## 3088         NA        NA       NA 2321.81543                 NA
## 3089         20      86.0        1  448.19687                 NA
## 3090         NA        NA       NA  448.19687                 NA
## 3091         NA        NA       NA  101.24920                 NA
## 3092         40     172.0        2  461.08295                 NA
## 3093         40     172.0        2  461.08295                 NA
## 3094         10      43.0        1  534.39520                 NA
## 3095         NA        NA       NA  534.39520                 NA
## 3096         NA        NA       NA  640.90582                 NA
## 3097         NA        NA       NA  640.90582                 NA
## 3098         NA        NA       NA  640.90582                 NA
## 3099         NA        NA       NA  345.07932                 NA
## 3100         40     172.0        2  345.07932                 NA
## 3101         NA        NA       NA  649.05396                 NA
## 3102         72     309.6        2  649.05396                 NA
## 3103         NA        NA       NA  649.05396                 NA
## 3104         NA        NA       NA  649.05396                 NA
## 3105         NA        NA       NA  274.20004                 NA
## 3106         40     172.0        2  274.20004                 NA
## 3107         NA        NA       NA  274.20004                 NA
## 3108         48     206.4        2  640.79327                 NA
## 3109         48     206.4        2  640.79327                 NA
## 3110         NA        NA       NA  640.79327                 NA
## 3111         40     172.0        2  719.17847                 NA
## 3112         48     206.4        2  719.17847                 NA
## 3113         NA        NA       NA  809.75677                 NA
## 3114         40     172.0        2  809.75677                 NA
## 3115         NA        NA       NA  809.75677                 NA
## 3116         NA        NA       NA  809.75677                 NA
## 3117         42     180.6        2  431.85361                 NA
## 3118         NA        NA       NA  431.85361                 NA
## 3119         NA        NA       NA  431.85361                 NA
## 3120         48     206.4        2  978.49847                 NA
## 3121         42     180.6        2  978.49847                 NA
## 3122         NA        NA       NA  978.49847                 NA
## 3123         NA        NA       NA  978.49847                 NA
## 3124         42     180.6        2  643.99951                 NA
## 3125         56     240.8        2  643.99951                 NA
## 3126         56     240.8        2  643.99951                 NA
## 3127         70     301.0        2  548.57159                 NA
## 3128         NA        NA       NA  548.57159                 NA
## 3129         NA        NA       NA  548.57159                 NA
## 3130         NA        NA       NA  548.57159                 NA
## 3131         NA        NA       NA  191.56752           20.00000
## 3132         NA        NA       NA  191.56752                 NA
## 3133         40     172.0        2 1315.65955                 NA
## 3134         NA        NA       NA 1315.65955                 NA
## 3135         NA        NA       NA 1315.65955                 NA
## 3136         NA        NA       NA 1315.65955                 NA
## 3137         48     206.4        2 1367.33582                 NA
## 3138         48     206.4        2 1367.33582                 NA
## 3139         48     206.4        2 1367.33582                 NA
## 3140         NA        NA       NA  519.25055                 NA
## 3141         42     180.6        2  519.25055                 NA
## 3142         NA        NA       NA  241.22221           50.00000
## 3143         16      68.8        1   88.13274                 NA
## 3144         40     172.0        2 2459.88330                 NA
## 3145         40     172.0        2 2459.88330                 NA
## 3146         40     172.0        2 2459.88330                 NA
## 3147         40     172.0        2 2459.88330                 NA
## 3148         30     129.0        1  479.60452                 NA
## 3149         NA        NA       NA  479.60452                 NA
## 3150         45     193.5        2  250.20537                 NA
## 3151         40     172.0        2  761.20068                 NA
## 3152         40     172.0        2  761.20068                 NA
## 3153         42     180.6        2  986.10852                 NA
## 3154         22      94.6        1  986.10852                 NA
## 3155         NA        NA       NA  986.10852                 NA
## 3156         NA        NA       NA  986.10852                 NA
## 3157         40     172.0        2  597.58447                 NA
## 3158         NA        NA       NA  597.58447                 NA
## 3159         NA        NA       NA  597.58447                 NA
## 3160         54     232.2        2  548.06732                 NA
## 3161         NA        NA       NA  548.06732                 NA
## 3162         42     180.6        2  548.06732                 NA
## 3163         NA        NA       NA  548.06732                 NA
## 3164         20      86.0        1  475.55875                 NA
## 3165         NA        NA       NA  475.55875                 NA
## 3166         NA        NA       NA  475.55875                 NA
## 3167         NA        NA       NA  475.55875                 NA
## 3168         NA        NA       NA  475.55875                 NA
## 3169         NA        NA       NA  475.55875                 NA
## 3170         NA        NA       NA  602.11658                 NA
## 3171         NA        NA       NA  602.11658                 NA
## 3172         NA        NA       NA  403.35614                 NA
## 3173         NA        NA       NA  403.35614                 NA
## 3174         NA        NA       NA  403.35614                 NA
## 3175         20      86.0        1  186.42090                 NA
## 3176         NA        NA       NA  295.74295                 NA
## 3177         NA        NA       NA  295.74295                 NA
## 3178         48     206.4        2 1061.72168                 NA
## 3179         NA        NA       NA 1061.72168                 NA
## 3180         48     206.4        2 1061.72168                 NA
## 3181         60     258.0        2 1061.72168                 NA
## 3182         NA        NA       NA 1061.72168                 NA
## 3183         40     172.0        2  653.30847                 NA
## 3184         60     258.0        2  653.30847                 NA
## 3185         NA        NA       NA  653.30847           15.00000
## 3186         NA        NA       NA  653.30847                 NA
## 3187         NA        NA       NA  653.30847                 NA
## 3188         NA        NA       NA  344.70422                 NA
## 3189         NA        NA       NA  344.70422                 NA
## 3190         30     129.0        1  614.42249                 NA
## 3191         30     129.0        1  614.42249                 NA
## 3192         40     172.0        2 1065.59314                 NA
## 3193         60     258.0        2 1065.59314                 NA
## 3194         40     172.0        2 1065.59314                 NA
## 3195         40     172.0        2  683.70294                 NA
## 3196         15      64.5        1  683.70294                 NA
## 3197         NA        NA       NA 1570.21631           23.00000
## 3198         NA        NA       NA 1570.21631                 NA
## 3199         40     172.0        2 1570.21631                 NA
## 3200         NA        NA       NA 1570.21631                 NA
## 3201         NA        NA       NA 1570.21631                 NA
## 3202         40     172.0        2  575.09613                 NA
## 3203         40     172.0        2  575.09613                 NA
## 3204         NA        NA       NA  575.09613                 NA
## 3205         50     215.0        2         NA                 NA
## 3206         50     215.0        2         NA                 NA
## 3207         NA        NA       NA         NA                 NA
## 3208         NA        NA       NA         NA                 NA
## 3209         40     172.0        2 1392.78699                 NA
## 3210         40     172.0        2 1392.78699                 NA
## 3211         NA        NA       NA 1392.78699                 NA
## 3212         NA        NA       NA 1392.78699                 NA
## 3213         70     301.0        2 1193.08093                 NA
## 3214         NA        NA       NA 1193.08093                 NA
## 3215         40     172.0        2 1193.08093                 NA
## 3216         NA        NA       NA 1193.08093                 NA
## 3217         NA        NA       NA 1193.08093                 NA
## 3218         NA        NA       NA  249.52153           64.00000
## 3219         NA        NA       NA  249.52153                 NA
## 3220         40     172.0        2  508.14771                 NA
## 3221         40     172.0        2  508.14771                 NA
## 3222         NA        NA       NA  575.42120                 NA
## 3223         NA        NA       NA  575.42120                 NA
## 3224         NA        NA       NA  575.42120                 NA
## 3225         NA        NA       NA  575.42120                 NA
## 3226         NA        NA       NA  575.42120                 NA
## 3227         42     180.6        2  447.00800                 NA
## 3228         42     180.6        2  447.00800                 NA
## 3229         40     172.0        2  832.07037                 NA
## 3230         40     172.0        2  832.07037                 NA
## 3231         NA        NA       NA  832.07037                 NA
## 3232         NA        NA       NA  832.07037                 NA
## 3233         NA        NA       NA  926.36224                 NA
## 3234         NA        NA       NA  926.36224                 NA
## 3235         64     275.2        2  926.36224                 NA
## 3236         85     365.5        2  926.36224                 NA
## 3237         48     206.4        2 1132.25073                 NA
## 3238         NA        NA       NA 1132.25073                 NA
## 3239         NA        NA       NA 1132.25073                 NA
## 3240         NA        NA       NA  229.36746                 NA
## 3241         20      86.0        1  451.93036                 NA
## 3242         30     129.0        1  451.93036                 NA
## 3243         NA        NA       NA  344.20782                 NA
## 3244         35     150.5        1  344.20782                 NA
## 3245         40     172.0        2  786.00555                 NA
## 3246         NA        NA       NA  786.00555                 NA
## 3247         40     172.0        2  786.00555                 NA
## 3248         NA        NA       NA  477.71286                 NA
## 3249         40     172.0        2  477.71286                 NA
## 3250         NA        NA       NA  477.71286                 NA
## 3251         NA        NA       NA  403.09674                 NA
## 3252         40     172.0        2  849.46039                 NA
## 3253         40     172.0        2  849.46039                 NA
## 3254         NA        NA       NA  849.46039                 NA
## 3255         40     172.0        2 1342.42603                 NA
## 3256         40     172.0        2 1342.42603                 NA
## 3257         40     172.0        2 1342.42603                 NA
## 3258         36     154.8        1 1342.42603                 NA
## 3259         40     172.0        2 1058.23364                 NA
## 3260         NA        NA       NA 1058.23364                 NA
## 3261         40     172.0        2 1058.23364                 NA
## 3262         NA        NA       NA  384.36206                 NA
## 3263         46     197.8        2  384.36206                 NA
## 3264         40     172.0        2  832.50726                 NA
## 3265         40     172.0        2  832.50726                 NA
## 3266         NA        NA       NA  832.50726           36.00000
## 3267         NA        NA       NA  576.72223                 NA
## 3268         40     172.0        2  576.72223                 NA
## 3269         NA        NA       NA  576.72223                 NA
## 3270         40     172.0        2  968.97058                 NA
## 3271         NA        NA       NA  968.97058                 NA
## 3272         NA        NA       NA  968.97058                 NA
## 3273         50     215.0        2         NA                 NA
## 3274         50     215.0        2         NA                 NA
## 3275         50     215.0        2         NA                 NA
## 3276         NA        NA       NA  592.25104                 NA
## 3277         40     172.0        2  592.25104                 NA
## 3278         NA        NA       NA  153.89247           13.00000
## 3279         40     172.0        2 1467.21497                 NA
## 3280         40     172.0        2 1467.21497                 NA
## 3281         NA        NA       NA 1467.21497                 NA
## 3282         NA        NA       NA 1467.21497                 NA
## 3283         80     344.0        2 1021.77539                 NA
## 3284         80     344.0        2 1021.77539                 NA
## 3285         NA        NA       NA 1021.77539                 NA
## 3286         48     206.4        2 1021.77539                 NA
## 3287         40     172.0        2  953.79626                 NA
## 3288         40     172.0        2  953.79626                 NA
## 3289         NA        NA       NA  953.79626                 NA
## 3290         70     301.0        2 1436.88879                 NA
## 3291         70     301.0        2 1436.88879                 NA
## 3292         NA        NA       NA 1436.88879                 NA
## 3293         NA        NA       NA 1436.88879                 NA
## 3294         42     180.6        2  375.18771                 NA
## 3295         40     172.0        2  375.18771                 NA
## 3296         NA        NA       NA  375.18771           20.00000
## 3297         20      86.0        1  466.92804                 NA
## 3298         40     172.0        2  466.92804                 NA
## 3299         NA        NA       NA  466.92804                 NA
## 3300         NA        NA       NA  466.92804                 NA
## 3301         40     172.0        2  488.81461                 NA
## 3302         20      86.0        1  488.81461                 NA
## 3303         40     172.0        2  488.81461                 NA
## 3304         28     120.4        1  254.57240                 NA
## 3305         NA        NA       NA  254.57240                 NA
## 3306         50     215.0        2  740.68958                 NA
## 3307         40     172.0        2  740.68958                 NA
## 3308         50     215.0        2  558.62488                 NA
## 3309         NA        NA       NA  558.62488                 NA
## 3310         NA        NA       NA  558.62488                 NA
## 3311         42     180.6        2 1517.69885                 NA
## 3312         45     193.5        2 1517.69885                 NA
## 3313         NA        NA       NA 1517.69885                 NA
## 3314         40     172.0        2  684.66144                 NA
## 3315         NA        NA       NA  684.66144                 NA
## 3316         72     309.6        2  684.66144                 NA
## 3317         40     172.0        2 1840.03101                 NA
## 3318         NA        NA       NA 1840.03101                 NA
## 3319         40     172.0        2 1840.03101                 NA
## 3320         40     172.0        2 1840.03101                 NA
## 3321         NA        NA       NA 1840.03101                 NA
## 3322         NA        NA       NA 1840.03101                 NA
## 3323         40     172.0        2  420.34711                 NA
## 3324         40     172.0        2  420.34711                 NA
## 3325         40     172.0        2  420.34711                 NA
## 3326         NA        NA       NA  420.34711                 NA
## 3327         NA        NA       NA  420.34711                 NA
## 3328         NA        NA       NA  420.34711                 NA
## 3329         NA        NA       NA  927.44775                 NA
## 3330         NA        NA       NA  927.44775                 NA
## 3331         56     240.8        2  927.44775                 NA
## 3332         56     240.8        2  927.44775                 NA
## 3333         NA        NA       NA  927.44775                 NA
## 3334         NA        NA       NA  927.44775                 NA
## 3335         NA        NA       NA  147.85384                 NA
## 3336         NA        NA       NA  147.85384                 NA
## 3337         NA        NA       NA  194.17090                 NA
## 3338         40     172.0        2  194.17090                 NA
## 3339         NA        NA       NA  194.17090                 NA
## 3340         NA        NA       NA  194.17090                 NA
## 3341         NA        NA       NA  194.17090                 NA
## 3342         35     150.5        1 2082.70898                 NA
## 3343         40     172.0        2 2082.70898                 NA
## 3344         NA        NA       NA 2082.70898                 NA
## 3345         NA        NA       NA 2082.70898                 NA
## 3346         70     301.0        2 2082.70898                 NA
## 3347         NA        NA       NA 2082.70898                 NA
## 3348         48     206.4        2  739.34338                 NA
## 3349         28     120.4        1  739.34338                 NA
## 3350         NA        NA       NA  739.34338                 NA
## 3351         NA        NA       NA  739.34338                 NA
## 3352         20      86.0        1  363.41080                 NA
## 3353         NA        NA       NA  363.41080                 NA
## 3354         40     172.0        2  988.20764                 NA
## 3355         50     215.0        2  988.20764                 NA
## 3356         NA        NA       NA  988.20764                 NA
## 3357         20      86.0        1  988.20764                 NA
## 3358         NA        NA       NA  527.24658                 NA
## 3359         40     172.0        2  527.24658                 NA
## 3360         40     172.0        2  527.24658                 NA
## 3361         40     172.0        2  527.24658                 NA
## 3362         45     193.5        2  752.58356                 NA
## 3363         40     172.0        2  752.58356                 NA
## 3364         NA        NA       NA  752.58356                 NA
## 3365         48     206.4        2  677.66498                 NA
## 3366         NA        NA       NA  677.66498                 NA
## 3367         NA        NA       NA  677.66498                 NA
## 3368         NA        NA       NA  677.66498                 NA
## 3369         NA        NA       NA  275.60059                 NA
## 3370         NA        NA       NA  275.60059                 NA
## 3371         NA        NA       NA  275.60059                 NA
## 3372         40     172.0        2  232.67038                 NA
## 3373         NA        NA       NA  232.67038          110.00000
## 3374         NA        NA       NA  361.46698                 NA
## 3375         NA        NA       NA  361.46698                 NA
## 3376         NA        NA       NA  361.46698                 NA
## 3377         NA        NA       NA  361.46698                 NA
## 3378         NA        NA       NA  361.46698                 NA
## 3379         40     172.0        2  396.49210                 NA
## 3380         NA        NA       NA  396.49210                 NA
## 3381         40     172.0        2  396.49210                 NA
## 3382         40     172.0        2  396.49210                 NA
## 3383         56     240.8        2  396.49210                 NA
## 3384         NA        NA       NA  396.49210                 NA
## 3385         40     172.0        2 1080.01404                 NA
## 3386         NA        NA       NA 1080.01404                 NA
## 3387         NA        NA       NA 1080.01404                 NA
## 3388         NA        NA       NA 1080.01404                 NA
## 3389         40     172.0        2         NA                 NA
## 3390         NA        NA       NA         NA                 NA
## 3391         48     206.4        2         NA                 NA
## 3392         24     103.2        1         NA                 NA
## 3393         NA        NA       NA         NA                 NA
## 3394         40     172.0        2  615.71271                 NA
## 3395         40     172.0        2  615.71271                 NA
## 3396         NA        NA       NA  615.71271                 NA
## 3397         NA        NA       NA  615.71271           17.00000
## 3398         60     258.0        2 2067.63452                 NA
## 3399         NA        NA       NA 2067.63452                 NA
## 3400         NA        NA       NA 2067.63452                 NA
## 3401         NA        NA       NA  395.34775           40.00000
## 3402         NA        NA       NA  439.63300                 NA
## 3403         NA        NA       NA  439.63300                 NA
## 3404         NA        NA       NA  439.63300                 NA
## 3405         60     258.0        2  374.51013                 NA
## 3406         NA        NA       NA 1173.90466                 NA
## 3407         48     206.4        2 1173.90466                 NA
## 3408         NA        NA       NA 1173.90466                 NA
## 3409         36     154.8        1 1173.90466                 NA
## 3410         40     172.0        2 1173.90466                 NA
## 3411         40     172.0        2 1080.85767                 NA
## 3412         40     172.0        2 1080.85767                 NA
## 3413         48     206.4        2  943.82971                 NA
## 3414         48     206.4        2  943.82971                 NA
## 3415         72     309.6        2  753.67999                 NA
## 3416         NA        NA       NA  753.67999                 NA
## 3417         NA        NA       NA 1005.82593                 NA
## 3418         NA        NA       NA 1005.82593                 NA
## 3419         48     206.4        2 1005.82593                 NA
## 3420         60     258.0        2 2748.60669                 NA
## 3421         50     215.0        2 2748.60669                 NA
## 3422         NA        NA       NA 2748.60669                 NA
## 3423         NA        NA       NA  209.65295                 NA
## 3424         NA        NA       NA  507.57111                 NA
## 3425         48     206.4        2  507.57111                 NA
## 3426         NA        NA       NA   97.93578                 NA
## 3427         48     206.4        2  590.26154                 NA
## 3428         48     206.4        2  590.26154                 NA
## 3429         50     215.0        2  585.65021                 NA
## 3430         50     215.0        2  585.65021                 NA
## 3431         NA        NA       NA  585.65021                 NA
## 3432         NA        NA       NA  585.65021                 NA
## 3433         NA        NA       NA  348.37036                 NA
## 3434         NA        NA       NA  348.37036                 NA
## 3435         60     258.0        2 1135.37292                 NA
## 3436         50     215.0        2 1135.37292                 NA
## 3437         NA        NA       NA 1135.37292                 NA
## 3438         NA        NA       NA 1135.37292                 NA
## 3439         50     215.0        2  897.91510                 NA
## 3440         NA        NA       NA  897.91510                 NA
## 3441         NA        NA       NA  897.91510                 NA
## 3442         60     258.0        2  529.50793                 NA
## 3443         NA        NA       NA  529.50793                 NA
## 3444         NA        NA       NA  529.50793                 NA
## 3445         NA        NA       NA  529.50793                 NA
## 3446         48     206.4        2  932.39923                 NA
## 3447         NA        NA       NA  932.39923                 NA
## 3448         NA        NA       NA  932.39923                 NA
## 3449         NA        NA       NA  932.39923                 NA
## 3450         NA        NA       NA  542.67194                 NA
## 3451         NA        NA       NA  542.67194                 NA
## 3452         48     206.4        2  542.67194                 NA
## 3453         48     206.4        2  542.67194                 NA
## 3454         NA        NA       NA  365.87228                 NA
## 3455         NA        NA       NA  365.87228                 NA
## 3456         NA        NA       NA  340.26926                 NA
## 3457         NA        NA       NA  340.26926                 NA
## 3458         NA        NA       NA  287.85205           30.00000
## 3459         NA        NA       NA  660.24109                 NA
## 3460         NA        NA       NA  660.24109                 NA
## 3461         NA        NA       NA  660.24109                 NA
## 3462         NA        NA       NA  660.24109                 NA
## 3463         NA        NA       NA  660.24109                 NA
## 3464         40     172.0        2  750.06921                 NA
## 3465         40     172.0        2  746.27032                 NA
## 3466         NA        NA       NA  746.27032                 NA
## 3467         NA        NA       NA  746.27032                 NA
## 3468         NA        NA       NA  746.27032                 NA
## 3469         40     172.0        2  803.47809                 NA
## 3470         NA        NA       NA  803.47809                 NA
## 3471         40     172.0        2  292.05423                 NA
## 3472         NA        NA       NA  292.05423                 NA
## 3473         NA        NA       NA  123.72357                 NA
## 3474         20      86.0        1  654.26538                 NA
## 3475         36     154.8        1  654.26538                 NA
## 3476         NA        NA       NA  654.26538                 NA
## 3477         NA        NA       NA  654.26538                 NA
## 3478         60     258.0        2  545.73999                 NA
## 3479         60     258.0        2  545.73999                 NA
## 3480         NA        NA       NA  545.73999                 NA
## 3481         56     240.8        2  393.21307                 NA
## 3482         60     258.0        2  393.21307                 NA
## 3483         NA        NA       NA  393.21307                 NA
## 3484         NA        NA       NA  366.93915                 NA
## 3485         NA        NA       NA  366.93915                 NA
## 3486         NA        NA       NA  234.01292                 NA
## 3487         40     172.0        2  234.01292                 NA
## 3488         40     172.0        2  234.01292                 NA
## 3489         40     172.0        2 1229.79358                 NA
## 3490         40     172.0        2 1229.79358                 NA
## 3491         40     172.0        2 1512.78577                 NA
## 3492         40     172.0        2  795.77893                 NA
## 3493         NA        NA       NA  795.77893                 NA
## 3494         40     172.0        2  795.77893                 NA
## 3495         40     172.0        2  795.77893                 NA
## 3496         NA        NA       NA  795.77893                 NA
## 3497         NA        NA       NA 1147.19214                 NA
## 3498         NA        NA       NA 1147.19214                 NA
## 3499         42     180.6        2 1147.19214                 NA
## 3500         42     180.6        2 1147.19214                 NA
## 3501         NA        NA       NA 1147.19214                 NA
## 3502         NA        NA       NA 1147.19214                 NA
## 3503          3      12.9        1  576.09076                 NA
## 3504         40     172.0        2  576.09076                 NA
## 3505         20      86.0        1  563.71515                 NA
## 3506         50     215.0        2  563.71515                 NA
## 3507         40     172.0        2  563.71515                 NA
## 3508         NA        NA       NA  563.71515                 NA
## 3509         NA        NA       NA  563.71515                 NA
## 3510         10      43.0        1  748.88593                 NA
## 3511          5      21.5        1  748.88593                 NA
## 3512         40     172.0        2  563.52942                 NA
## 3513         40     172.0        2  563.52942                 NA
## 3514         40     172.0        2  563.52942                 NA
## 3515         40     172.0        2 2173.34399                 NA
## 3516         40     172.0        2 2173.34399                 NA
## 3517         50     215.0        2 2173.34399                 NA
## 3518         40     172.0        2 2173.34399                 NA
## 3519         NA        NA       NA 1001.99078                 NA
## 3520         NA        NA       NA 1001.99078                 NA
## 3521         40     172.0        2 1001.99078                 NA
## 3522         40     172.0        2  772.56812                 NA
## 3523         40     172.0        2  772.56812                 NA
## 3524         NA        NA       NA  772.56812                 NA
## 3525         NA        NA       NA  772.56812                 NA
## 3526         40     172.0        2  472.67123                 NA
## 3527          7      30.1        1  472.67123                 NA
## 3528         NA        NA       NA 1233.08020                 NA
## 3529         NA        NA       NA 1233.08020                 NA
## 3530         NA        NA       NA  273.44598                 NA
## 3531         NA        NA       NA  273.44598                 NA
## 3532         28     120.4        1  276.22610           60.00000
## 3533         NA        NA       NA  526.48376                 NA
## 3534         40     172.0        2  526.48376                 NA
## 3535         NA        NA       NA  526.48376                 NA
## 3536         NA        NA       NA  526.48376                 NA
## 3537          6      25.8        1  699.77802                 NA
## 3538         NA        NA       NA  699.77802                 NA
## 3539         21      90.3        1  631.57953                 NA
## 3540         NA        NA       NA  631.57953                 NA
## 3541         NA        NA       NA  631.57953                 NA
## 3542         NA        NA       NA  631.57953                 NA
## 3543         NA        NA       NA  631.57953                 NA
## 3544         40     172.0        2 1183.72974                 NA
## 3545         NA        NA       NA 1183.72974                 NA
## 3546         40     172.0        2 1183.72974                 NA
## 3547         NA        NA       NA 1183.72974                 NA
## 3548         50     215.0        2 1832.62036                 NA
## 3549         25     107.5        1 1832.62036                 NA
## 3550         40     172.0        2 1832.62036                 NA
## 3551         NA        NA       NA 1832.62036                 NA
## 3552         NA        NA       NA 1832.62036           18.00000
## 3553         NA        NA       NA  739.26428                 NA
## 3554         40     172.0        2  739.26428                 NA
## 3555         NA        NA       NA  739.26428                 NA
## 3556         14      60.2        1  602.16638                 NA
## 3557         40     172.0        2  602.16638                 NA
## 3558         NA        NA       NA  602.16638                 NA
## 3559         NA        NA       NA  602.16638           75.00000
## 3560         40     172.0        2  572.50311                 NA
## 3561         28     120.4        1  572.50311                 NA
## 3562         40     172.0        2  668.93506                 NA
## 3563         40     172.0        2  668.93506                 NA
## 3564         NA        NA       NA  668.93506                 NA
## 3565         NA        NA       NA  736.92407                 NA
## 3566         40     172.0        2  736.92407                 NA
## 3567         40     172.0        2  736.57306                 NA
## 3568         40     172.0        2  736.57306                 NA
## 3569         40     172.0        2  736.57306                 NA
## 3570         NA        NA       NA  448.72318                 NA
## 3571         25     107.5        1  448.72318                 NA
## 3572         40     172.0        2  992.46460                 NA
## 3573         NA        NA       NA  992.46460                 NA
## 3574         NA        NA       NA  992.46460                 NA
## 3575         NA        NA       NA  992.46460                 NA
## 3576         60     258.0        2  896.64465                 NA
## 3577         40     172.0        2 1332.90088                 NA
## 3578         NA        NA       NA 1332.90088                 NA
## 3579         40     172.0        2 1332.90088                 NA
## 3580         40     172.0        2 1332.90088                 NA
## 3581         NA        NA       NA 1332.90088                 NA
## 3582         NA        NA       NA 1332.90088                 NA
## 3583         40     172.0        2  431.56360                 NA
## 3584         35     150.5        1  431.56360                 NA
## 3585         NA        NA       NA  431.56360                 NA
## 3586         NA        NA       NA  431.56360                 NA
## 3587         NA        NA       NA  431.56360                 NA
## 3588         NA        NA       NA  431.56360                 NA
## 3589         NA        NA       NA  211.50337                 NA
## 3590         NA        NA       NA  432.15024                 NA
## 3591         NA        NA       NA  432.15024                 NA
## 3592         70     301.0        2  766.32983                 NA
## 3593         35     150.5        1  766.32983                 NA
## 3594         NA        NA       NA  766.32983                 NA
## 3595         NA        NA       NA 1185.63440                 NA
## 3596         NA        NA       NA 1185.63440                 NA
## 3597         NA        NA       NA 1185.63440                 NA
## 3598         NA        NA       NA 1185.63440                 NA
## 3599         NA        NA       NA 1185.63440                 NA
## 3600         40     172.0        2  674.42859                 NA
## 3601         35     150.5        1  674.42859                 NA
## 3602         NA        NA       NA  674.42859                 NA
## 3603         NA        NA       NA  674.42859                 NA
## 3604         28     120.4        1 1030.87732                 NA
## 3605         40     172.0        2 1030.87732                 NA
## 3606         NA        NA       NA 1030.87732                 NA
## 3607         25     107.5        1  313.72061                 NA
## 3608         40     172.0        2  666.47009                 NA
## 3609         12      51.6        1  666.47009                 NA
## 3610         NA        NA       NA  666.47009                 NA
## 3611         35     150.5        1 1095.79980                 NA
## 3612         40     172.0        2 1095.79980                 NA
## 3613         NA        NA       NA 1095.79980                 NA
## 3614         28     120.4        1  866.73383                 NA
## 3615         28     120.4        1  866.73383                 NA
## 3616         40     172.0        2 1395.75085                 NA
## 3617         40     172.0        2 1395.75085                 NA
## 3618         40     172.0        2 1395.75085                 NA
## 3619         NA        NA       NA 1395.75085                 NA
## 3620         NA        NA       NA 1395.75085                 NA
## 3621         14      60.2        1 1395.75085                 NA
## 3622         NA        NA       NA  381.32666                 NA
## 3623         28     120.4        1  381.32666                 NA
## 3624         48     206.4        2  520.74823                 NA
## 3625         40     172.0        2  520.74823                 NA
## 3626         42     180.6        2  520.74823                 NA
## 3627         NA        NA       NA  520.74823                 NA
## 3628         NA        NA       NA  520.74823                 NA
## 3629         50     215.0        2  555.63232                 NA
## 3630         40     172.0        2  555.63232                 NA
## 3631         NA        NA       NA  555.63232                 NA
## 3632         40     172.0        2  944.65778                 NA
## 3633         NA        NA       NA  944.65778                 NA
## 3634         NA        NA       NA  944.65778                 NA
## 3635         NA        NA       NA  177.42020                 NA
## 3636         NA        NA       NA  177.42020                 NA
## 3637         40     172.0        2 1245.85730                 NA
## 3638         40     172.0        2 1245.85730                 NA
## 3639         NA        NA       NA 1245.85730                 NA
## 3640         NA        NA       NA 1245.85730                 NA
## 3641         NA        NA       NA  884.77350                 NA
## 3642         NA        NA       NA  884.77350                 NA
## 3643         40     172.0        2  884.77350                 NA
## 3644         40     172.0        2  952.55005                 NA
## 3645         40     172.0        2  952.55005                 NA
## 3646         NA        NA       NA  952.55005                 NA
## 3647         48     206.4        2  317.05054                 NA
## 3648         NA        NA       NA  317.05054                 NA
## 3649         40     172.0        2  940.06744                 NA
## 3650         40     172.0        2  940.06744                 NA
## 3651         40     172.0        2  940.06744                 NA
## 3652         NA        NA       NA  581.56732           13.00000
## 3653         40     172.0        2  581.56732                 NA
## 3654         NA        NA       NA  102.05788           18.00000
## 3655         40     172.0        2  546.06030                 NA
## 3656         40     172.0        2  546.06030                 NA
## 3657         NA        NA       NA  546.06030                 NA
## 3658         NA        NA       NA  546.06030                 NA
## 3659         NA        NA       NA  876.89221                 NA
## 3660         NA        NA       NA  876.89221                 NA
## 3661         45     193.5        2  876.89221                 NA
## 3662         40     172.0        2  876.89221                 NA
## 3663         NA        NA       NA  876.89221                 NA
## 3664         NA        NA       NA  876.89221                 NA
## 3665         NA        NA       NA  410.48810                 NA
## 3666         NA        NA       NA  242.42824                 NA
## 3667         NA        NA       NA  536.67395                 NA
## 3668         NA        NA       NA  536.67395                 NA
## 3669         NA        NA       NA  536.67395                 NA
## 3670         NA        NA       NA  815.81195                 NA
## 3671         NA        NA       NA  815.81195                 NA
## 3672         48     206.4        2  815.81195                 NA
## 3673         35     150.5        1  815.81195                 NA
## 3674         NA        NA       NA  815.81195                 NA
## 3675         49     210.7        2  111.52277                 NA
## 3676         NA        NA       NA  111.52277                 NA
## 3677         NA        NA       NA  111.52277                 NA
## 3678         NA        NA       NA  167.63719                 NA
## 3679         NA        NA       NA  332.02142                 NA
## 3680         NA        NA       NA  332.02142                 NA
## 3681         40     172.0        2  487.97803                 NA
## 3682         NA        NA       NA  487.97803                 NA
## 3683         25     107.5        1  367.96652                 NA
## 3684         25     107.5        1  367.96652                 NA
## 3685         NA        NA       NA  367.96652                 NA
## 3686         NA        NA       NA  367.96652                 NA
## 3687         84     361.2        2 1097.07129                 NA
## 3688         84     361.2        2 1097.07129                 NA
## 3689         NA        NA       NA 1097.07129                 NA
## 3690         40     172.0        2  488.84995                 NA
## 3691         NA        NA       NA  344.28976                 NA
## 3692         NA        NA       NA  838.48187                 NA
## 3693         35     150.5        1  838.48187                 NA
## 3694         40     172.0        2  838.48187                 NA
## 3695         70     301.0        2  296.32880                 NA
## 3696         NA        NA       NA  296.32880                 NA
## 3697          6      25.8        1  296.32880                 NA
## 3698         NA        NA       NA  296.32880                 NA
## 3699         NA        NA       NA  396.20547                 NA
## 3700         NA        NA       NA  396.20547                 NA
## 3701         NA        NA       NA  518.19891                 NA
## 3702         48     206.4        2  518.19891                 NA
## 3703         40     172.0        2 1217.30981                 NA
##  [ reached 'max' / getOption("max.print") -- omitted 8511 rows ]

spss

demo <- read.spss("datasets/international.sav", to.data.frame = TRUE)
boxplot(demo$gdp)

Schouwenaars, Filip. 2016. “Importing Data in R (Part 2).” 2016. <https://www.datacamp.com/courses/importing-data-in-r-part-2>.