class: center, middle, inverse, title-slide # 3.6 — Regression with Categorical Data ## ECON 480 • Econometrics • Fall 2020 ### Ryan Safner
Assistant Professor of Economics
safner@hood.edu
ryansafner/metricsF20
metricsF20.classes.ryansafner.com
--- class: inverse # Outline ### [Regression with Dummy Variables](#12) ### [Recoding Dummies](#36) ### [Categorical Variables (More than 2 Categories)](#47) --- # Categorical Data .pull-left[ - .hi[Categorical data] place an individual into one of several possible *categories* - e.g. sex, season, political party - may be responses to survey questions - can be quantitative (e.g. age, zip code) - `R` calls these `factors` ] .pull-right[ ![](https://www.dropbox.com/s/pgdswagr7b348vu/categoricaldata.png?raw=1) ] --- # Factors in R .quitesmall[ - `factor` is a special type of `character` object class that indicates membership in a category (called a `level`) - Suppose I have data on students: ```r students %>% head(n = 5) ``` <div data-pagedtable="false"> <script data-pagedtable-source type="application/json"> {"columns":[{"label":["ID"],"name":[1],"type":["dbl"],"align":["right"]},{"label":["Rank"],"name":[2],"type":["chr"],"align":["left"]},{"label":["Grade"],"name":[3],"type":["dbl"],"align":["right"]}],"data":[{"1":"1","2":"Sophomore","3":"77"},{"1":"2","2":"Senior","3":"72"},{"1":"3","2":"Freshman","3":"73"},{"1":"4","2":"Senior","3":"73"},{"1":"5","2":"Junior","3":"84"}],"options":{"columns":{"min":{},"max":[10]},"rows":{"min":[10],"max":[10]},"pages":{}}} </script> </div> ] --- # Factors in R .quitesmall[ - Rank is currently a `character` (`<chr>`) variable, but we can make it a `factor` variable, to indicate a student is a member of one of the possible categories: freshman, sophomore, junior, senior ```r students<-students %>% mutate(Rank = as.factor(Rank)) students %>% head(n = 5) ``` <div data-pagedtable="false"> <script data-pagedtable-source type="application/json"> {"columns":[{"label":["ID"],"name":[1],"type":["dbl"],"align":["right"]},{"label":["Rank"],"name":[2],"type":["fctr"],"align":["left"]},{"label":["Grade"],"name":[3],"type":["dbl"],"align":["right"]}],"data":[{"1":"1","2":"Sophomore","3":"77"},{"1":"2","2":"Senior","3":"72"},{"1":"3","2":"Freshman","3":"73"},{"1":"4","2":"Senior","3":"73"},{"1":"5","2":"Junior","3":"84"}],"options":{"columns":{"min":{},"max":[10]},"rows":{"min":[10],"max":[10]},"pages":{}}} </script> </div> - See now it’s a `factor` (`<fctr>`) ] --- # Factors in R .smallest[ ```r # what are the categories? students %>% group_by(Rank) %>% count() ``` <div data-pagedtable="false"> <script data-pagedtable-source type="application/json"> {"columns":[{"label":["Rank"],"name":[1],"type":["fctr"],"align":["left"]},{"label":["n"],"name":[2],"type":["int"],"align":["right"]}],"data":[{"1":"Freshman","2":"1"},{"1":"Junior","2":"4"},{"1":"Senior","2":"2"},{"1":"Sophomore","2":"3"}],"options":{"columns":{"min":{},"max":[10]},"rows":{"min":[10],"max":[10]},"pages":{}}} </script> </div> ```r # note the order is arbitrary! ``` ] --- # Ordered Factors in R .quitesmall[ - If there is a rank order you wish to preserve, you can make an `ordered factor` - list rankings from 1st to last ```r students<-students %>% mutate(Rank = ordered(Rank, levels = c("Freshman", "Sophomore", "Junior", "Senior"))) students %>% head(n = 5) ``` <div data-pagedtable="false"> <script data-pagedtable-source type="application/json"> {"columns":[{"label":["ID"],"name":[1],"type":["dbl"],"align":["right"]},{"label":["Rank"],"name":[2],"type":["ord"],"align":["right"]},{"label":["Grade"],"name":[3],"type":["dbl"],"align":["right"]}],"data":[{"1":"1","2":"Sophomore","3":"77"},{"1":"2","2":"Senior","3":"72"},{"1":"3","2":"Freshman","3":"73"},{"1":"4","2":"Senior","3":"73"},{"1":"5","2":"Junior","3":"84"}],"options":{"columns":{"min":{},"max":[10]},"rows":{"min":[10],"max":[10]},"pages":{}}} </script> </div> ] --- # Ordered Factors in R .quitesmall[ ```r students %>% group_by(Rank) %>% count() ``` <div data-pagedtable="false"> <script data-pagedtable-source type="application/json"> {"columns":[{"label":["Rank"],"name":[1],"type":["ord"],"align":["right"]},{"label":["n"],"name":[2],"type":["int"],"align":["right"]}],"data":[{"1":"Freshman","2":"1"},{"1":"Sophomore","2":"3"},{"1":"Junior","2":"4"},{"1":"Senior","2":"2"}],"options":{"columns":{"min":{},"max":[10]},"rows":{"min":[10],"max":[10]},"pages":{}}} </script> </div> ] --- # Example Research Question .pull-left[ .content-box-green[ .green[**Example**]: do men earn higher wages, on average, than women? If so, how much? ] ] .pull-right[ .center[ ![:scale 100%](https://www.dropbox.com/s/481uod9g3n1w7kr/genderpaygap.jpg?raw=1) ] ] --- # The Pure Statistics of Comparing Group Means .pull-left[ .smallest[ - Basic statistics: can test for statistically significant difference in group means with a **t-test**<sup>.magenta[†]</sup>, let: - .blue[`\\(Y_M\\)`]: average earnings of a sample of .blue[`\\(n_M\\)`] men - .magenta[`\\(Y_W\\)`]: average earnings of a sample of .magenta[`\\(n_W\\)`] women - **Difference** in group averages: `\(d=\)` .blue[`\\(\bar{Y}_M\\)`] `\(-\)` .magenta[`\\(\bar{Y}_W\\)`] - The hypothesis test is: - `\(H_0: d=0\)` - `\(H_1: d \neq 0\)` ] ] .pull-right[ .center[ ![:scale 100%](https://www.dropbox.com/s/481uod9g3n1w7kr/genderpaygap.jpg?raw=1) ] ] .footnote[<sup>.magenta[†]</sup> See [today’s class page](/class/3.6-class) for this example] --- # Plotting Factors in R .pull-left[ - If I plot a `factor` variable, e.g. `Gender` (which is either `Male` or `Female`), the scatterplot with `wage` looks like this - effectively `R` treats values of a factor variable as integers - in this case, `"Female"` = 0, `"Male"` = 1 - Let’s make this more explicit by making a .hi[dummy variable] to stand in for Gender ] .pull-right[ <img src="3.6-slides_files/figure-html/unnamed-chunk-7-1.png" width="504" style="display: block; margin: auto;" /> ] --- class: inverse, center, middle # Regression with Dummy Variables --- # Comparing Groups with Regression .smallest[ - In a regression, we can easily compare across groups via a .hi[dummy variable]<sup>.magenta[†]</sup> - Dummy variable *only* `\(=0\)` or `\(=1\)`, if a condition is `TRUE` vs. `FALSE` - Signifies whether an observation belongs to a category or not ] .footnote[<sup>.magenta[†]</sup> Also called a .hi[binary variable] or .hi[dichotomous variable]] -- .smallest[ .content-box-green[ .green[**Example**]: `$$\widehat{Wage_i}=\hat{\beta_0}+\hat{\beta_1}Female_i \quad \quad \text{ where } Female_i = \begin{cases} 1 & \text{if individual } i \text{ is } Female \\ 0 & \text{if individual } i \text{ is } Male\\ \end{cases}$$` ] ] -- .smallest[ - Again, `\(\hat{\beta_1}\)` makes less sense as the “slope” of a line in this context ] --- # Comparing Groups in Regression: Scatterplot .pull-left[ - `Female` is our dummy `\(x\)`-variable - Hard to see relationships because of **overplotting** ] .pull-right[ <img src="3.6-slides_files/figure-html/unnamed-chunk-8-1.png" width="504" style="display: block; margin: auto;" /> ] --- # Comparing Groups in Regression: Scatterplot .pull-left[ - `Female` is our dummy `\(x\)`-variable - Hard to see relationships because of **overplotting** - Use `geom_jitter()` instead of `geom_point()` to *randomly* nudge points - *Only* for plotting purposes, does not affect actual data, regression, etc. ] .pull-right[ <img src="3.6-slides_files/figure-html/unnamed-chunk-9-1.png" width="504" style="display: block; margin: auto;" /> ] --- # Comparing Groups in Regression: Scatterplot .pull-left[ - `Female` is our dummy `\(x\)`-variable - Hard to see relationships because of **overplotting** - Use `geom_jitter()` instead of `geom_point()` to *randomly* nudge points - *Only* for plotting purposes, does not affect actual data, regression, etc. ] .pull-right[ <img src="3.6-slides_files/figure-html/unnamed-chunk-10-1.png" width="504" style="display: block; margin: auto;" /> ] --- # Dummy Variables as Group Means .smallest[ `$$\hat{Y_i}=\hat{\beta_0}+\hat{\beta_1} D_i \quad \text{ where }D_i=\{0,1\}$$` ] -- .smallest[ - .purple[When `\\(D_i=0\\)` (Control group):] - `\(\hat{Y_i}=\hat{\beta_0}\)` - `\(E[Y|D_i=0]=\hat{\beta_0}\)` `\(\iff\)` the mean of `\(Y\)` when `\(D_i=0\)` ] -- .smallest[ - .hi[When `\\(D_i=1\\)` (Treatment group):] - `\(\hat{Y_i}=\hat{\beta_0}+\hat{\beta_1} D_i\)` - `\(E[Y|D_i=1]=\hat{\beta_0}+\hat{\beta_1}\)` `\(\iff\)` the mean of `\(Y\)` when `\(D_i=1\)` ] -- .smallest[ - So the **difference** in group means: `$$\begin{align*} &=E[Y_i|D_i=1]-E[Y_i|D_i=0]\\ &=(\hat{\beta_0}+\hat{\beta_1})-(\hat{\beta_0})\\ &=\hat{\beta_1}\\ \end{align*}$$` ] --- # Dummy Variables as Group Means: Our Example .pull-left[ .content-box-green[ .green[**Example**]: `$$\widehat{Wage_i}=\hat{\beta_0}+\hat{\beta_1}Female_i$$` `$$\text{where } Female_i = \begin{cases} 1 & \text{if } i \text{ is }Female \\ 0 & \text{if } i \text{ is } Male\\ \end{cases}$$` ] ] .pull-right[ - Mean wage for men: ] --- # Dummy Variables as Group Means: Our Example .pull-left[ .content-box-green[ .green[**Example**]: `$$\widehat{Wage_i}=\hat{\beta_0}+\hat{\beta_1}Female_i$$` `$$\text{where } Female_i = \begin{cases} 1 & \text{if } i \text{ is }Female \\ 0 & \text{if } i \text{ is } Male\\ \end{cases}$$` ] ] .pull-right[ - Mean wage for men: `$$E[Wage|Female=0]=\hat{\beta_0}$$` ] --- # Dummy Variables as Group Means: Our Example .pull-left[ .content-box-green[ .green[**Example**]: `$$\widehat{Wage_i}=\hat{\beta_0}+\hat{\beta_1}Female_i$$` `$$\text{where } Female_i = \begin{cases} 1 & \text{if } i \text{ is }Female \\ 0 & \text{if } i \text{ is } Male\\ \end{cases}$$` ] ] .pull-right[ - Mean wage for men: `$$E[Wage|Female=0]=\hat{\beta_0}$$` - Mean wage for women: ] --- # Dummy Variables as Group Means: Our Example .pull-left[ .content-box-green[ .green[**Example**]: `$$\widehat{Wage_i}=\hat{\beta_0}+\hat{\beta_1}Female_i$$` `$$\text{where } Female_i = \begin{cases} 1 & \text{if } i \text{ is }Female \\ 0 & \text{if } i \text{ is } Male\\ \end{cases}$$` ] ] .pull-right[ - Mean wage for men: `$$E[Wage|Female=0]=\hat{\beta_0}$$` - Mean wage for women: `$$E[Wage|Female=1]=\hat{\beta_0}+\hat{\beta_1}$$` ] --- # Dummy Variables as Group Means: Our Example .pull-left[ .content-box-green[ .green[**Example**]: `$$\widehat{Wage_i}=\hat{\beta_0}+\hat{\beta_1}Female_i$$` `$$\text{where } Female_i = \begin{cases} 1 & \text{if } i \text{ is }Female \\ 0 & \text{if } i \text{ is } Male\\ \end{cases}$$` ] ] .pull-right[ - Mean wage for men: `$$E[Wage|Female=0]=\hat{\beta_0}$$` - Mean wage for women: `$$E[Wage|Female=1]=\hat{\beta_0}+\hat{\beta_1}$$` - Difference in wage between men & women: ] --- # Dummy Variables as Group Means: Our Example .pull-left[ .content-box-green[ .green[**Example**]: `$$\widehat{Wage_i}=\hat{\beta_0}+\hat{\beta_1}Female_i$$` `$$\text{where } Female_i = \begin{cases} 1 & \text{if } i \text{ is }Female \\ 0 & \text{if } i \text{ is } Male\\ \end{cases}$$` ] ] .pull-right[ - Mean wage for men: `$$E[Wage|Female=0]=\hat{\beta_0}$$` - Mean wage for women: `$$E[Wage|Female=1]=\hat{\beta_0}+\hat{\beta_1}$$` - Difference in wage between men & women: `$$d = \hat{\beta_1}$$` ] --- # Comparing Groups in Regression: Scatterplot .pull-left[ `$$\widehat{Wage_i}=\hat{\beta_0}+\hat{\beta_1}Female_i$$` `$$\text{where } Female_i = \begin{cases} 1 & \text{if } i \text{ is }Female \\ 0 & \text{if } i \text{ is } Male\\ \end{cases}$$` ] .pull-right[ <img src="3.6-slides_files/figure-html/unnamed-chunk-11-1.png" width="504" style="display: block; margin: auto;" /> ] --- # The Data .quitesmall[ ```r # from wooldridge package library(wooldridge) # save as a dataframe wages<-wooldridge::wage1 ``` ```r wages ``` <div data-pagedtable="false"> <script data-pagedtable-source type="application/json"> {"columns":[{"label":["wage"],"name":[1],"type":["dbl"],"align":["right"]},{"label":["educ"],"name":[2],"type":["int"],"align":["right"]},{"label":["exper"],"name":[3],"type":["int"],"align":["right"]},{"label":["tenure"],"name":[4],"type":["int"],"align":["right"]},{"label":["nonwhite"],"name":[5],"type":["int"],"align":["right"]},{"label":["female"],"name":[6],"type":["int"],"align":["right"]},{"label":["married"],"name":[7],"type":["int"],"align":["right"]},{"label":["numdep"],"name":[8],"type":["int"],"align":["right"]},{"label":["smsa"],"name":[9],"type":["int"],"align":["right"]},{"label":["northcen"],"name":[10],"type":["int"],"align":["right"]},{"label":["south"],"name":[11],"type":["int"],"align":["right"]},{"label":["west"],"name":[12],"type":["int"],"align":["right"]},{"label":["construc"],"name":[13],"type":["int"],"align":["right"]},{"label":["ndurman"],"name":[14],"type":["int"],"align":["right"]},{"label":["trcommpu"],"name":[15],"type":["int"],"align":["right"]},{"label":["trade"],"name":[16],"type":["int"],"align":["right"]},{"label":["services"],"name":[17],"type":["int"],"align":["right"]},{"label":["profserv"],"name":[18],"type":["int"],"align":["right"]},{"label":["profocc"],"name":[19],"type":["int"],"align":["right"]},{"label":["clerocc"],"name":[20],"type":["int"],"align":["right"]},{"label":["servocc"],"name":[21],"type":["int"],"align":["right"]},{"label":["lwage"],"name":[22],"type":["dbl"],"align":["right"]},{"label":["expersq"],"name":[23],"type":["int"],"align":["right"]},{"label":["tenursq"],"name":[24],"type":["int"],"align":["right"]},{"label":["Gender"],"name":[25],"type":["fctr"],"align":["left"]}],"data":[{"1":"3.10","2":"11","3":"2","4":"0","5":"0","6":"1","7":"0","8":"2","9":"1","10":"0","11":"0","12":"1","13":"0","14":"0","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.1314021","23":"4","24":"0","25":"Female"},{"1":"3.24","2":"12","3":"22","4":"2","5":"0","6":"1","7":"1","8":"3","9":"1","10":"0","11":"0","12":"1","13":"0","14":"0","15":"0","16":"0","17":"1","18":"0","19":"0","20":"0","21":"1","22":"1.1755733","23":"484","24":"4","25":"Female"},{"1":"3.00","2":"11","3":"2","4":"0","5":"0","6":"0","7":"0","8":"2","9":"0","10":"0","11":"0","12":"1","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.0986123","23":"4","24":"0","25":"Male"},{"1":"6.00","2":"8","3":"44","4":"28","5":"0","6":"0","7":"1","8":"0","9":"1","10":"0","11":"0","12":"1","13":"0","14":"0","15":"0","16":"0","17":"0","18":"0","19":"0","20":"1","21":"0","22":"1.7917595","23":"1936","24":"784","25":"Male"},{"1":"5.30","2":"12","3":"7","4":"2","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"0","12":"1","13":"0","14":"0","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.6677068","23":"49","24":"4","25":"Male"},{"1":"8.75","2":"16","3":"9","4":"8","5":"0","6":"0","7":"1","8":"0","9":"1","10":"0","11":"0","12":"1","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"1","20":"0","21":"0","22":"2.1690538","23":"81","24":"64","25":"Male"},{"1":"11.25","2":"18","3":"15","4":"7","5":"0","6":"0","7":"0","8":"0","9":"1","10":"0","11":"0","12":"1","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"1","20":"0","21":"0","22":"2.4203682","23":"225","24":"49","25":"Male"},{"1":"5.00","2":"12","3":"5","4":"3","5":"0","6":"1","7":"0","8":"0","9":"1","10":"0","11":"0","12":"1","13":"0","14":"0","15":"0","16":"0","17":"0","18":"0","19":"1","20":"0","21":"0","22":"1.6094379","23":"25","24":"9","25":"Female"},{"1":"3.60","2":"12","3":"26","4":"4","5":"0","6":"1","7":"0","8":"2","9":"1","10":"0","11":"0","12":"1","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"1","20":"0","21":"0","22":"1.2809339","23":"676","24":"16","25":"Female"},{"1":"18.18","2":"17","3":"22","4":"21","5":"0","6":"0","7":"1","8":"0","9":"1","10":"0","11":"0","12":"1","13":"0","14":"0","15":"0","16":"0","17":"0","18":"0","19":"1","20":"0","21":"0","22":"2.9003222","23":"484","24":"441","25":"Male"},{"1":"6.25","2":"16","3":"8","4":"2","5":"0","6":"1","7":"0","8":"0","9":"1","10":"0","11":"0","12":"1","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"1","20":"0","21":"0","22":"1.8325815","23":"64","24":"4","25":"Female"},{"1":"8.13","2":"13","3":"3","4":"0","5":"0","6":"1","7":"0","8":"0","9":"1","10":"0","11":"0","12":"1","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"0","20":"1","21":"0","22":"2.0955610","23":"9","24":"0","25":"Female"},{"1":"8.77","2":"12","3":"15","4":"0","5":"0","6":"0","7":"1","8":"2","9":"1","10":"0","11":"0","12":"1","13":"0","14":"0","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"2.1713369","23":"225","24":"0","25":"Male"},{"1":"5.50","2":"12","3":"18","4":"3","5":"0","6":"0","7":"0","8":"0","9":"1","10":"0","11":"0","12":"1","13":"0","14":"0","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.7047480","23":"324","24":"9","25":"Male"},{"1":"22.20","2":"12","3":"31","4":"15","5":"0","6":"0","7":"1","8":"1","9":"1","10":"0","11":"0","12":"1","13":"0","14":"0","15":"0","16":"0","17":"0","18":"0","19":"1","20":"0","21":"0","22":"3.1000924","23":"961","24":"225","25":"Male"},{"1":"17.33","2":"16","3":"14","4":"0","5":"0","6":"0","7":"1","8":"1","9":"1","10":"0","11":"0","12":"1","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"1","20":"0","21":"0","22":"2.8524392","23":"196","24":"0","25":"Male"},{"1":"7.50","2":"12","3":"10","4":"0","5":"0","6":"1","7":"1","8":"0","9":"1","10":"0","11":"0","12":"1","13":"0","14":"0","15":"0","16":"0","17":"0","18":"0","19":"0","20":"1","21":"0","22":"2.0149031","23":"100","24":"0","25":"Female"},{"1":"10.63","2":"13","3":"16","4":"10","5":"0","6":"1","7":"0","8":"0","9":"1","10":"0","11":"0","12":"1","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"1","20":"0","21":"0","22":"2.3636801","23":"256","24":"100","25":"Female"},{"1":"3.60","2":"12","3":"13","4":"0","5":"0","6":"1","7":"1","8":"3","9":"1","10":"0","11":"0","12":"1","13":"0","14":"0","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.2809339","23":"169","24":"0","25":"Female"},{"1":"4.50","2":"12","3":"36","4":"6","5":"0","6":"1","7":"1","8":"0","9":"1","10":"0","11":"0","12":"1","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"0","20":"0","21":"1","22":"1.5040774","23":"1296","24":"36","25":"Female"},{"1":"6.88","2":"12","3":"11","4":"4","5":"0","6":"1","7":"0","8":"0","9":"1","10":"0","11":"0","12":"1","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"1","20":"0","21":"0","22":"1.9286187","23":"121","24":"16","25":"Female"},{"1":"8.48","2":"12","3":"29","4":"13","5":"0","6":"0","7":"1","8":"3","9":"1","10":"0","11":"0","12":"1","13":"0","14":"0","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"2.1377103","23":"841","24":"169","25":"Male"},{"1":"6.33","2":"16","3":"9","4":"9","5":"0","6":"1","7":"0","8":"0","9":"1","10":"0","11":"0","12":"1","13":"0","14":"0","15":"0","16":"0","17":"0","18":"0","19":"1","20":"0","21":"0","22":"1.8453002","23":"81","24":"81","25":"Female"},{"1":"0.53","2":"12","3":"3","4":"1","5":"0","6":"1","7":"0","8":"0","9":"1","10":"0","11":"0","12":"1","13":"0","14":"0","15":"0","16":"0","17":"1","18":"0","19":"0","20":"0","21":"1","22":"-0.6348783","23":"9","24":"1","25":"Female"},{"1":"6.00","2":"11","3":"37","4":"8","5":"1","6":"1","7":"0","8":"0","9":"1","10":"0","11":"0","12":"1","13":"0","14":"0","15":"0","16":"0","17":"1","18":"0","19":"0","20":"0","21":"0","22":"1.7917595","23":"1369","24":"64","25":"Female"},{"1":"9.56","2":"16","3":"3","4":"3","5":"1","6":"0","7":"1","8":"1","9":"1","10":"0","11":"0","12":"1","13":"0","14":"1","15":"0","16":"0","17":"0","18":"0","19":"1","20":"0","21":"0","22":"2.2575877","23":"9","24":"9","25":"Male"},{"1":"7.78","2":"16","3":"11","4":"10","5":"0","6":"0","7":"1","8":"1","9":"1","10":"0","11":"0","12":"1","13":"0","14":"0","15":"1","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"2.0515563","23":"121","24":"100","25":"Male"},{"1":"12.50","2":"16","3":"31","4":"0","5":"0","6":"0","7":"1","8":"0","9":"1","10":"0","11":"0","12":"1","13":"0","14":"0","15":"0","16":"0","17":"0","18":"0","19":"1","20":"0","21":"0","22":"2.5257287","23":"961","24":"0","25":"Male"},{"1":"12.50","2":"15","3":"30","4":"0","5":"0","6":"0","7":"1","8":"2","9":"1","10":"0","11":"0","12":"1","13":"0","14":"0","15":"0","16":"0","17":"0","18":"0","19":"1","20":"0","21":"0","22":"2.5257287","23":"900","24":"0","25":"Male"},{"1":"3.25","2":"8","3":"9","4":"1","5":"0","6":"1","7":"1","8":"2","9":"1","10":"0","11":"0","12":"1","13":"0","14":"0","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.1786550","23":"81","24":"1","25":"Female"},{"1":"13.00","2":"14","3":"23","4":"5","5":"0","6":"0","7":"1","8":"2","9":"1","10":"0","11":"0","12":"1","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"1","20":"0","21":"0","22":"2.5649493","23":"529","24":"25","25":"Male"},{"1":"4.50","2":"14","3":"2","4":"5","5":"0","6":"1","7":"0","8":"2","9":"1","10":"0","11":"0","12":"1","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.5040774","23":"4","24":"25","25":"Female"},{"1":"9.68","2":"13","3":"16","4":"16","5":"0","6":"1","7":"0","8":"0","9":"1","10":"0","11":"0","12":"1","13":"0","14":"0","15":"0","16":"0","17":"0","18":"0","19":"1","20":"0","21":"0","22":"2.2700620","23":"256","24":"256","25":"Female"},{"1":"5.00","2":"12","3":"7","4":"3","5":"0","6":"1","7":"0","8":"0","9":"1","10":"0","11":"0","12":"1","13":"0","14":"0","15":"0","16":"0","17":"0","18":"0","19":"0","20":"1","21":"0","22":"1.6094379","23":"49","24":"9","25":"Female"},{"1":"4.68","2":"12","3":"3","4":"0","5":"0","6":"1","7":"0","8":"0","9":"1","10":"0","11":"0","12":"1","13":"0","14":"0","15":"0","16":"0","17":"1","18":"0","19":"0","20":"1","21":"0","22":"1.5432981","23":"9","24":"0","25":"Female"},{"1":"4.27","2":"16","3":"22","4":"4","5":"1","6":"1","7":"1","8":"1","9":"1","10":"0","11":"0","12":"1","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"1","20":"0","21":"0","22":"1.4516138","23":"484","24":"16","25":"Female"},{"1":"6.15","2":"12","3":"15","4":"6","5":"1","6":"1","7":"1","8":"1","9":"1","10":"0","11":"0","12":"1","13":"0","14":"0","15":"0","16":"0","17":"1","18":"0","19":"0","20":"0","21":"1","22":"1.8164521","23":"225","24":"36","25":"Female"},{"1":"3.51","2":"4","3":"39","4":"15","5":"0","6":"0","7":"1","8":"5","9":"1","10":"0","11":"0","12":"1","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.2556161","23":"1521","24":"225","25":"Male"},{"1":"3.00","2":"14","3":"3","4":"3","5":"0","6":"1","7":"1","8":"0","9":"1","10":"0","11":"0","12":"1","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"0","20":"1","21":"0","22":"1.0986123","23":"9","24":"9","25":"Female"},{"1":"6.25","2":"12","3":"11","4":"0","5":"0","6":"1","7":"0","8":"0","9":"1","10":"0","11":"0","12":"1","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"0","20":"1","21":"0","22":"1.8325815","23":"121","24":"0","25":"Female"},{"1":"7.81","2":"12","3":"3","4":"0","5":"0","6":"1","7":"1","8":"0","9":"1","10":"0","11":"0","12":"1","13":"0","14":"0","15":"0","16":"0","17":"1","18":"0","19":"0","20":"0","21":"1","22":"2.0554049","23":"9","24":"0","25":"Female"},{"1":"10.00","2":"12","3":"20","4":"5","5":"1","6":"1","7":"1","8":"4","9":"1","10":"0","11":"0","12":"1","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"0","20":"1","21":"0","22":"2.3025851","23":"400","24":"25","25":"Female"},{"1":"4.50","2":"14","3":"16","4":"0","5":"0","6":"1","7":"1","8":"1","9":"1","10":"0","11":"0","12":"1","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"0","20":"1","21":"0","22":"1.5040774","23":"256","24":"0","25":"Female"},{"1":"4.00","2":"11","3":"45","4":"12","5":"0","6":"1","7":"1","8":"0","9":"1","10":"0","11":"0","12":"1","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"0","20":"0","21":"1","22":"1.3862944","23":"2025","24":"144","25":"Female"},{"1":"6.38","2":"13","3":"11","4":"4","5":"0","6":"1","7":"0","8":"0","9":"1","10":"0","11":"0","12":"1","13":"0","14":"0","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.8531681","23":"121","24":"16","25":"Female"},{"1":"13.70","2":"15","3":"20","4":"13","5":"0","6":"0","7":"1","8":"2","9":"1","10":"0","11":"0","12":"1","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"1","20":"0","21":"0","22":"2.6173959","23":"400","24":"169","25":"Male"},{"1":"1.67","2":"10","3":"1","4":"0","5":"0","6":"0","7":"0","8":"1","9":"1","10":"0","11":"0","12":"1","13":"0","14":"0","15":"0","16":"0","17":"1","18":"0","19":"0","20":"0","21":"0","22":"0.5128236","23":"1","24":"0","25":"Male"},{"1":"2.93","2":"12","3":"36","4":"2","5":"0","6":"1","7":"1","8":"1","9":"1","10":"0","11":"0","12":"1","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"1","20":"0","21":"0","22":"1.0750024","23":"1296","24":"4","25":"Female"},{"1":"3.65","2":"14","3":"9","4":"2","5":"0","6":"0","7":"0","8":"0","9":"1","10":"0","11":"0","12":"1","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"1","20":"0","21":"0","22":"1.2947272","23":"81","24":"4","25":"Male"},{"1":"2.90","2":"12","3":"15","4":"1","5":"0","6":"1","7":"1","8":"2","9":"1","10":"0","11":"0","12":"1","13":"0","14":"0","15":"0","16":"0","17":"1","18":"0","19":"0","20":"0","21":"1","22":"1.0647107","23":"225","24":"1","25":"Female"},{"1":"1.63","2":"12","3":"18","4":"0","5":"0","6":"1","7":"0","8":"2","9":"0","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"1","18":"0","19":"0","20":"0","21":"1","22":"0.4885800","23":"324","24":"0","25":"Female"},{"1":"8.60","2":"16","3":"3","4":"2","5":"0","6":"1","7":"0","8":"0","9":"1","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"1","20":"0","21":"0","22":"2.1517622","23":"9","24":"4","25":"Female"},{"1":"5.00","2":"12","3":"15","4":"5","5":"0","6":"0","7":"1","8":"1","9":"1","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"0","20":"1","21":"0","22":"1.6094379","23":"225","24":"25","25":"Male"},{"1":"6.00","2":"12","3":"7","4":"7","5":"0","6":"0","7":"1","8":"0","9":"1","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.7917595","23":"49","24":"49","25":"Male"},{"1":"2.50","2":"12","3":"2","4":"0","5":"0","6":"0","7":"0","8":"2","9":"0","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"0.9162908","23":"4","24":"0","25":"Male"},{"1":"3.25","2":"15","3":"3","4":"0","5":"0","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"0","20":"0","21":"1","22":"1.1786550","23":"9","24":"0","25":"Male"},{"1":"3.40","2":"16","3":"1","4":"1","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"0","20":"0","21":"1","22":"1.2237755","23":"1","24":"1","25":"Female"},{"1":"10.00","2":"8","3":"13","4":"0","5":"1","6":"0","7":"0","8":"0","9":"1","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"0","20":"0","21":"0","22":"2.3025851","23":"169","24":"0","25":"Male"},{"1":"21.63","2":"18","3":"8","4":"8","5":"0","6":"1","7":"0","8":"0","9":"1","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"1","20":"0","21":"0","22":"3.0740812","23":"64","24":"64","25":"Female"},{"1":"4.38","2":"16","3":"7","4":"0","5":"0","6":"0","7":"0","8":"0","9":"1","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"0","20":"0","21":"1","22":"1.4770488","23":"49","24":"0","25":"Male"},{"1":"11.71","2":"13","3":"40","4":"20","5":"0","6":"1","7":"0","8":"0","9":"1","10":"0","11":"0","12":"0","13":"0","14":"1","15":"0","16":"0","17":"0","18":"0","19":"1","20":"0","21":"0","22":"2.4604433","23":"1600","24":"400","25":"Female"},{"1":"12.39","2":"14","3":"42","4":"5","5":"0","6":"0","7":"0","8":"0","9":"1","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"1","20":"0","21":"0","22":"2.5168898","23":"1764","24":"25","25":"Male"},{"1":"6.25","2":"10","3":"36","4":"8","5":"0","6":"0","7":"0","8":"0","9":"1","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"0","20":"0","21":"1","22":"1.8325815","23":"1296","24":"64","25":"Male"},{"1":"3.71","2":"10","3":"13","4":"0","5":"1","6":"1","7":"0","8":"4","9":"1","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"0","20":"1","21":"0","22":"1.3110319","23":"169","24":"0","25":"Female"},{"1":"7.78","2":"14","3":"9","4":"3","5":"0","6":"0","7":"0","8":"0","9":"1","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"1","20":"0","21":"0","22":"2.0515563","23":"81","24":"9","25":"Male"},{"1":"19.98","2":"14","3":"26","4":"23","5":"0","6":"0","7":"1","8":"2","9":"1","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"0","19":"1","20":"0","21":"0","22":"2.9947317","23":"676","24":"529","25":"Male"},{"1":"6.25","2":"16","3":"7","4":"4","5":"1","6":"1","7":"1","8":"3","9":"1","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"1","20":"0","21":"0","22":"1.8325815","23":"49","24":"16","25":"Female"},{"1":"10.00","2":"12","3":"25","4":"3","5":"0","6":"0","7":"1","8":"3","9":"1","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"1","20":"0","21":"0","22":"2.3025851","23":"625","24":"9","25":"Male"},{"1":"5.71","2":"16","3":"10","4":"5","5":"0","6":"0","7":"1","8":"1","9":"1","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"1","20":"0","21":"0","22":"1.7422190","23":"100","24":"25","25":"Male"},{"1":"2.00","2":"12","3":"3","4":"2","5":"0","6":"1","7":"0","8":"4","9":"1","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"1","18":"0","19":"0","20":"0","21":"0","22":"0.6931472","23":"9","24":"4","25":"Female"},{"1":"5.71","2":"16","3":"3","4":"0","5":"0","6":"1","7":"0","8":"0","9":"1","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"0","20":"1","21":"0","22":"1.7422190","23":"9","24":"0","25":"Female"},{"1":"13.08","2":"17","3":"17","4":"2","5":"1","6":"0","7":"1","8":"3","9":"1","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"1","20":"0","21":"0","22":"2.5710843","23":"289","24":"4","25":"Male"},{"1":"4.91","2":"12","3":"17","4":"8","5":"0","6":"0","7":"1","8":"2","9":"1","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.5912739","23":"289","24":"64","25":"Male"},{"1":"2.91","2":"12","3":"20","4":"34","5":"0","6":"1","7":"1","8":"2","9":"1","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"1","18":"0","19":"0","20":"1","21":"0","22":"1.0681531","23":"400","24":"1156","25":"Female"},{"1":"3.75","2":"12","3":"7","4":"0","5":"0","6":"1","7":"1","8":"0","9":"1","10":"0","11":"0","12":"0","13":"1","14":"0","15":"0","16":"0","17":"0","18":"0","19":"0","20":"1","21":"0","22":"1.3217559","23":"49","24":"0","25":"Female"},{"1":"11.90","2":"13","3":"24","4":"19","5":"0","6":"0","7":"1","8":"2","9":"1","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"1","20":"0","21":"0","22":"2.4765384","23":"576","24":"361","25":"Male"},{"1":"4.00","2":"12","3":"28","4":"0","5":"0","6":"1","7":"1","8":"1","9":"1","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"0","20":"1","21":"0","22":"1.3862944","23":"784","24":"0","25":"Female"},{"1":"3.10","2":"12","3":"2","4":"1","5":"0","6":"1","7":"0","8":"1","9":"1","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"0","20":"1","21":"0","22":"1.1314021","23":"4","24":"1","25":"Female"},{"1":"8.45","2":"12","3":"19","4":"13","5":"0","6":"0","7":"1","8":"4","9":"1","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"2.1341665","23":"361","24":"169","25":"Male"},{"1":"7.14","2":"18","3":"13","4":"0","5":"0","6":"0","7":"1","8":"2","9":"1","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"1","20":"0","21":"0","22":"1.9657128","23":"169","24":"0","25":"Male"},{"1":"4.50","2":"9","3":"22","4":"5","5":"0","6":"0","7":"1","8":"4","9":"1","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.5040774","23":"484","24":"25","25":"Male"},{"1":"4.65","2":"16","3":"3","4":"1","5":"0","6":"0","7":"0","8":"0","9":"1","10":"0","11":"0","12":"0","13":"0","14":"1","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.5368673","23":"9","24":"1","25":"Male"},{"1":"2.90","2":"10","3":"4","4":"0","5":"0","6":"1","7":"0","8":"1","9":"1","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"0","20":"0","21":"1","22":"1.0647107","23":"16","24":"0","25":"Female"},{"1":"6.67","2":"12","3":"7","4":"5","5":"0","6":"0","7":"0","8":"0","9":"1","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"0","19":"1","20":"0","21":"0","22":"1.8976198","23":"49","24":"25","25":"Male"},{"1":"3.50","2":"12","3":"6","4":"2","5":"1","6":"1","7":"0","8":"1","9":"1","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"0","20":"0","21":"1","22":"1.2527629","23":"36","24":"4","25":"Female"},{"1":"3.26","2":"12","3":"13","4":"3","5":"0","6":"1","7":"1","8":"1","9":"1","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"1","20":"0","21":"0","22":"1.1817272","23":"169","24":"9","25":"Female"},{"1":"3.25","2":"12","3":"14","4":"0","5":"0","6":"1","7":"1","8":"1","9":"1","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"0","20":"1","21":"0","22":"1.1786550","23":"196","24":"0","25":"Female"},{"1":"8.00","2":"12","3":"14","4":"4","5":"0","6":"1","7":"0","8":"1","9":"1","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"1","20":"0","21":"0","22":"2.0794415","23":"196","24":"16","25":"Female"},{"1":"9.85","2":"8","3":"40","4":"24","5":"1","6":"0","7":"1","8":"2","9":"1","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"2.2874715","23":"1600","24":"576","25":"Male"},{"1":"7.50","2":"12","3":"11","4":"7","5":"0","6":"0","7":"1","8":"1","9":"1","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"2.0149031","23":"121","24":"49","25":"Male"},{"1":"5.91","2":"12","3":"14","4":"6","5":"0","6":"0","7":"1","8":"2","9":"0","10":"0","11":"0","12":"0","13":"0","14":"0","15":"1","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.7766458","23":"196","24":"36","25":"Male"},{"1":"11.76","2":"14","3":"40","4":"39","5":"0","6":"0","7":"1","8":"0","9":"1","10":"0","11":"0","12":"0","13":"0","14":"0","15":"1","16":"0","17":"0","18":"0","19":"1","20":"0","21":"0","22":"2.4647040","23":"1600","24":"1521","25":"Male"},{"1":"3.00","2":"12","3":"1","4":"0","5":"0","6":"1","7":"0","8":"2","9":"1","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"1","20":"0","21":"0","22":"1.0986123","23":"1","24":"0","25":"Female"},{"1":"4.81","2":"12","3":"2","4":"0","5":"0","6":"1","7":"0","8":"0","9":"1","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"0","20":"0","21":"1","22":"1.5706971","23":"4","24":"0","25":"Female"},{"1":"6.50","2":"12","3":"4","4":"1","5":"0","6":"1","7":"0","8":"0","9":"1","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"1","20":"0","21":"0","22":"1.8718022","23":"16","24":"1","25":"Female"},{"1":"4.00","2":"9","3":"19","4":"1","5":"0","6":"1","7":"1","8":"1","9":"1","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"1","18":"0","19":"0","20":"0","21":"1","22":"1.3862944","23":"361","24":"1","25":"Female"},{"1":"3.50","2":"13","3":"1","4":"0","5":"0","6":"0","7":"0","8":"1","9":"1","10":"0","11":"0","12":"0","13":"0","14":"1","15":"0","16":"0","17":"0","18":"0","19":"1","20":"0","21":"0","22":"1.2527629","23":"1","24":"0","25":"Male"},{"1":"13.16","2":"12","3":"34","4":"22","5":"0","6":"0","7":"1","8":"0","9":"1","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"1","20":"0","21":"0","22":"2.5771818","23":"1156","24":"484","25":"Male"},{"1":"4.25","2":"14","3":"5","4":"2","5":"0","6":"0","7":"1","8":"2","9":"1","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.4469190","23":"25","24":"4","25":"Male"},{"1":"3.50","2":"12","3":"3","4":"0","5":"0","6":"0","7":"0","8":"0","9":"1","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"0","20":"0","21":"1","22":"1.2527629","23":"9","24":"0","25":"Male"},{"1":"5.13","2":"15","3":"6","4":"6","5":"0","6":"1","7":"0","8":"0","9":"1","10":"0","11":"0","12":"0","13":"0","14":"1","15":"0","16":"0","17":"0","18":"0","19":"1","20":"0","21":"0","22":"1.6351057","23":"36","24":"36","25":"Female"},{"1":"3.75","2":"12","3":"14","4":"0","5":"0","6":"1","7":"1","8":"3","9":"1","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"1","18":"0","19":"0","20":"0","21":"1","22":"1.3217559","23":"196","24":"0","25":"Female"},{"1":"4.50","2":"12","3":"35","4":"12","5":"0","6":"1","7":"1","8":"0","9":"1","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"0","20":"1","21":"0","22":"1.5040774","23":"1225","24":"144","25":"Female"},{"1":"7.63","2":"12","3":"8","4":"4","5":"0","6":"1","7":"0","8":"0","9":"1","10":"0","11":"0","12":"0","13":"0","14":"0","15":"1","16":"0","17":"0","18":"0","19":"0","20":"1","21":"0","22":"2.0320878","23":"64","24":"16","25":"Female"},{"1":"15.00","2":"14","3":"7","4":"7","5":"1","6":"0","7":"1","8":"1","9":"1","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"2.7080503","23":"49","24":"49","25":"Male"},{"1":"6.85","2":"15","3":"11","4":"3","5":"0","6":"1","7":"1","8":"2","9":"1","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"1","20":"0","21":"0","22":"1.9242487","23":"121","24":"9","25":"Female"},{"1":"13.33","2":"12","3":"14","4":"11","5":"0","6":"0","7":"1","8":"2","9":"1","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"1","20":"0","21":"0","22":"2.5900171","23":"196","24":"121","25":"Male"},{"1":"6.67","2":"12","3":"35","4":"10","5":"0","6":"0","7":"0","8":"0","9":"1","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.8976198","23":"1225","24":"100","25":"Male"},{"1":"2.53","2":"12","3":"46","4":"0","5":"0","6":"1","7":"0","8":"0","9":"1","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"1","20":"0","21":"0","22":"0.9282193","23":"2116","24":"0","25":"Female"},{"1":"9.80","2":"17","3":"7","4":"0","5":"0","6":"0","7":"1","8":"0","9":"1","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"1","18":"0","19":"1","20":"0","21":"0","22":"2.2823825","23":"49","24":"0","25":"Male"},{"1":"3.37","2":"11","3":"45","4":"12","5":"0","6":"0","7":"1","8":"0","9":"1","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"1","20":"0","21":"0","22":"1.2149127","23":"2025","24":"144","25":"Male"},{"1":"24.98","2":"18","3":"29","4":"25","5":"0","6":"0","7":"1","8":"0","9":"1","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"0","19":"1","20":"0","21":"0","22":"3.2180755","23":"841","24":"625","25":"Male"},{"1":"5.40","2":"12","3":"6","4":"3","5":"0","6":"0","7":"1","8":"0","9":"1","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"1","18":"0","19":"0","20":"0","21":"0","22":"1.6863990","23":"36","24":"9","25":"Male"},{"1":"6.11","2":"14","3":"15","4":"0","5":"0","6":"0","7":"1","8":"2","9":"1","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"1","20":"0","21":"0","22":"1.8099267","23":"225","24":"0","25":"Male"},{"1":"4.20","2":"14","3":"33","4":"16","5":"0","6":"1","7":"1","8":"0","9":"1","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"1","20":"0","21":"0","22":"1.4350845","23":"1089","24":"256","25":"Female"},{"1":"3.75","2":"10","3":"15","4":"0","5":"0","6":"0","7":"0","8":"0","9":"1","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.3217559","23":"225","24":"0","25":"Male"},{"1":"3.50","2":"14","3":"5","4":"0","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"0","20":"1","21":"0","22":"1.2527629","23":"25","24":"0","25":"Female"},{"1":"3.64","2":"12","3":"7","4":"2","5":"0","6":"0","7":"0","8":"0","9":"1","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"0","20":"0","21":"1","22":"1.2919837","23":"49","24":"4","25":"Male"},{"1":"3.80","2":"15","3":"6","4":"1","5":"0","6":"0","7":"1","8":"1","9":"1","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.3350011","23":"36","24":"1","25":"Male"},{"1":"3.00","2":"8","3":"33","4":"12","5":"0","6":"1","7":"1","8":"3","9":"0","10":"0","11":"1","12":"0","13":"0","14":"1","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.0986123","23":"1089","24":"144","25":"Female"},{"1":"5.00","2":"16","3":"2","4":"1","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"1","20":"0","21":"0","22":"1.6094379","23":"4","24":"1","25":"Female"},{"1":"4.63","2":"14","3":"4","4":"0","5":"0","6":"1","7":"1","8":"2","9":"1","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"0","20":"0","21":"1","22":"1.5325569","23":"16","24":"0","25":"Female"},{"1":"3.00","2":"15","3":"1","4":"0","5":"0","6":"0","7":"0","8":"0","9":"1","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"1","20":"0","21":"0","22":"1.0986123","23":"1","24":"0","25":"Male"},{"1":"3.20","2":"12","3":"29","4":"0","5":"0","6":"1","7":"0","8":"1","9":"1","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"0","19":"0","20":"1","21":"0","22":"1.1631508","23":"841","24":"0","25":"Female"},{"1":"3.91","2":"18","3":"17","4":"3","5":"0","6":"0","7":"1","8":"2","9":"0","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"1","20":"0","21":"0","22":"1.3635374","23":"289","24":"9","25":"Male"},{"1":"6.43","2":"16","3":"17","4":"3","5":"0","6":"1","7":"1","8":"2","9":"0","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"1","20":"0","21":"0","22":"1.8609746","23":"289","24":"9","25":"Female"},{"1":"5.48","2":"10","3":"36","4":"3","5":"0","6":"1","7":"1","8":"0","9":"1","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.7011051","23":"1296","24":"9","25":"Female"},{"1":"1.50","2":"8","3":"31","4":"30","5":"0","6":"0","7":"0","8":"0","9":"0","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"0","20":"0","21":"0","22":"0.4054651","23":"961","24":"900","25":"Male"},{"1":"2.90","2":"10","3":"23","4":"2","5":"0","6":"1","7":"0","8":"2","9":"0","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"0","20":"0","21":"1","22":"1.0647107","23":"529","24":"4","25":"Female"},{"1":"5.00","2":"11","3":"13","4":"1","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.6094379","23":"169","24":"1","25":"Male"},{"1":"8.92","2":"18","3":"3","4":"3","5":"0","6":"0","7":"1","8":"0","9":"1","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"1","20":"0","21":"0","22":"2.1882958","23":"9","24":"9","25":"Male"},{"1":"5.00","2":"15","3":"15","4":"0","5":"0","6":"0","7":"0","8":"0","9":"1","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"1","20":"0","21":"0","22":"1.6094379","23":"225","24":"0","25":"Male"},{"1":"3.52","2":"12","3":"48","4":"1","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"0","20":"0","21":"0","22":"1.2584610","23":"2304","24":"1","25":"Male"},{"1":"2.90","2":"11","3":"6","4":"0","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1","12":"0","13":"0","14":"1","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.0647107","23":"36","24":"0","25":"Female"},{"1":"4.50","2":"12","3":"12","4":"0","5":"0","6":"0","7":"1","8":"3","9":"1","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.5040774","23":"144","24":"0","25":"Male"},{"1":"2.25","2":"12","3":"5","4":"0","5":"0","6":"1","7":"0","8":"2","9":"1","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"0","20":"0","21":"1","22":"0.8109302","23":"25","24":"0","25":"Female"},{"1":"5.00","2":"14","3":"19","4":"5","5":"0","6":"0","7":"1","8":"4","9":"1","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.6094379","23":"361","24":"25","25":"Male"},{"1":"10.00","2":"16","3":"9","4":"3","5":"1","6":"0","7":"1","8":"2","9":"1","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"0","19":"1","20":"0","21":"0","22":"2.3025851","23":"81","24":"9","25":"Male"},{"1":"3.75","2":"2","3":"39","4":"13","5":"0","6":"0","7":"1","8":"0","9":"1","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"0","20":"0","21":"1","22":"1.3217559","23":"1521","24":"169","25":"Male"},{"1":"10.00","2":"14","3":"28","4":"11","5":"0","6":"1","7":"1","8":"0","9":"1","10":"0","11":"1","12":"0","13":"0","14":"1","15":"0","16":"0","17":"0","18":"0","19":"1","20":"0","21":"0","22":"2.3025851","23":"784","24":"121","25":"Female"},{"1":"10.95","2":"16","3":"23","4":"20","5":"0","6":"0","7":"1","8":"4","9":"1","10":"0","11":"1","12":"0","13":"0","14":"1","15":"0","16":"0","17":"0","18":"0","19":"1","20":"0","21":"0","22":"2.3933394","23":"529","24":"400","25":"Male"},{"1":"7.90","2":"12","3":"2","4":"0","5":"0","6":"0","7":"0","8":"0","9":"1","10":"0","11":"1","12":"0","13":"1","14":"0","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"2.0668628","23":"4","24":"0","25":"Male"},{"1":"4.72","2":"12","3":"15","4":"1","5":"0","6":"1","7":"0","8":"0","9":"1","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.5518087","23":"225","24":"1","25":"Female"},{"1":"5.84","2":"13","3":"5","4":"0","5":"0","6":"1","7":"1","8":"1","9":"1","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"0","20":"1","21":"0","22":"1.7647308","23":"25","24":"0","25":"Female"},{"1":"3.83","2":"12","3":"18","4":"2","5":"0","6":"1","7":"0","8":"3","9":"1","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"0","19":"0","20":"1","21":"0","22":"1.3428648","23":"324","24":"4","25":"Female"},{"1":"3.20","2":"15","3":"2","4":"2","5":"0","6":"1","7":"0","8":"2","9":"1","10":"0","11":"1","12":"0","13":"0","14":"0","15":"1","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.1631508","23":"4","24":"4","25":"Female"},{"1":"2.00","2":"10","3":"3","4":"0","5":"1","6":"1","7":"0","8":"5","9":"1","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"0","20":"0","21":"1","22":"0.6931472","23":"9","24":"0","25":"Female"},{"1":"4.50","2":"12","3":"31","4":"4","5":"0","6":"1","7":"1","8":"3","9":"1","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"0","20":"1","21":"0","22":"1.5040774","23":"961","24":"16","25":"Female"},{"1":"11.55","2":"16","3":"20","4":"5","5":"0","6":"1","7":"1","8":"3","9":"1","10":"0","11":"1","12":"0","13":"1","14":"0","15":"0","16":"0","17":"0","18":"0","19":"0","20":"1","21":"0","22":"2.4466856","23":"400","24":"25","25":"Female"},{"1":"2.14","2":"13","3":"34","4":"15","5":"1","6":"1","7":"1","8":"0","9":"1","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"0","17":"1","18":"0","19":"0","20":"0","21":"0","22":"0.7608059","23":"1156","24":"225","25":"Female"},{"1":"2.38","2":"9","3":"5","4":"0","5":"1","6":"0","7":"0","8":"5","9":"1","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"1","22":"0.8671005","23":"25","24":"0","25":"Male"},{"1":"3.75","2":"12","3":"11","4":"0","5":"0","6":"0","7":"0","8":"1","9":"1","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.3217559","23":"121","24":"0","25":"Male"},{"1":"5.52","2":"13","3":"31","4":"3","5":"0","6":"0","7":"0","8":"0","9":"1","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.7083778","23":"961","24":"9","25":"Male"},{"1":"6.50","2":"12","3":"8","4":"5","5":"0","6":"1","7":"1","8":"0","9":"1","10":"0","11":"1","12":"0","13":"0","14":"0","15":"1","16":"0","17":"0","18":"0","19":"0","20":"1","21":"0","22":"1.8718022","23":"64","24":"25","25":"Female"},{"1":"3.10","2":"12","3":"2","4":"2","5":"0","6":"1","7":"0","8":"1","9":"1","10":"0","11":"1","12":"0","13":"0","14":"1","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.1314021","23":"4","24":"4","25":"Female"},{"1":"10.00","2":"14","3":"18","4":"5","5":"0","6":"0","7":"1","8":"2","9":"1","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"0","19":"1","20":"0","21":"0","22":"2.3025851","23":"324","24":"25","25":"Male"},{"1":"6.63","2":"16","3":"3","4":"0","5":"0","6":"0","7":"1","8":"0","9":"1","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"1","20":"0","21":"0","22":"1.8916048","23":"9","24":"0","25":"Male"},{"1":"10.00","2":"16","3":"3","4":"2","5":"0","6":"0","7":"1","8":"0","9":"1","10":"0","11":"1","12":"0","13":"0","14":"0","15":"1","16":"0","17":"0","18":"0","19":"1","20":"0","21":"0","22":"2.3025851","23":"9","24":"4","25":"Male"},{"1":"2.31","2":"9","3":"4","4":"1","5":"0","6":"1","7":"0","8":"5","9":"0","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"0","20":"0","21":"1","22":"0.8372475","23":"16","24":"1","25":"Female"},{"1":"6.88","2":"18","3":"4","4":"4","5":"0","6":"0","7":"0","8":"0","9":"1","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"1","20":"0","21":"0","22":"1.9286187","23":"16","24":"16","25":"Male"},{"1":"2.83","2":"10","3":"1","4":"0","5":"0","6":"0","7":"0","8":"4","9":"1","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.0402766","23":"1","24":"0","25":"Male"},{"1":"3.13","2":"10","3":"1","4":"0","5":"0","6":"1","7":"0","8":"1","9":"1","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"1","20":"0","21":"0","22":"1.1410331","23":"1","24":"0","25":"Female"},{"1":"8.00","2":"13","3":"28","4":"5","5":"0","6":"0","7":"1","8":"1","9":"1","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"1","18":"0","19":"1","20":"0","21":"0","22":"2.0794415","23":"784","24":"25","25":"Male"},{"1":"4.50","2":"12","3":"47","4":"4","5":"0","6":"1","7":"1","8":"0","9":"1","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"0","20":"1","21":"0","22":"1.5040774","23":"2209","24":"16","25":"Female"},{"1":"8.65","2":"18","3":"13","4":"1","5":"0","6":"1","7":"0","8":"0","9":"1","10":"1","11":"0","12":"0","13":"0","14":"1","15":"0","16":"0","17":"0","18":"0","19":"1","20":"0","21":"0","22":"2.1575594","23":"169","24":"1","25":"Female"},{"1":"2.00","2":"13","3":"2","4":"6","5":"0","6":"1","7":"0","8":"0","9":"1","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"1","18":"0","19":"0","20":"0","21":"1","22":"0.6931472","23":"4","24":"36","25":"Female"},{"1":"4.75","2":"12","3":"48","4":"2","5":"0","6":"1","7":"1","8":"0","9":"1","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"0","20":"0","21":"1","22":"1.5581446","23":"2304","24":"4","25":"Female"},{"1":"6.25","2":"13","3":"6","4":"5","5":"0","6":"1","7":"1","8":"1","9":"1","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"1","20":"0","21":"0","22":"1.8325815","23":"36","24":"25","25":"Female"},{"1":"6.00","2":"13","3":"8","4":"0","5":"0","6":"0","7":"1","8":"2","9":"1","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"0","20":"0","21":"1","22":"1.7917595","23":"64","24":"0","25":"Male"},{"1":"15.38","2":"13","3":"25","4":"21","5":"0","6":"0","7":"1","8":"2","9":"1","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"1","20":"0","21":"0","22":"2.7330680","23":"625","24":"441","25":"Male"},{"1":"14.58","2":"18","3":"13","4":"7","5":"0","6":"1","7":"0","8":"0","9":"1","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"1","20":"0","21":"0","22":"2.6796508","23":"169","24":"49","25":"Female"},{"1":"12.50","2":"12","3":"8","4":"1","5":"0","6":"0","7":"0","8":"0","9":"1","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"2.5257287","23":"64","24":"1","25":"Male"},{"1":"5.25","2":"12","3":"19","4":"10","5":"0","6":"1","7":"1","8":"2","9":"1","10":"1","11":"0","12":"0","13":"0","14":"0","15":"1","16":"0","17":"0","18":"0","19":"0","20":"1","21":"0","22":"1.6582280","23":"361","24":"100","25":"Female"},{"1":"2.17","2":"13","3":"1","4":"4","5":"0","6":"1","7":"0","8":"1","9":"1","10":"1","11":"0","12":"0","13":"0","14":"1","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"1","22":"0.7747272","23":"1","24":"16","25":"Female"},{"1":"7.14","2":"12","3":"43","4":"5","5":"0","6":"1","7":"0","8":"0","9":"1","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.9657128","23":"1849","24":"25","25":"Female"},{"1":"6.22","2":"12","3":"19","4":"9","5":"0","6":"1","7":"1","8":"1","9":"1","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"0","20":"1","21":"0","22":"1.8277699","23":"361","24":"81","25":"Female"},{"1":"9.00","2":"12","3":"11","4":"5","5":"0","6":"1","7":"1","8":"0","9":"1","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"1","20":"0","21":"0","22":"2.1972246","23":"121","24":"25","25":"Female"},{"1":"10.00","2":"14","3":"43","4":"4","5":"0","6":"0","7":"1","8":"0","9":"1","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"1","20":"0","21":"0","22":"2.3025851","23":"1849","24":"16","25":"Male"},{"1":"5.77","2":"10","3":"44","4":"3","5":"0","6":"0","7":"1","8":"0","9":"1","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"1","20":"0","21":"0","22":"1.7526721","23":"1936","24":"9","25":"Male"},{"1":"4.00","2":"12","3":"22","4":"11","5":"0","6":"1","7":"1","8":"2","9":"1","10":"1","11":"0","12":"0","13":"0","14":"1","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.3862944","23":"484","24":"121","25":"Female"},{"1":"8.75","2":"16","3":"3","4":"2","5":"0","6":"0","7":"1","8":"1","9":"1","10":"1","11":"0","12":"0","13":"0","14":"1","15":"0","16":"0","17":"0","18":"0","19":"1","20":"0","21":"0","22":"2.1690538","23":"9","24":"4","25":"Male"},{"1":"6.53","2":"16","3":"3","4":"2","5":"0","6":"1","7":"0","8":"0","9":"1","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"1","20":"0","21":"0","22":"1.8764070","23":"9","24":"4","25":"Female"},{"1":"7.60","2":"12","3":"41","4":"11","5":"0","6":"1","7":"0","8":"0","9":"1","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"1","20":"0","21":"0","22":"2.0281482","23":"1681","24":"121","25":"Female"},{"1":"5.00","2":"14","3":"5","4":"0","5":"0","6":"0","7":"0","8":"0","9":"1","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.6094379","23":"25","24":"0","25":"Male"},{"1":"5.00","2":"12","3":"14","4":"11","5":"0","6":"1","7":"0","8":"0","9":"1","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"0","20":"0","21":"1","22":"1.6094379","23":"196","24":"121","25":"Female"},{"1":"21.86","2":"12","3":"24","4":"16","5":"0","6":"0","7":"1","8":"3","9":"1","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"1","20":"0","21":"0","22":"3.0846586","23":"576","24":"256","25":"Male"},{"1":"8.64","2":"12","3":"28","4":"8","5":"0","6":"0","7":"1","8":"0","9":"1","10":"1","11":"0","12":"0","13":"0","14":"1","15":"0","16":"0","17":"0","18":"0","19":"1","20":"0","21":"0","22":"2.1564026","23":"784","24":"64","25":"Male"},{"1":"3.30","2":"12","3":"25","4":"8","5":"0","6":"0","7":"1","8":"1","9":"1","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.1939224","23":"625","24":"64","25":"Male"},{"1":"4.44","2":"12","3":"3","4":"0","5":"0","6":"0","7":"0","8":"0","9":"1","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"1","20":"0","21":"0","22":"1.4906543","23":"9","24":"0","25":"Male"},{"1":"4.55","2":"12","3":"11","4":"0","5":"0","6":"0","7":"1","8":"0","9":"0","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.5151273","23":"121","24":"0","25":"Male"},{"1":"3.50","2":"12","3":"7","4":"6","5":"1","6":"1","7":"1","8":"0","9":"0","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.2527629","23":"49","24":"36","25":"Female"},{"1":"6.25","2":"16","3":"9","4":"2","5":"0","6":"0","7":"1","8":"1","9":"0","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"1","20":"0","21":"0","22":"1.8325815","23":"81","24":"4","25":"Male"},{"1":"3.85","2":"16","3":"5","4":"0","5":"0","6":"0","7":"1","8":"0","9":"1","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.3480731","23":"25","24":"0","25":"Male"},{"1":"6.18","2":"14","3":"9","4":"3","5":"0","6":"1","7":"1","8":"0","9":"1","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"1","20":"0","21":"0","22":"1.8213183","23":"81","24":"9","25":"Female"},{"1":"2.91","2":"11","3":"1","4":"0","5":"0","6":"1","7":"0","8":"3","9":"1","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"1","18":"0","19":"1","20":"0","21":"0","22":"1.0681531","23":"1","24":"0","25":"Female"},{"1":"6.25","2":"16","3":"2","4":"1","5":"1","6":"1","7":"0","8":"0","9":"1","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"1","20":"0","21":"0","22":"1.8325815","23":"4","24":"1","25":"Female"},{"1":"6.25","2":"12","3":"13","4":"0","5":"0","6":"1","7":"1","8":"0","9":"1","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"0","20":"1","21":"0","22":"1.8325815","23":"169","24":"0","25":"Female"},{"1":"9.05","2":"12","3":"10","4":"2","5":"0","6":"0","7":"1","8":"3","9":"1","10":"1","11":"0","12":"0","13":"1","14":"0","15":"0","16":"0","17":"0","18":"0","19":"1","20":"0","21":"0","22":"2.2027647","23":"100","24":"4","25":"Male"},{"1":"10.00","2":"17","3":"5","4":"3","5":"0","6":"0","7":"1","8":"0","9":"1","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"0","19":"1","20":"0","21":"0","22":"2.3025851","23":"25","24":"9","25":"Male"},{"1":"11.11","2":"12","3":"30","4":"8","5":"0","6":"0","7":"1","8":"0","9":"1","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"1","20":"0","21":"0","22":"2.4078455","23":"900","24":"64","25":"Male"},{"1":"6.88","2":"12","3":"31","4":"19","5":"0","6":"0","7":"1","8":"3","9":"1","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"0","20":"0","21":"1","22":"1.9286187","23":"961","24":"361","25":"Male"},{"1":"8.75","2":"16","3":"1","4":"2","5":"1","6":"0","7":"0","8":"0","9":"1","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"0","19":"1","20":"0","21":"0","22":"2.1690538","23":"1","24":"4","25":"Male"},{"1":"10.00","2":"8","3":"9","4":"0","5":"0","6":"0","7":"1","8":"0","9":"1","10":"1","11":"0","12":"0","13":"1","14":"0","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"2.3025851","23":"81","24":"0","25":"Male"},{"1":"3.05","2":"12","3":"10","4":"0","5":"0","6":"1","7":"1","8":"2","9":"1","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.1151416","23":"100","24":"0","25":"Female"},{"1":"3.00","2":"12","3":"38","4":"0","5":"0","6":"1","7":"1","8":"0","9":"0","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"1","18":"0","19":"0","20":"1","21":"0","22":"1.0986123","23":"1444","24":"0","25":"Female"},{"1":"5.80","2":"12","3":"19","4":"6","5":"0","6":"1","7":"1","8":"2","9":"0","10":"1","11":"0","12":"0","13":"0","14":"1","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.7578579","23":"361","24":"36","25":"Female"},{"1":"4.10","2":"16","3":"5","4":"0","5":"0","6":"1","7":"1","8":"0","9":"1","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"1","20":"0","21":"0","22":"1.4109869","23":"25","24":"0","25":"Female"},{"1":"8.00","2":"12","3":"26","4":"2","5":"0","6":"0","7":"1","8":"1","9":"1","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"2.0794415","23":"676","24":"4","25":"Male"},{"1":"6.15","2":"12","3":"35","4":"12","5":"0","6":"1","7":"0","8":"0","9":"1","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.8164521","23":"1225","24":"144","25":"Female"},{"1":"2.70","2":"9","3":"2","4":"0","5":"0","6":"1","7":"0","8":"1","9":"1","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"0","20":"1","21":"0","22":"0.9932518","23":"4","24":"0","25":"Female"},{"1":"2.75","2":"13","3":"1","4":"2","5":"0","6":"1","7":"0","8":"1","9":"1","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"0","20":"0","21":"1","22":"1.0116010","23":"1","24":"4","25":"Female"},{"1":"3.00","2":"16","3":"19","4":"10","5":"0","6":"1","7":"1","8":"0","9":"1","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"0","20":"1","21":"0","22":"1.0986123","23":"361","24":"100","25":"Female"},{"1":"3.00","2":"14","3":"3","4":"2","5":"0","6":"1","7":"0","8":"0","9":"1","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"0","20":"0","21":"1","22":"1.0986123","23":"9","24":"4","25":"Female"},{"1":"7.36","2":"8","3":"36","4":"24","5":"0","6":"0","7":"1","8":"3","9":"1","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.9960599","23":"1296","24":"576","25":"Male"},{"1":"7.50","2":"14","3":"29","4":"24","5":"0","6":"0","7":"1","8":"1","9":"1","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"0","19":"1","20":"0","21":"0","22":"2.0149031","23":"841","24":"576","25":"Male"},{"1":"3.50","2":"13","3":"1","4":"2","5":"0","6":"0","7":"0","8":"3","9":"1","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.2527629","23":"1","24":"4","25":"Male"},{"1":"8.10","2":"12","3":"38","4":"3","5":"0","6":"1","7":"1","8":"1","9":"1","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"1","20":"0","21":"0","22":"2.0918641","23":"1444","24":"9","25":"Female"},{"1":"3.75","2":"18","3":"1","4":"2","5":"0","6":"0","7":"0","8":"1","9":"1","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"1","20":"0","21":"0","22":"1.3217559","23":"1","24":"4","25":"Male"},{"1":"3.25","2":"9","3":"29","4":"0","5":"1","6":"0","7":"1","8":"1","9":"1","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.1786550","23":"841","24":"0","25":"Male"},{"1":"5.83","2":"8","3":"36","4":"15","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"0","20":"1","21":"0","22":"1.7630169","23":"1296","24":"225","25":"Female"},{"1":"3.50","2":"8","3":"4","4":"0","5":"0","6":"0","7":"0","8":"3","9":"1","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"0","20":"0","21":"1","22":"1.2527629","23":"16","24":"0","25":"Male"},{"1":"3.33","2":"12","3":"45","4":"4","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.2029723","23":"2025","24":"16","25":"Female"},{"1":"4.00","2":"14","3":"22","4":"3","5":"0","6":"1","7":"0","8":"0","9":"1","10":"0","11":"0","12":"0","13":"1","14":"0","15":"0","16":"0","17":"0","18":"0","19":"0","20":"1","21":"0","22":"1.3862944","23":"484","24":"9","25":"Female"},{"1":"3.50","2":"12","3":"20","4":"4","5":"0","6":"1","7":"1","8":"2","9":"0","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"0","20":"1","21":"0","22":"1.2527629","23":"400","24":"16","25":"Female"},{"1":"6.25","2":"16","3":"5","4":"0","5":"0","6":"0","7":"1","8":"0","9":"1","10":"0","11":"0","12":"0","13":"0","14":"1","15":"0","16":"0","17":"0","18":"0","19":"1","20":"0","21":"0","22":"1.8325815","23":"25","24":"0","25":"Male"},{"1":"2.95","2":"8","3":"15","4":"2","5":"1","6":"1","7":"1","8":"1","9":"1","10":"0","11":"0","12":"0","13":"0","14":"1","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.0818052","23":"225","24":"4","25":"Female"},{"1":"5.71","2":"13","3":"10","4":"2","5":"0","6":"1","7":"1","8":"0","9":"1","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"1","20":"0","21":"0","22":"1.7422190","23":"100","24":"4","25":"Female"},{"1":"3.00","2":"9","3":"3","4":"0","5":"0","6":"1","7":"0","8":"0","9":"1","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"1","18":"0","19":"0","20":"0","21":"0","22":"1.0986123","23":"9","24":"0","25":"Female"},{"1":"22.86","2":"16","3":"16","4":"7","5":"0","6":"0","7":"1","8":"2","9":"1","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"0","19":"1","20":"0","21":"0","22":"3.1293886","23":"256","24":"49","25":"Male"},{"1":"9.00","2":"12","3":"38","4":"1","5":"0","6":"0","7":"1","8":"0","9":"1","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"1","20":"0","21":"0","22":"2.1972246","23":"1444","24":"1","25":"Male"},{"1":"8.33","2":"15","3":"33","4":"26","5":"0","6":"0","7":"1","8":"1","9":"1","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"1","20":"0","21":"0","22":"2.1198635","23":"1089","24":"676","25":"Male"},{"1":"3.00","2":"11","3":"2","4":"0","5":"0","6":"0","7":"0","8":"0","9":"1","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.0986123","23":"4","24":"0","25":"Male"},{"1":"5.75","2":"14","3":"6","4":"5","5":"0","6":"0","7":"1","8":"0","9":"1","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"1","20":"0","21":"0","22":"1.7491999","23":"36","24":"25","25":"Male"},{"1":"6.76","2":"12","3":"19","4":"3","5":"1","6":"0","7":"1","8":"2","9":"1","10":"0","11":"0","12":"0","13":"0","14":"1","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.9110229","23":"361","24":"9","25":"Male"},{"1":"10.00","2":"12","3":"29","4":"0","5":"0","6":"0","7":"1","8":"2","9":"1","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"0","20":"1","21":"0","22":"2.3025851","23":"841","24":"0","25":"Male"},{"1":"3.00","2":"12","3":"2","4":"0","5":"0","6":"0","7":"0","8":"0","9":"1","10":"0","11":"0","12":"0","13":"1","14":"0","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.0986123","23":"4","24":"0","25":"Male"},{"1":"3.50","2":"18","3":"3","4":"1","5":"0","6":"1","7":"0","8":"0","9":"1","10":"0","11":"0","12":"0","13":"0","14":"0","15":"1","16":"0","17":"0","18":"0","19":"1","20":"0","21":"0","22":"1.2527629","23":"9","24":"1","25":"Female"},{"1":"3.25","2":"12","3":"4","4":"0","5":"0","6":"0","7":"0","8":"0","9":"1","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"1","18":"0","19":"0","20":"0","21":"0","22":"1.1786550","23":"16","24":"0","25":"Male"},{"1":"4.00","2":"12","3":"10","4":"1","5":"1","6":"1","7":"0","8":"0","9":"1","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"0","20":"1","21":"0","22":"1.3862944","23":"100","24":"1","25":"Female"},{"1":"2.92","2":"12","3":"4","4":"0","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"1","20":"0","21":"0","22":"1.0715836","23":"16","24":"0","25":"Female"},{"1":"3.06","2":"12","3":"14","4":"10","5":"1","6":"1","7":"0","8":"3","9":"0","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.1184149","23":"196","24":"100","25":"Female"},{"1":"3.20","2":"12","3":"15","4":"5","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"1","20":"0","21":"0","22":"1.1631508","23":"225","24":"25","25":"Female"},{"1":"4.75","2":"12","3":"19","4":"0","5":"0","6":"0","7":"1","8":"3","9":"0","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.5581446","23":"361","24":"0","25":"Male"},{"1":"3.00","2":"14","3":"17","4":"0","5":"0","6":"1","7":"1","8":"4","9":"1","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"0","17":"1","18":"0","19":"0","20":"1","21":"0","22":"1.0986123","23":"289","24":"0","25":"Female"},{"1":"18.16","2":"16","3":"29","4":"7","5":"0","6":"0","7":"1","8":"1","9":"1","10":"0","11":"1","12":"0","13":"0","14":"1","15":"0","16":"0","17":"0","18":"0","19":"1","20":"0","21":"0","22":"2.8992214","23":"841","24":"49","25":"Male"},{"1":"3.50","2":"12","3":"2","4":"0","5":"0","6":"1","7":"0","8":"2","9":"1","10":"0","11":"1","12":"0","13":"0","14":"0","15":"1","16":"0","17":"0","18":"0","19":"0","20":"1","21":"0","22":"1.2527629","23":"4","24":"0","25":"Female"},{"1":"4.11","2":"14","3":"5","4":"0","5":"0","6":"0","7":"0","8":"0","9":"0","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"1","20":"0","21":"0","22":"1.4134231","23":"25","24":"0","25":"Male"},{"1":"1.96","2":"11","3":"38","4":"3","5":"1","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"0","17":"1","18":"0","19":"0","20":"0","21":"0","22":"0.6729445","23":"1444","24":"9","25":"Female"},{"1":"4.29","2":"12","3":"3","4":"0","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"0","20":"0","21":"1","22":"1.4562867","23":"9","24":"0","25":"Female"},{"1":"3.00","2":"10","3":"47","4":"0","5":"0","6":"0","7":"0","8":"0","9":"0","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"0","17":"1","18":"0","19":"0","20":"0","21":"1","22":"1.0986123","23":"2209","24":"0","25":"Male"},{"1":"6.45","2":"12","3":"7","4":"6","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.8640801","23":"49","24":"36","25":"Male"},{"1":"5.20","2":"6","3":"47","4":"13","5":"1","6":"0","7":"1","8":"0","9":"1","10":"0","11":"1","12":"0","13":"1","14":"0","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.6486586","23":"2209","24":"169","25":"Male"},{"1":"4.50","2":"13","3":"23","4":"2","5":"1","6":"1","7":"0","8":"0","9":"1","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"1","20":"0","21":"0","22":"1.5040774","23":"529","24":"4","25":"Female"},{"1":"3.88","2":"12","3":"12","4":"3","5":"0","6":"0","7":"1","8":"3","9":"1","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"0","20":"1","21":"0","22":"1.3558352","23":"144","24":"9","25":"Male"},{"1":"3.45","2":"10","3":"11","4":"0","5":"0","6":"1","7":"0","8":"2","9":"1","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"0","20":"0","21":"1","22":"1.2383742","23":"121","24":"0","25":"Female"},{"1":"10.91","2":"12","3":"25","4":"23","5":"0","6":"0","7":"0","8":"0","9":"1","10":"0","11":"1","12":"0","13":"0","14":"0","15":"1","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"2.3896797","23":"625","24":"529","25":"Male"},{"1":"4.10","2":"14","3":"6","4":"0","5":"0","6":"1","7":"1","8":"0","9":"1","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"0","17":"1","18":"0","19":"0","20":"0","21":"1","22":"1.4109869","23":"36","24":"0","25":"Female"},{"1":"3.00","2":"13","3":"3","4":"1","5":"0","6":"0","7":"0","8":"0","9":"1","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.0986123","23":"9","24":"1","25":"Male"},{"1":"5.90","2":"12","3":"14","4":"7","5":"1","6":"0","7":"1","8":"2","9":"1","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"0","17":"1","18":"0","19":"0","20":"0","21":"0","22":"1.7749524","23":"196","24":"49","25":"Male"},{"1":"18.00","2":"18","3":"13","4":"0","5":"0","6":"1","7":"0","8":"0","9":"1","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"1","20":"0","21":"0","22":"2.8903718","23":"169","24":"0","25":"Female"},{"1":"4.00","2":"12","3":"9","4":"0","5":"0","6":"0","7":"0","8":"0","9":"1","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"1","20":"0","21":"0","22":"1.3862944","23":"81","24":"0","25":"Male"},{"1":"3.00","2":"12","3":"1","4":"0","5":"1","6":"0","7":"0","8":"0","9":"1","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"0","17":"1","18":"0","19":"0","20":"0","21":"0","22":"1.0986123","23":"1","24":"0","25":"Male"},{"1":"3.55","2":"12","3":"6","4":"0","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.2669476","23":"36","24":"0","25":"Female"},{"1":"3.00","2":"12","3":"11","4":"1","5":"0","6":"1","7":"1","8":"2","9":"0","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"1","18":"0","19":"0","20":"0","21":"1","22":"1.0986123","23":"121","24":"1","25":"Female"},{"1":"8.75","2":"12","3":"47","4":"44","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"2.1690538","23":"2209","24":"1936","25":"Male"},{"1":"2.90","2":"8","3":"49","4":"6","5":"0","6":"1","7":"0","8":"1","9":"0","10":"0","11":"0","12":"0","13":"0","14":"1","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.0647107","23":"2401","24":"36","25":"Female"},{"1":"6.26","2":"13","3":"37","4":"17","5":"0","6":"1","7":"1","8":"0","9":"1","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"1","20":"0","21":"0","22":"1.8341802","23":"1369","24":"289","25":"Female"},{"1":"3.50","2":"13","3":"2","4":"0","5":"0","6":"1","7":"0","8":"0","9":"1","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"1","20":"0","21":"0","22":"1.2527629","23":"4","24":"0","25":"Female"},{"1":"4.60","2":"14","3":"7","4":"0","5":"0","6":"1","7":"1","8":"0","9":"1","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"0","20":"1","21":"0","22":"1.5260563","23":"49","24":"0","25":"Female"},{"1":"6.00","2":"12","3":"22","4":"8","5":"0","6":"0","7":"0","8":"2","9":"1","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"1","20":"0","21":"0","22":"1.7917595","23":"484","24":"64","25":"Male"},{"1":"2.89","2":"10","3":"8","4":"0","5":"0","6":"1","7":"0","8":"1","9":"1","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.0612565","23":"64","24":"0","25":"Female"},{"1":"5.58","2":"16","3":"1","4":"1","5":"0","6":"0","7":"1","8":"0","9":"1","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"0","20":"1","21":"0","22":"1.7191888","23":"1","24":"1","25":"Male"},{"1":"4.00","2":"12","3":"43","4":"6","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0","12":"0","13":"0","14":"0","15":"1","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.3862944","23":"1849","24":"36","25":"Female"},{"1":"6.00","2":"16","3":"2","4":"2","5":"0","6":"0","7":"0","8":"0","9":"1","10":"0","11":"0","12":"0","13":"0","14":"1","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.7917595","23":"4","24":"4","25":"Male"},{"1":"4.50","2":"12","3":"2","4":"1","5":"0","6":"1","7":"0","8":"2","9":"1","10":"0","11":"0","12":"0","13":"1","14":"0","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.5040774","23":"4","24":"1","25":"Female"},{"1":"2.92","2":"14","3":"1","4":"3","5":"0","6":"0","7":"0","8":"0","9":"1","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"0","20":"1","21":"0","22":"1.0715836","23":"1","24":"9","25":"Male"},{"1":"4.33","2":"18","3":"1","4":"0","5":"0","6":"0","7":"0","8":"0","9":"1","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"1","20":"0","21":"0","22":"1.4655675","23":"1","24":"0","25":"Male"},{"1":"18.89","2":"17","3":"26","4":"20","5":"0","6":"0","7":"1","8":"2","9":"1","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"1","20":"0","21":"0","22":"2.9386327","23":"676","24":"400","25":"Male"},{"1":"4.28","2":"13","3":"1","4":"1","5":"0","6":"1","7":"0","8":"2","9":"1","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"1","20":"0","21":"0","22":"1.4539530","23":"1","24":"1","25":"Female"},{"1":"4.57","2":"14","3":"37","4":"7","5":"0","6":"1","7":"1","8":"0","9":"1","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"1","18":"0","19":"0","20":"0","21":"1","22":"1.5195132","23":"1369","24":"49","25":"Female"},{"1":"6.25","2":"15","3":"12","4":"4","5":"0","6":"1","7":"1","8":"2","9":"1","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"1","20":"0","21":"0","22":"1.8325815","23":"144","24":"16","25":"Female"},{"1":"2.95","2":"14","3":"41","4":"23","5":"1","6":"0","7":"1","8":"0","9":"0","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"1","20":"0","21":"0","22":"1.0818052","23":"1681","24":"529","25":"Male"},{"1":"8.75","2":"12","3":"24","4":"1","5":"0","6":"0","7":"0","8":"0","9":"1","10":"1","11":"0","12":"0","13":"0","14":"1","15":"0","16":"0","17":"0","18":"0","19":"1","20":"0","21":"0","22":"2.1690538","23":"576","24":"1","25":"Male"},{"1":"8.50","2":"8","3":"38","4":"26","5":"0","6":"0","7":"0","8":"0","9":"1","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"2.1400661","23":"1444","24":"676","25":"Male"},{"1":"3.75","2":"12","3":"18","4":"0","5":"0","6":"1","7":"1","8":"4","9":"1","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"0","20":"1","21":"0","22":"1.3217559","23":"324","24":"0","25":"Female"},{"1":"3.15","2":"12","3":"26","4":"1","5":"0","6":"0","7":"1","8":"0","9":"1","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"1","20":"0","21":"0","22":"1.1474025","23":"676","24":"1","25":"Male"},{"1":"5.00","2":"8","3":"45","4":"2","5":"0","6":"0","7":"0","8":"0","9":"0","10":"1","11":"0","12":"0","13":"0","14":"1","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.6094379","23":"2025","24":"4","25":"Male"},{"1":"6.46","2":"12","3":"27","4":"0","5":"0","6":"0","7":"1","8":"3","9":"0","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.8656293","23":"729","24":"0","25":"Male"},{"1":"2.00","2":"9","3":"2","4":"0","5":"0","6":"0","7":"0","8":"3","9":"0","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"0","20":"0","21":"1","22":"0.6931472","23":"4","24":"0","25":"Male"},{"1":"4.79","2":"12","3":"41","4":"8","5":"0","6":"0","7":"1","8":"0","9":"1","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"1","20":"0","21":"0","22":"1.5665303","23":"1681","24":"64","25":"Male"},{"1":"5.78","2":"16","3":"11","4":"4","5":"0","6":"0","7":"1","8":"2","9":"1","10":"1","11":"0","12":"0","13":"0","14":"1","15":"0","16":"0","17":"0","18":"0","19":"1","20":"0","21":"0","22":"1.7544037","23":"121","24":"16","25":"Male"},{"1":"3.18","2":"12","3":"5","4":"0","5":"0","6":"1","7":"1","8":"0","9":"1","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"0","20":"0","21":"1","22":"1.1568812","23":"25","24":"0","25":"Female"},{"1":"4.68","2":"16","3":"3","4":"1","5":"0","6":"1","7":"0","8":"0","9":"1","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"1","20":"0","21":"0","22":"1.5432981","23":"9","24":"1","25":"Female"},{"1":"4.10","2":"12","3":"3","4":"2","5":"0","6":"1","7":"0","8":"0","9":"1","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"0","20":"0","21":"1","22":"1.4109869","23":"9","24":"4","25":"Female"},{"1":"2.91","2":"12","3":"4","4":"0","5":"0","6":"0","7":"1","8":"0","9":"1","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.0681531","23":"16","24":"0","25":"Male"},{"1":"6.00","2":"13","3":"21","4":"13","5":"0","6":"0","7":"1","8":"4","9":"0","10":"0","11":"1","12":"0","13":"0","14":"1","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.7917595","23":"441","24":"169","25":"Male"},{"1":"3.60","2":"10","3":"34","4":"26","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1","12":"0","13":"0","14":"1","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.2809339","23":"1156","24":"676","25":"Female"},{"1":"3.95","2":"6","3":"49","4":"6","5":"0","6":"0","7":"1","8":"6","9":"0","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.3737156","23":"2401","24":"36","25":"Male"},{"1":"7.00","2":"12","3":"6","4":"5","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"1","12":"0","13":"1","14":"0","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.9459101","23":"36","24":"25","25":"Male"},{"1":"3.00","2":"12","3":"26","4":"9","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"0","17":"1","18":"0","19":"0","20":"0","21":"1","22":"1.0986123","23":"676","24":"81","25":"Female"},{"1":"6.08","2":"16","3":"9","4":"0","5":"0","6":"0","7":"0","8":"0","9":"0","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"0","17":"1","18":"0","19":"1","20":"0","21":"0","22":"1.8050047","23":"81","24":"0","25":"Male"},{"1":"8.63","2":"12","3":"23","4":"9","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"1","12":"0","13":"0","14":"1","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"2.1552446","23":"529","24":"81","25":"Male"},{"1":"3.00","2":"8","3":"33","4":"2","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"1","12":"0","13":"0","14":"1","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.0986123","23":"1089","24":"4","25":"Male"},{"1":"3.75","2":"12","3":"5","4":"2","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"0","20":"1","21":"0","22":"1.3217559","23":"25","24":"4","25":"Female"},{"1":"2.90","2":"6","3":"49","4":"7","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"1","22":"1.0647107","23":"2401","24":"49","25":"Male"},{"1":"3.00","2":"4","3":"48","4":"0","5":"1","6":"0","7":"1","8":"0","9":"0","10":"0","11":"1","12":"0","13":"0","14":"1","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.0986123","23":"2304","24":"0","25":"Male"},{"1":"6.25","2":"11","3":"35","4":"31","5":"0","6":"0","7":"1","8":"0","9":"1","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.8325815","23":"1225","24":"961","25":"Male"},{"1":"3.50","2":"11","3":"23","4":"2","5":"1","6":"1","7":"0","8":"2","9":"0","10":"0","11":"1","12":"0","13":"0","14":"1","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.2527629","23":"529","24":"4","25":"Female"},{"1":"3.00","2":"7","3":"26","4":"1","5":"0","6":"1","7":"0","8":"3","9":"0","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"0","20":"0","21":"1","22":"1.0986123","23":"676","24":"1","25":"Female"},{"1":"3.24","2":"12","3":"16","4":"0","5":"0","6":"1","7":"1","8":"2","9":"1","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"0","20":"1","21":"0","22":"1.1755733","23":"256","24":"0","25":"Female"},{"1":"8.02","2":"18","3":"23","4":"3","5":"0","6":"1","7":"1","8":"1","9":"1","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"1","20":"0","21":"0","22":"2.0819385","23":"529","24":"9","25":"Female"},{"1":"3.33","2":"12","3":"36","4":"8","5":"0","6":"1","7":"1","8":"1","9":"1","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"0","20":"1","21":"0","22":"1.2029723","23":"1296","24":"64","25":"Female"},{"1":"5.25","2":"16","3":"4","4":"0","5":"0","6":"0","7":"0","8":"0","9":"1","10":"0","11":"1","12":"0","13":"0","14":"1","15":"0","16":"0","17":"0","18":"0","19":"1","20":"0","21":"0","22":"1.6582280","23":"16","24":"0","25":"Male"},{"1":"6.25","2":"12","3":"10","4":"0","5":"0","6":"0","7":"1","8":"3","9":"1","10":"0","11":"1","12":"0","13":"1","14":"0","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.8325815","23":"100","24":"0","25":"Male"},{"1":"3.50","2":"14","3":"18","4":"2","5":"0","6":"0","7":"1","8":"1","9":"0","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"1","20":"0","21":"0","22":"1.2527629","23":"324","24":"4","25":"Male"},{"1":"2.95","2":"12","3":"3","4":"1","5":"0","6":"0","7":"0","8":"1","9":"0","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.0818052","23":"9","24":"1","25":"Male"},{"1":"3.00","2":"10","3":"7","4":"0","5":"0","6":"1","7":"1","8":"2","9":"0","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"0","20":"0","21":"1","22":"1.0986123","23":"49","24":"0","25":"Female"},{"1":"4.69","2":"10","3":"7","4":"7","5":"0","6":"0","7":"0","8":"0","9":"0","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.5454326","23":"49","24":"49","25":"Male"},{"1":"3.73","2":"9","3":"33","4":"2","5":"0","6":"1","7":"0","8":"1","9":"0","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.3164083","23":"1089","24":"4","25":"Female"},{"1":"4.00","2":"10","3":"34","4":"12","5":"0","6":"0","7":"1","8":"0","9":"0","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.3862944","23":"1156","24":"144","25":"Male"},{"1":"4.00","2":"12","3":"8","4":"0","5":"0","6":"1","7":"1","8":"2","9":"0","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"1","20":"0","21":"0","22":"1.3862944","23":"64","24":"0","25":"Female"},{"1":"2.90","2":"12","3":"17","4":"1","5":"0","6":"1","7":"1","8":"2","9":"0","10":"1","11":"0","12":"0","13":"0","14":"1","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.0647107","23":"289","24":"1","25":"Female"},{"1":"3.05","2":"12","3":"2","4":"0","5":"0","6":"1","7":"0","8":"1","9":"0","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"0","20":"0","21":"1","22":"1.1151416","23":"4","24":"0","25":"Female"},{"1":"5.05","2":"10","3":"5","4":"0","5":"0","6":"1","7":"0","8":"0","9":"1","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"0","20":"1","21":"0","22":"1.6193882","23":"25","24":"0","25":"Female"},{"1":"13.95","2":"16","3":"41","4":"16","5":"0","6":"0","7":"1","8":"0","9":"1","10":"1","11":"0","12":"0","13":"0","14":"1","15":"0","16":"0","17":"0","18":"0","19":"1","20":"0","21":"0","22":"2.6354795","23":"1681","24":"256","25":"Male"},{"1":"18.16","2":"16","3":"35","4":"28","5":"0","6":"0","7":"1","8":"1","9":"1","10":"1","11":"0","12":"0","13":"0","14":"1","15":"0","16":"0","17":"0","18":"0","19":"1","20":"0","21":"0","22":"2.8992214","23":"1225","24":"784","25":"Male"},{"1":"6.25","2":"16","3":"11","4":"4","5":"0","6":"0","7":"0","8":"0","9":"1","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"1","18":"0","19":"1","20":"0","21":"0","22":"1.8325815","23":"121","24":"16","25":"Male"},{"1":"5.25","2":"12","3":"4","4":"0","5":"1","6":"0","7":"0","8":"0","9":"1","10":"1","11":"0","12":"0","13":"0","14":"1","15":"0","16":"0","17":"0","18":"0","19":"0","20":"1","21":"0","22":"1.6582280","23":"16","24":"0","25":"Male"},{"1":"4.79","2":"12","3":"12","4":"3","5":"0","6":"1","7":"1","8":"3","9":"1","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"1","20":"0","21":"0","22":"1.5665303","23":"144","24":"9","25":"Female"},{"1":"3.35","2":"7","3":"35","4":"0","5":"0","6":"1","7":"0","8":"1","9":"1","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.2089603","23":"1225","24":"0","25":"Female"},{"1":"3.00","2":"8","3":"33","4":"0","5":"0","6":"0","7":"1","8":"1","9":"1","10":"0","11":"1","12":"0","13":"0","14":"0","15":"1","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.0986123","23":"1089","24":"0","25":"Male"},{"1":"8.43","2":"16","3":"8","4":"6","5":"0","6":"0","7":"1","8":"0","9":"1","10":"0","11":"1","12":"0","13":"0","14":"1","15":"0","16":"0","17":"0","18":"0","19":"1","20":"0","21":"0","22":"2.1317968","23":"64","24":"36","25":"Male"},{"1":"5.70","2":"16","3":"2","4":"0","5":"0","6":"0","7":"0","8":"0","9":"1","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"1","20":"0","21":"0","22":"1.7404661","23":"4","24":"0","25":"Male"},{"1":"11.98","2":"18","3":"8","4":"10","5":"0","6":"0","7":"1","8":"2","9":"1","10":"0","11":"1","12":"0","13":"0","14":"0","15":"1","16":"0","17":"0","18":"0","19":"1","20":"0","21":"0","22":"2.4832385","23":"64","24":"100","25":"Male"},{"1":"3.50","2":"13","3":"29","4":"1","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"0","20":"1","21":"0","22":"1.2527629","23":"841","24":"1","25":"Female"},{"1":"4.24","2":"10","3":"14","4":"5","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.4445633","23":"196","24":"25","25":"Male"},{"1":"7.00","2":"16","3":"26","4":"3","5":"0","6":"1","7":"1","8":"1","9":"1","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"1","20":"0","21":"0","22":"1.9459101","23":"676","24":"9","25":"Female"},{"1":"6.00","2":"14","3":"11","4":"3","5":"0","6":"1","7":"1","8":"2","9":"1","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"0","20":"1","21":"0","22":"1.7917595","23":"121","24":"9","25":"Female"},{"1":"12.22","2":"16","3":"10","4":"2","5":"0","6":"0","7":"0","8":"0","9":"1","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"1","20":"0","21":"0","22":"2.5030739","23":"100","24":"4","25":"Male"},{"1":"4.50","2":"12","3":"13","4":"0","5":"0","6":"0","7":"1","8":"0","9":"1","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.5040774","23":"169","24":"0","25":"Male"},{"1":"3.00","2":"9","3":"23","4":"20","5":"0","6":"1","7":"1","8":"2","9":"0","10":"0","11":"1","12":"0","13":"0","14":"1","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.0986123","23":"529","24":"400","25":"Female"},{"1":"2.90","2":"11","3":"1","4":"2","5":"1","6":"0","7":"0","8":"2","9":"0","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"0","20":"0","21":"1","22":"1.0647107","23":"1","24":"4","25":"Male"},{"1":"15.00","2":"11","3":"35","4":"31","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"1","12":"0","13":"0","14":"1","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"2.7080503","23":"1225","24":"961","25":"Male"},{"1":"4.00","2":"12","3":"5","4":"2","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"1","12":"0","13":"1","14":"0","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.3862944","23":"25","24":"4","25":"Male"},{"1":"5.25","2":"11","3":"13","4":"11","5":"0","6":"0","7":"1","8":"2","9":"0","10":"0","11":"1","12":"0","13":"0","14":"1","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.6582280","23":"169","24":"121","25":"Male"},{"1":"4.00","2":"12","3":"22","4":"3","5":"0","6":"0","7":"1","8":"3","9":"0","10":"0","11":"1","12":"0","13":"0","14":"1","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.3862944","23":"484","24":"9","25":"Male"},{"1":"3.30","2":"12","3":"21","4":"9","5":"0","6":"1","7":"1","8":"2","9":"0","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"1","20":"0","21":"0","22":"1.1939224","23":"441","24":"81","25":"Female"},{"1":"5.05","2":"12","3":"19","4":"0","5":"0","6":"1","7":"1","8":"3","9":"0","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"0","20":"1","21":"0","22":"1.6193882","23":"361","24":"0","25":"Female"},{"1":"3.58","2":"12","3":"13","4":"0","5":"0","6":"0","7":"0","8":"0","9":"1","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"0","17":"1","18":"0","19":"0","20":"0","21":"0","22":"1.2753627","23":"169","24":"0","25":"Male"},{"1":"5.00","2":"14","3":"15","4":"5","5":"0","6":"0","7":"1","8":"2","9":"0","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"1","20":"0","21":"0","22":"1.6094379","23":"225","24":"25","25":"Male"},{"1":"4.57","2":"14","3":"3","4":"0","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"1","20":"0","21":"0","22":"1.5195132","23":"9","24":"0","25":"Male"},{"1":"12.50","2":"18","3":"6","4":"2","5":"0","6":"0","7":"0","8":"0","9":"1","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"0","17":"1","18":"0","19":"0","20":"1","21":"0","22":"2.5257287","23":"36","24":"4","25":"Male"},{"1":"3.45","2":"12","3":"6","4":"5","5":"0","6":"1","7":"1","8":"0","9":"1","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"0","20":"1","21":"0","22":"1.2383742","23":"36","24":"25","25":"Female"},{"1":"4.63","2":"12","3":"16","4":"1","5":"0","6":"1","7":"0","8":"0","9":"1","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"0","20":"1","21":"0","22":"1.5325569","23":"256","24":"1","25":"Female"},{"1":"10.00","2":"12","3":"31","4":"2","5":"0","6":"0","7":"1","8":"0","9":"1","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"1","20":"0","21":"0","22":"2.3025851","23":"961","24":"4","25":"Male"},{"1":"2.92","2":"11","3":"1","4":"0","5":"0","6":"1","7":"0","8":"1","9":"0","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"0","20":"0","21":"1","22":"1.0715836","23":"1","24":"0","25":"Female"},{"1":"4.51","2":"12","3":"5","4":"2","5":"0","6":"0","7":"0","8":"0","9":"1","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.5062972","23":"25","24":"4","25":"Male"},{"1":"6.50","2":"17","3":"3","4":"0","5":"0","6":"0","7":"1","8":"0","9":"1","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"1","20":"0","21":"0","22":"1.8718022","23":"9","24":"0","25":"Male"},{"1":"7.50","2":"16","3":"11","4":"0","5":"0","6":"0","7":"1","8":"0","9":"1","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"1","18":"0","19":"1","20":"0","21":"0","22":"2.0149031","23":"121","24":"0","25":"Male"},{"1":"3.54","2":"13","3":"6","4":"7","5":"0","6":"1","7":"1","8":"0","9":"0","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"0","20":"1","21":"0","22":"1.2641267","23":"36","24":"49","25":"Female"},{"1":"4.20","2":"13","3":"11","4":"3","5":"0","6":"1","7":"1","8":"2","9":"1","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"0","20":"1","21":"0","22":"1.4350845","23":"121","24":"9","25":"Female"},{"1":"3.51","2":"12","3":"7","4":"2","5":"0","6":"1","7":"1","8":"0","9":"1","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"0","20":"1","21":"0","22":"1.2556161","23":"49","24":"4","25":"Female"},{"1":"4.50","2":"14","3":"5","4":"0","5":"0","6":"0","7":"1","8":"0","9":"1","10":"1","11":"0","12":"0","13":"1","14":"0","15":"0","16":"0","17":"0","18":"0","19":"1","20":"0","21":"0","22":"1.5040774","23":"25","24":"0","25":"Male"},{"1":"3.35","2":"14","3":"5","4":"4","5":"0","6":"1","7":"1","8":"0","9":"1","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"1","20":"0","21":"0","22":"1.2089603","23":"25","24":"16","25":"Female"},{"1":"2.91","2":"11","3":"2","4":"2","5":"0","6":"0","7":"0","8":"2","9":"1","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"0","20":"0","21":"1","22":"1.0681531","23":"4","24":"4","25":"Male"},{"1":"5.25","2":"10","3":"44","4":"7","5":"0","6":"0","7":"1","8":"1","9":"1","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.6582280","23":"1936","24":"49","25":"Male"},{"1":"4.05","2":"8","3":"44","4":"25","5":"0","6":"0","7":"1","8":"0","9":"1","10":"1","11":"0","12":"0","13":"0","14":"1","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"1","22":"1.3987169","23":"1936","24":"625","25":"Male"},{"1":"3.75","2":"14","3":"13","4":"0","5":"0","6":"1","7":"1","8":"3","9":"1","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"0","20":"1","21":"0","22":"1.3217559","23":"169","24":"0","25":"Female"},{"1":"3.40","2":"12","3":"26","4":"15","5":"0","6":"1","7":"1","8":"1","9":"1","10":"1","11":"0","12":"0","13":"1","14":"0","15":"0","16":"0","17":"0","18":"0","19":"0","20":"1","21":"0","22":"1.2237755","23":"676","24":"225","25":"Female"},{"1":"3.00","2":"10","3":"2","4":"1","5":"0","6":"1","7":"0","8":"1","9":"1","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"0","20":"1","21":"0","22":"1.0986123","23":"4","24":"1","25":"Female"},{"1":"6.29","2":"17","3":"10","4":"3","5":"0","6":"0","7":"1","8":"1","9":"1","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"0","17":"1","18":"0","19":"1","20":"0","21":"0","22":"1.8389610","23":"100","24":"9","25":"Male"},{"1":"2.54","2":"9","3":"2","4":"0","5":"0","6":"1","7":"0","8":"1","9":"1","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"0","20":"0","21":"1","22":"0.9321641","23":"4","24":"0","25":"Female"},{"1":"4.50","2":"12","3":"35","4":"0","5":"0","6":"1","7":"1","8":"1","9":"1","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"0","20":"1","21":"0","22":"1.5040774","23":"1225","24":"0","25":"Female"},{"1":"3.13","2":"12","3":"6","4":"5","5":"0","6":"1","7":"1","8":"1","9":"1","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"0","20":"1","21":"0","22":"1.1410331","23":"36","24":"25","25":"Female"},{"1":"6.36","2":"14","3":"8","4":"1","5":"0","6":"0","7":"1","8":"0","9":"1","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"1","20":"0","21":"0","22":"1.8500284","23":"64","24":"1","25":"Male"},{"1":"4.68","2":"16","3":"1","4":"0","5":"0","6":"0","7":"0","8":"0","9":"1","10":"0","11":"1","12":"0","13":"0","14":"1","15":"0","16":"0","17":"0","18":"0","19":"1","20":"0","21":"0","22":"1.5432981","23":"1","24":"0","25":"Male"},{"1":"6.80","2":"12","3":"14","4":"10","5":"0","6":"0","7":"1","8":"2","9":"0","10":"0","11":"1","12":"0","13":"0","14":"1","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.9169227","23":"196","24":"100","25":"Male"},{"1":"8.53","2":"10","3":"14","4":"6","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"2.1435893","23":"196","24":"36","25":"Male"},{"1":"4.17","2":"0","3":"22","4":"10","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"0","17":"1","18":"0","19":"0","20":"0","21":"0","22":"1.4279160","23":"484","24":"100","25":"Female"},{"1":"3.75","2":"14","3":"8","4":"4","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1","12":"0","13":"0","14":"0","15":"1","16":"0","17":"0","18":"0","19":"1","20":"0","21":"0","22":"1.3217559","23":"64","24":"16","25":"Female"},{"1":"11.10","2":"15","3":"1","4":"4","5":"0","6":"1","7":"0","8":"2","9":"0","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"0","20":"1","21":"0","22":"2.4069452","23":"1","24":"16","25":"Female"},{"1":"3.26","2":"16","3":"15","4":"5","5":"1","6":"1","7":"1","8":"2","9":"1","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"1","20":"0","21":"0","22":"1.1817272","23":"225","24":"25","25":"Female"},{"1":"9.13","2":"12","3":"14","4":"12","5":"0","6":"0","7":"1","8":"3","9":"1","10":"0","11":"1","12":"0","13":"0","14":"1","15":"0","16":"0","17":"0","18":"0","19":"1","20":"0","21":"0","22":"2.2115657","23":"196","24":"144","25":"Male"},{"1":"4.50","2":"11","3":"37","4":"10","5":"0","6":"0","7":"1","8":"2","9":"1","10":"0","11":"1","12":"0","13":"0","14":"1","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.5040774","23":"1369","24":"100","25":"Male"},{"1":"3.00","2":"11","3":"1","4":"1","5":"0","6":"1","7":"0","8":"1","9":"1","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"0","20":"0","21":"1","22":"1.0986123","23":"1","24":"1","25":"Female"},{"1":"8.75","2":"12","3":"4","4":"4","5":"0","6":"0","7":"1","8":"0","9":"1","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"0","20":"1","21":"0","22":"2.1690538","23":"16","24":"16","25":"Male"},{"1":"4.14","2":"13","3":"29","4":"0","5":"0","6":"1","7":"1","8":"0","9":"1","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"0","20":"1","21":"0","22":"1.4206958","23":"841","24":"0","25":"Female"},{"1":"2.87","2":"12","3":"45","4":"8","5":"0","6":"1","7":"1","8":"0","9":"0","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"1","20":"0","21":"0","22":"1.0543120","23":"2025","24":"64","25":"Female"},{"1":"3.35","2":"13","3":"22","4":"0","5":"0","6":"1","7":"0","8":"2","9":"0","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"0","20":"1","21":"0","22":"1.2089603","23":"484","24":"0","25":"Female"},{"1":"6.08","2":"16","3":"42","4":"10","5":"0","6":"0","7":"0","8":"0","9":"0","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"1","20":"0","21":"0","22":"1.8050047","23":"1764","24":"100","25":"Male"},{"1":"3.00","2":"15","3":"9","4":"0","5":"1","6":"0","7":"0","8":"0","9":"0","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"1","18":"0","19":"0","20":"0","21":"0","22":"1.0986123","23":"81","24":"0","25":"Male"},{"1":"4.20","2":"16","3":"8","4":"0","5":"0","6":"1","7":"1","8":"1","9":"1","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"0","20":"1","21":"0","22":"1.4350845","23":"64","24":"0","25":"Female"},{"1":"5.60","2":"15","3":"31","4":"15","5":"0","6":"1","7":"0","8":"2","9":"1","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"0","20":"0","21":"1","22":"1.7227666","23":"961","24":"225","25":"Female"},{"1":"10.00","2":"12","3":"24","4":"24","5":"0","6":"0","7":"1","8":"0","9":"1","10":"1","11":"0","12":"0","13":"0","14":"1","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"2.3025851","23":"576","24":"576","25":"Male"},{"1":"12.50","2":"18","3":"16","4":"5","5":"0","6":"0","7":"1","8":"1","9":"1","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"1","20":"0","21":"0","22":"2.5257287","23":"256","24":"25","25":"Male"},{"1":"3.76","2":"6","3":"6","4":"0","5":"0","6":"0","7":"0","8":"4","9":"0","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.3244189","23":"36","24":"0","25":"Male"},{"1":"3.10","2":"6","3":"14","4":"0","5":"1","6":"1","7":"0","8":"5","9":"1","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"0","20":"1","21":"0","22":"1.1314021","23":"196","24":"0","25":"Female"},{"1":"4.29","2":"12","3":"47","4":"25","5":"0","6":"1","7":"1","8":"2","9":"1","10":"0","11":"1","12":"0","13":"0","14":"1","15":"0","16":"0","17":"0","18":"0","19":"0","20":"1","21":"0","22":"1.4562867","23":"2209","24":"625","25":"Female"},{"1":"10.92","2":"12","3":"34","4":"5","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"1","20":"0","21":"0","22":"2.3905959","23":"1156","24":"25","25":"Male"},{"1":"7.50","2":"16","3":"6","4":"2","5":"0","6":"1","7":"1","8":"1","9":"1","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"1","20":"0","21":"0","22":"2.0149031","23":"36","24":"4","25":"Female"},{"1":"4.05","2":"9","3":"7","4":"4","5":"0","6":"1","7":"1","8":"1","9":"1","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.3987169","23":"49","24":"16","25":"Female"},{"1":"4.65","2":"12","3":"27","4":"2","5":"0","6":"0","7":"1","8":"3","9":"1","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"1","22":"1.5368673","23":"729","24":"4","25":"Male"},{"1":"5.00","2":"11","3":"24","4":"5","5":"0","6":"0","7":"1","8":"0","9":"1","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.6094379","23":"576","24":"25","25":"Male"},{"1":"2.90","2":"10","3":"18","4":"0","5":"0","6":"1","7":"1","8":"2","9":"0","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"0","20":"1","21":"0","22":"1.0647107","23":"324","24":"0","25":"Female"},{"1":"8.00","2":"12","3":"12","4":"3","5":"1","6":"1","7":"0","8":"1","9":"0","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"2.0794415","23":"144","24":"9","25":"Female"},{"1":"8.43","2":"8","3":"27","4":"3","5":"0","6":"0","7":"1","8":"3","9":"1","10":"0","11":"1","12":"0","13":"0","14":"1","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"2.1317968","23":"729","24":"9","25":"Male"},{"1":"2.92","2":"9","3":"49","4":"0","5":"0","6":"1","7":"0","8":"0","9":"1","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"0","17":"1","18":"0","19":"0","20":"0","21":"0","22":"1.0715836","23":"2401","24":"0","25":"Female"},{"1":"6.25","2":"17","3":"4","4":"0","5":"0","6":"1","7":"0","8":"0","9":"1","10":"0","11":"0","12":"1","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"1","20":"0","21":"0","22":"1.8325815","23":"16","24":"0","25":"Female"},{"1":"6.25","2":"16","3":"24","4":"2","5":"0","6":"1","7":"1","8":"2","9":"1","10":"0","11":"0","12":"1","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"1","20":"0","21":"0","22":"1.8325815","23":"576","24":"4","25":"Female"},{"1":"5.11","2":"11","3":"3","4":"0","5":"0","6":"0","7":"0","8":"0","9":"1","10":"0","11":"0","12":"1","13":"1","14":"0","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.6311995","23":"9","24":"0","25":"Male"},{"1":"4.00","2":"10","3":"2","4":"0","5":"0","6":"1","7":"0","8":"1","9":"1","10":"0","11":"0","12":"1","13":"0","14":"0","15":"0","16":"0","17":"1","18":"0","19":"0","20":"0","21":"0","22":"1.3862944","23":"4","24":"0","25":"Female"},{"1":"4.44","2":"8","3":"29","4":"11","5":"0","6":"0","7":"1","8":"3","9":"0","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"1","20":"0","21":"0","22":"1.4906543","23":"841","24":"121","25":"Male"},{"1":"6.88","2":"13","3":"34","4":"21","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"0","17":"1","18":"0","19":"1","20":"0","21":"0","22":"1.9286187","23":"1156","24":"441","25":"Male"},{"1":"5.43","2":"14","3":"10","4":"3","5":"1","6":"0","7":"1","8":"1","9":"1","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"1","20":"0","21":"0","22":"1.6919391","23":"100","24":"9","25":"Male"},{"1":"3.00","2":"13","3":"5","4":"0","5":"0","6":"1","7":"0","8":"1","9":"1","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"0","20":"0","21":"1","22":"1.0986123","23":"25","24":"0","25":"Female"},{"1":"2.90","2":"11","3":"2","4":"0","5":"0","6":"1","7":"0","8":"2","9":"1","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"1","20":"0","21":"0","22":"1.0647107","23":"4","24":"0","25":"Female"},{"1":"6.25","2":"7","3":"39","4":"21","5":"1","6":"0","7":"1","8":"0","9":"1","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.8325815","23":"1521","24":"441","25":"Male"},{"1":"4.34","2":"16","3":"5","4":"2","5":"1","6":"1","7":"0","8":"0","9":"1","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"0","20":"1","21":"0","22":"1.4678744","23":"25","24":"4","25":"Female"},{"1":"3.25","2":"12","3":"14","4":"2","5":"0","6":"1","7":"1","8":"2","9":"0","10":"0","11":"1","12":"0","13":"0","14":"0","15":"1","16":"0","17":"0","18":"0","19":"0","20":"1","21":"0","22":"1.1786550","23":"196","24":"4","25":"Female"},{"1":"7.26","2":"13","3":"8","4":"2","5":"0","6":"0","7":"0","8":"0","9":"1","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"1","20":"0","21":"0","22":"1.9823799","23":"64","24":"4","25":"Male"},{"1":"6.35","2":"14","3":"10","4":"1","5":"0","6":"1","7":"1","8":"2","9":"1","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.8484548","23":"100","24":"1","25":"Female"},{"1":"5.63","2":"16","3":"2","4":"2","5":"0","6":"0","7":"1","8":"0","9":"1","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"0","20":"0","21":"1","22":"1.7281095","23":"4","24":"4","25":"Male"},{"1":"8.75","2":"14","3":"9","4":"3","5":"0","6":"0","7":"1","8":"1","9":"1","10":"0","11":"0","12":"0","13":"0","14":"1","15":"0","16":"0","17":"0","18":"0","19":"1","20":"0","21":"0","22":"2.1690538","23":"81","24":"9","25":"Male"},{"1":"3.20","2":"11","3":"1","4":"0","5":"0","6":"0","7":"0","8":"0","9":"0","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"0","20":"0","21":"1","22":"1.1631508","23":"1","24":"0","25":"Male"},{"1":"3.00","2":"8","3":"45","4":"1","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.0986123","23":"2025","24":"1","25":"Female"},{"1":"3.00","2":"14","3":"33","4":"3","5":"0","6":"1","7":"1","8":"0","9":"1","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"0","20":"0","21":"1","22":"1.0986123","23":"1089","24":"9","25":"Female"},{"1":"12.50","2":"17","3":"21","4":"18","5":"0","6":"0","7":"1","8":"3","9":"1","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"0","19":"1","20":"0","21":"0","22":"2.5257287","23":"441","24":"324","25":"Male"},{"1":"2.88","2":"10","3":"2","4":"0","5":"0","6":"1","7":"0","8":"3","9":"1","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"0","20":"1","21":"0","22":"1.0577903","23":"4","24":"0","25":"Female"},{"1":"3.35","2":"12","3":"9","4":"1","5":"0","6":"0","7":"1","8":"0","9":"1","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.2089603","23":"81","24":"1","25":"Male"},{"1":"6.50","2":"12","3":"33","4":"2","5":"0","6":"0","7":"1","8":"0","9":"0","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.8718022","23":"1089","24":"4","25":"Male"},{"1":"10.38","2":"18","3":"16","4":"2","5":"1","6":"0","7":"1","8":"1","9":"1","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"1","20":"0","21":"0","22":"2.3398809","23":"256","24":"4","25":"Male"},{"1":"4.50","2":"14","3":"10","4":"0","5":"0","6":"0","7":"1","8":"0","9":"1","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"0","20":"0","21":"0","22":"1.5040774","23":"100","24":"0","25":"Male"},{"1":"10.00","2":"18","3":"9","4":"8","5":"0","6":"0","7":"0","8":"0","9":"0","10":"1","11":"0","12":"0","13":"0","14":"0","15":"1","16":"0","17":"0","18":"0","19":"1","20":"0","21":"0","22":"2.3025851","23":"81","24":"64","25":"Male"},{"1":"3.81","2":"12","3":"8","4":"1","5":"0","6":"1","7":"1","8":"2","9":"0","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"1","18":"0","19":"0","20":"0","21":"1","22":"1.3376292","23":"64","24":"1","25":"Female"},{"1":"8.80","2":"16","3":"9","4":"1","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"1","20":"0","21":"0","22":"2.1747518","23":"81","24":"1","25":"Male"},{"1":"9.42","2":"14","3":"23","4":"0","5":"0","6":"1","7":"1","8":"2","9":"0","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"0","17":"1","18":"0","19":"0","20":"0","21":"0","22":"2.2428350","23":"529","24":"0","25":"Female"},{"1":"6.33","2":"12","3":"23","4":"8","5":"0","6":"0","7":"1","8":"2","9":"0","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"0","19":"1","20":"0","21":"0","22":"1.8453002","23":"529","24":"64","25":"Male"},{"1":"4.00","2":"9","3":"22","4":"18","5":"1","6":"0","7":"0","8":"0","9":"0","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.3862944","23":"484","24":"324","25":"Male"},{"1":"2.90","2":"12","3":"37","4":"0","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"1","20":"0","21":"0","22":"1.0647107","23":"1369","24":"0","25":"Female"},{"1":"20.00","2":"12","3":"22","4":"4","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"1","20":"0","21":"0","22":"2.9957323","23":"484","24":"16","25":"Male"},{"1":"11.25","2":"17","3":"28","4":"25","5":"0","6":"0","7":"1","8":"1","9":"1","10":"0","11":"1","12":"0","13":"0","14":"1","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"2.4203682","23":"784","24":"625","25":"Male"},{"1":"3.50","2":"12","3":"14","4":"0","5":"1","6":"1","7":"0","8":"2","9":"1","10":"0","11":"1","12":"0","13":"1","14":"0","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.2527629","23":"196","24":"0","25":"Female"},{"1":"6.00","2":"15","3":"19","4":"4","5":"0","6":"1","7":"1","8":"2","9":"1","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"0","20":"0","21":"1","22":"1.7917595","23":"361","24":"16","25":"Female"},{"1":"14.38","2":"17","3":"10","4":"9","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"1","12":"0","13":"0","14":"1","15":"0","16":"0","17":"0","18":"0","19":"1","20":"0","21":"0","22":"2.6658382","23":"100","24":"81","25":"Male"},{"1":"6.36","2":"16","3":"25","4":"0","5":"0","6":"0","7":"1","8":"1","9":"1","10":"0","11":"1","12":"0","13":"0","14":"1","15":"0","16":"0","17":"0","18":"0","19":"1","20":"0","21":"0","22":"1.8500284","23":"625","24":"0","25":"Male"},{"1":"3.55","2":"12","3":"21","4":"0","5":"0","6":"1","7":"1","8":"1","9":"0","10":"0","11":"1","12":"0","13":"0","14":"1","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.2669476","23":"441","24":"0","25":"Female"},{"1":"3.00","2":"15","3":"32","4":"0","5":"0","6":"0","7":"1","8":"0","9":"1","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"0","17":"1","18":"0","19":"0","20":"0","21":"1","22":"1.0986123","23":"1024","24":"0","25":"Male"},{"1":"4.50","2":"16","3":"21","4":"10","5":"0","6":"0","7":"1","8":"1","9":"1","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"1","20":"0","21":"0","22":"1.5040774","23":"441","24":"100","25":"Male"},{"1":"6.63","2":"12","3":"36","4":"0","5":"0","6":"1","7":"0","8":"0","9":"1","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"0","20":"1","21":"0","22":"1.8916048","23":"1296","24":"0","25":"Female"},{"1":"9.30","2":"15","3":"2","4":"2","5":"0","6":"0","7":"1","8":"0","9":"1","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"0","20":"0","21":"0","22":"2.2300143","23":"4","24":"4","25":"Male"},{"1":"3.00","2":"12","3":"11","4":"0","5":"0","6":"1","7":"1","8":"2","9":"1","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"1","20":"0","21":"0","22":"1.0986123","23":"121","24":"0","25":"Female"},{"1":"3.25","2":"12","3":"40","4":"2","5":"0","6":"1","7":"0","8":"0","9":"0","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"0","20":"0","21":"1","22":"1.1786550","23":"1600","24":"4","25":"Female"},{"1":"1.50","2":"12","3":"11","4":"1","5":"0","6":"1","7":"1","8":"2","9":"0","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"0","20":"0","21":"1","22":"0.4054651","23":"121","24":"1","25":"Female"},{"1":"5.90","2":"12","3":"9","4":"7","5":"0","6":"1","7":"1","8":"1","9":"1","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.7749524","23":"81","24":"49","25":"Female"},{"1":"8.00","2":"16","3":"23","4":"4","5":"0","6":"0","7":"0","8":"0","9":"1","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"1","20":"0","21":"0","22":"2.0794415","23":"529","24":"16","25":"Male"},{"1":"2.90","2":"11","3":"1","4":"0","5":"0","6":"1","7":"0","8":"1","9":"1","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"1","20":"0","21":"0","22":"1.0647107","23":"1","24":"0","25":"Female"},{"1":"3.29","2":"14","3":"30","4":"13","5":"0","6":"0","7":"0","8":"0","9":"1","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"1","20":"0","21":"0","22":"1.1908876","23":"900","24":"169","25":"Male"},{"1":"6.50","2":"14","3":"41","4":"33","5":"0","6":"0","7":"1","8":"0","9":"1","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"1","20":"0","21":"0","22":"1.8718022","23":"1681","24":"1089","25":"Male"},{"1":"4.00","2":"13","3":"6","4":"0","5":"0","6":"1","7":"0","8":"1","9":"1","10":"1","11":"0","12":"0","13":"1","14":"0","15":"0","16":"0","17":"0","18":"0","19":"0","20":"1","21":"0","22":"1.3862944","23":"36","24":"0","25":"Female"},{"1":"6.00","2":"14","3":"11","4":"0","5":"0","6":"0","7":"1","8":"0","9":"0","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.7917595","23":"121","24":"0","25":"Male"},{"1":"4.08","2":"12","3":"43","4":"17","5":"0","6":"1","7":"1","8":"0","9":"1","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"0","20":"1","21":"0","22":"1.4060969","23":"1849","24":"289","25":"Female"},{"1":"3.75","2":"12","3":"39","4":"2","5":"0","6":"1","7":"1","8":"0","9":"1","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"1","18":"0","19":"1","20":"0","21":"0","22":"1.3217559","23":"1521","24":"4","25":"Female"},{"1":"3.05","2":"8","3":"50","4":"24","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1","12":"0","13":"0","14":"1","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.1151416","23":"2500","24":"576","25":"Female"},{"1":"3.50","2":"12","3":"26","4":"20","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1","12":"0","13":"0","14":"1","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.2527629","23":"676","24":"400","25":"Female"},{"1":"2.92","2":"3","3":"51","4":"30","5":"1","6":"0","7":"0","8":"0","9":"1","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"0","17":"1","18":"0","19":"0","20":"0","21":"1","22":"1.0715836","23":"2601","24":"900","25":"Male"},{"1":"4.50","2":"11","3":"3","4":"9","5":"0","6":"0","7":"0","8":"0","9":"1","10":"0","11":"1","12":"0","13":"1","14":"0","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.5040774","23":"9","24":"81","25":"Male"},{"1":"3.35","2":"15","3":"3","4":"1","5":"0","6":"1","7":"1","8":"2","9":"1","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"0","17":"1","18":"0","19":"0","20":"1","21":"0","22":"1.2089603","23":"9","24":"1","25":"Female"},{"1":"5.95","2":"11","3":"15","4":"9","5":"1","6":"0","7":"1","8":"1","9":"0","10":"0","11":"1","12":"0","13":"1","14":"0","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.7833912","23":"225","24":"81","25":"Male"},{"1":"8.00","2":"12","3":"17","4":"6","5":"0","6":"0","7":"1","8":"2","9":"0","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"1","20":"0","21":"0","22":"2.0794415","23":"289","24":"36","25":"Male"},{"1":"3.00","2":"4","3":"36","4":"0","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"1","12":"0","13":"1","14":"0","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.0986123","23":"1296","24":"0","25":"Male"},{"1":"5.00","2":"9","3":"31","4":"9","5":"1","6":"0","7":"1","8":"6","9":"0","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.6094379","23":"961","24":"81","25":"Male"},{"1":"5.50","2":"12","3":"9","4":"4","5":"0","6":"0","7":"1","8":"1","9":"0","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.7047480","23":"81","24":"16","25":"Male"},{"1":"2.65","2":"12","3":"42","4":"10","5":"0","6":"1","7":"1","8":"0","9":"1","10":"0","11":"0","12":"1","13":"0","14":"0","15":"0","16":"0","17":"1","18":"0","19":"0","20":"1","21":"0","22":"0.9745597","23":"1764","24":"100","25":"Female"},{"1":"3.00","2":"11","3":"3","4":"0","5":"0","6":"1","7":"0","8":"2","9":"1","10":"0","11":"0","12":"1","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.0986123","23":"9","24":"0","25":"Female"},{"1":"4.50","2":"12","3":"37","4":"14","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"0","12":"1","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"0","20":"1","21":"0","22":"1.5040774","23":"1369","24":"196","25":"Female"},{"1":"17.50","2":"16","3":"23","4":"22","5":"0","6":"0","7":"1","8":"3","9":"1","10":"0","11":"0","12":"1","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"1","20":"0","21":"0","22":"2.8622010","23":"529","24":"484","25":"Male"},{"1":"8.18","2":"13","3":"21","4":"5","5":"0","6":"0","7":"0","8":"0","9":"1","10":"0","11":"0","12":"1","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"1","20":"0","21":"0","22":"2.1016922","23":"441","24":"25","25":"Male"},{"1":"9.09","2":"15","3":"11","4":"12","5":"0","6":"0","7":"1","8":"1","9":"1","10":"0","11":"0","12":"1","13":"0","14":"0","15":"1","16":"0","17":"0","18":"0","19":"1","20":"0","21":"0","22":"2.2071750","23":"121","24":"144","25":"Male"},{"1":"11.82","2":"16","3":"35","4":"13","5":"0","6":"0","7":"1","8":"0","9":"1","10":"0","11":"0","12":"1","13":"0","14":"0","15":"1","16":"0","17":"0","18":"0","19":"1","20":"0","21":"0","22":"2.4697931","23":"1225","24":"169","25":"Male"},{"1":"3.25","2":"12","3":"42","4":"0","5":"0","6":"1","7":"1","8":"0","9":"1","10":"0","11":"0","12":"1","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"1","20":"0","21":"0","22":"1.1786550","23":"1764","24":"0","25":"Female"},{"1":"4.50","2":"12","3":"3","4":"0","5":"0","6":"0","7":"0","8":"0","9":"1","10":"0","11":"0","12":"1","13":"0","14":"0","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.5040774","23":"9","24":"0","25":"Male"},{"1":"4.50","2":"12","3":"13","4":"0","5":"0","6":"0","7":"1","8":"0","9":"1","10":"0","11":"0","12":"1","13":"0","14":"0","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.5040774","23":"169","24":"0","25":"Male"},{"1":"3.71","2":"9","3":"14","4":"7","5":"0","6":"0","7":"1","8":"2","9":"0","10":"0","11":"1","12":"0","13":"0","14":"1","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.3110319","23":"196","24":"49","25":"Male"},{"1":"6.50","2":"10","3":"14","4":"11","5":"0","6":"0","7":"1","8":"3","9":"0","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.8718022","23":"196","24":"121","25":"Male"},{"1":"2.90","2":"12","3":"39","4":"1","5":"0","6":"1","7":"1","8":"0","9":"0","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"0","20":"0","21":"1","22":"1.0647107","23":"1521","24":"1","25":"Female"},{"1":"5.60","2":"11","3":"11","4":"8","5":"0","6":"0","7":"1","8":"2","9":"0","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"0","19":"0","20":"1","21":"0","22":"1.7227666","23":"121","24":"64","25":"Male"},{"1":"2.23","2":"8","3":"28","4":"3","5":"0","6":"0","7":"1","8":"4","9":"0","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"1","20":"0","21":"0","22":"0.8020016","23":"784","24":"9","25":"Male"},{"1":"5.00","2":"6","3":"18","4":"0","5":"0","6":"1","7":"1","8":"3","9":"1","10":"0","11":"0","12":"1","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"0","20":"0","21":"1","22":"1.6094379","23":"324","24":"0","25":"Female"},{"1":"8.33","2":"16","3":"6","4":"2","5":"0","6":"0","7":"1","8":"0","9":"1","10":"0","11":"0","12":"1","13":"0","14":"0","15":"1","16":"0","17":"0","18":"0","19":"0","20":"1","21":"0","22":"2.1198635","23":"36","24":"4","25":"Male"},{"1":"2.90","2":"12","3":"26","4":"1","5":"0","6":"1","7":"0","8":"4","9":"1","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"0","20":"1","21":"0","22":"1.0647107","23":"676","24":"1","25":"Female"},{"1":"6.25","2":"12","3":"21","4":"6","5":"0","6":"0","7":"1","8":"3","9":"1","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"1","20":"0","21":"0","22":"1.8325815","23":"441","24":"36","25":"Male"},{"1":"4.55","2":"16","3":"34","4":"2","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"1","20":"0","21":"0","22":"1.5151273","23":"1156","24":"4","25":"Male"},{"1":"3.28","2":"12","3":"17","4":"2","5":"0","6":"1","7":"0","8":"0","9":"0","10":"0","11":"1","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"0","20":"0","21":"1","22":"1.1878434","23":"289","24":"4","25":"Female"},{"1":"2.30","2":"10","3":"2","4":"0","5":"0","6":"1","7":"0","8":"4","9":"1","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"0","20":"0","21":"1","22":"0.8329091","23":"4","24":"0","25":"Female"},{"1":"3.30","2":"13","3":"5","4":"0","5":"0","6":"1","7":"0","8":"0","9":"1","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"1","20":"0","21":"0","22":"1.1939224","23":"25","24":"0","25":"Female"},{"1":"3.15","2":"13","3":"1","4":"0","5":"0","6":"1","7":"0","8":"4","9":"1","10":"1","11":"0","12":"0","13":"0","14":"0","15":"1","16":"0","17":"0","18":"0","19":"0","20":"1","21":"0","22":"1.1474025","23":"1","24":"0","25":"Female"},{"1":"12.50","2":"14","3":"40","4":"30","5":"0","6":"0","7":"1","8":"0","9":"1","10":"1","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"0","19":"1","20":"0","21":"0","22":"2.5257287","23":"1600","24":"900","25":"Male"},{"1":"5.15","2":"16","3":"39","4":"21","5":"0","6":"1","7":"0","8":"0","9":"1","10":"0","11":"0","12":"1","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"0","20":"1","21":"0","22":"1.6389967","23":"1521","24":"441","25":"Female"},{"1":"3.13","2":"10","3":"1","4":"1","5":"0","6":"0","7":"0","8":"2","9":"1","10":"0","11":"0","12":"1","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"0","20":"0","21":"1","22":"1.1410331","23":"1","24":"1","25":"Male"},{"1":"7.25","2":"12","3":"14","4":"5","5":"0","6":"0","7":"1","8":"3","9":"1","10":"0","11":"0","12":"1","13":"0","14":"0","15":"1","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.9810015","23":"196","24":"25","25":"Male"},{"1":"2.90","2":"12","3":"2","4":"2","5":"0","6":"1","7":"0","8":"0","9":"1","10":"0","11":"0","12":"1","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"0","20":"1","21":"0","22":"1.0647107","23":"4","24":"4","25":"Female"},{"1":"1.75","2":"11","3":"2","4":"1","5":"0","6":"0","7":"0","8":"2","9":"1","10":"0","11":"0","12":"1","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"0","20":"0","21":"1","22":"0.5596158","23":"4","24":"1","25":"Male"},{"1":"2.89","2":"0","3":"42","4":"0","5":"0","6":"1","7":"1","8":"2","9":"0","10":"0","11":"0","12":"1","13":"0","14":"0","15":"0","16":"0","17":"1","18":"0","19":"0","20":"0","21":"0","22":"1.0612565","23":"1764","24":"0","25":"Female"},{"1":"2.90","2":"5","3":"34","4":"0","5":"0","6":"1","7":"1","8":"5","9":"0","10":"0","11":"0","12":"1","13":"0","14":"1","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.0647107","23":"1156","24":"0","25":"Female"},{"1":"17.71","2":"16","3":"10","4":"3","5":"0","6":"0","7":"1","8":"1","9":"1","10":"0","11":"0","12":"1","13":"1","14":"0","15":"0","16":"0","17":"0","18":"0","19":"1","20":"0","21":"0","22":"2.8741293","23":"100","24":"9","25":"Male"},{"1":"6.25","2":"16","3":"4","4":"3","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0","12":"1","13":"0","14":"0","15":"1","16":"0","17":"0","18":"0","19":"0","20":"0","21":"1","22":"1.8325815","23":"16","24":"9","25":"Male"},{"1":"2.60","2":"9","3":"4","4":"0","5":"0","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0","12":"1","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"0","20":"0","21":"0","22":"0.9555114","23":"16","24":"0","25":"Male"},{"1":"6.63","2":"15","3":"21","4":"3","5":"0","6":"1","7":"1","8":"2","9":"0","10":"0","11":"0","12":"1","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"1","20":"0","21":"0","22":"1.8916048","23":"441","24":"9","25":"Female"},{"1":"3.50","2":"12","3":"31","4":"3","5":"1","6":"1","7":"0","8":"1","9":"1","10":"0","11":"0","12":"1","13":"0","14":"0","15":"0","16":"0","17":"1","18":"0","19":"0","20":"0","21":"0","22":"1.2527629","23":"961","24":"9","25":"Female"},{"1":"6.50","2":"12","3":"20","4":"14","5":"0","6":"0","7":"1","8":"3","9":"1","10":"0","11":"0","12":"1","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.8718022","23":"400","24":"196","25":"Male"},{"1":"3.00","2":"12","3":"36","4":"1","5":"1","6":"1","7":"0","8":"0","9":"1","10":"0","11":"0","12":"1","13":"0","14":"0","15":"0","16":"0","17":"1","18":"0","19":"0","20":"0","21":"0","22":"1.0986123","23":"1296","24":"1","25":"Female"},{"1":"4.38","2":"13","3":"7","4":"0","5":"1","6":"0","7":"1","8":"1","9":"1","10":"0","11":"0","12":"1","13":"0","14":"1","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.4770488","23":"49","24":"0","25":"Male"},{"1":"10.00","2":"12","3":"15","4":"0","5":"0","6":"0","7":"0","8":"1","9":"0","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"1","18":"0","19":"1","20":"0","21":"0","22":"2.3025851","23":"225","24":"0","25":"Male"},{"1":"4.95","2":"7","3":"25","4":"17","5":"0","6":"0","7":"1","8":"5","9":"0","10":"0","11":"0","12":"0","13":"1","14":"0","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.5993875","23":"625","24":"289","25":"Male"},{"1":"9.00","2":"17","3":"7","4":"0","5":"0","6":"1","7":"1","8":"2","9":"0","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"1","20":"0","21":"0","22":"2.1972246","23":"49","24":"0","25":"Female"},{"1":"1.43","2":"12","3":"17","4":"0","5":"0","6":"1","7":"1","8":"2","9":"0","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"0","20":"0","21":"0","22":"0.3576744","23":"289","24":"0","25":"Female"},{"1":"3.08","2":"12","3":"3","4":"1","5":"0","6":"0","7":"0","8":"0","9":"0","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"1","20":"0","21":"0","22":"1.1249295","23":"9","24":"1","25":"Male"},{"1":"9.33","2":"14","3":"12","4":"11","5":"0","6":"0","7":"1","8":"3","9":"0","10":"0","11":"0","12":"0","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"1","20":"0","21":"0","22":"2.2332351","23":"144","24":"121","25":"Male"},{"1":"7.50","2":"12","3":"18","4":"5","5":"0","6":"0","7":"1","8":"2","9":"0","10":"0","11":"0","12":"1","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"0","20":"0","21":"0","22":"2.0149031","23":"324","24":"25","25":"Male"},{"1":"4.75","2":"13","3":"47","4":"1","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0","12":"1","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.5581446","23":"2209","24":"1","25":"Male"},{"1":"5.65","2":"12","3":"2","4":"0","5":"0","6":"0","7":"0","8":"0","9":"0","10":"0","11":"0","12":"1","13":"1","14":"0","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"1.7316556","23":"4","24":"0","25":"Male"},{"1":"15.00","2":"16","3":"14","4":"2","5":"0","6":"1","7":"1","8":"2","9":"0","10":"0","11":"0","12":"1","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"1","20":"0","21":"0","22":"2.7080503","23":"196","24":"4","25":"Female"},{"1":"2.27","2":"10","3":"2","4":"0","5":"0","6":"1","7":"0","8":"3","9":"0","10":"0","11":"0","12":"1","13":"0","14":"0","15":"0","16":"1","17":"0","18":"0","19":"1","20":"0","21":"0","22":"0.8197798","23":"4","24":"0","25":"Female"},{"1":"4.67","2":"15","3":"13","4":"18","5":"0","6":"0","7":"1","8":"3","9":"0","10":"0","11":"0","12":"1","13":"1","14":"0","15":"0","16":"0","17":"0","18":"0","19":"1","20":"0","21":"0","22":"1.5411590","23":"169","24":"324","25":"Male"},{"1":"11.56","2":"16","3":"5","4":"1","5":"0","6":"0","7":"1","8":"0","9":"0","10":"0","11":"0","12":"1","13":"0","14":"1","15":"0","16":"0","17":"0","18":"0","19":"0","20":"0","21":"0","22":"2.4475510","23":"25","24":"1","25":"Male"},{"1":"3.50","2":"14","3":"5","4":"4","5":"1","6":"1","7":"0","8":"2","9":"0","10":"0","11":"0","12":"1","13":"0","14":"0","15":"0","16":"0","17":"0","18":"1","19":"0","20":"1","21":"0","22":"1.2527629","23":"25","24":"16","25":"Female"}],"options":{"columns":{"min":{},"max":[10]},"rows":{"min":[10],"max":[10]},"pages":{}}} </script> </div> ] --- # Get Group Averages & Std. Devs. .pull-left[ .smallest[ ```r # Summarize for Men wages %>% filter(female==0) %>% summarize(mean = mean(wage), sd = sd(wage)) ``` <div data-pagedtable="false"> <script data-pagedtable-source type="application/json"> {"columns":[{"label":["mean"],"name":[1],"type":["dbl"],"align":["right"]},{"label":["sd"],"name":[2],"type":["dbl"],"align":["right"]}],"data":[{"1":"7.099489","2":"4.160858"}],"options":{"columns":{"min":{},"max":[10]},"rows":{"min":[10],"max":[10]},"pages":{}}} </script> </div> ] ] .pull-right[ .smallest[ ```r # Summarize for Women wages %>% filter(female==1) %>% summarize(mean = mean(wage), sd = sd(wage)) ``` <div data-pagedtable="false"> <script data-pagedtable-source type="application/json"> {"columns":[{"label":["mean"],"name":[1],"type":["dbl"],"align":["right"]},{"label":["sd"],"name":[2],"type":["dbl"],"align":["right"]}],"data":[{"1":"4.587659","2":"2.529363"}],"options":{"columns":{"min":{},"max":[10]},"rows":{"min":[10],"max":[10]},"pages":{}}} </script> </div> ] ] --- # Visualize Differences <img src="3.6-slides_files/figure-html/unnamed-chunk-16-1.png" width="1008" style="display: block; margin: auto;" /> --- # The Regression I .pull-left[ .smallest[ ```r femalereg<-lm(wage~female, data=wages) summary(femalereg) ``` ``` ## ## Call: ## lm(formula = wage ~ female, data = wages) ## ## Residuals: ## Min 1Q Median 3Q Max ## -5.5995 -1.8495 -0.9877 1.4260 17.8805 ## ## Coefficients: ## Estimate Std. Error t value Pr(>|t|) ## (Intercept) 7.0995 0.2100 33.806 < 2e-16 *** ## female -2.5118 0.3034 -8.279 1.04e-15 *** ## --- ## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1 ## ## Residual standard error: 3.476 on 524 degrees of freedom ## Multiple R-squared: 0.1157, Adjusted R-squared: 0.114 ## F-statistic: 68.54 on 1 and 524 DF, p-value: 1.042e-15 ``` ] ] -- .pull-right[ .smallest[ ```r library(broom) tidy(femalereg) ``` <div data-pagedtable="false"> <script data-pagedtable-source type="application/json"> {"columns":[{"label":["term"],"name":[1],"type":["chr"],"align":["left"]},{"label":["estimate"],"name":[2],"type":["dbl"],"align":["right"]},{"label":["std.error"],"name":[3],"type":["dbl"],"align":["right"]},{"label":["statistic"],"name":[4],"type":["dbl"],"align":["right"]},{"label":["p.value"],"name":[5],"type":["dbl"],"align":["right"]}],"data":[{"1":"(Intercept)","2":"7.099489","3":"0.2100082","4":"33.805777","5":"8.971839e-134"},{"1":"female","2":"-2.511830","3":"0.3034092","4":"-8.278688","5":"1.041764e-15"}],"options":{"columns":{"min":{},"max":[10]},"rows":{"min":[10],"max":[10]},"pages":{}}} </script> </div> ] ] --- # Dummy Regression vs. Group Means .pull-left[ .smallest[ From tabulation of group means | Gender | Avg. Wage | Std. Dev. | `\(n\)` | |--------|-------------|-----------|-------| | Female | `\(4.59\)` | `\(2.33\)` | `\(252\)` | | Male | `\(7.10\)` | `\(4.16\)` | `\(274\)` | | Difference | `\(2.51\)` | `\(0.30\)` | `\(-\)` | From `\(t\)`-test of difference in group means ] ] .pull-right[ .smallest[ <div data-pagedtable="false"> <script data-pagedtable-source type="application/json"> {"columns":[{"label":["term"],"name":[1],"type":["chr"],"align":["left"]},{"label":["estimate"],"name":[2],"type":["dbl"],"align":["right"]},{"label":["std.error"],"name":[3],"type":["dbl"],"align":["right"]},{"label":["statistic"],"name":[4],"type":["dbl"],"align":["right"]},{"label":["p.value"],"name":[5],"type":["dbl"],"align":["right"]}],"data":[{"1":"(Intercept)","2":"7.099489","3":"0.2100082","4":"33.805777","5":"8.971839e-134"},{"1":"female","2":"-2.511830","3":"0.3034092","4":"-8.278688","5":"1.041764e-15"}],"options":{"columns":{"min":{},"max":[10]},"rows":{"min":[10],"max":[10]},"pages":{}}} </script> </div> ] `$$\widehat{\text{Wages}_i}=7.10-2.51 \, \text{Female}_i$$` ] --- class: inverse, center, middle # Recoding Dummies --- # Recoding Dummies .content-box-green[ .green[**Example**]: - Suppose instead of `\(female\)` we had used: `$$\widehat{Wage_i}=\hat{\beta_0}+\hat{\beta_1}Male_i \quad \quad \text{ where } Male_i = \begin{cases} 1 & \text{if person } i \text{ is } Male \\ 0 & \text{if person } i \text{ is } Female\\ \end{cases}$$` ] --- # Recoding Dummies with Data .quitesmall[ ```r wages<-wages %>% mutate(male = ifelse(female == 0, # condition: is female equal to 0? 1, # if true: code as "1" 0)) # if false: code as "0" # verify it worked wages %>% select(wage, female, male) %>% head() ``` <div data-pagedtable="false"> <script data-pagedtable-source type="application/json"> {"columns":[{"label":[""],"name":["_rn_"],"type":[""],"align":["left"]},{"label":["wage"],"name":[1],"type":["dbl"],"align":["right"]},{"label":["female"],"name":[2],"type":["int"],"align":["right"]},{"label":["male"],"name":[3],"type":["dbl"],"align":["right"]}],"data":[{"1":"3.10","2":"1","3":"0","_rn_":"1"},{"1":"3.24","2":"1","3":"0","_rn_":"2"},{"1":"3.00","2":"0","3":"1","_rn_":"3"},{"1":"6.00","2":"0","3":"1","_rn_":"4"},{"1":"5.30","2":"0","3":"1","_rn_":"5"},{"1":"8.75","2":"0","3":"1","_rn_":"6"}],"options":{"columns":{"min":{},"max":[10]},"rows":{"min":[10],"max":[10]},"pages":{}}} </script> </div> ] --- # Scatterplot with Male .pull-left[ <img src="3.6-slides_files/figure-html/unnamed-chunk-21-1.png" width="504" style="display: block; margin: auto;" /> ] -- .pull-right[ <img src="3.6-slides_files/figure-html/unnamed-chunk-22-1.png" width="504" style="display: block; margin: auto;" /> ] --- # Dummy Variables as Group Means: With Male .pull-left[ .content-box-green[ .green[**Example**]: `$$\widehat{Wage_i}=\hat{\beta_0}+\hat{\beta_1}Male_i$$` `$$\text{where } Male_i = \begin{cases} 1 & \text{if } i \text{ is } Male \\ 0 & \text{if } i \text{ is } Female\\ \end{cases}$$` ] ] .pull-right[ - Mean wage for men: `$$E[Wage|Male=1]=\hat{\beta_0}+\hat{\beta_1}$$` - Mean wage for women: `$$E[Wage|Male=0]=\hat{\beta_0}$$` - Difference in wage between men & women: `$$d = \hat{\beta_1}$$` ] --- # Scatterplot with Male .pull-left[ <img src="3.6-slides_files/figure-html/unnamed-chunk-23-1.png" width="504" style="display: block; margin: auto;" /> ] -- .pull-right[ <img src="3.6-slides_files/figure-html/unnamed-chunk-24-1.png" width="504" style="display: block; margin: auto;" /> ] --- # The Regression with Male I .pull-left[ .smallest[ ```r malereg<-lm(wage~male, data=wages) summary(malereg) ``` ``` ## ## Call: ## lm(formula = wage ~ male, data = wages) ## ## Residuals: ## Min 1Q Median 3Q Max ## -5.5995 -1.8495 -0.9877 1.4260 17.8805 ## ## Coefficients: ## Estimate Std. Error t value Pr(>|t|) ## (Intercept) 4.5877 0.2190 20.950 < 2e-16 *** ## male 2.5118 0.3034 8.279 1.04e-15 *** ## --- ## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1 ## ## Residual standard error: 3.476 on 524 degrees of freedom ## Multiple R-squared: 0.1157, Adjusted R-squared: 0.114 ## F-statistic: 68.54 on 1 and 524 DF, p-value: 1.042e-15 ``` ] ] -- .pull-right[ .smallest[ ```r library(broom) tidy(malereg) ``` <div data-pagedtable="false"> <script data-pagedtable-source type="application/json"> {"columns":[{"label":["term"],"name":[1],"type":["chr"],"align":["left"]},{"label":["estimate"],"name":[2],"type":["dbl"],"align":["right"]},{"label":["std.error"],"name":[3],"type":["dbl"],"align":["right"]},{"label":["statistic"],"name":[4],"type":["dbl"],"align":["right"]},{"label":["p.value"],"name":[5],"type":["dbl"],"align":["right"]}],"data":[{"1":"(Intercept)","2":"4.587659","3":"0.2189834","4":"20.949802","5":"3.012371e-71"},{"1":"male","2":"2.511830","3":"0.3034092","4":"8.278688","5":"1.041764e-15"}],"options":{"columns":{"min":{},"max":[10]},"rows":{"min":[10],"max":[10]},"pages":{}}} </script> </div> ] ] --- # The Dummy Regression: Male or Female .pull-left[ .quitesmall[
(1)
(2)
Constant
4.59 ***
7.10 ***
(0.22)
(0.21)
Female
-2.51 ***
(0.30)
Male
2.51 ***
(0.30)
N
526
526
R-Squared
0.12
0.12
SER
3.48
3.48
*** p < 0.001; ** p < 0.01; * p < 0.05.
] ] .pull-right[ - Note it doesn't matter if we use `male` or `female`, males always earn $2.51 more than females - Compare the constant (average for the `\(D=0\)` group) - Should you use `male` AND `female`? We'll come to that... ] --- class: inverse, center, middle # Categorical Variables (More than 2 Categories) --- # Categorical Variables with More than 2 Categories - A .hi[categorical variable] expresses membership in a category, where there is no ranking or hierarchy of the categories - We've looked at categorical variables with 2 categories only - e.g. Male/Female, Spring/Summer/Fall/Winter, Democratic/Republican/Independent -- - Might be an .hi[ordinal variable] expresses rank or an ordering of data, but not necessarily their relative magnitude - e.g. Order of finalists in a competition (1st, 2nd, 3rd) - e.g. Highest education attained (1=elementary school, 2=high school, 3=bachelor's degree, 4=graduate degree) --- # Using Categorical Variables in Regression I .content-box-green[ .green[**Example**]: How do wages vary by region of the country? Let `\(Region_i=\{Northeast, \, Midwest, \, South, \, West\}\)` ] -- - Can we run the following regression? `$$\widehat{Wages_i}=\hat{\beta_0}+\hat{\beta_1}Region_i$$` --- # Using Categorical Variables in Regression II .content-box-green[ .green[**Example**]: How do wages vary by region of the country? ] Code region numerically: `$$Region_i= \begin{cases}1 & \text{if } i \text{ is in }Northeast\\ 2 & \text{if } i \text{ is in } Midwest\\ 3 & \text{if } i \text{ is in } South \\ 4 & \text{if } i \text{ is in } West\\ \end{cases}$$` -- - Can we run the following regression? `$$\widehat{Wages_i}=\hat{\beta_0}+\hat{\beta_1}Region_i$$` --- # Using Categorical Variables in Regression III .smallest[ .content-box-green[ .green[**Example**]: How do wages vary by region of the country? Create a dummy variable for *each* region: - `\(Northeast_i = 1\)` if `\(i\)` is in Northeast, otherwise `\(=0\)` - `\(Midwest_i = 1\)` if `\(i\)` is in Midwest, otherwise `\(=0\)` - `\(South_i = 1\)` if `\(i\)` is in South, otherwise `\(=0\)` - `\(West_i = 1\)` if `\(i\)` is in West, otherwise `\(=0\)` ] ] -- .smallest[ - Can we run the following regression? `$$\widehat{Wages_i}=\hat{\beta_0}+\hat{\beta_1}Northeast_i+\hat{\beta_2}Midwest_i+\hat{\beta_3}South_i+\hat{\beta_4}West_i$$` ] -- .smallest[ - For every `\(i: \, Northeast_i+Midwest_i+South_i+West_i=1\)`! ] --- # The Dummy Variable Trap .content-box-green[ .green[**Example**]: `\(\widehat{Wages_i}=\hat{\beta_0}+\hat{\beta_1}Northeast_i+\hat{\beta_2}Midwest_i+\hat{\beta_3}South_i+\hat{\beta_4}West_i\)` ] - If we include *all* possible categories, they are .hi-purple[perfectly multicollinear], an exact linear function of one another: `$$Northeast_i+Midwest_i+South_i+West_i=1 \quad \forall i$$` - This is known as the .hi[dummy variable trap], a common source of perfect multicollinearity --- # The Reference Category - To avoid the dummy variable trap, always omit one category from the regression, known as the .hi[“reference category”] - It does not matter which category we omit! - .hi-purple[Coefficients on each dummy variable measure the *difference* between the *reference* category and each category dummy] --- # The Reference Category: Example .content-box-green[ .green[**Example**]: `\(\widehat{Wages_i}=\hat{\beta_0}+\hat{\beta_1}Northeast_i+\hat{\beta_2}Midwest_i+\hat{\beta_3}South_i\)` ] - `\(West_i\)` is omitted (arbitrarily chosen) -- - `\(\hat{\beta_0}\)`: --- # The Reference Category: Example .content-box-green[ .green[**Example**]: `\(\widehat{Wages_i}=\hat{\beta_0}+\hat{\beta_1}Northeast_i+\hat{\beta_2}Midwest_i+\hat{\beta_3}South_i\)` ] - `\(West_i\)` is omitted (arbitrarily chosen) - `\(\hat{\beta_0}\)`: average wage for `\(i\)` in the West -- - `\(\hat{\beta_1}\)`: --- # The Reference Category: Example .content-box-green[ .green[**Example**]: `\(\widehat{Wages_i}=\hat{\beta_0}+\hat{\beta_1}Northeast_i+\hat{\beta_2}Midwest_i+\hat{\beta_3}South_i\)` ] - `\(West_i\)` is omitted (arbitrarily chosen) - `\(\hat{\beta_0}\)`: average wage for `\(i\)` in the West - `\(\hat{\beta_1}\)`: difference between West and Northeast -- - `\(\hat{\beta_2}\)`: --- # The Reference Category: Example .content-box-green[ .green[**Example**]: `\(\widehat{Wages_i}=\hat{\beta_0}+\hat{\beta_1}Northeast_i+\hat{\beta_2}Midwest_i+\hat{\beta_3}South_i\)` ] - `\(West_i\)` is omitted (arbitrarily chosen) - `\(\hat{\beta_0}\)`: average wage for `\(i\)` in the West - `\(\hat{\beta_1}\)`: difference between West and Northeast - `\(\hat{\beta_2}\)`: difference between West and Midwest -- - `\(\hat{\beta_3}\)`: --- # The Reference Category: Example .content-box-green[ .green[**Example**]: `\(\widehat{Wages_i}=\hat{\beta_0}+\hat{\beta_1}Northeast_i+\hat{\beta_2}Midwest_i+\hat{\beta_3}South_i\)` ] - `\(West_i\)` is omitted (arbitrarily chosen) - `\(\hat{\beta_0}\)`: average wage for `\(i\)` in the West - `\(\hat{\beta_1}\)`: difference between West and Northeast - `\(\hat{\beta_2}\)`: difference between West and Midwest - `\(\hat{\beta_3}\)`: difference between West and South --- # Dummy Variable Trap in R .smallest[ .code50[ ```r lm(wage ~ noreast + northcen + south + west, data = wages) %>% summary() ``` ``` ## ## Call: ## lm(formula = wage ~ noreast + northcen + south + west, data = wages) ## ## Residuals: ## Min 1Q Median 3Q Max ## -6.083 -2.387 -1.097 1.157 18.610 ## ## Coefficients: (1 not defined because of singularities) ## Estimate Std. Error t value Pr(>|t|) ## (Intercept) 6.6134 0.3891 16.995 < 2e-16 *** ## noreast -0.2436 0.5154 -0.473 0.63664 ## northcen -0.9029 0.5035 -1.793 0.07352 . ## south -1.2265 0.4728 -2.594 0.00974 ** ## west NA NA NA NA ## --- ## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1 ## ## Residual standard error: 3.671 on 522 degrees of freedom ## Multiple R-squared: 0.0175, Adjusted R-squared: 0.01185 ## F-statistic: 3.099 on 3 and 522 DF, p-value: 0.02646 ``` ] ] --- # Using Different Reference Categories in R .code50[ ```r # let's run 4 regressions, each one we omit a different region no_noreast_reg <- lm(wage ~ northcen + south + west, data = wages) no_northcen_reg <- lm(wage ~ noreast + south + west, data = wages) no_south_reg <- lm(wage ~ noreast + northcen + west, data = wages) no_west_reg <- lm(wage ~ noreast + northcen + south, data = wages) # now make an output table library(huxtable) huxreg(no_noreast_reg, no_northcen_reg, no_south_reg, no_west_reg, coefs = c("Constant" = "(Intercept)", "Northeast" = "noreast", "Midwest" = "northcen", "South" = "south", "West" = "west"), statistics = c("N" = "nobs", "R-Squared" = "r.squared", "SER" = "sigma"), number_format = 3) ``` ] --- # Using Different Reference Categories in R II .pull-left[ .tiny[
(1)
(2)
(3)
(4)
Constant
6.370 ***
5.710 ***
5.387 ***
6.613 ***
(0.338)
(0.320)
(0.268)
(0.389)
Northeast
0.659
0.983 *
-0.244
(0.465)
(0.432)
(0.515)
Midwest
-0.659
0.324
-0.903
(0.465)
(0.417)
(0.504)
South
-0.983 *
-0.324
-1.226 **
(0.432)
(0.417)
(0.473)
West
0.244
0.903
1.226 **
(0.515)
(0.504)
(0.473)
N
526
526
526
526
R-Squared
0.017
0.017
0.017
0.017
SER
3.671
3.671
3.671
3.671
*** p < 0.001; ** p < 0.01; * p < 0.05.
] ] .pull-right[ .smallest[ - Constant is alsways average wage for reference (omitted) region - Compare coefficients between Midwest in (1) and Northeast in (2)... - Compare coefficients between West in (3) and South in (4)... - Does not matter which region we omit! - Same `\(R^2\)`, SER, coefficients give same results ] ] --- # Dummy *Dependent* (Y) Variables .smallest[ - In many contexts, we will want to have our *dependent* `\((Y)\)` variable be a dummy variable ] -- .smallest[ .content-box-green[ .green[**Example**]: `$$\widehat{Admitted_i}=\hat{\beta_0}+\hat{\beta_1}GPA_i \quad \text{ where } Admitted_i = \begin{cases} 1 & \text{if } i \text{ is Admitted} \\ 0 & \text{if } i \text{ is Not Admitted}\\ \end{cases}$$` ] ] -- .smallest[ - A model where `\(Y\)` is a dummy is called a .hi[linear probability model], as it measures the .hi-purple[probability of `\\(Y\\)` occuring `\\((=1)\\)` given the X's, i.e. `\\(P(Y_i=1|X_1, \cdots, X_k)\\)`] - e.g. the probability person `\(i\)` is Admitted to a program with a given GPA ] -- .smallest[ - Requires special tools to properly interpret and extend this (**logit**, **probit**, etc) - Feel free to write papers that have dummy `\(Y\)` variables (but you may have to ask me some more questions)! ]