Showing preview only (6,166K chars total). Download the full file or copy to clipboard to get everything.
Repository: prakhar21/100-Days-of-ML
Branch: master
Commit: 6d33df79d6ec
Files: 70
Total size: 5.9 MB
Directory structure:
gitextract_gjqzpqql/
├── README.md
├── bonus/
│ └── Dockerfile
├── data/
│ ├── day1/
│ │ ├── iris.csv
│ │ └── regression.csv
│ ├── day11/
│ │ └── credit.csv
│ ├── day15/
│ │ └── jobclass.csv
│ ├── day2/
│ │ └── automobile.csv
│ ├── day3/
│ │ └── haberman.csv
│ ├── day6/
│ │ └── glass.csv
│ ├── day7/
│ │ └── winequality-white.csv
│ └── day9/
│ └── banknote_authentication.csv
├── day01/
│ ├── .ipynb_checkpoints/
│ │ ├── BlackBox Takeaways-checkpoint.ipynb
│ │ └── Pandas(1-5)-checkpoint.ipynb
│ ├── BlackBox Takeaways.ipynb
│ ├── Linear Regression.ipynb
│ ├── Pandas(1-5).ipynb
│ └── README.md
├── day02/
│ ├── Data Spread.ipynb
│ ├── Multivariate Regression.ipynb
│ ├── Pandas(6-10).ipynb
│ └── README.md
├── day03/
│ ├── Logistic Regression.ipynb
│ ├── Pandas(11-15).ipynb
│ ├── README.md
│ └── Visualization.ipynb
├── day04/
│ ├── .ipynb_checkpoints/
│ │ └── Pandas(16-18)-checkpoint.ipynb
│ ├── Pandas(16-18).ipynb
│ └── README.md
├── day06/
│ ├── K-NearestNeighbours.ipynb
│ ├── Pandas(23-26).ipynb
│ └── README.md
├── day07/
│ ├── Numpy.ipynb
│ └── README.md
├── day08/
│ ├── README.md
│ └── Titanic.ipynb
├── day09/
│ ├── Lime.ipynb
│ ├── README.md
│ └── SVM.ipynb
├── day10/
│ ├── Average Ensemble Models.ipynb
│ └── README.md
├── day11/
│ ├── Feature Scaling.ipynb
│ └── README.md
├── day12/
│ ├── Decision Trees.ipynb
│ └── README.md
├── day13/
│ ├── Missing Values (Basics).ipynb
│ └── README.md
├── day15/
│ ├── Model Stacking.ipynb
│ └── README.md
├── day16/
│ └── Missing Value Imputations + Accuracy Measure.ipynb
├── day18/
│ ├── Pandas(Scraper).ipynb
│ └── README.md
├── day19/
│ ├── FeatureSelection.ipynb
│ └── README.md
├── day20/
│ ├── .ipynb_checkpoints/
│ │ └── Tqdm-checkpoint.ipynb
│ ├── README.md
│ ├── Resampling.ipynb
│ └── Tqdm.ipynb
├── day21/
│ ├── README.md
│ └── Save-Load.ipynb
├── day22/
│ └── pytorch.py
├── day27/
│ ├── cartpole.py
│ ├── cartpole_monitor.py
│ └── gym_pre.py
├── day28/
│ ├── tensorboard_pre.py
│ └── torch_pre.py
├── day31/
│ ├── cross-entropy-tensorboard.py
│ └── cross-entropy.py
├── day33/
│ └── Matplotlib.ipynb
└── day39/
├── Agglomerative.ipynb
└── README.md
================================================
FILE CONTENTS
================================================
================================================
FILE: README.md
================================================
# 50-Days-of-ML
A day to day plan for this challenge. Covers both theoritical and practical aspects.
I have build [ __Docker Image__](https://hub.docker.com/r/prakhar21/ml-utilities/) with all the required dependencies till __Day 21__. Feel free to use it by pulling it using -> __docker pull prakhar21/ml-utilities__
Please see [__Deep Work__](https://www.quora.com/What-is-the-one-skill-that-if-you-have-it-will-completely-change-your-life/answer/Shashank-Shekhar-221) which compliments our challenge and increases productivity. You can follow me on [__@Medium__](https://medium.com/@prakhar.mishra) for interesting blog articles.
## Day-1 (31st July, 2018)
* Learn about Pandas. [See Videos(1-5)](https://www.dataschool.io/easier-data-analysis-with-pandas/)
* Learn in general about ML [See Video (Blackbox Machine Learning)](https://www.youtube.com/watch?v=MsD28INtSv8)
* Read/Practice [Day-1 and Day-2](https://github.com/Avik-Jain/100-Days-Of-ML-Code)
* See [Intro to Linear Regression](https://www.youtube.com/watch?v=zPG4NjIkCjc)
* Read [LR Docs](http://scikit-learn.org/stable/modules/generated/sklearn.linear_model.LinearRegression.html)
## Day-2 (1st August, 2018)
* Learn about Pandas. [See Videos(6-10)](https://www.dataschool.io/easier-data-analysis-with-pandas/)
* Learn in general about ML [See Video (Case Study: Churn Prediction)](https://www.youtube.com/watch?v=kE_t3Mm8Z50)
* Read/Practice [Day-3](https://github.com/Avik-Jain/100-Days-Of-ML-Code)
* See [Data Spread](https://www.khanacademy.org/math/probability/data-distributions-a1/summarizing-spread-distributions/v/range-variance-and-standard-deviation-as-measures-of-dispersion)
* Andrew Ng [See Videos (1-3)](https://www.youtube.com/watch?v=-la3q9d7AKQ&list=PLNeKWBMsAzboR8vvhnlanxCNr2V7ITuxy)
## Day-3 (2nd August, 2018)
* Learn about Pandas. [See Videos(11-15)](https://www.dataschool.io/easier-data-analysis-with-pandas/)
* Learn in general about ML [See Video (Statistical Learning Theory)](https://www.youtube.com/watch?v=rqJ8SrnmWu0)
* Read/Practice [Day-4 and Day-8](https://github.com/Avik-Jain/100-Days-Of-ML-Code)
* Visualization in Python [See Official Docs](https://matplotlib.org/users/pyplot_tutorial.html)
## Day-4 (3rd August, 2018)
* Learn about Pandas. [See Videos(16-18)](https://www.dataschool.io/easier-data-analysis-with-pandas/)
* Read [KNN-1](https://www.analyticsvidhya.com/blog/2018/03/introduction-k-neighbours-algorithm-clustering/)
* Read [KNN-2](https://medium.com/@adi.bronshtein/a-quick-introduction-to-k-nearest-neighbors-algorithm-62214cea29c7)
## Day-5 (4th August, 2018)
* Learn about Pandas. [See Videos(19-22)](https://www.dataschool.io/easier-data-analysis-with-pandas/)
* Read/Practice [Day-7](https://github.com/Avik-Jain/100-Days-Of-ML-Code)
* General read on [Medium](https://blog.usejournal.com/cracking-eaadhar-password-in-3-seconds-with-maths-9533c8e8f9c2)
## Day-6 (5th August, 2018)
* Learn about Pandas. [See Videos(23-26)](https://www.dataschool.io/easier-data-analysis-with-pandas/)
* Implementing KNN
* Read/Practice [Day-12](https://github.com/Avik-Jain/100-Days-Of-ML-Code)
* KNN-Sklearn [See Official Docs](http://scikit-learn.org/stable/modules/generated/sklearn.neighbors.KNeighborsClassifier.html)
## Day-7 (6th August, 2018)
* Learn about Numpy. [Read this](https://www.dataquest.io/blog/numpy-tutorial-python/)
* [Naive Bayes - 1](https://www.analyticsvidhya.com/blog/2017/09/naive-bayes-explained/)
* [Naive Bayes - 2](https://medium.com/machine-learning-101/chapter-1-supervised-learning-and-naive-bayes-classification-part-1-theory-8b9e361897d5)
* [Naive Bayes - 3](https://machinelearningmastery.com/naive-bayes-for-machine-learning/)
* [Naive Bayes - 4](https://www.youtube.com/watch?v=6xBU74VWEuE)
## Day-8 (7th August, 2018)
* [Lime](https://github.com/marcotcr/lime)
* [Building Trust in ML models](https://www.analyticsvidhya.com/blog/2017/06/building-trust-in-machine-learning-models/)
* [Interpretable ML models](https://www.oreilly.com/learning/introduction-to-local-interpretable-model-agnostic-explanations-lime)
* Implementing Naive Bayes
* Learn in general about ML [See Video (Stochastic Gradient Descent)](https://www.youtube.com/watch?v=5TZww5bTROE) - 10 mins onwards
## Day-9 (8th August, 2018)
* Lime hands-on news dataset
* Light read about [Averaging Ensemble Techniques](http://sebastianraschka.com/Articles/2014_ensemble_classifier.html) for more accurate predictions.
* Light reading on [Ensemble Techniques](https://www.dataquest.io/blog/introduction-to-ensembles/)
* Implementing Support Vector Machines
* See [Ensemble learners](https://www.youtube.com/watch?v=Un9zObFjBH0)
## Day-10 (9th August, 2018)
* Implement Average Voting Ensemble Meta Model
* Read about [Stacking Ensemble Technique](https://www.kdnuggets.com/2017/02/stacking-models-imropved-predictions.html)
* Read [Stacking from scratch](https://machinelearningmastery.com/implementing-stacking-scratch-python/)
* Read [Stacking-concept-pictures-code](https://github.com/vecxoz/vecstack/blob/master/examples/00_stacking_concept_pictures_code.ipynb)
## Day-11 (10th August, 2018)
* Read/Practice [Day-25](https://github.com/Avik-Jain/100-Days-Of-ML-Code/blob/master/Code/Day%2025%20Decision%20Tree.md)
* Read about [Feature Scaling](http://sebastianraschka.com/Articles/2014_about_feature_scaling.html)
* Read [Why, How and When to Scale](https://medium.com/greyatom/why-how-and-when-to-scale-your-features-4b30ab09db5e)
* Implementation of Feature scaling techniques
* See [Decision Trees - MMDS](https://www.youtube.com/watch?v=NsUqRe-9tb4)
* Glance through [Decision Trees - Coursera](https://www.coursera.org/learn/ml-classification/home/week/3)
## Day-12 (11th August, 2018)
* Implementing of Decision Trees
* See lectures from [Coursera - 2nd week](https://www.coursera.org/learn/ml-classification/home/week/2) and [Coursera - 4th week](https://www.coursera.org/learn/ml-classification/home/week/4)
## Day-13 (12th August, 2018)
* Khan Academy [Vector's Section](https://www.khanacademy.org/math/linear-algebra/vectors-and-spaces/vectors/v/vector-introduction-linear-algebra)
* Light read on [Stacking Classifier](https://rasbt.github.io/mlxtend/user_guide/classifier/StackingClassifier/)
* Implementing - Handeling missing values using pandas
* General read on [EM for data imputation](https://www.theanalysisfactor.com/em-imputation-and-missing-data-is-mean-imputation-really-so-terrible/)
## Day-14 (13th August, 2018)
* Read about [Model Evaluation](https://www.coursera.org/learn/ml-classification/home/week/6)
* See Khan Academy [Linear combinatations & span](https://www.khanacademy.org/math/linear-algebra/vectors-and-spaces/linear-combinations/v/linear-combinations-and-span) and [Linear Dependence/Independence](https://www.khanacademy.org/math/linear-algebra/vectors-and-spaces/linear-independence/v/linear-algebra-introduction-to-linear-independence)
* Explore a [Helper Lib](https://github.com/rasbt/mlxtend/)
## Day-15 (14th August, 2018)
* See Khan Academy [Subspaces](https://www.khanacademy.org/math/linear-algebra/vectors-and-spaces/subspace-basis/v/linear-subspaces)
* Practice [Mlxtend](https://github.com/rasbt/mlxtend/)
* Read/Practice [Day-33 & Day-34](https://github.com/Avik-Jain/100-Days-Of-ML-Code)
## Day-16 (15th August, 2018)
* Light read on [Vector Quantization](https://machinelearningmastery.com/learning-vector-quantization-for-machine-learning/)
* Reading about [Boosting Algorithms](https://www.youtube.com/watch?v=wPqtzj5VZus)
* See all videos under [Ensembling](https://www.coursera.org/lecture/competitive-data-science/introduction-into-ensemble-methods-MJKCi)
## Day-17 (16th August, 2018)
* Performance Metrics Hands-on
* Khan Academy [Vector dot products](https://www.khanacademy.org/math/linear-algebra/vectors-and-spaces/dot-cross-products/v/vector-dot-product-and-vector-length)
* See [Metrics Optimization](https://www.coursera.org/learn/competitive-data-science/home/week/3)
## Day-18 (20th August, 2018)
* General read on [Medium](https://medium.com/@ageitgey/natural-language-processing-is-fun-9a0bff37854e)
* Read about [Text Classification](https://medium.com/@ageitgey/text-classification-is-your-new-secret-weapon-7ca4fad15788)
* Read about [scrape method in Pandas](https://medium.com/@ageitgey/quick-tip-the-easiest-way-to-grab-data-out-of-a-web-page-in-python-7153cecfca58)
* Read about [FastText](https://research.fb.com/fasttext/)
## Day-19 (21st August, 2018)
* Glance through [Sklearn Docs on Feature Selection](http://scikit-learn.org/stable/modules/feature_selection.html)
* Read [Feature Selection - Analytics Vidhya](https://www.analyticsvidhya.com/blog/2016/12/introduction-to-feature-selection-methods-with-an-example-or-how-to-select-the-right-variables/)
* See [C2W1L4](https://www.youtube.com/watch?v=6g0t3Phly2M) and [C2W1L5](https://www.youtube.com/watch?v=NyG-7nRpsW8)
* Implementing Feature Selection Methods
## Day-20 (22nd August, 2018)
* Explore [A fast and simple progress bar](https://github.com/tqdm/tqdm)
* Casual read on [Pandas - Tips/Tricks - 1](https://cambridgespark.com/content/tutorials/quick-panda-tricks/index.html) and [Pandas - Tips/Tricks - 2](https://towardsdatascience.com/pandas-tips-and-tricks-33bcc8a40bb9)
* See [Day 35](https://github.com/Avik-Jain/100-Days-Of-ML-Code)
* Implement data resampling techniques
## Day-21 (23rd August, 2018)
* See all videos under [C2W2](https://www.youtube.com/watch?v=SjQyLhQIXSM&list=PLkDaE6sCZn6Hn0vK8co82zjQtt3T2Nkqc&index=2)
* Implement saving/loading of ML models
* Write Dockerfile
## Day-22 (24th August, 2018)
* See and follow along [Introduction to PyTorch](https://www.youtube.com/watch?v=fJZew-fdNxw)
* Push Dockerfile and update Docker Readme.
## Day-23 (25th August, 2018)
* Read Chapter 6 (till 6.1.2) from the book Mining Massive Datasets
* Read/Practice [Day-26](https://github.com/Avik-Jain/100-Days-Of-ML-Code)
## Day-24 (26th August, 2018)
* Read Chapter 6 (till 6.1) from the book Mining Massive Datasets
## Day-25 (27th August, 2018)
* Read/Practice [Day-27](https://github.com/Avik-Jain/100-Days-Of-ML-Code) and [Day-28](https://github.com/Avik-Jain/100-Days-Of-ML-Code)
## Day-26 (28th August, 2018)
* See 1, 2, 3 videos from [Calculus](https://www.youtube.com/playlist?list=PLZHQObOWTQDMsr9K-rj53DwVRMYO3t5Yr)
* See [Week-1 (Video by David Silver)](https://github.com/yandexdataschool/Practical_RL/tree/master/week1_intro)
## Day-27 (29th August, 2018)
* Read about article on [RL 1, 2, 3, 4](https://medium.com/@prakhar.mishra)
* Implement randomised cartpole balancer
## Day-28 (30th August, 2018)
* Read [paper](https://arxiv.org/pdf/1808.07913.pdf)
* Implement neural network in PyTorch
* PyTorch + TensorBoard
* Update Docker File/Image
## Day-29 (31st August, 2018)
* See 4, 5, 6 videos from [Calculus](https://www.youtube.com/playlist?list=PLZHQObOWTQDMsr9K-rj53DwVRMYO3t5Yr)
* See 1, 2, 3, 4 videos from [Linear Algebra](https://www.youtube.com/watch?v=fNk_zzaMoSs&list=PLZHQObOWTQDPD3MizzM2xVFitgF8hE_ab)
## Day-30 (1st September, 2018)
* Implementing NN from scratch
* See 5, 6 videos from [Linear Algebra](https://www.youtube.com/watch?v=fNk_zzaMoSs&list=PLZHQObOWTQDPD3MizzM2xVFitgF8hE_ab)
## Day-31 (3rd September, 2018)
* Implement Cartpole using Cross Entropy method
## Day-32 (4th September, 2018)
* Read about Q-Learning.
* See 7, 8, 9 videos from [Linear Algebra](https://www.youtube.com/watch?v=fNk_zzaMoSs&list=PLZHQObOWTQDPD3MizzM2xVFitgF8hE_ab)
* See 7, 8 videos from [Calculus](https://www.youtube.com/playlist?list=PLZHQObOWTQDMsr9K-rj53DwVRMYO3t5Yr)
## Day-33 (5th September, 2018)
* Read/Practice [Day 51](https://github.com/Avik-Jain/100-Days-Of-ML-Code)
* See [But what *is* a Neural Network?](https://www.youtube.com/watch?v=aircAruvnKk&t=7s)
* Read [Grammar correction in text](http://ww.panl10n.net/english/final%20reports/pdf%20files/Bangladesh/BAN21.pdf) usecase
## Day-34 (6th September, 2018)
* See [How Neural Networks learn](https://www.youtube.com/watch?v=IHZwWFHWa-w&t=0s&list=PLZHQObOWTQDNU6R1_67000Dx_ZCJB-3pi&index=3)
* Read [Text Summarization](http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.19.5237&rep=rep1&type=pdf)
* See 10, 11 videos from [Linear Algebra](https://www.youtube.com/watch?v=fNk_zzaMoSs&list=PLZHQObOWTQDPD3MizzM2xVFitgF8hE_ab)
* Read [Neural Networks, Manifolds, and Topology](http://colah.github.io/posts/2014-03-NN-Manifolds-Topology/)
## Day-35 (7th September, 2018)
* Implement Q-Learning
## Day-36 (10th September, 2018)
* Complete [Equations/Graphs/Functions](https://courses.edx.org/courses/course-v1:Microsoft+DAT256x+2T2018/courseware/72190688919b4f72a3e81a7fdbc4ec19/be5df94381c74baf8fdd83c36f71e0f0/?child=first)
* See 9, 10 videos from [Calculus](https://www.youtube.com/playlist?list=PLZHQObOWTQDMsr9K-rj53DwVRMYO3t5Yr)
* See [What does Backpropagation really do ?](https://www.youtube.com/watch?v=Ilg3gGewQ5U&list=PLZHQObOWTQDNU6R1_67000Dx_ZCJB-3pi&index=3)
## Day-37 (11th September, 2018)
* See [Backpropagation Calculus](https://www.youtube.com/watch?v=tIeHLnjs5U8&index=4&list=PLZHQObOWTQDNU6R1_67000Dx_ZCJB-3pi)
* See 1, 2, 3 from [Statistics - Khan Academy](https://www.youtube.com/watch?v=uhxtUt_-GyM&list=PL1328115D3D8A2566)
## Day-38 (12th September, 2018)
* Read 7 in [Assignments](https://mlcourse.ai/assignments)
* See 4, 5, 6 from [Statistics - Khan Academy](https://www.youtube.com/watch?v=uhxtUt_-GyM&list=PL1328115D3D8A2566)
## Day-39 (13th September, 2018)
* Read about Agglomerative Clustering
## Day-40 (14th September, 2018)
* Read about Deep-Q-Networks and understand epsilon-greedy, replay buffer and target network in the same context.
* See 7, 8 from [Statistics - Khan Academy](https://www.youtube.com/watch?v=uhxtUt_-GyM&list=PL1328115D3D8A2566)
## Day-41 (15th September, 2018)
* Read about Spectral Clustering
* See 9, 10, 11, 12 [Statistics - Khan Academy](https://www.youtube.com/watch?v=uhxtUt_-GyM&list=PL1328115D3D8A2566)
* Complete [Finance and Python](https://campus.datacamp.com/courses/importing-managing-financial-data-in-python/importing-stock-listing-data-from-excel)
## Day-42 (17th September, 2018)
* Read [Autoencoders Notebook](https://www.kaggle.com/shivamb/how-autoencoders-work-intro-and-usecases?utm_medium=social&utm_source=linkedin.com&utm_campaign=Weekly-Kernel-Awards)
* Complete [Week-1](https://www.coursera.org/learn/fundamentals-machine-learning-in-finance/home/week/1)
## Day-43 (18th September, 2018)
* See [Neural Voice Cloning](https://www.youtube.com/watch?v=gVehTbi6Ipc&feature=youtu.be)
* Complete [Week-2](https://www.coursera.org/learn/fundamentals-machine-learning-in-finance/home/week/2)
* Read [Autoencoder in Text](https://www.doc.ic.ac.uk/~js4416/163/website/nlp/)
## Day-44 (19th September, 2018)
* Read 1-10 pages of [A Primer on Neural Network Modelsfor Natural Language Processing](http://u.cs.biu.ac.il/~yogo/nnlp.pdf)
## Day-45 (20th Spetember, 2018)
* Read 11-20 pages of [A Primer on Neural Network Models for Natural Language Processing](http://u.cs.biu.ac.il/~yogo/nnlp.pdf)
## Day-46 (21st September, 2018)
* Read 21-30 pages of [A Primer on Neural Network Models for Natural Language Processing](http://u.cs.biu.ac.il/~yogo/nnlp.pdf)
## Day-47 (22nd Spetember, 2018)
* Read 31-40 pages of [A Primer on Neural Network Models for Natural Language Processing](http://u.cs.biu.ac.il/~yogo/nnlp.pdf)
## Day-48 (22nd Spetember, 2018)
* Read 41-50 pages of [A Primer on Neural Network Models for Natural Language Processing](http://u.cs.biu.ac.il/~yogo/nnlp.pdf)
## Day-49 (23rd September, 2018)
* Read 51-60 pages of [A Primer on Neural Network Models for Natural Language Processing](http://u.cs.biu.ac.il/~yogo/nnlp.pdf)
## Day-50 (24th Spetember, 2018)
* Read 61-76 pages of [A Primer on Neural Network Models for Natural Language Processing](http://u.cs.biu.ac.il/~yogo/nnlp.pdf)
================================================
FILE: bonus/Dockerfile
================================================
FROM ubuntu:16.04
# Base OS essentials
RUN apt-get update && apt-get install -y
RUN apt-get install python-pip -y
RUN apt-get install python-dev -y
# ML essentials requirements (till day 21)
RUN pip install --upgrade pip
RUN pip install pandas==0.20.3 && \
numpy==1.14.2 \
scipy==0.19.1 \
scikit_learn==0.19.1 \
lime==0.1.1.32 \
tqdm==4.23.0 \
xgboost==0.80 \
mlxtend==0.13.0
WORKDIR /usr/src
================================================
FILE: data/day1/iris.csv
================================================
feat1,feat2,feat3,feat4,class
5.1,3.5,1.4,0.2,Iris-setosa
4.9,3.0,1.4,0.2,Iris-setosa
4.7,3.2,1.3,0.2,Iris-setosa
4.6,3.1,1.5,0.2,Iris-setosa
5.0,3.6,1.4,0.2,Iris-setosa
5.4,3.9,1.7,0.4,Iris-setosa
4.6,3.4,1.4,0.3,Iris-setosa
5.0,3.4,1.5,0.2,Iris-setosa
4.4,2.9,1.4,0.2,Iris-setosa
4.9,3.1,1.5,0.1,Iris-setosa
5.4,3.7,1.5,0.2,Iris-setosa
4.8,3.4,1.6,0.2,Iris-setosa
4.8,3.0,1.4,0.1,Iris-setosa
4.3,3.0,1.1,0.1,Iris-setosa
5.8,4.0,1.2,0.2,Iris-setosa
5.7,4.4,1.5,0.4,Iris-setosa
5.4,3.9,1.3,0.4,Iris-setosa
5.1,3.5,1.4,0.3,Iris-setosa
5.7,3.8,1.7,0.3,Iris-setosa
5.1,3.8,1.5,0.3,Iris-setosa
5.4,3.4,1.7,0.2,Iris-setosa
5.1,3.7,1.5,0.4,Iris-setosa
4.6,3.6,1.0,0.2,Iris-setosa
5.1,3.3,1.7,0.5,Iris-setosa
4.8,3.4,1.9,0.2,Iris-setosa
5.0,3.0,1.6,0.2,Iris-setosa
5.0,3.4,1.6,0.4,Iris-setosa
5.2,3.5,1.5,0.2,Iris-setosa
5.2,3.4,1.4,0.2,Iris-setosa
4.7,3.2,1.6,0.2,Iris-setosa
4.8,3.1,1.6,0.2,Iris-setosa
5.4,3.4,1.5,0.4,Iris-setosa
5.2,4.1,1.5,0.1,Iris-setosa
5.5,4.2,1.4,0.2,Iris-setosa
4.9,3.1,1.5,0.1,Iris-setosa
5.0,3.2,1.2,0.2,Iris-setosa
5.5,3.5,1.3,0.2,Iris-setosa
4.9,3.1,1.5,0.1,Iris-setosa
4.4,3.0,1.3,0.2,Iris-setosa
5.1,3.4,1.5,0.2,Iris-setosa
5.0,3.5,1.3,0.3,Iris-setosa
4.5,2.3,1.3,0.3,Iris-setosa
4.4,3.2,1.3,0.2,Iris-setosa
5.0,3.5,1.6,0.6,Iris-setosa
5.1,3.8,1.9,0.4,Iris-setosa
4.8,3.0,1.4,0.3,Iris-setosa
5.1,3.8,1.6,0.2,Iris-setosa
4.6,3.2,1.4,0.2,Iris-setosa
5.3,3.7,1.5,0.2,Iris-setosa
5.0,3.3,1.4,0.2,Iris-setosa
7.0,3.2,4.7,1.4,Iris-versicolor
6.4,3.2,4.5,1.5,Iris-versicolor
6.9,3.1,4.9,1.5,Iris-versicolor
5.5,2.3,4.0,1.3,Iris-versicolor
6.5,2.8,4.6,1.5,Iris-versicolor
5.7,2.8,4.5,1.3,Iris-versicolor
6.3,3.3,4.7,1.6,Iris-versicolor
4.9,2.4,3.3,1.0,Iris-versicolor
6.6,2.9,4.6,1.3,Iris-versicolor
5.2,2.7,3.9,1.4,Iris-versicolor
5.0,2.0,3.5,1.0,Iris-versicolor
5.9,3.0,4.2,1.5,Iris-versicolor
6.0,2.2,4.0,1.0,Iris-versicolor
6.1,2.9,4.7,1.4,Iris-versicolor
5.6,2.9,3.6,1.3,Iris-versicolor
6.7,3.1,4.4,1.4,Iris-versicolor
5.6,3.0,4.5,1.5,Iris-versicolor
5.8,2.7,4.1,1.0,Iris-versicolor
6.2,2.2,4.5,1.5,Iris-versicolor
5.6,2.5,3.9,1.1,Iris-versicolor
5.9,3.2,4.8,1.8,Iris-versicolor
6.1,2.8,4.0,1.3,Iris-versicolor
6.3,2.5,4.9,1.5,Iris-versicolor
6.1,2.8,4.7,1.2,Iris-versicolor
6.4,2.9,4.3,1.3,Iris-versicolor
6.6,3.0,4.4,1.4,Iris-versicolor
6.8,2.8,4.8,1.4,Iris-versicolor
6.7,3.0,5.0,1.7,Iris-versicolor
6.0,2.9,4.5,1.5,Iris-versicolor
5.7,2.6,3.5,1.0,Iris-versicolor
5.5,2.4,3.8,1.1,Iris-versicolor
5.5,2.4,3.7,1.0,Iris-versicolor
5.8,2.7,3.9,1.2,Iris-versicolor
6.0,2.7,5.1,1.6,Iris-versicolor
5.4,3.0,4.5,1.5,Iris-versicolor
6.0,3.4,4.5,1.6,Iris-versicolor
6.7,3.1,4.7,1.5,Iris-versicolor
6.3,2.3,4.4,1.3,Iris-versicolor
5.6,3.0,4.1,1.3,Iris-versicolor
5.5,2.5,4.0,1.3,Iris-versicolor
5.5,2.6,4.4,1.2,Iris-versicolor
6.1,3.0,4.6,1.4,Iris-versicolor
5.8,2.6,4.0,1.2,Iris-versicolor
5.0,2.3,3.3,1.0,Iris-versicolor
5.6,2.7,4.2,1.3,Iris-versicolor
5.7,3.0,4.2,1.2,Iris-versicolor
5.7,2.9,4.2,1.3,Iris-versicolor
6.2,2.9,4.3,1.3,Iris-versicolor
5.1,2.5,3.0,1.1,Iris-versicolor
5.7,2.8,4.1,1.3,Iris-versicolor
6.3,3.3,6.0,2.5,Iris-virginica
5.8,2.7,5.1,1.9,Iris-virginica
7.1,3.0,5.9,2.1,Iris-virginica
6.3,2.9,5.6,1.8,Iris-virginica
6.5,3.0,5.8,2.2,Iris-virginica
7.6,3.0,6.6,2.1,Iris-virginica
4.9,2.5,4.5,1.7,Iris-virginica
7.3,2.9,6.3,1.8,Iris-virginica
6.7,2.5,5.8,1.8,Iris-virginica
7.2,3.6,6.1,2.5,Iris-virginica
6.5,3.2,5.1,2.0,Iris-virginica
6.4,2.7,5.3,1.9,Iris-virginica
6.8,3.0,5.5,2.1,Iris-virginica
5.7,2.5,5.0,2.0,Iris-virginica
5.8,2.8,5.1,2.4,Iris-virginica
6.4,3.2,5.3,2.3,Iris-virginica
6.5,3.0,5.5,1.8,Iris-virginica
7.7,3.8,6.7,2.2,Iris-virginica
7.7,2.6,6.9,2.3,Iris-virginica
6.0,2.2,5.0,1.5,Iris-virginica
6.9,3.2,5.7,2.3,Iris-virginica
5.6,2.8,4.9,2.0,Iris-virginica
7.7,2.8,6.7,2.0,Iris-virginica
6.3,2.7,4.9,1.8,Iris-virginica
6.7,3.3,5.7,2.1,Iris-virginica
7.2,3.2,6.0,1.8,Iris-virginica
6.2,2.8,4.8,1.8,Iris-virginica
6.1,3.0,4.9,1.8,Iris-virginica
6.4,2.8,5.6,2.1,Iris-virginica
7.2,3.0,5.8,1.6,Iris-virginica
7.4,2.8,6.1,1.9,Iris-virginica
7.9,3.8,6.4,2.0,Iris-virginica
6.4,2.8,5.6,2.2,Iris-virginica
6.3,2.8,5.1,1.5,Iris-virginica
6.1,2.6,5.6,1.4,Iris-virginica
7.7,3.0,6.1,2.3,Iris-virginica
6.3,3.4,5.6,2.4,Iris-virginica
6.4,3.1,5.5,1.8,Iris-virginica
6.0,3.0,4.8,1.8,Iris-virginica
6.9,3.1,5.4,2.1,Iris-virginica
6.7,3.1,5.6,2.4,Iris-virginica
6.9,3.1,5.1,2.3,Iris-virginica
5.8,2.7,5.1,1.9,Iris-virginica
6.8,3.2,5.9,2.3,Iris-virginica
6.7,3.3,5.7,2.5,Iris-virginica
6.7,3.0,5.2,2.3,Iris-virginica
6.3,2.5,5.0,1.9,Iris-virginica
6.5,3.0,5.2,2.0,Iris-virginica
6.2,3.4,5.4,2.3,Iris-virginica
5.9,3.0,5.1,1.8,Iris-virginica
================================================
FILE: data/day1/regression.csv
================================================
x,y
24,21.54945196
50,47.46446305
15,17.21865634
38,36.58639803
87,87.28898389
36,32.46387493
12,10.78089683
81,80.7633986
25,24.61215147
5,6.963319071
16,11.23757338
16,13.53290206
24,24.60323899
39,39.40049976
54,48.43753838
60,61.69900319
26,26.92832418
73,70.4052055
29,29.34092408
31,25.30895192
68,69.02934339
87,84.99484703
58,57.04310305
54,50.5921991
84,83.02772202
58,57.05752706
49,47.95883341
20,24.34226432
90,94.68488281
48,48.03970696
4,7.08132338
25,21.99239907
42,42.33151664
0,0.329089443
60,61.92303698
93,91.17716423
39,39.45358014
7,5.996069607
21,22.59015942
68,61.18044414
84,85.02778957
0,-1.28631089
58,61.94273962
19,21.96033347
36,33.66194193
19,17.60946242
59,58.5630564
51,52.82390762
19,22.1363481
33,35.07467353
85,86.18822311
44,42.63227697
5,4.09817744
59,61.2229864
14,17.70677576
9,11.85312574
75,80.23051695
69,62.64931741
10,9.616859804
17,20.02797699
58,61.7510743
74,71.61010303
21,23.77154623
51,51.90142035
19,22.66073682
50,50.02897927
24,26.68794368
0,0.376911899
12,6.806419002
75,77.33986001
21,28.90260209
64,66.7346608
5,0.707510638
58,57.07748383
32,28.41453196
41,44.46272123
7,7.459605998
4,2.316708112
5,4.928546187
49,52.50336074
90,91.19109623
3,8.489164326
11,6.963371967
32,31.97989959
83,81.4281205
25,22.62365422
83,78.52505087
26,25.80714057
76,73.51081775
95,91.775467
53,49.21863516
77,80.50445387
42,50.05636123
25,25.46292549
54,55.32164264
55,59.1244888
0,1.100686692
73,71.98020786
35,30.13666408
86,83.88427405
90,89.91004752
13,8.335654576
46,47.88388961
46,45.00397413
32,31.15664574
8,9.190375682
71,74.83135003
28,30.23177607
24,24.21914027
56,57.87219151
49,50.61728392
79,78.67470043
90,86.236707
89,89.10409255
41,43.26595082
27,26.68273277
58,59.46383041
26,28.90055826
31,31.300416
70,71.1433266
71,68.4739206
39,39.98238856
7,4.075776144
48,47.85817542
56,51.20390217
45,43.9367213
41,38.13626679
3,3.574661632
37,36.4139958
24,22.21908523
68,63.5312572
47,49.86702787
27,21.53140009
68,64.05710234
74,70.77549842
95,92.15749762
79,81.22259156
21,25.10114067
95,94.08853397
54,53.25166165
56,59.16236621
80,75.24148428
26,28.22325833
25,25.33323728
8,6.364615703
95,95.4609216
94,88.64183756
54,58.70318693
7,6.815491279
99,99.40394676
36,32.77049249
48,47.0586788
65,60.53321778
42,40.30929858
93,89.42222685
86,86.82132066
26,26.11697543
51,53.26657596
100,96.62327888
94,95.78441027
6,6.047286687
24,24.47387908
75,75.96844763
7,3.829381009
53,52.51703683
73,72.80457527
16,14.10999096
80,80.86087062
77,77.01988215
89,86.26972444
80,77.13735466
55,51.47649476
19,17.34557531
56,57.72853572
47,44.15029394
56,59.24362743
2,-1.053275611
82,86.79002254
57,60.14031858
44,44.04222058
26,24.5227488
52,52.95305521
41,43.16133498
44,45.67562576
3,-2.830749501
31,29.19693178
97,96.49812401
21,22.5453232
17,20.10741433
7,4.035430253
61,61.14568518
10,13.97163653
52,55.34529893
10,12.18441166
65,64.00077658
71,70.3188322
4,-0.936895047
24,18.91422276
26,23.87590331
51,47.5775361
42,43.2736092
62,66.48278755
74,75.72605529
77,80.59643338
3,-2.235879852
50,47.04654956
24,21.59635575
37,32.87558963
58,57.95782956
52,52.24760027
27,24.58286902
14,12.12573805
100,100.0158026
72,74.04682658
5,1.611947467
71,70.36836307
54,52.26831735
84,83.1286166
42,43.64765048
54,49.44785426
74,72.6356699
54,52.78130641
53,57.11195136
78,79.1050629
97,101.6228548
49,53.5825402
71,68.92139297
48,46.9666961
51,51.02642868
89,85.52073551
99,99.51685756
93,94.63911256
49,46.78357742
18,21.21321959
65,58.37266004
83,87.22059677
100,102.4967859
41,43.88314335
52,53.06655757
29,26.33464785
97,98.52008934
7,9.400497579
51,52.94026699
58,53.83020877
50,45.94511142
67,65.0132736
89,86.5069584
76,75.63280796
35,36.78035027
99,100.5328916
31,29.04466136
52,51.70352433
11,9.199954718
66,71.70015848
50,49.82634062
39,37.49971096
60,53.65084683
35,33.92561965
53,49.92639685
14,8.148154262
49,49.72359037
16,16.16712757
76,75.30033002
13,9.577368568
51,48.38088357
70,72.95331671
98,92.59573853
86,88.85523586
100,99.00361771
46,45.09439571
51,46.94362684
50,48.33449605
91,94.92329574
48,47.78165248
81,81.28960746
38,37.83155021
40,39.69185252
79,76.92664854
96,88.02990531
60,56.99178872
70,72.58929383
44,44.98103442
11,11.99017641
6,1.919513328
5,1.628826073
72,66.27746655
55,57.53887255
95,94.70291077
41,41.21469904
25,25.04169243
1,3.778209914
55,50.50711779
4,9.682408486
48,48.88147608
55,54.40348599
75,71.70233156
68,69.35848388
100,99.98491591
25,26.03323718
75,75.48910307
34,36.59623056
38,40.95102191
92,86.78316267
21,15.50701184
88,85.86077871
75,79.20610113
76,80.80643766
44,48.59717283
10,13.93415049
21,27.3051179
16,14.00226297
32,33.67416
13,13.11612884
26,24.76649193
70,73.68477876
77,77.53149541
77,76.24503196
88,88.0578931
35,35.02445799
24,21.65857739
17,17.33681562
91,94.36778957
32,33.43396307
36,32.52179399
89,90.57741298
69,71.25634126
30,31.23212856
6,5.398840061
22,18.56241391
67,71.97121038
9,5.225759566
74,73.5964342
50,49.76948983
85,82.69087513
3,1.652309089
0,-3.836652144
59,62.03811556
62,61.26514581
17,13.24991628
90,88.61672694
23,21.13655528
19,23.85017475
93,92.01203405
14,10.26712261
58,54.14681616
87,87.00645713
37,37.69447352
20,19.62278654
35,34.78561007
63,62.03190983
56,52.67003801
62,58.09031476
98,97.19448821
90,90.50155298
51,50.5123462
93,94.45211871
22,21.10794636
38,37.36298431
13,10.28574844
98,96.04932416
99,100.0953697
31,30.6063167
94,96.19000542
73,71.30828034
37,34.59311043
23,19.02332876
11,10.76669688
88,90.5799868
47,48.71787679
79,78.74139764
91,85.23492274
71,71.65789964
10,8.938990554
39,39.89606046
92,91.85091116
99,99.11200375
28,26.22196486
32,33.21584226
32,35.72392691
75,76.88604495
99,99.30874567
27,25.77161074
64,67.85169407
98,98.50371084
38,31.11331895
46,45.51171028
13,12.65537808
96,95.56065366
9,9.526431641
34,36.10893209
49,46.43628318
1,-3.83998112
50,48.97302037
94,93.25305499
27,23.47650968
20,17.13551132
12,14.55896144
45,41.53992729
91,91.64730552
61,66.16652565
10,9.230857489
47,47.41377893
33,34.76441561
84,86.10796637
24,21.81267954
48,48.89963951
48,46.78108638
9,12.91328547
93,94.55203143
99,94.97068753
8,2.379172481
20,21.47982988
38,35.79795462
78,82.0763803
81,78.87097714
42,47.2492425
95,96.18852325
78,78.38491927
44,42.94274064
68,64.43231595
87,84.21191485
58,57.3069783
52,52.52101436
26,25.7440243
75,75.42283401
48,53.62523007
71,75.14466308
77,74.12151511
34,36.24807243
24,20.21665898
70,66.94758118
29,34.07278254
76,73.13850045
98,92.85929155
28,28.36793808
87,85.59308727
9,10.68453755
87,86.10708624
33,33.22031418
64,66.09563422
17,19.30486546
49,48.84542083
95,93.73176312
75,75.45758614
89,91.24239226
81,87.15690853
25,25.53752833
47,46.06629478
50,49.65277661
5,7.382244165
68,71.11189935
84,83.50570521
8,8.791139893
41,33.30638903
26,26.40362524
89,91.72960726
78,82.53030719
34,36.67762733
92,86.98450355
27,32.34784175
12,16.78353974
2,1.576584383
22,17.4618141
0,2.116113029
26,24.34804332
50,48.29491198
84,85.52145453
70,73.71434779
66,63.15189497
42,38.46213684
19,19.47100788
94,94.07428225
71,67.92051286
19,22.58096241
16,16.01629889
49,48.43307886
29,29.6673599
29,26.65566328
86,86.28206739
50,50.82304924
86,88.57251713
30,32.59980745
23,21.02469368
20,20.72894979
16,20.38051187
57,57.25180153
8,6.967537054
8,10.240085
62,64.94841088
55,55.35893915
30,31.24365589
86,90.72048818
62,58.750127
51,55.85003198
61,60.19925869
86,85.03295412
61,60.38823085
21,18.44679787
81,82.18839247
97,94.2963344
5,7.682024586
61,61.01858089
47,53.60562216
98,94.47728801
30,27.9645947
63,62.55662585
0,1.406254414
100,101.7003412
18,13.84973988
30,28.99769315
98,99.04315693
16,15.56135514
22,24.63528393
55,53.98393374
43,42.91449728
75,74.29662112
91,91.17012883
46,49.42440876
85,82.47683519
55,56.15303953
36,37.17063131
49,46.36928662
94,97.02383456
43,40.83182104
22,24.08498313
37,41.14386358
24,21.97388066
95,100.740897
61,61.19971596
75,74.39517002
68,69.04377173
58,56.68718792
5,5.860391715
53,55.72021356
80,79.22021816
83,86.30177517
25,25.26971886
34,36.33294447
26,27.65574228
90,94.79690531
60,58.67366671
49,56.15934471
19,18.40919388
92,86.26936988
29,26.59436195
8,8.452520159
57,56.18131518
29,27.65452669
19,20.87391785
81,77.83354439
50,50.01787825
15,9.290856256
70,75.0284725
39,38.3037698
43,44.70786405
21,22.51016575
98,102.4959452
86,86.76845244
16,13.89748578
25,24.81824269
31,33.94224862
93,92.26970059
67,68.73365081
49,47.38516883
25,32.37576914
88,87.67388681
54,54.57648371
21,18.06450222
8,7.896539841
32,35.00341078
35,36.72823317
67,65.84975426
90,89.59295492
59,61.69026202
15,11.60499315
67,71.0826803
42,43.71901164
44,41.57421008
77,74.25552425
68,66.28310437
36,36.62438077
11,10.32374866
10,7.156457657
65,67.88603132
98,101.1097591
98,98.6132033
49,50.19083844
31,27.83896261
56,55.9249564
70,76.47340872
91,92.05756378
25,27.35245439
54,55.32083476
39,41.39990349
91,93.59057024
3,5.297054029
22,21.01429422
2,2.267059451
2,-0.121860502
65,66.49546208
71,73.83637687
42,42.10140878
76,77.35135732
43,41.02251779
8,14.75305272
86,83.28199022
87,89.93374342
3,2.286571686
58,55.61421297
62,62.15313408
89,89.55803528
95,94.00291863
28,26.78023848
0,-0.764537626
1,0.282866003
49,44.26800515
21,19.85174138
46,47.15960005
11,8.359366572
89,92.08157084
37,41.88734051
29,30.5413129
44,46.87654473
96,96.35659485
16,17.9170699
74,71.67949917
35,32.64997554
42,39.34482965
16,17.03401999
56,52.87524074
18,15.85414849
100,108.8716183
54,49.30477253
92,89.4749477
63,63.67348242
81,83.78410946
73,73.51136922
48,46.80297244
1,5.809946802
85,85.23027975
14,10.58213964
25,21.37698317
45,46.0537745
98,95.2389253
97,94.15149206
58,54.54868046
93,87.36260449
88,88.47741598
89,84.48045678
47,48.79647071
6,10.76675683
34,30.48882921
30,29.76846185
16,13.51574749
86,86.12955884
40,43.30022747
52,51.92110232
15,16.49185287
4,7.998073432
95,97.66689567
99,89.80545367
35,38.07166567
58,60.27852322
10,6.709195759
16,18.35488924
53,56.37058203
58,62.80064204
42,41.25155632
24,19.42637541
84,82.88935804
64,63.61364981
12,11.29627199
61,60.02274882
75,72.60339326
15,11.87964573
100,100.7012737
43,45.12420809
13,14.81106804
48,48.09368034
45,42.29145672
52,52.73389794
34,36.72396986
30,28.64535198
65,62.16675273
100,95.58459518
67,66.04325304
99,99.9566225
45,46.14941984
87,89.13754963
73,69.71787806
9,12.31736648
81,78.20296268
72,71.30995371
81,81.45544709
58,58.59500642
93,94.62509374
82,88.60376995
66,63.64868529
97,94.9752655
77,79.77515201
21,23.17727887
22,25.60926156
20,17.85738813
36,41.84986439
15,9.805234876
62,58.87465933
95,97.61793701
20,18.39512747
5,8.746747654
4,2.811415826
19,17.09537241
96,95.14907176
62,61.38800663
36,40.24701716
15,14.82248589
65,66.95806869
14,16.63507984
87,90.65513736
69,77.22982636
89,92.11906278
51,46.91387709
89,89.82634442
27,21.71380347
97,97.41206981
58,57.01631363
79,78.31056542
21,19.1315097
93,93.03483388
27,26.59112396
99,97.55155344
31,31.43524822
33,35.12724777
80,78.61042432
28,33.07112825
47,51.69967172
53,53.62235225
69,69.46306072
28,27.42497237
33,36.34644189
91,95.06140858
71,68.16724757
50,50.96155532
76,78.04237454
4,5.607664865
37,36.11334779
70,67.2352155
68,65.01324035
40,38.14753871
35,34.31141446
94,95.28503937
88,87.84749912
52,54.08170635
31,31.93063515
59,59.61247085
0,-1.040114209
39,47.49374765
64,62.60089773
69,70.9146434
57,56.14834113
13,14.05572877
72,68.11367147
76,75.59701346
61,59.225745
82,85.45504157
18,17.76197116
41,38.68888682
50,50.96343637
55,51.83503872
13,17.0761107
46,46.56141773
13,10.34754461
79,77.91032969
53,50.17008622
15,13.25690647
28,31.32274932
81,73.9308764
69,74.45114379
52,52.01932286
84,83.68820499
68,70.3698748
27,23.44479161
56,49.83051801
48,49.88226593
40,41.04525583
39,33.37834391
82,81.29750133
100,105.5918375
59,56.82457013
43,48.67252645
67,67.02150613
38,38.43076389
63,58.61466887
91,89.12377509
60,60.9105427
14,13.83959878
21,16.89085185
87,84.06676818
73,70.34969772
32,33.38474138
2,-1.63296825
82,88.54475895
19,17.44047622
74,75.69298554
42,41.97607107
12,12.59244741
1,0.275307261
90,98.13258005
89,87.45721555
0,-2.344738542
41,39.3294153
16,16.68715211
94,96.58888601
97,97.70342201
66,67.01715955
24,25.63476257
17,13.41310757
90,95.15647284
13,9.744164258
0,-3.467883789
64,62.82816355
96,97.27405461
98,95.58017185
12,7.468501839
41,45.44599591
47,46.69013968
78,74.4993599
20,21.63500655
89,91.59548851
29,26.49487961
64,67.38654703
75,74.25362837
12,12.07991648
25,21.32273728
28,29.31770045
30,26.48713683
65,68.94699774
59,59.10598995
64,64.37521087
53,60.20758349
71,70.34329706
97,97.1082562
73,75.7584178
9,10.80462727
12,12.11219941
63,63.28312382
99,98.03017721
60,63.19354354
35,34.8534823
2,-2.819913974
60,59.8313966
32,29.38505024
94,97.00148372
84,85.18657275
63,61.74063192
22,18.84798163
81,78.79008525
93,95.12400481
33,30.48881287
7,10.41468095
42,38.98317436
46,46.11021062
54,52.45103628
16,21.16523945
49,52.28620611
43,44.18863945
95,97.13832018
66,67.22008001
21,18.98322306
35,24.3884599
80,79.44769523
37,40.03504862
54,53.32005764
56,54.55446979
1,-2.761182595
32,37.80182795
58,57.48741435
32,36.06292994
46,49.83538167
72,74.68953276
17,14.86159401
97,101.0697879
93,99.43577876
91,91.69240746
37,34.12473248
4,6.079390073
54,59.07247174
51,56.43046022
27,30.49412933
46,48.35172635
92,89.73153611
73,72.86282528
77,80.97144285
91,91.36566374
61,60.07137496
99,99.87382707
4,8.655714172
72,69.39858505
19,19.38780134
57,53.11628433
78,78.39683006
26,25.75612514
74,75.07484683
90,92.88772282
66,69.45498498
13,13.12109842
40,48.09843134
77,79.3142548
67,68.48820749
75,73.2300846
23,24.68362712
45,41.90368917
59,62.22635684
44,45.96396877
23,23.52647153
55,51.80035866
55,51.10774273
95,95.79747345
12,9.241138977
4,7.646529763
7,9.281699753
100,103.5266162
48,47.41006725
42,42.03835773
96,96.11982476
39,38.05766408
100,105.4503788
87,88.80306911
14,15.49301141
14,12.42624606
37,40.00709598
5,5.634030902
88,87.36938931
91,89.73951993
65,66.61499643
74,72.9138853
56,57.19103506
16,11.21710477
5,0.676076749
28,28.15668543
92,95.3958003
46,52.05490703
54,59.70864577
39,36.79224762
44,37.08457698
31,24.18437976
68,67.28725332
86,82.870594
90,89.899991
38,36.94173178
21,19.87562242
95,90.71481654
56,61.09367762
60,60.11134958
65,64.83296316
78,81.40381769
89,92.40217686
6,2.576625376
67,63.80768172
36,38.67780759
16,16.82839701
100,99.78687252
45,44.68913433
73,71.00377824
57,51.57326718
20,19.87846479
76,79.50341495
34,34.58876491
55,55.7383467
72,68.19721905
55,55.81628509
8,9.391416798
56,56.01448111
72,77.9969477
58,55.37049953
6,11.89457829
96,94.79081712
23,25.69041546
58,53.52042319
23,18.31396758
19,21.42637785
25,30.41303282
64,67.68142149
21,17.0854783
59,60.91792707
19,14.99514319
16,16.74923937
42,41.46923883
43,42.84526108
61,59.12912974
92,91.30863673
11,8.673336357
41,39.31485292
1,5.313686205
8,5.405220518
71,68.5458879
46,47.33487629
55,54.09063686
62,63.29717058
47,52.45946688
================================================
FILE: data/day11/credit.csv
================================================
b,30.83,0,u,g,w,v,1.25,t,t,01,f,g,00202,0,+
a,58.67,4.46,u,g,q,h,3.04,t,t,06,f,g,00043,560,+
a,24.50,0.5,u,g,q,h,1.5,t,f,0,f,g,00280,824,+
b,27.83,1.54,u,g,w,v,3.75,t,t,05,t,g,00100,3,+
b,20.17,5.625,u,g,w,v,1.71,t,f,0,f,s,00120,0,+
b,32.08,4,u,g,m,v,2.5,t,f,0,t,g,00360,0,+
b,33.17,1.04,u,g,r,h,6.5,t,f,0,t,g,00164,31285,+
a,22.92,11.585,u,g,cc,v,0.04,t,f,0,f,g,00080,1349,+
b,54.42,0.5,y,p,k,h,3.96,t,f,0,f,g,00180,314,+
b,42.50,4.915,y,p,w,v,3.165,t,f,0,t,g,00052,1442,+
b,22.08,0.83,u,g,c,h,2.165,f,f,0,t,g,00128,0,+
b,29.92,1.835,u,g,c,h,4.335,t,f,0,f,g,00260,200,+
a,38.25,6,u,g,k,v,1,t,f,0,t,g,00000,0,+
b,48.08,6.04,u,g,k,v,0.04,f,f,0,f,g,00000,2690,+
a,45.83,10.5,u,g,q,v,5,t,t,07,t,g,00000,0,+
b,36.67,4.415,y,p,k,v,0.25,t,t,10,t,g,00320,0,+
b,28.25,0.875,u,g,m,v,0.96,t,t,03,t,g,00396,0,+
a,23.25,5.875,u,g,q,v,3.17,t,t,10,f,g,00120,245,+
b,21.83,0.25,u,g,d,h,0.665,t,f,0,t,g,00000,0,+
a,19.17,8.585,u,g,cc,h,0.75,t,t,07,f,g,00096,0,+
b,25.00,11.25,u,g,c,v,2.5,t,t,17,f,g,00200,1208,+
b,23.25,1,u,g,c,v,0.835,t,f,0,f,s,00300,0,+
a,47.75,8,u,g,c,v,7.875,t,t,06,t,g,00000,1260,+
a,27.42,14.5,u,g,x,h,3.085,t,t,01,f,g,00120,11,+
a,41.17,6.5,u,g,q,v,0.5,t,t,03,t,g,00145,0,+
a,15.83,0.585,u,g,c,h,1.5,t,t,02,f,g,00100,0,+
a,47.00,13,u,g,i,bb,5.165,t,t,09,t,g,00000,0,+
b,56.58,18.5,u,g,d,bb,15,t,t,17,t,g,00000,0,+
b,57.42,8.5,u,g,e,h,7,t,t,03,f,g,00000,0,+
b,42.08,1.04,u,g,w,v,5,t,t,06,t,g,00500,10000,+
b,29.25,14.79,u,g,aa,v,5.04,t,t,05,t,g,00168,0,+
b,42.00,9.79,u,g,x,h,7.96,t,t,08,f,g,00000,0,+
b,49.50,7.585,u,g,i,bb,7.585,t,t,15,t,g,00000,5000,+
a,36.75,5.125,u,g,e,v,5,t,f,0,t,g,00000,4000,+
a,22.58,10.75,u,g,q,v,0.415,t,t,05,t,g,00000,560,+
b,27.83,1.5,u,g,w,v,2,t,t,11,t,g,00434,35,+
b,27.25,1.585,u,g,cc,h,1.835,t,t,12,t,g,00583,713,+
a,23.00,11.75,u,g,x,h,0.5,t,t,02,t,g,00300,551,+
b,27.75,0.585,y,p,cc,v,0.25,t,t,02,f,g,00260,500,+
b,54.58,9.415,u,g,ff,ff,14.415,t,t,11,t,g,00030,300,+
b,34.17,9.17,u,g,c,v,4.5,t,t,12,t,g,00000,221,+
b,28.92,15,u,g,c,h,5.335,t,t,11,f,g,00000,2283,+
b,29.67,1.415,u,g,w,h,0.75,t,t,01,f,g,00240,100,+
b,39.58,13.915,u,g,w,v,8.625,t,t,06,t,g,00070,0,+
b,56.42,28,y,p,c,v,28.5,t,t,40,f,g,00000,15,+
b,54.33,6.75,u,g,c,h,2.625,t,t,11,t,g,00000,284,+
a,41.00,2.04,y,p,q,h,0.125,t,t,23,t,g,00455,1236,+
b,31.92,4.46,u,g,cc,h,6.04,t,t,03,f,g,00311,300,+
b,41.50,1.54,u,g,i,bb,3.5,f,f,0,f,g,00216,0,+
b,23.92,0.665,u,g,c,v,0.165,f,f,0,f,g,00100,0,+
a,25.75,0.5,u,g,c,h,0.875,t,f,0,t,g,00491,0,+
b,26.00,1,u,g,q,v,1.75,t,f,0,t,g,00280,0,+
b,37.42,2.04,u,g,w,v,0.04,t,f,0,t,g,00400,5800,+
b,34.92,2.5,u,g,w,v,0,t,f,0,t,g,00239,200,+
b,34.25,3,u,g,cc,h,7.415,t,f,0,t,g,00000,0,+
b,23.33,11.625,y,p,w,v,0.835,t,f,0,t,g,00160,300,+
b,23.17,0,u,g,cc,v,0.085,t,f,0,f,g,00000,0,+
b,44.33,0.5,u,g,i,h,5,t,f,0,t,g,00320,0,+
b,35.17,4.5,u,g,x,h,5.75,f,f,0,t,s,00711,0,+
b,43.25,3,u,g,q,h,6,t,t,11,f,g,00080,0,+
b,56.75,12.25,u,g,m,v,1.25,t,t,04,t,g,00200,0,+
b,31.67,16.165,u,g,d,v,3,t,t,09,f,g,00250,730,+
a,23.42,0.79,y,p,q,v,1.5,t,t,02,t,g,00080,400,+
a,20.42,0.835,u,g,q,v,1.585,t,t,01,f,g,00000,0,+
b,26.67,4.25,u,g,cc,v,4.29,t,t,01,t,g,00120,0,+
b,34.17,1.54,u,g,cc,v,1.54,t,t,01,t,g,00520,50000,+
a,36.00,1,u,g,c,v,2,t,t,11,f,g,00000,456,+
b,25.50,0.375,u,g,m,v,0.25,t,t,03,f,g,00260,15108,+
b,19.42,6.5,u,g,w,h,1.46,t,t,07,f,g,00080,2954,+
b,35.17,25.125,u,g,x,h,1.625,t,t,01,t,g,00515,500,+
b,32.33,7.5,u,g,e,bb,1.585,t,f,0,t,s,00420,0,-
b,34.83,4,u,g,d,bb,12.5,t,f,0,t,g,?,0,-
a,38.58,5,u,g,cc,v,13.5,t,f,0,t,g,00980,0,-
b,44.25,0.5,u,g,m,v,10.75,t,f,0,f,s,00400,0,-
b,44.83,7,y,p,c,v,1.625,f,f,0,f,g,00160,2,-
b,20.67,5.29,u,g,q,v,0.375,t,t,01,f,g,00160,0,-
b,34.08,6.5,u,g,aa,v,0.125,t,f,0,t,g,00443,0,-
a,19.17,0.585,y,p,aa,v,0.585,t,f,0,t,g,00160,0,-
b,21.67,1.165,y,p,k,v,2.5,t,t,01,f,g,00180,20,-
b,21.50,9.75,u,g,c,v,0.25,t,f,0,f,g,00140,0,-
b,49.58,19,u,g,ff,ff,0,t,t,01,f,g,00094,0,-
a,27.67,1.5,u,g,m,v,2,t,f,0,f,s,00368,0,-
b,39.83,0.5,u,g,m,v,0.25,t,f,0,f,s,00288,0,-
a,?,3.5,u,g,d,v,3,t,f,0,t,g,00300,0,-
b,27.25,0.625,u,g,aa,v,0.455,t,f,0,t,g,00200,0,-
b,37.17,4,u,g,c,bb,5,t,f,0,t,s,00280,0,-
b,?,0.375,u,g,d,v,0.875,t,f,0,t,s,00928,0,-
b,25.67,2.21,y,p,aa,v,4,t,f,0,f,g,00188,0,-
b,34.00,4.5,u,g,aa,v,1,t,f,0,t,g,00240,0,-
a,49.00,1.5,u,g,j,j,0,t,f,0,t,g,00100,27,-
b,62.50,12.75,y,p,c,h,5,t,f,0,f,g,00112,0,-
b,31.42,15.5,u,g,c,v,0.5,t,f,0,f,g,00120,0,-
b,?,5,y,p,aa,v,8.5,t,f,0,f,g,00000,0,-
b,52.33,1.375,y,p,c,h,9.46,t,f,0,t,g,00200,100,-
b,28.75,1.5,y,p,c,v,1.5,t,f,0,t,g,00000,225,-
a,28.58,3.54,u,g,i,bb,0.5,t,f,0,t,g,00171,0,-
b,23.00,0.625,y,p,aa,v,0.125,t,f,0,f,g,00180,1,-
b,?,0.5,u,g,c,bb,0.835,t,f,0,t,s,00320,0,-
a,22.50,11,y,p,q,v,3,t,f,0,t,g,00268,0,-
a,28.50,1,u,g,q,v,1,t,t,02,t,g,00167,500,-
b,37.50,1.75,y,p,c,bb,0.25,t,f,0,t,g,00164,400,-
b,35.25,16.5,y,p,c,v,4,t,f,0,f,g,00080,0,-
b,18.67,5,u,g,q,v,0.375,t,t,02,f,g,00000,38,-
b,25.00,12,u,g,k,v,2.25,t,t,02,t,g,00120,5,-
b,27.83,4,y,p,i,h,5.75,t,t,02,t,g,00075,0,-
b,54.83,15.5,u,g,e,z,0,t,t,20,f,g,00152,130,-
b,28.75,1.165,u,g,k,v,0.5,t,f,0,f,s,00280,0,-
a,25.00,11,y,p,aa,v,4.5,t,f,0,f,g,00120,0,-
b,40.92,2.25,y,p,x,h,10,t,f,0,t,g,00176,0,-
a,19.75,0.75,u,g,c,v,0.795,t,t,05,t,g,00140,5,-
b,29.17,3.5,u,g,w,v,3.5,t,t,03,t,g,00329,0,-
a,24.50,1.04,y,p,ff,ff,0.5,t,t,03,f,g,00180,147,-
b,24.58,12.5,u,g,w,v,0.875,t,f,0,t,g,00260,0,-
a,33.75,0.75,u,g,k,bb,1,t,t,03,t,g,00212,0,-
b,20.67,1.25,y,p,c,h,1.375,t,t,03,t,g,00140,210,-
a,25.42,1.125,u,g,q,v,1.29,t,t,02,f,g,00200,0,-
b,37.75,7,u,g,q,h,11.5,t,t,07,t,g,00300,5,-
b,52.50,6.5,u,g,k,v,6.29,t,t,15,f,g,00000,11202,+
b,57.83,7.04,u,g,m,v,14,t,t,06,t,g,00360,1332,+
a,20.75,10.335,u,g,cc,h,0.335,t,t,01,t,g,00080,50,+
b,39.92,6.21,u,g,q,v,0.04,t,t,01,f,g,00200,300,+
b,25.67,12.5,u,g,cc,v,1.21,t,t,67,t,g,00140,258,+
a,24.75,12.5,u,g,aa,v,1.5,t,t,12,t,g,00120,567,+
a,44.17,6.665,u,g,q,v,7.375,t,t,03,t,g,00000,0,+
a,23.50,9,u,g,q,v,8.5,t,t,05,t,g,00120,0,+
b,34.92,5,u,g,x,h,7.5,t,t,06,t,g,00000,1000,+
b,47.67,2.5,u,g,m,bb,2.5,t,t,12,t,g,00410,2510,+
b,22.75,11,u,g,q,v,2.5,t,t,07,t,g,00100,809,+
b,34.42,4.25,u,g,i,bb,3.25,t,t,02,f,g,00274,610,+
a,28.42,3.5,u,g,w,v,0.835,t,f,0,f,s,00280,0,+
b,67.75,5.5,u,g,e,z,13,t,t,01,t,g,00000,0,+
b,20.42,1.835,u,g,c,v,2.25,t,t,01,f,g,00100,150,+
a,47.42,8,u,g,e,bb,6.5,t,t,06,f,g,00375,51100,+
b,36.25,5,u,g,c,bb,2.5,t,t,06,f,g,00000,367,+
b,32.67,5.5,u,g,q,h,5.5,t,t,12,t,g,00408,1000,+
b,48.58,6.5,u,g,q,h,6,t,f,0,t,g,00350,0,+
b,39.92,0.54,y,p,aa,v,0.5,t,t,03,f,g,00200,1000,+
b,33.58,2.75,u,g,m,v,4.25,t,t,06,f,g,00204,0,+
a,18.83,9.5,u,g,w,v,1.625,t,t,06,t,g,00040,600,+
a,26.92,13.5,u,g,q,h,5,t,t,02,f,g,00000,5000,+
a,31.25,3.75,u,g,cc,h,0.625,t,t,09,t,g,00181,0,+
a,56.50,16,u,g,j,ff,0,t,t,15,f,g,00000,247,+
b,43.00,0.29,y,p,cc,h,1.75,t,t,08,f,g,00100,375,+
b,22.33,11,u,g,w,v,2,t,t,01,f,g,00080,278,+
b,27.25,1.665,u,g,cc,h,5.085,t,t,09,f,g,00399,827,+
b,32.83,2.5,u,g,cc,h,2.75,t,t,06,f,g,00160,2072,+
b,23.25,1.5,u,g,q,v,2.375,t,t,03,t,g,00000,582,+
a,40.33,7.54,y,p,q,h,8,t,t,14,f,g,00000,2300,+
a,30.50,6.5,u,g,c,bb,4,t,t,07,t,g,00000,3065,+
a,52.83,15,u,g,c,v,5.5,t,t,14,f,g,00000,2200,+
a,46.67,0.46,u,g,cc,h,0.415,t,t,11,t,g,00440,6,+
a,58.33,10,u,g,q,v,4,t,t,14,f,g,00000,1602,+
b,37.33,6.5,u,g,m,h,4.25,t,t,12,t,g,00093,0,+
b,23.08,2.5,u,g,c,v,1.085,t,t,11,t,g,00060,2184,+
b,32.75,1.5,u,g,cc,h,5.5,t,t,03,t,g,00000,0,+
a,21.67,11.5,y,p,j,j,0,t,t,11,t,g,00000,0,+
a,28.50,3.04,y,p,x,h,2.54,t,t,01,f,g,00070,0,+
a,68.67,15,u,g,e,z,0,t,t,14,f,g,00000,3376,+
b,28.00,2,u,g,k,h,4.165,t,t,02,t,g,00181,0,+
b,34.08,0.08,y,p,m,bb,0.04,t,t,01,t,g,00280,2000,+
b,27.67,2,u,g,x,h,1,t,t,04,f,g,00140,7544,+
b,44.00,2,u,g,m,v,1.75,t,t,02,t,g,00000,15,+
b,25.08,1.71,u,g,x,v,1.665,t,t,01,t,g,00395,20,+
b,32.00,1.75,y,p,e,h,0.04,t,f,0,t,g,00393,0,+
a,60.58,16.5,u,g,q,v,11,t,f,0,t,g,00021,10561,+
a,40.83,10,u,g,q,h,1.75,t,f,0,f,g,00029,837,+
b,19.33,9.5,u,g,q,v,1,t,f,0,t,g,00060,400,+
a,32.33,0.54,u,g,cc,v,0.04,t,f,0,f,g,00440,11177,+
b,36.67,3.25,u,g,q,h,9,t,f,0,t,g,00102,639,+
b,37.50,1.125,y,p,d,v,1.5,f,f,0,t,g,00431,0,+
a,25.08,2.54,y,p,aa,v,0.25,t,f,0,t,g,00370,0,+
b,41.33,0,u,g,c,bb,15,t,f,0,f,g,00000,0,+
b,56.00,12.5,u,g,k,h,8,t,f,0,t,g,00024,2028,+
a,49.83,13.585,u,g,k,h,8.5,t,f,0,t,g,00000,0,+
b,22.67,10.5,u,g,q,h,1.335,t,f,0,f,g,00100,0,+
b,27.00,1.5,y,p,w,v,0.375,t,f,0,t,g,00260,1065,+
b,25.00,12.5,u,g,aa,v,3,t,f,0,t,s,00020,0,+
a,26.08,8.665,u,g,aa,v,1.415,t,f,0,f,g,00160,150,+
a,18.42,9.25,u,g,q,v,1.21,t,t,04,f,g,00060,540,+
b,20.17,8.17,u,g,aa,v,1.96,t,t,14,f,g,00060,158,+
b,47.67,0.29,u,g,c,bb,15,t,t,20,f,g,00000,15000,+
a,21.25,2.335,u,g,i,bb,0.5,t,t,04,f,s,00080,0,+
a,20.67,3,u,g,q,v,0.165,t,t,03,f,g,00100,6,+
a,57.08,19.5,u,g,c,v,5.5,t,t,07,f,g,00000,3000,+
a,22.42,5.665,u,g,q,v,2.585,t,t,07,f,g,00129,3257,+
b,48.75,8.5,u,g,c,h,12.5,t,t,09,f,g,00181,1655,+
b,40.00,6.5,u,g,aa,bb,3.5,t,t,01,f,g,00000,500,+
b,40.58,5,u,g,c,v,5,t,t,07,f,g,00000,3065,+
a,28.67,1.04,u,g,c,v,2.5,t,t,05,t,g,00300,1430,+
a,33.08,4.625,u,g,q,h,1.625,t,t,02,f,g,00000,0,+
b,21.33,10.5,u,g,c,v,3,t,f,0,t,g,00000,0,+
b,42.00,0.205,u,g,i,h,5.125,t,f,0,f,g,00400,0,+
b,41.75,0.96,u,g,x,v,2.5,t,f,0,f,g,00510,600,+
b,22.67,1.585,y,p,w,v,3.085,t,t,06,f,g,00080,0,+
b,34.50,4.04,y,p,i,bb,8.5,t,t,07,t,g,00195,0,+
b,28.25,5.04,y,p,c,bb,1.5,t,t,08,t,g,00144,7,+
b,33.17,3.165,y,p,x,v,3.165,t,t,03,t,g,00380,0,+
b,48.17,7.625,u,g,w,h,15.5,t,t,12,f,g,00000,790,+
b,27.58,2.04,y,p,aa,v,2,t,t,03,t,g,00370,560,+
b,22.58,10.04,u,g,x,v,0.04,t,t,09,f,g,00060,396,+
a,24.08,0.5,u,g,q,h,1.25,t,t,01,f,g,00000,678,+
a,41.33,1,u,g,i,bb,2.25,t,f,0,t,g,00000,300,+
b,24.83,2.75,u,g,c,v,2.25,t,t,06,f,g,?,600,+
a,20.75,10.25,u,g,q,v,0.71,t,t,02,t,g,00049,0,+
b,36.33,2.125,y,p,w,v,0.085,t,t,01,f,g,00050,1187,+
a,35.42,12,u,g,q,h,14,t,t,08,f,g,00000,6590,+
a,71.58,0,?,?,?,?,0,f,f,0,f,p,?,0,+
b,28.67,9.335,u,g,q,h,5.665,t,t,06,f,g,00381,168,+
b,35.17,2.5,u,g,k,v,4.5,t,t,07,f,g,00150,1270,+
b,39.50,4.25,u,g,c,bb,6.5,t,t,16,f,g,00117,1210,+
b,39.33,5.875,u,g,cc,h,10,t,t,14,t,g,00399,0,+
b,24.33,6.625,y,p,d,v,5.5,t,f,0,t,s,00100,0,+
b,60.08,14.5,u,g,ff,ff,18,t,t,15,t,g,00000,1000,+
b,23.08,11.5,u,g,i,v,3.5,t,t,09,f,g,00056,742,+
b,26.67,2.71,y,p,cc,v,5.25,t,t,01,f,g,00211,0,+
b,48.17,3.5,u,g,aa,v,3.5,t,f,0,f,s,00230,0,+
b,41.17,4.04,u,g,cc,h,7,t,t,08,f,g,00320,0,+
b,55.92,11.5,u,g,ff,ff,5,t,t,05,f,g,00000,8851,+
b,53.92,9.625,u,g,e,v,8.665,t,t,05,f,g,00000,0,+
a,18.92,9.25,y,p,c,v,1,t,t,04,t,g,00080,500,+
a,50.08,12.54,u,g,aa,v,2.29,t,t,03,t,g,00156,0,+
b,65.42,11,u,g,e,z,20,t,t,07,t,g,00022,0,+
a,17.58,9,u,g,aa,v,1.375,t,f,0,t,g,00000,0,+
a,18.83,9.54,u,g,aa,v,0.085,t,f,0,f,g,00100,0,+
a,37.75,5.5,u,g,q,v,0.125,t,f,0,t,g,00228,0,+
b,23.25,4,u,g,c,bb,0.25,t,f,0,t,g,00160,0,+
b,18.08,5.5,u,g,k,v,0.5,t,f,0,f,g,00080,0,+
a,22.50,8.46,y,p,x,v,2.46,f,f,0,f,g,00164,0,+
b,19.67,0.375,u,g,q,v,2,t,t,02,t,g,00080,0,+
b,22.08,11,u,g,cc,v,0.665,t,f,0,f,g,00100,0,+
b,25.17,3.5,u,g,cc,v,0.625,t,t,07,f,g,00000,7059,+
a,47.42,3,u,g,x,v,13.875,t,t,02,t,g,00519,1704,+
b,33.50,1.75,u,g,x,h,4.5,t,t,04,t,g,00253,857,+
b,27.67,13.75,u,g,w,v,5.75,t,f,0,t,g,00487,500,+
a,58.42,21,u,g,i,bb,10,t,t,13,f,g,00000,6700,+
a,20.67,1.835,u,g,q,v,2.085,t,t,05,f,g,00220,2503,+
b,26.17,0.25,u,g,i,bb,0,t,f,0,t,g,00000,0,+
b,21.33,7.5,u,g,aa,v,1.415,t,t,01,f,g,00080,9800,+
b,42.83,4.625,u,g,q,v,4.58,t,f,0,f,s,00000,0,+
b,38.17,10.125,u,g,x,v,2.5,t,t,06,f,g,00520,196,+
b,20.50,10,y,p,c,v,2.5,t,f,0,f,s,00040,0,+
b,48.25,25.085,u,g,w,v,1.75,t,t,03,f,g,00120,14,+
b,28.33,5,u,g,w,v,11,t,f,0,t,g,00070,0,+
a,18.75,7.5,u,g,q,v,2.71,t,t,05,f,g,?,26726,+
b,18.50,2,u,g,i,v,1.5,t,t,02,f,g,00120,300,+
b,33.17,3.04,y,p,c,h,2.04,t,t,01,t,g,00180,18027,+
b,45.00,8.5,u,g,cc,h,14,t,t,01,t,g,00088,2000,+
a,19.67,0.21,u,g,q,h,0.29,t,t,11,f,g,00080,99,+
?,24.50,12.75,u,g,c,bb,4.75,t,t,02,f,g,00073,444,+
b,21.83,11,u,g,x,v,0.29,t,t,06,f,g,00121,0,+
b,40.25,21.5,u,g,e,z,20,t,t,11,f,g,00000,1200,+
b,41.42,5,u,g,q,h,5,t,t,06,t,g,00470,0,+
a,17.83,11,u,g,x,h,1,t,t,11,f,g,00000,3000,+
b,23.17,11.125,u,g,x,h,0.46,t,t,01,f,g,00100,0,+
b,?,0.625,u,g,k,v,0.25,f,f,0,f,g,00380,2010,-
b,18.17,10.25,u,g,c,h,1.085,f,f,0,f,g,00320,13,-
b,20.00,11.045,u,g,c,v,2,f,f,0,t,g,00136,0,-
b,20.00,0,u,g,d,v,0.5,f,f,0,f,g,00144,0,-
a,20.75,9.54,u,g,i,v,0.04,f,f,0,f,g,00200,1000,-
a,24.50,1.75,y,p,c,v,0.165,f,f,0,f,g,00132,0,-
b,32.75,2.335,u,g,d,h,5.75,f,f,0,t,g,00292,0,-
a,52.17,0,y,p,ff,ff,0,f,f,0,f,g,00000,0,-
a,48.17,1.335,u,g,i,o,0.335,f,f,0,f,g,00000,120,-
a,20.42,10.5,y,p,x,h,0,f,f,0,t,g,00154,32,-
b,50.75,0.585,u,g,ff,ff,0,f,f,0,f,g,00145,0,-
b,17.08,0.085,y,p,c,v,0.04,f,f,0,f,g,00140,722,-
b,18.33,1.21,y,p,e,dd,0,f,f,0,f,g,00100,0,-
a,32.00,6,u,g,d,v,1.25,f,f,0,f,g,00272,0,-
b,59.67,1.54,u,g,q,v,0.125,t,f,0,t,g,00260,0,+
b,18.00,0.165,u,g,q,n,0.21,f,f,0,f,g,00200,40,+
b,37.58,0,?,?,?,?,0,f,f,0,f,p,?,0,+
b,32.33,2.5,u,g,c,v,1.25,f,f,0,t,g,00280,0,-
b,18.08,6.75,y,p,m,v,0.04,f,f,0,f,g,00140,0,-
b,38.25,10.125,y,p,k,v,0.125,f,f,0,f,g,00160,0,-
b,30.67,2.5,u,g,cc,h,2.25,f,f,0,t,s,00340,0,-
b,18.58,5.71,u,g,d,v,0.54,f,f,0,f,g,00120,0,-
a,19.17,5.415,u,g,i,h,0.29,f,f,0,f,g,00080,484,-
a,18.17,10,y,p,q,h,0.165,f,f,0,f,g,00340,0,-
b,24.58,13.5,y,p,ff,ff,0,f,f,0,f,g,?,0,-
b,16.25,0.835,u,g,m,v,0.085,t,f,0,f,s,00200,0,-
b,21.17,0.875,y,p,c,h,0.25,f,f,0,f,g,00280,204,-
b,23.92,0.585,y,p,cc,h,0.125,f,f,0,f,g,00240,1,-
b,17.67,4.46,u,g,c,v,0.25,f,f,0,f,s,00080,0,-
a,16.50,1.25,u,g,q,v,0.25,f,t,01,f,g,00108,98,-
b,23.25,12.625,u,g,c,v,0.125,f,t,02,f,g,00000,5552,-
b,17.58,10,u,g,w,h,0.165,f,t,01,f,g,00120,1,-
a,?,1.5,u,g,ff,ff,0,f,t,02,t,g,00200,105,-
b,29.50,0.58,u,g,w,v,0.29,f,t,01,f,g,00340,2803,-
b,18.83,0.415,y,p,c,v,0.165,f,t,01,f,g,00200,1,-
a,21.75,1.75,y,p,j,j,0,f,f,0,f,g,00160,0,-
b,23.00,0.75,u,g,m,v,0.5,f,f,0,t,s,00320,0,-
a,18.25,10,u,g,w,v,1,f,t,01,f,g,00120,1,-
b,25.42,0.54,u,g,w,v,0.165,f,t,01,f,g,00272,444,-
b,35.75,2.415,u,g,w,v,0.125,f,t,02,f,g,00220,1,-
a,16.08,0.335,u,g,ff,ff,0,f,t,01,f,g,00160,126,-
a,31.92,3.125,u,g,ff,ff,3.04,f,t,02,t,g,00200,4,-
b,69.17,9,u,g,ff,ff,4,f,t,01,f,g,00070,6,-
b,32.92,2.5,u,g,aa,v,1.75,f,t,02,t,g,00720,0,-
b,16.33,2.75,u,g,aa,v,0.665,f,t,01,f,g,00080,21,-
b,22.17,12.125,u,g,c,v,3.335,f,t,02,t,g,00180,173,-
a,57.58,2,u,g,ff,ff,6.5,f,t,01,f,g,00000,10,-
b,18.25,0.165,u,g,d,v,0.25,f,f,0,t,s,00280,0,-
b,23.42,1,u,g,c,v,0.5,f,f,0,t,s,00280,0,-
a,15.92,2.875,u,g,q,v,0.085,f,f,0,f,g,00120,0,-
a,24.75,13.665,u,g,q,h,1.5,f,f,0,f,g,00280,1,-
b,48.75,26.335,y,p,ff,ff,0,t,f,0,t,g,00000,0,-
b,23.50,2.75,u,g,ff,ff,4.5,f,f,0,f,g,00160,25,-
b,18.58,10.29,u,g,ff,ff,0.415,f,f,0,f,g,00080,0,-
b,27.75,1.29,u,g,k,h,0.25,f,f,0,t,s,00140,0,-
a,31.75,3,y,p,j,j,0,f,f,0,f,g,00160,20,-
a,24.83,4.5,u,g,w,v,1,f,f,0,t,g,00360,6,-
b,19.00,1.75,y,p,c,v,2.335,f,f,0,t,g,00112,6,-
a,16.33,0.21,u,g,aa,v,0.125,f,f,0,f,g,00200,1,-
a,18.58,10,u,g,d,v,0.415,f,f,0,f,g,00080,42,-
b,16.25,0,y,p,aa,v,0.25,f,f,0,f,g,00060,0,-
b,23.00,0.75,u,g,m,v,0.5,t,f,0,t,s,00320,0,-
b,21.17,0.25,y,p,c,h,0.25,f,f,0,f,g,00280,204,-
b,17.50,22,l,gg,ff,o,0,f,f,0,t,p,00450,100000,+
b,19.17,0,y,p,m,bb,0,f,f,0,t,s,00500,1,+
b,36.75,0.125,y,p,c,v,1.5,f,f,0,t,g,00232,113,+
b,21.25,1.5,u,g,w,v,1.5,f,f,0,f,g,00150,8,+
a,18.08,0.375,l,gg,cc,ff,10,f,f,0,t,s,00300,0,+
a,33.67,0.375,u,g,cc,v,0.375,f,f,0,f,g,00300,44,+
b,48.58,0.205,y,p,k,v,0.25,t,t,11,f,g,00380,2732,+
b,33.67,1.25,u,g,w,v,1.165,f,f,0,f,g,00120,0,-
a,29.50,1.085,y,p,x,v,1,f,f,0,f,g,00280,13,-
b,30.17,1.085,y,p,c,v,0.04,f,f,0,f,g,00170,179,-
?,40.83,3.5,u,g,i,bb,0.5,f,f,0,f,s,01160,0,-
b,34.83,2.5,y,p,w,v,3,f,f,0,f,s,00200,0,-
b,?,4,y,p,i,v,0.085,f,f,0,t,g,00411,0,-
b,20.42,0,?,?,?,?,0,f,f,0,f,p,?,0,-
a,33.25,2.5,y,p,c,v,2.5,f,f,0,t,g,00000,2,-
b,34.08,2.5,u,g,c,v,1,f,f,0,f,g,00460,16,-
a,25.25,12.5,u,g,d,v,1,f,f,0,t,g,00180,1062,-
b,34.75,2.5,u,g,cc,bb,0.5,f,f,0,f,g,00348,0,-
b,27.67,0.75,u,g,q,h,0.165,f,f,0,t,g,00220,251,-
b,47.33,6.5,u,g,c,v,1,f,f,0,t,g,00000,228,-
a,34.83,1.25,y,p,i,h,0.5,f,f,0,t,g,00160,0,-
a,33.25,3,y,p,aa,v,2,f,f,0,f,g,00180,0,-
b,28.00,3,u,g,w,v,0.75,f,f,0,t,g,00300,67,-
a,39.08,4,u,g,c,v,3,f,f,0,f,g,00480,0,-
b,42.75,4.085,u,g,aa,v,0.04,f,f,0,f,g,00108,100,-
b,26.92,2.25,u,g,i,bb,0.5,f,f,0,t,g,00640,4000,-
b,33.75,2.75,u,g,i,bb,0,f,f,0,f,g,00180,0,-
b,38.92,1.75,u,g,k,v,0.5,f,f,0,t,g,00300,2,-
b,62.75,7,u,g,e,z,0,f,f,0,f,g,00000,12,-
?,32.25,1.5,u,g,c,v,0.25,f,f,0,t,g,00372,122,-
b,26.75,4.5,y,p,c,bb,2.5,f,f,0,f,g,00200,1210,-
b,63.33,0.54,u,g,c,v,0.585,t,t,03,t,g,00180,0,-
b,27.83,1.5,u,g,w,v,2.25,f,t,01,t,g,00100,3,-
a,26.17,2,u,g,j,j,0,f,f,0,t,g,00276,1,-
b,22.17,0.585,y,p,ff,ff,0,f,f,0,f,g,00100,0,-
b,22.50,11.5,y,p,m,v,1.5,f,f,0,t,g,00000,4000,-
b,30.75,1.585,u,g,d,v,0.585,f,f,0,t,s,00000,0,-
b,36.67,2,u,g,i,v,0.25,f,f,0,t,g,00221,0,-
a,16.00,0.165,u,g,aa,v,1,f,t,02,t,g,00320,1,-
b,41.17,1.335,u,g,d,v,0.165,f,f,0,f,g,00168,0,-
a,19.50,0.165,u,g,q,v,0.04,f,f,0,t,g,00380,0,-
b,32.42,3,u,g,d,v,0.165,f,f,0,t,g,00120,0,-
a,36.75,4.71,u,g,ff,ff,0,f,f,0,f,g,00160,0,-
a,30.25,5.5,u,g,k,v,5.5,f,f,0,t,s,00100,0,-
b,23.08,2.5,u,g,ff,ff,0.085,f,f,0,t,g,00100,4208,-
b,26.83,0.54,u,g,k,ff,0,f,f,0,f,g,00100,0,-
b,16.92,0.335,y,p,k,v,0.29,f,f,0,f,s,00200,0,-
b,24.42,2,u,g,e,dd,0.165,f,t,02,f,g,00320,1300,-
b,42.83,1.25,u,g,m,v,13.875,f,t,01,t,g,00352,112,-
a,22.75,6.165,u,g,aa,v,0.165,f,f,0,f,g,00220,1000,-
b,39.42,1.71,y,p,m,v,0.165,f,f,0,f,s,00400,0,-
a,23.58,11.5,y,p,k,h,3,f,f,0,t,g,00020,16,-
b,21.42,0.75,y,p,r,n,0.75,f,f,0,t,g,00132,2,-
b,33.00,2.5,y,p,w,v,7,f,f,0,t,g,00280,0,-
b,26.33,13,u,g,e,dd,0,f,f,0,t,g,00140,1110,-
a,45.00,4.585,u,g,k,h,1,f,f,0,t,s,00240,0,-
b,26.25,1.54,u,g,w,v,0.125,f,f,0,f,g,00100,0,-
?,28.17,0.585,u,g,aa,v,0.04,f,f,0,f,g,00260,1004,-
a,20.83,0.5,y,p,e,dd,1,f,f,0,f,g,00260,0,-
b,28.67,14.5,u,g,d,v,0.125,f,f,0,f,g,00000,286,-
b,20.67,0.835,y,p,c,v,2,f,f,0,t,s,00240,0,-
b,34.42,1.335,u,g,i,bb,0.125,f,f,0,t,g,00440,4500,-
b,33.58,0.25,u,g,i,bb,4,f,f,0,t,s,00420,0,-
b,43.17,5,u,g,i,bb,2.25,f,f,0,t,g,00141,0,-
a,22.67,7,u,g,c,v,0.165,f,f,0,f,g,00160,0,-
a,24.33,2.5,y,p,i,bb,4.5,f,f,0,f,g,00200,456,-
a,56.83,4.25,y,p,ff,ff,5,f,f,0,t,g,00000,4,-
b,22.08,11.46,u,g,k,v,1.585,f,f,0,t,g,00100,1212,-
b,34.00,5.5,y,p,c,v,1.5,f,f,0,t,g,00060,0,-
b,22.58,1.5,y,p,aa,v,0.54,f,f,0,t,g,00120,67,-
b,21.17,0,u,g,c,v,0.5,f,f,0,t,s,00000,0,-
b,26.67,14.585,u,g,i,bb,0,f,f,0,t,g,00178,0,-
b,22.92,0.17,u,g,m,v,0.085,f,f,0,f,s,00000,0,-
b,15.17,7,u,g,e,v,1,f,f,0,f,g,00600,0,-
b,39.92,5,u,g,i,bb,0.21,f,f,0,f,g,00550,0,-
b,27.42,12.5,u,g,aa,bb,0.25,f,f,0,t,g,00720,0,-
b,24.75,0.54,u,g,m,v,1,f,f,0,t,g,00120,1,-
b,41.17,1.25,y,p,w,v,0.25,f,f,0,f,g,00000,195,-
a,33.08,1.625,u,g,d,v,0.54,f,f,0,t,g,00000,0,-
b,29.83,2.04,y,p,x,h,0.04,f,f,0,f,g,00128,1,-
a,23.58,0.585,y,p,ff,ff,0.125,f,f,0,f,g,00120,87,-
b,26.17,12.5,y,p,k,h,1.25,f,f,0,t,g,00000,17,-
b,31.00,2.085,u,g,c,v,0.085,f,f,0,f,g,00300,0,-
b,20.75,5.085,y,p,j,v,0.29,f,f,0,f,g,00140,184,-
b,28.92,0.375,u,g,c,v,0.29,f,f,0,f,g,00220,140,-
a,51.92,6.5,u,g,i,bb,3.085,f,f,0,t,g,00073,0,-
a,22.67,0.335,u,g,q,v,0.75,f,f,0,f,s,00160,0,-
b,34.00,5.085,y,p,i,bb,1.085,f,f,0,t,g,00480,0,-
a,69.50,6,u,g,ff,ff,0,f,f,0,f,s,00000,0,-
a,40.33,8.125,y,p,k,v,0.165,f,t,02,f,g,?,18,-
a,19.58,0.665,y,p,c,v,1,f,t,01,f,g,02000,2,-
b,16.00,3.125,u,g,w,v,0.085,f,t,01,f,g,00000,6,-
b,17.08,0.25,u,g,q,v,0.335,f,t,04,f,g,00160,8,-
b,31.25,2.835,u,g,ff,ff,0,f,t,05,f,g,00176,146,-
b,25.17,3,u,g,c,v,1.25,f,t,01,f,g,00000,22,-
a,22.67,0.79,u,g,i,v,0.085,f,f,0,f,g,00144,0,-
b,40.58,1.5,u,g,i,bb,0,f,f,0,f,s,00300,0,-
b,22.25,0.46,u,g,k,v,0.125,f,f,0,t,g,00280,55,-
a,22.25,1.25,y,p,ff,ff,3.25,f,f,0,f,g,00280,0,-
b,22.50,0.125,y,p,k,v,0.125,f,f,0,f,g,00200,70,-
b,23.58,1.79,u,g,c,v,0.54,f,f,0,t,g,00136,1,-
b,38.42,0.705,u,g,c,v,0.375,f,t,02,f,g,00225,500,-
a,26.58,2.54,y,p,ff,ff,0,f,f,0,t,g,00180,60,-
b,35.00,2.5,u,g,i,v,1,f,f,0,t,g,00210,0,-
b,20.42,1.085,u,g,q,v,1.5,f,f,0,f,g,00108,7,-
b,29.42,1.25,u,g,w,v,1.75,f,f,0,f,g,00200,0,-
b,26.17,0.835,u,g,cc,v,1.165,f,f,0,f,g,00100,0,-
b,33.67,2.165,u,g,c,v,1.5,f,f,0,f,p,00120,0,-
b,24.58,1.25,u,g,c,v,0.25,f,f,0,f,g,00110,0,-
a,27.67,2.04,u,g,w,v,0.25,f,f,0,t,g,00180,50,-
b,37.50,0.835,u,g,e,v,0.04,f,f,0,f,g,00120,5,-
b,49.17,2.29,u,g,ff,ff,0.29,f,f,0,f,g,00200,3,-
b,33.58,0.335,y,p,cc,v,0.085,f,f,0,f,g,00180,0,-
b,51.83,3,y,p,ff,ff,1.5,f,f,0,f,g,00180,4,-
b,22.92,3.165,y,p,c,v,0.165,f,f,0,f,g,00160,1058,-
b,21.83,1.54,u,g,k,v,0.085,f,f,0,t,g,00356,0,-
b,25.25,1,u,g,aa,v,0.5,f,f,0,f,g,00200,0,-
b,58.58,2.71,u,g,c,v,2.415,f,f,0,t,g,00320,0,-
b,19.00,0,y,p,ff,ff,0,f,t,04,f,g,00045,1,-
b,19.58,0.585,u,g,ff,ff,0,f,t,03,f,g,00350,769,-
a,53.33,0.165,u,g,ff,ff,0,f,f,0,t,s,00062,27,-
a,27.17,1.25,u,g,ff,ff,0,f,t,01,f,g,00092,300,-
b,25.92,0.875,u,g,k,v,0.375,f,t,02,t,g,00174,3,-
b,23.08,0,u,g,k,v,1,f,t,11,f,s,00000,0,-
b,39.58,5,u,g,ff,ff,0,f,t,02,f,g,00017,1,-
b,30.58,2.71,y,p,m,v,0.125,f,f,0,t,s,00080,0,-
b,17.25,3,u,g,k,v,0.04,f,f,0,t,g,00160,40,-
a,17.67,0,y,p,j,ff,0,f,f,0,f,g,00086,0,-
a,?,11.25,u,g,ff,ff,0,f,f,0,f,g,?,5200,-
b,16.50,0.125,u,g,c,v,0.165,f,f,0,f,g,00132,0,-
a,27.33,1.665,u,g,ff,ff,0,f,f,0,f,g,00340,1,-
b,31.25,1.125,u,g,ff,ff,0,f,t,01,f,g,00096,19,-
b,20.00,7,u,g,c,v,0.5,f,f,0,f,g,00000,0,-
b,?,3,y,p,i,bb,7,f,f,0,f,g,00000,1,-
b,39.50,1.625,u,g,c,v,1.5,f,f,0,f,g,00000,316,-
b,36.50,4.25,u,g,q,v,3.5,f,f,0,f,g,00454,50,-
?,29.75,0.665,u,g,w,v,0.25,f,f,0,t,g,00300,0,-
b,52.42,1.5,u,g,d,v,3.75,f,f,0,t,g,00000,350,-
b,36.17,18.125,u,g,w,v,0.085,f,f,0,f,g,00320,3552,-
b,34.58,0,?,?,?,?,0,f,f,0,f,p,?,0,-
b,29.67,0.75,y,p,c,v,0.04,f,f,0,f,g,00240,0,-
b,36.17,5.5,u,g,i,bb,5,f,f,0,f,g,00210,687,-
b,25.67,0.29,y,p,c,v,1.5,f,f,0,t,g,00160,0,-
a,24.50,2.415,y,p,c,v,0,f,f,0,f,g,00120,0,-
b,24.08,0.875,u,g,m,v,0.085,f,t,04,f,g,00254,1950,-
b,21.92,0.5,u,g,c,v,0.125,f,f,0,f,g,00360,0,-
a,36.58,0.29,u,g,ff,ff,0,f,t,10,f,g,00200,18,-
a,23.00,1.835,u,g,j,j,0,f,t,01,f,g,00200,53,-
a,27.58,3,u,g,m,v,2.79,f,t,01,t,g,00280,10,-
b,31.08,3.085,u,g,c,v,2.5,f,t,02,t,g,00160,41,-
a,30.42,1.375,u,g,w,h,0.04,f,t,03,f,g,00000,33,-
b,22.08,2.335,u,g,k,v,0.75,f,f,0,f,g,00180,0,-
b,16.33,4.085,u,g,i,h,0.415,f,f,0,t,g,00120,0,-
a,21.92,11.665,u,g,k,h,0.085,f,f,0,f,g,00320,5,-
b,21.08,4.125,y,p,i,h,0.04,f,f,0,f,g,00140,100,-
b,17.42,6.5,u,g,i,v,0.125,f,f,0,f,g,00060,100,-
b,19.17,4,y,p,i,v,1,f,f,0,t,g,00360,1000,-
b,20.67,0.415,u,g,c,v,0.125,f,f,0,f,g,00000,44,-
b,26.75,2,u,g,d,v,0.75,f,f,0,t,g,00080,0,-
b,23.58,0.835,u,g,i,h,0.085,f,f,0,t,g,00220,5,-
b,39.17,2.5,y,p,i,h,10,f,f,0,t,s,00200,0,-
b,22.75,11.5,u,g,i,v,0.415,f,f,0,f,g,00000,0,-
?,26.50,2.71,y,p,?,?,0.085,f,f,0,f,s,00080,0,-
a,16.92,0.5,u,g,i,v,0.165,f,t,06,t,g,00240,35,-
b,23.50,3.165,y,p,k,v,0.415,f,t,01,t,g,00280,80,-
a,17.33,9.5,u,g,aa,v,1.75,f,t,10,t,g,00000,10,-
b,23.75,0.415,y,p,c,v,0.04,f,t,02,f,g,00128,6,-
b,34.67,1.08,u,g,m,v,1.165,f,f,0,f,s,00028,0,-
b,74.83,19,y,p,ff,ff,0.04,f,t,02,f,g,00000,351,-
b,28.17,0.125,y,p,k,v,0.085,f,f,0,f,g,00216,2100,-
b,24.50,13.335,y,p,aa,v,0.04,f,f,0,t,g,00120,475,-
b,18.83,3.54,y,p,ff,ff,0,f,f,0,t,g,00180,1,-
?,45.33,1,u,g,q,v,0.125,f,f,0,t,g,00263,0,-
a,47.25,0.75,u,g,q,h,2.75,t,t,01,f,g,00333,892,+
b,24.17,0.875,u,g,q,v,4.625,t,t,02,t,g,00520,2000,+
b,39.25,9.5,u,g,m,v,6.5,t,t,14,f,g,00240,4607,+
a,20.50,11.835,u,g,c,h,6,t,f,0,f,g,00340,0,+
a,18.83,4.415,y,p,c,h,3,t,f,0,f,g,00240,0,+
b,19.17,9.5,u,g,w,v,1.5,t,f,0,f,g,00120,2206,+
a,25.00,0.875,u,g,x,h,1.04,t,f,0,t,g,00160,5860,+
b,20.17,9.25,u,g,c,v,1.665,t,t,03,t,g,00040,28,+
b,25.75,0.5,u,g,c,v,1.46,t,t,05,t,g,00312,0,+
b,20.42,7,u,g,c,v,1.625,t,t,03,f,g,00200,1391,+
b,?,4,u,g,x,v,5,t,t,03,t,g,00290,2279,+
b,39.00,5,u,g,cc,v,3.5,t,t,10,t,g,00000,0,+
a,64.08,0.165,u,g,ff,ff,0,t,t,01,f,g,00232,100,+
b,28.25,5.125,u,g,x,v,4.75,t,t,02,f,g,00420,7,+
a,28.75,3.75,u,g,c,v,1.085,t,t,01,t,g,00371,0,+
b,31.33,19.5,u,g,c,v,7,t,t,16,f,g,00000,5000,+
a,18.92,9,u,g,aa,v,0.75,t,t,02,f,g,00088,591,+
a,24.75,3,u,g,q,h,1.835,t,t,19,f,g,00000,500,+
a,30.67,12,u,g,c,v,2,t,t,01,f,g,00220,19,+
b,21.00,4.79,y,p,w,v,2.25,t,t,01,t,g,00080,300,+
b,13.75,4,y,p,w,v,1.75,t,t,02,t,g,00120,1000,+
a,46.00,4,u,g,j,j,0,t,f,0,f,g,00100,960,+
a,44.33,0,u,g,c,v,2.5,t,f,0,f,g,00000,0,+
b,20.25,9.96,u,g,e,dd,0,t,f,0,f,g,00000,0,+
b,22.67,2.54,y,p,c,h,2.585,t,f,0,f,g,00000,0,+
b,?,10.5,u,g,x,v,6.5,t,f,0,f,g,00000,0,+
a,60.92,5,u,g,aa,v,4,t,t,04,f,g,00000,99,+
b,16.08,0.75,u,g,c,v,1.75,t,t,05,t,g,00352,690,+
a,28.17,0.375,u,g,q,v,0.585,t,t,04,f,g,00080,0,+
b,39.17,1.71,u,g,x,v,0.125,t,t,05,t,g,00480,0,+
?,20.42,7.5,u,g,k,v,1.5,t,t,01,f,g,00160,234,+
a,30.00,5.29,u,g,e,dd,2.25,t,t,05,t,g,00099,500,+
b,22.83,3,u,g,m,v,1.29,t,t,01,f,g,00260,800,+
a,22.50,8.5,u,g,q,v,1.75,t,t,10,f,g,00080,990,-
a,28.58,1.665,u,g,q,v,2.415,t,f,0,t,g,00440,0,-
b,45.17,1.5,u,g,c,v,2.5,t,f,0,t,g,00140,0,-
b,41.58,1.75,u,g,k,v,0.21,t,f,0,f,g,00160,0,-
a,57.08,0.335,u,g,i,bb,1,t,f,0,t,g,00252,2197,-
a,55.75,7.08,u,g,k,h,6.75,t,t,03,t,g,00100,50,-
b,43.25,25.21,u,g,q,h,0.21,t,t,01,f,g,00760,90,-
a,25.33,2.085,u,g,c,h,2.75,t,f,0,t,g,00360,1,-
a,24.58,0.67,u,g,aa,h,1.75,t,f,0,f,g,00400,0,-
b,43.17,2.25,u,g,i,bb,0.75,t,f,0,f,g,00560,0,-
b,40.92,0.835,u,g,ff,ff,0,t,f,0,f,g,00130,1,-
b,31.83,2.5,u,g,aa,v,7.5,t,f,0,t,g,00523,0,-
a,33.92,1.585,y,p,ff,ff,0,t,f,0,f,g,00320,0,-
a,24.92,1.25,u,g,ff,ff,0,t,f,0,f,g,00080,0,-
b,35.25,3.165,u,g,x,h,3.75,t,f,0,t,g,00680,0,-
b,34.25,1.75,u,g,w,bb,0.25,t,f,0,t,g,00163,0,-
b,80.25,5.5,u,g,?,?,0.54,t,f,0,f,g,00000,340,-
b,19.42,1.5,y,p,cc,v,2,t,f,0,t,g,00100,20,-
b,42.75,3,u,g,i,bb,1,t,f,0,f,g,00000,200,-
b,19.67,10,y,p,k,h,0.835,t,f,0,t,g,00140,0,-
b,36.33,3.79,u,g,w,v,1.165,t,f,0,t,g,00200,0,-
b,30.08,1.04,y,p,i,bb,0.5,t,t,10,t,g,00132,28,-
b,44.25,11,y,p,d,v,1.5,t,f,0,f,s,00000,0,-
b,23.58,0.46,y,p,w,v,2.625,t,t,06,t,g,00208,347,-
b,23.92,1.5,u,g,d,h,1.875,t,t,06,f,g,00200,327,+
b,33.17,1,u,g,x,v,0.75,t,t,07,t,g,00340,4071,+
b,48.33,12,u,g,m,v,16,t,f,0,f,s,00110,0,+
b,76.75,22.29,u,g,e,z,12.75,t,t,01,t,g,00000,109,+
b,51.33,10,u,g,i,bb,0,t,t,11,f,g,00000,1249,+
b,34.75,15,u,g,r,n,5.375,t,t,09,t,g,00000,134,+
b,38.58,3.335,u,g,w,v,4,t,t,14,f,g,00383,1344,+
a,22.42,11.25,y,p,x,h,0.75,t,t,04,f,g,00000,321,+
b,41.92,0.42,u,g,c,h,0.21,t,t,06,f,g,00220,948,+
b,29.58,4.5,u,g,w,v,7.5,t,t,02,t,g,00330,0,+
a,32.17,1.46,u,g,w,v,1.085,t,t,16,f,g,00120,2079,+
b,51.42,0.04,u,g,x,h,0.04,t,f,0,f,g,00000,3000,+
a,22.83,2.29,u,g,q,h,2.29,t,t,07,t,g,00140,2384,+
a,25.00,12.33,u,g,cc,h,3.5,t,t,06,f,g,00400,458,+
b,26.75,1.125,u,g,x,h,1.25,t,f,0,f,g,00000,5298,+
b,23.33,1.5,u,g,c,h,1.415,t,f,0,f,g,00422,200,+
b,24.42,12.335,u,g,q,h,1.585,t,f,0,t,g,00120,0,+
b,42.17,5.04,u,g,q,h,12.75,t,f,0,t,g,00092,0,+
a,20.83,3,u,g,aa,v,0.04,t,f,0,f,g,00100,0,+
b,23.08,11.5,u,g,w,h,2.125,t,t,11,t,g,00290,284,+
a,25.17,2.875,u,g,x,h,0.875,t,f,0,f,g,00360,0,+
b,43.08,0.375,y,p,c,v,0.375,t,t,08,t,g,00300,162,+
a,35.75,0.915,u,g,aa,v,0.75,t,t,04,f,g,00000,1583,+
b,59.50,2.75,u,g,w,v,1.75,t,t,05,t,g,00060,58,+
b,21.00,3,y,p,d,v,1.085,t,t,08,t,g,00160,1,+
b,21.92,0.54,y,p,x,v,0.04,t,t,01,t,g,00840,59,+
a,65.17,14,u,g,ff,ff,0,t,t,11,t,g,00000,1400,+
a,20.33,10,u,g,c,h,1,t,t,04,f,g,00050,1465,+
b,32.25,0.165,y,p,c,h,3.25,t,t,01,t,g,00432,8000,+
b,30.17,0.5,u,g,c,v,1.75,t,t,11,f,g,00032,540,+
b,25.17,6,u,g,c,v,1,t,t,03,f,g,00000,0,+
b,39.17,1.625,u,g,c,v,1.5,t,t,10,f,g,00186,4700,+
b,39.08,6,u,g,m,v,1.29,t,t,05,t,g,00108,1097,+
b,31.67,0.83,u,g,x,v,1.335,t,t,08,t,g,00303,3290,+
b,41.00,0.04,u,g,e,v,0.04,f,t,01,f,s,00560,0,+
b,48.50,4.25,u,g,m,v,0.125,t,f,0,t,g,00225,0,+
b,32.67,9,y,p,w,h,5.25,t,f,0,t,g,00154,0,+
a,28.08,15,y,p,e,z,0,t,f,0,f,g,00000,13212,+
b,73.42,17.75,u,g,ff,ff,0,t,f,0,t,g,00000,0,+
b,64.08,20,u,g,x,h,17.5,t,t,09,t,g,00000,1000,+
b,51.58,15,u,g,c,v,8.5,t,t,09,f,g,00000,0,+
b,26.67,1.75,y,p,c,v,1,t,t,05,t,g,00160,5777,+
b,25.33,0.58,u,g,c,v,0.29,t,t,07,t,g,00096,5124,+
b,30.17,6.5,u,g,cc,v,3.125,t,t,08,f,g,00330,1200,+
b,27.00,0.75,u,g,c,h,4.25,t,t,03,t,g,00312,150,+
b,23.17,0,?,?,?,?,0,f,f,0,f,p,?,0,+
b,34.17,5.25,u,g,w,v,0.085,f,f,0,t,g,00290,6,+
b,38.67,0.21,u,g,k,v,0.085,t,f,0,t,g,00280,0,+
b,25.75,0.75,u,g,c,bb,0.25,t,f,0,f,g,00349,23,+
a,46.08,3,u,g,c,v,2.375,t,t,08,t,g,00396,4159,+
a,21.50,6,u,g,aa,v,2.5,t,t,03,f,g,00080,918,+
?,20.08,0.125,u,g,q,v,1,f,t,01,f,g,00240,768,+
b,20.50,2.415,u,g,c,v,2,t,t,11,t,g,00200,3000,+
a,29.50,0.46,u,g,k,v,0.54,t,t,04,f,g,00380,500,+
?,42.25,1.75,y,p,?,?,0,f,f,0,t,g,00150,1,-
b,29.83,1.25,y,p,k,v,0.25,f,f,0,f,g,00224,0,-
b,20.08,0.25,u,g,q,v,0.125,f,f,0,f,g,00200,0,-
b,23.42,0.585,u,g,c,h,0.085,t,f,0,f,g,00180,0,-
a,29.58,1.75,y,p,k,v,1.25,f,f,0,t,g,00280,0,-
b,16.17,0.04,u,g,c,v,0.04,f,f,0,f,g,00000,0,+
b,32.33,3.5,u,g,k,v,0.5,f,f,0,t,g,00232,0,-
b,?,0.04,y,p,d,v,4.25,f,f,0,t,g,00460,0,-
b,47.83,4.165,u,g,x,bb,0.085,f,f,0,t,g,00520,0,-
b,20.00,1.25,y,p,k,v,0.125,f,f,0,f,g,00140,4,-
b,27.58,3.25,y,p,q,h,5.085,f,t,02,t,g,00369,1,-
b,22.00,0.79,u,g,w,v,0.29,f,t,01,f,g,00420,283,-
b,19.33,10.915,u,g,c,bb,0.585,f,t,02,t,g,00200,7,-
a,38.33,4.415,u,g,c,v,0.125,f,f,0,f,g,00160,0,-
b,29.42,1.25,u,g,c,h,0.25,f,t,02,t,g,00400,108,-
b,22.67,0.75,u,g,i,v,1.585,f,t,01,t,g,00400,9,-
b,32.25,14,y,p,ff,ff,0,f,t,02,f,g,00160,1,-
b,29.58,4.75,u,g,m,v,2,f,t,01,t,g,00460,68,-
b,18.42,10.415,y,p,aa,v,0.125,t,f,0,f,g,00120,375,-
b,22.17,2.25,u,g,i,v,0.125,f,f,0,f,g,00160,10,-
b,22.67,0.165,u,g,c,j,2.25,f,f,0,t,s,00000,0,+
a,25.58,0,?,?,?,?,0,f,f,0,f,p,?,0,+
b,18.83,0,u,g,q,v,0.665,f,f,0,f,g,00160,1,-
b,21.58,0.79,y,p,cc,v,0.665,f,f,0,f,g,00160,0,-
b,23.75,12,u,g,c,v,2.085,f,f,0,f,s,00080,0,-
b,22.00,7.835,y,p,i,bb,0.165,f,f,0,t,g,?,0,-
b,36.08,2.54,u,g,ff,ff,0,f,f,0,f,g,00000,1000,-
b,29.25,13,u,g,d,h,0.5,f,f,0,f,g,00228,0,-
a,19.58,0.665,u,g,w,v,1.665,f,f,0,f,g,00220,5,-
a,22.92,1.25,u,g,q,v,0.25,f,f,0,t,g,00120,809,-
a,27.25,0.29,u,g,m,h,0.125,f,t,01,t,g,00272,108,-
a,38.75,1.5,u,g,ff,ff,0,f,f,0,f,g,00076,0,-
b,32.42,2.165,y,p,k,ff,0,f,f,0,f,g,00120,0,-
a,23.75,0.71,u,g,w,v,0.25,f,t,01,t,g,00240,4,-
b,18.17,2.46,u,g,c,n,0.96,f,t,02,t,g,00160,587,-
b,40.92,0.5,y,p,m,v,0.5,f,f,0,t,g,00130,0,-
b,19.50,9.585,u,g,aa,v,0.79,f,f,0,f,g,00080,350,-
b,28.58,3.625,u,g,aa,v,0.25,f,f,0,t,g,00100,0,-
b,35.58,0.75,u,g,k,v,1.5,f,f,0,t,g,00231,0,-
b,34.17,2.75,u,g,i,bb,2.5,f,f,0,t,g,00232,200,-
?,33.17,2.25,y,p,cc,v,3.5,f,f,0,t,g,00200,141,-
b,31.58,0.75,y,p,aa,v,3.5,f,f,0,t,g,00320,0,-
a,52.50,7,u,g,aa,h,3,f,f,0,f,g,00000,0,-
b,36.17,0.42,y,p,w,v,0.29,f,f,0,t,g,00309,2,-
b,37.33,2.665,u,g,cc,v,0.165,f,f,0,t,g,00000,501,-
a,20.83,8.5,u,g,c,v,0.165,f,f,0,f,g,00000,351,-
b,24.08,9,u,g,aa,v,0.25,f,f,0,t,g,00000,0,-
b,25.58,0.335,u,g,k,h,3.5,f,f,0,t,g,00340,0,-
a,35.17,3.75,u,g,ff,ff,0,f,t,06,f,g,00000,200,-
b,48.08,3.75,u,g,i,bb,1,f,f,0,f,g,00100,2,-
a,15.83,7.625,u,g,q,v,0.125,f,t,01,t,g,00000,160,-
a,22.50,0.415,u,g,i,v,0.335,f,f,0,t,s,00144,0,-
b,21.50,11.5,u,g,i,v,0.5,t,f,0,t,g,00100,68,-
a,23.58,0.83,u,g,q,v,0.415,f,t,01,t,g,00200,11,-
a,21.08,5,y,p,ff,ff,0,f,f,0,f,g,00000,0,-
b,25.67,3.25,u,g,c,h,2.29,f,t,01,t,g,00416,21,-
a,38.92,1.665,u,g,aa,v,0.25,f,f,0,f,g,00000,390,-
a,15.75,0.375,u,g,c,v,1,f,f,0,f,g,00120,18,-
a,28.58,3.75,u,g,c,v,0.25,f,t,01,t,g,00040,154,-
b,22.25,9,u,g,aa,v,0.085,f,f,0,f,g,00000,0,-
b,29.83,3.5,u,g,c,v,0.165,f,f,0,f,g,00216,0,-
a,23.50,1.5,u,g,w,v,0.875,f,f,0,t,g,00160,0,-
b,32.08,4,y,p,cc,v,1.5,f,f,0,t,g,00120,0,-
b,31.08,1.5,y,p,w,v,0.04,f,f,0,f,s,00160,0,-
b,31.83,0.04,y,p,m,v,0.04,f,f,0,f,g,00000,0,-
a,21.75,11.75,u,g,c,v,0.25,f,f,0,t,g,00180,0,-
a,17.92,0.54,u,g,c,v,1.75,f,t,01,t,g,00080,5,-
b,30.33,0.5,u,g,d,h,0.085,f,f,0,t,s,00252,0,-
b,51.83,2.04,y,p,ff,ff,1.5,f,f,0,f,g,00120,1,-
b,47.17,5.835,u,g,w,v,5.5,f,f,0,f,g,00465,150,-
b,25.83,12.835,u,g,cc,v,0.5,f,f,0,f,g,00000,2,-
a,50.25,0.835,u,g,aa,v,0.5,f,f,0,t,g,00240,117,-
?,29.50,2,y,p,e,h,2,f,f,0,f,g,00256,17,-
a,37.33,2.5,u,g,i,h,0.21,f,f,0,f,g,00260,246,-
a,41.58,1.04,u,g,aa,v,0.665,f,f,0,f,g,00240,237,-
a,30.58,10.665,u,g,q,h,0.085,f,t,12,t,g,00129,3,-
b,19.42,7.25,u,g,m,v,0.04,f,t,01,f,g,00100,1,-
a,17.92,10.21,u,g,ff,ff,0,f,f,0,f,g,00000,50,-
a,20.08,1.25,u,g,c,v,0,f,f,0,f,g,00000,0,-
b,19.50,0.29,u,g,k,v,0.29,f,f,0,f,g,00280,364,-
b,27.83,1,y,p,d,h,3,f,f,0,f,g,00176,537,-
b,17.08,3.29,u,g,i,v,0.335,f,f,0,t,g,00140,2,-
b,36.42,0.75,y,p,d,v,0.585,f,f,0,f,g,00240,3,-
b,40.58,3.29,u,g,m,v,3.5,f,f,0,t,s,00400,0,-
b,21.08,10.085,y,p,e,h,1.25,f,f,0,f,g,00260,0,-
a,22.67,0.75,u,g,c,v,2,f,t,02,t,g,00200,394,-
a,25.25,13.5,y,p,ff,ff,2,f,t,01,t,g,00200,1,-
b,17.92,0.205,u,g,aa,v,0.04,f,f,0,f,g,00280,750,-
b,35.00,3.375,u,g,c,h,8.29,f,f,0,t,g,00000,0,-
================================================
FILE: data/day15/jobclass.csv
================================================
ID,JobFamily,JobFamilyDescription,JobClass,JobClassDescription,PayGrade,EducationLevel,Experience,OrgImpact,ProblemSolving,Supervision,ContactLevel,FinancialBudget,PG
1,1,Accounting And Finance,1,Accountant I,5,3,1,3,3,4,3,5,PG05
2,1,Accounting And Finance,2,Accountant II,6,4,1,5,4,5,7,7,PG06
3,1,Accounting And Finance,3,Accountant III,8,4,2,6,5,6,7,10,PG08
4,1,Accounting And Finance,4,Accountant IV,10,5,5,6,6,7,8,11,PG10
5,2,Administrative Support,5,Admin Support I,1,1,0,1,1,1,1,1,PG01
6,2,Administrative Support,6,Admin Support II,2,1,1,1,1,1,2,3,PG02
7,2,Administrative Support,7,Admin Support III,3,1,2,1,2,1,3,3,PG03
8,2,Administrative Support,8,Administrative Support IV,4,4,0,1,2,1,3,5,PG04
9,2,Administrative Support,9,Administrative Support V,5,4,0,4,3,5,7,7,PG05
10,3,Baker,10,Baker I,4,2,0,1,4,1,1,2,PG04
11,3,Baker,11,Baker II,6,2,0,3,4,1,6,4,PG06
12,3,Baker,12,Baker III,9,2,0,4,5,5,6,10,PG09
13,4,Buildings And Facilities,13,Facilities I,5,1,0,3,4,3,7,4,PG05
14,4,Buildings And Facilities,14,Facilities II,6,3,0,3,4,5,6,7,PG06
15,4,Buildings And Facilities,15,Facilities III,9,4,0,4,5,7,6,10,PG09
16,4,Buildings And Facilities,16,Facilities IV,10,5,0,6,6,7,8,11,PG10
17,4,Buildings And Facilities,44,Maintenance Services I,2,1,0,1,2,1,1,1,PG02
18,4,Buildings And Facilities,45,Maintenance Services II,3,1,1,1,2,1,1,1,PG03
19,4,Buildings And Facilities,46,Maintenance Services III,4,1,1,3,3,4,3,2,PG04
20,4,Buildings And Facilities,47,Maintenance Services IV,5,3,2,3,4,5,8,4,PG05
21,5,Buyer,17,Buyer II,5,2,1,3,3,4,3,5,PG05
22,5,Buyer,18,Buyer III,8,4,0,6,5,6,7,8,PG08
23,5,Buyer,19,Buyer IV,9,4,10,6,5,6,7,9,PG09
24,6,Cashier,20,Cashier I,1,1,2,2,1,2,1,1,PG01
25,6,Cashier,21,Cashier II,3,3,3,2,3,4,2,1,PG03
26,6,Cashier,22,Cashier III,6,4,2,4,4,5,7,7,PG06
27,7,Communications And Media,23,Communications I,4,2,0,1,3,4,4,1,PG04
28,7,Communications And Media,24,Communications II,5,4,0,1,2,1,3,4,PG05
29,7,Communications And Media,25,Communications III,8,5,2,5,5,6,7,10,PG08
30,7,Communications And Media,26,Photographer I,2,1,0,1,1,1,1,1,PG02
31,7,Communications And Media,27,Photographer II,3,1,1,1,2,1,3,3,PG03
32,7,Communications And Media,28,Photographer III,5,4,0,1,3,1,4,3,PG05
33,7,Communications And Media,29,Photographer IV,7,4,0,3,4,5,7,7,PG07
34,7,Communications And Media,30,Printing II,2,1,0,1,2,1,1,1,PG02
35,7,Communications And Media,31,Printing III,4,1,0,3,3,4,5,4,PG04
36,7,Communications And Media,32,Printing IV,5,2,0,3,4,4,5,4,PG05
37,8,Corporate Research,33,Data Scientist,10,6,5,6,6,7,7,11,PG10
38,8,Corporate Research,34,Research Analyst I,2,1,0,1,1,1,1,1,PG02
39,8,Corporate Research,35,Research Analyst II,4,3,0,3,2,1,1,1,PG04
40,8,Corporate Research,36,Research Analyst Iii,5,4,2,3,4,4,1,2,PG05
41,8,Corporate Research,37,Research Analyst IV,8,6,5,4,5,6,7,11,PG08
42,9,Finance And Accounting,38,Financial Officer I,5,4,1,3,4,4,3,5,PG05
43,9,Finance And Accounting,39,Financial Officer II,6,4,2,3,4,5,6,7,PG06
44,9,Finance And Accounting,40,Financial Officer III,9,4,3,6,5,6,7,10,PG09
45,10,Human Resources,41,Human Resources I,5,4,2,3,3,4,3,1,PG05
46,10,Human Resources,42,Human Resources II,7,4,3,4,4,4,7,1,PG07
47,10,Human Resources,43,Human Resources III,8,5,5,6,5,4,7,10,PG08
48,11,Meat Cutter,48,Meat Cutter I,5,4,1,3,3,4,3,3,PG05
49,11,Meat Cutter,49,Meat Cutter II,7,4,3,4,4,4,7,7,PG07
50,11,Meat Cutter,50,Meat Cutter III,9,5,5,6,5,6,7,10,PG09
51,11,Meat Cutter,51,Meat Cutter IV,10,5,5,6,6,7,8,11,PG10
52,12,Produce,52,Produce I,3,1,1,3,3,4,4,2,PG03
53,12,Produce,53,Produce II,6,4,1,4,4,4,6,2,PG06
54,12,Produce,54,Produce III,7,4,3,4,4,5,6,7,PG07
55,12,Produce,55,Produce IV,9,4,5,6,5,6,6,10,PG09
56,12,Produce,56,Produce V,10,5,8,6,6,7,8,11,PG10
57,13,Secretary,57,Secretary II,3,1,2,3,2,1,2,4,PG03
58,13,Secretary,58,Secretary III,5,2,3,3,3,4,3,5,PG05
59,14,Stockkeeping,59,StockKeeper I,4,3,0,1,2,1,3,1,PG04
60,14,Stockkeeping,60,StockKeeper II,5,3,0,3,3,1,7,5,PG05
61,14,Stockkeeping,61,StockKeeper III,8,4,0,4,5,6,7,7,PG08
62,15,Systems Analyst,62,Systems Analyst I,3,1,1,1,2,1,1,1,PG03
63,15,Systems Analyst,63,Systems Analyst II,5,4,1,3,3,4,3,4,PG05
64,15,Systems Analyst,64,Systems Analyst III,6,5,2,4,4,5,7,5,PG06
65,15,Systems Analyst,65,Systems Analyst IV,8,5,5,6,5,6,7,7,PG08
66,15,Systems Analyst,66,Systems Analyst V,10,5,5,6,6,7,8,11,PG10
================================================
FILE: data/day2/automobile.csv
================================================
symboling,normalized-losses,make,fuel-type,aspiration,num-of-doors,body-style,drive-wheels,engine-location,wheel-base,length,width,height,curb-weight,engine-type,num-of-cylinders,engine-size,fuel-system,bore,stroke,compression-ratio,horsepower,peak-rpm,city-mpg,highway-mpg,price
2,164,audi,gas,std,four,sedan,fwd,front,99.80,176.60,66.20,54.30,2337,ohc,four,109,mpfi,3.19,3.40,10.00,102,5500,24,30,13950
2,164,audi,gas,std,four,sedan,4wd,front,99.40,176.60,66.40,54.30,2824,ohc,five,136,mpfi,3.19,3.40,8.00,115,5500,18,22,17450
1,158,audi,gas,std,four,sedan,fwd,front,105.80,192.70,71.40,55.70,2844,ohc,five,136,mpfi,3.19,3.40,8.50,110,5500,19,25,17710
1,158,audi,gas,turbo,four,sedan,fwd,front,105.80,192.70,71.40,55.90,3086,ohc,five,131,mpfi,3.13,3.40,8.30,140,5500,17,20,23875
2,192,bmw,gas,std,two,sedan,rwd,front,101.20,176.80,64.80,54.30,2395,ohc,four,108,mpfi,3.50,2.80,8.80,101,5800,23,29,16430
0,192,bmw,gas,std,four,sedan,rwd,front,101.20,176.80,64.80,54.30,2395,ohc,four,108,mpfi,3.50,2.80,8.80,101,5800,23,29,16925
0,188,bmw,gas,std,two,sedan,rwd,front,101.20,176.80,64.80,54.30,2710,ohc,six,164,mpfi,3.31,3.19,9.00,121,4250,21,28,20970
0,188,bmw,gas,std,four,sedan,rwd,front,101.20,176.80,64.80,54.30,2765,ohc,six,164,mpfi,3.31,3.19,9.00,121,4250,21,28,21105
2,121,chevrolet,gas,std,two,hatchback,fwd,front,88.40,141.10,60.30,53.20,1488,l,three,61,2bbl,2.91,3.03,9.50,48,5100,47,53,5151
1,98,chevrolet,gas,std,two,hatchback,fwd,front,94.50,155.90,63.60,52.00,1874,ohc,four,90,2bbl,3.03,3.11,9.60,70,5400,38,43,6295
0,81,chevrolet,gas,std,four,sedan,fwd,front,94.50,158.80,63.60,52.00,1909,ohc,four,90,2bbl,3.03,3.11,9.60,70,5400,38,43,6575
1,118,dodge,gas,std,two,hatchback,fwd,front,93.70,157.30,63.80,50.80,1876,ohc,four,90,2bbl,2.97,3.23,9.41,68,5500,37,41,5572
1,118,dodge,gas,std,two,hatchback,fwd,front,93.70,157.30,63.80,50.80,1876,ohc,four,90,2bbl,2.97,3.23,9.40,68,5500,31,38,6377
1,118,dodge,gas,turbo,two,hatchback,fwd,front,93.70,157.30,63.80,50.80,2128,ohc,four,98,mpfi,3.03,3.39,7.60,102,5500,24,30,7957
1,148,dodge,gas,std,four,hatchback,fwd,front,93.70,157.30,63.80,50.60,1967,ohc,four,90,2bbl,2.97,3.23,9.40,68,5500,31,38,6229
1,148,dodge,gas,std,four,sedan,fwd,front,93.70,157.30,63.80,50.60,1989,ohc,four,90,2bbl,2.97,3.23,9.40,68,5500,31,38,6692
1,148,dodge,gas,std,four,sedan,fwd,front,93.70,157.30,63.80,50.60,1989,ohc,four,90,2bbl,2.97,3.23,9.40,68,5500,31,38,7609
-1,110,dodge,gas,std,four,wagon,fwd,front,103.30,174.60,64.60,59.80,2535,ohc,four,122,2bbl,3.34,3.46,8.50,88,5000,24,30,8921
3,145,dodge,gas,turbo,two,hatchback,fwd,front,95.90,173.20,66.30,50.20,2811,ohc,four,156,mfi,3.60,3.90,7.00,145,5000,19,24,12964
2,137,honda,gas,std,two,hatchback,fwd,front,86.60,144.60,63.90,50.80,1713,ohc,four,92,1bbl,2.91,3.41,9.60,58,4800,49,54,6479
2,137,honda,gas,std,two,hatchback,fwd,front,86.60,144.60,63.90,50.80,1819,ohc,four,92,1bbl,2.91,3.41,9.20,76,6000,31,38,6855
1,101,honda,gas,std,two,hatchback,fwd,front,93.70,150.00,64.00,52.60,1837,ohc,four,79,1bbl,2.91,3.07,10.10,60,5500,38,42,5399
1,101,honda,gas,std,two,hatchback,fwd,front,93.70,150.00,64.00,52.60,1940,ohc,four,92,1bbl,2.91,3.41,9.20,76,6000,30,34,6529
1,101,honda,gas,std,two,hatchback,fwd,front,93.70,150.00,64.00,52.60,1956,ohc,four,92,1bbl,2.91,3.41,9.20,76,6000,30,34,7129
0,110,honda,gas,std,four,sedan,fwd,front,96.50,163.40,64.00,54.50,2010,ohc,four,92,1bbl,2.91,3.41,9.20,76,6000,30,34,7295
0,78,honda,gas,std,four,wagon,fwd,front,96.50,157.10,63.90,58.30,2024,ohc,four,92,1bbl,2.92,3.41,9.20,76,6000,30,34,7295
0,106,honda,gas,std,two,hatchback,fwd,front,96.50,167.50,65.20,53.30,2236,ohc,four,110,1bbl,3.15,3.58,9.00,86,5800,27,33,7895
0,106,honda,gas,std,two,hatchback,fwd,front,96.50,167.50,65.20,53.30,2289,ohc,four,110,1bbl,3.15,3.58,9.00,86,5800,27,33,9095
0,85,honda,gas,std,four,sedan,fwd,front,96.50,175.40,65.20,54.10,2304,ohc,four,110,1bbl,3.15,3.58,9.00,86,5800,27,33,8845
0,85,honda,gas,std,four,sedan,fwd,front,96.50,175.40,62.50,54.10,2372,ohc,four,110,1bbl,3.15,3.58,9.00,86,5800,27,33,10295
0,85,honda,gas,std,four,sedan,fwd,front,96.50,175.40,65.20,54.10,2465,ohc,four,110,mpfi,3.15,3.58,9.00,101,5800,24,28,12945
1,107,honda,gas,std,two,sedan,fwd,front,96.50,169.10,66.00,51.00,2293,ohc,four,110,2bbl,3.15,3.58,9.10,100,5500,25,31,10345
0,145,jaguar,gas,std,four,sedan,rwd,front,113.00,199.60,69.60,52.80,4066,dohc,six,258,mpfi,3.63,4.17,8.10,176,4750,15,19,32250
1,104,mazda,gas,std,two,hatchback,fwd,front,93.10,159.10,64.20,54.10,1890,ohc,four,91,2bbl,3.03,3.15,9.00,68,5000,30,31,5195
1,104,mazda,gas,std,two,hatchback,fwd,front,93.10,159.10,64.20,54.10,1900,ohc,four,91,2bbl,3.03,3.15,9.00,68,5000,31,38,6095
1,104,mazda,gas,std,two,hatchback,fwd,front,93.10,159.10,64.20,54.10,1905,ohc,four,91,2bbl,3.03,3.15,9.00,68,5000,31,38,6795
1,113,mazda,gas,std,four,sedan,fwd,front,93.10,166.80,64.20,54.10,1945,ohc,four,91,2bbl,3.03,3.15,9.00,68,5000,31,38,6695
1,113,mazda,gas,std,four,sedan,fwd,front,93.10,166.80,64.20,54.10,1950,ohc,four,91,2bbl,3.08,3.15,9.00,68,5000,31,38,7395
1,129,mazda,gas,std,two,hatchback,fwd,front,98.80,177.80,66.50,53.70,2385,ohc,four,122,2bbl,3.39,3.39,8.60,84,4800,26,32,8845
0,115,mazda,gas,std,four,sedan,fwd,front,98.80,177.80,66.50,55.50,2410,ohc,four,122,2bbl,3.39,3.39,8.60,84,4800,26,32,8495
1,129,mazda,gas,std,two,hatchback,fwd,front,98.80,177.80,66.50,53.70,2385,ohc,four,122,2bbl,3.39,3.39,8.60,84,4800,26,32,10595
0,115,mazda,gas,std,four,sedan,fwd,front,98.80,177.80,66.50,55.50,2410,ohc,four,122,2bbl,3.39,3.39,8.60,84,4800,26,32,10245
0,115,mazda,gas,std,four,hatchback,fwd,front,98.80,177.80,66.50,55.50,2425,ohc,four,122,2bbl,3.39,3.39,8.60,84,4800,26,32,11245
0,118,mazda,gas,std,four,sedan,rwd,front,104.90,175.00,66.10,54.40,2670,ohc,four,140,mpfi,3.76,3.16,8.00,120,5000,19,27,18280
-1,93,mercedes-benz,diesel,turbo,four,sedan,rwd,front,110.00,190.90,70.30,56.50,3515,ohc,five,183,idi,3.58,3.64,21.50,123,4350,22,25,25552
-1,93,mercedes-benz,diesel,turbo,four,wagon,rwd,front,110.00,190.90,70.30,58.70,3750,ohc,five,183,idi,3.58,3.64,21.50,123,4350,22,25,28248
0,93,mercedes-benz,diesel,turbo,two,hardtop,rwd,front,106.70,187.50,70.30,54.90,3495,ohc,five,183,idi,3.58,3.64,21.50,123,4350,22,25,28176
-1,93,mercedes-benz,diesel,turbo,four,sedan,rwd,front,115.60,202.60,71.70,56.30,3770,ohc,five,183,idi,3.58,3.64,21.50,123,4350,22,25,31600
3,142,mercedes-benz,gas,std,two,convertible,rwd,front,96.60,180.30,70.50,50.80,3685,ohcv,eight,234,mpfi,3.46,3.10,8.30,155,4750,16,18,35056
2,161,mitsubishi,gas,std,two,hatchback,fwd,front,93.70,157.30,64.40,50.80,1918,ohc,four,92,2bbl,2.97,3.23,9.40,68,5500,37,41,5389
2,161,mitsubishi,gas,std,two,hatchback,fwd,front,93.70,157.30,64.40,50.80,1944,ohc,four,92,2bbl,2.97,3.23,9.40,68,5500,31,38,6189
2,161,mitsubishi,gas,std,two,hatchback,fwd,front,93.70,157.30,64.40,50.80,2004,ohc,four,92,2bbl,2.97,3.23,9.40,68,5500,31,38,6669
1,161,mitsubishi,gas,turbo,two,hatchback,fwd,front,93,157.30,63.80,50.80,2145,ohc,four,98,spdi,3.03,3.39,7.60,102,5500,24,30,7689
3,153,mitsubishi,gas,turbo,two,hatchback,fwd,front,96.30,173.00,65.40,49.40,2370,ohc,four,110,spdi,3.17,3.46,7.50,116,5500,23,30,9959
3,153,mitsubishi,gas,std,two,hatchback,fwd,front,96.30,173.00,65.40,49.40,2328,ohc,four,122,2bbl,3.35,3.46,8.50,88,5000,25,32,8499
1,125,mitsubishi,gas,std,four,sedan,fwd,front,96.30,172.40,65.40,51.60,2365,ohc,four,122,2bbl,3.35,3.46,8.50,88,5000,25,32,6989
1,125,mitsubishi,gas,std,four,sedan,fwd,front,96.30,172.40,65.40,51.60,2405,ohc,four,122,2bbl,3.35,3.46,8.50,88,5000,25,32,8189
1,125,mitsubishi,gas,turbo,four,sedan,fwd,front,96.30,172.40,65.40,51.60,2403,ohc,four,110,spdi,3.17,3.46,7.50,116,5500,23,30,9279
-1,137,mitsubishi,gas,std,four,sedan,fwd,front,96.30,172.40,65.40,51.60,2403,ohc,four,110,spdi,3.17,3.46,7.50,116,5500,23,30,9279
1,128,nissan,gas,std,two,sedan,fwd,front,94.50,165.30,63.80,54.50,1889,ohc,four,97,2bbl,3.15,3.29,9.40,69,5200,31,37,5499
1,128,nissan,diesel,std,two,sedan,fwd,front,94.50,165.30,63.80,54.50,2017,ohc,four,103,idi,2.99,3.47,21.90,55,4800,45,50,7099
1,128,nissan,gas,std,two,sedan,fwd,front,94.50,165.30,63.80,54.50,1918,ohc,four,97,2bbl,3.15,3.29,9.40,69,5200,31,37,6649
1,122,nissan,gas,std,four,sedan,fwd,front,94.50,165.30,63.80,54.50,1938,ohc,four,97,2bbl,3.15,3.29,9.40,69,5200,31,37,6849
1,103,nissan,gas,std,four,wagon,fwd,front,94.50,170.20,63.80,53.50,2024,ohc,four,97,2bbl,3.15,3.29,9.40,69,5200,31,37,7349
1,128,nissan,gas,std,two,sedan,fwd,front,94.50,165.30,63.80,54.50,1951,ohc,four,97,2bbl,3.15,3.29,9.40,69,5200,31,37,7299
1,128,nissan,gas,std,two,hatchback,fwd,front,94.50,165.60,63.80,53.30,2028,ohc,four,97,2bbl,3.15,3.29,9.40,69,5200,31,37,7799
1,122,nissan,gas,std,four,sedan,fwd,front,94.50,165.30,63.80,54.50,1971,ohc,four,97,2bbl,3.15,3.29,9.40,69,5200,31,37,7499
1,103,nissan,gas,std,four,wagon,fwd,front,94.50,170.20,63.80,53.50,2037,ohc,four,97,2bbl,3.15,3.29,9.40,69,5200,31,37,7999
2,168,nissan,gas,std,two,hardtop,fwd,front,95.10,162.40,63.80,53.30,2008,ohc,four,97,2bbl,3.15,3.29,9.40,69,5200,31,37,8249
0,106,nissan,gas,std,four,hatchback,fwd,front,97.20,173.40,65.20,54.70,2324,ohc,four,120,2bbl,3.33,3.47,8.50,97,5200,27,34,8949
0,106,nissan,gas,std,four,sedan,fwd,front,97.20,173.40,65.20,54.70,2302,ohc,four,120,2bbl,3.33,3.47,8.50,97,5200,27,34,9549
0,128,nissan,gas,std,four,sedan,fwd,front,100.40,181.70,66.50,55.10,3095,ohcv,six,181,mpfi,3.43,3.27,9.00,152,5200,17,22,13499
0,108,nissan,gas,std,four,wagon,fwd,front,100.40,184.60,66.50,56.10,3296,ohcv,six,181,mpfi,3.43,3.27,9.00,152,5200,17,22,14399
0,108,nissan,gas,std,four,sedan,fwd,front,100.40,184.60,66.50,55.10,3060,ohcv,six,181,mpfi,3.43,3.27,9.00,152,5200,19,25,13499
3,194,nissan,gas,std,two,hatchback,rwd,front,91.30,170.70,67.90,49.70,3071,ohcv,six,181,mpfi,3.43,3.27,9.00,160,5200,19,25,17199
3,194,nissan,gas,turbo,two,hatchback,rwd,front,91.30,170.70,67.90,49.70,3139,ohcv,six,181,mpfi,3.43,3.27,7.80,200,5200,17,23,19699
1,231,nissan,gas,std,two,hatchback,rwd,front,99.20,178.50,67.90,49.70,3139,ohcv,six,181,mpfi,3.43,3.27,9.00,160,5200,19,25,18399
0,161,peugot,gas,std,four,sedan,rwd,front,107.90,186.70,68.40,56.70,3020,l,four,120,mpfi,3.46,3.19,8.40,97,5000,19,24,11900
0,161,peugot,diesel,turbo,four,sedan,rwd,front,107.90,186.70,68.40,56.70,3197,l,four,152,idi,3.70,3.52,21.00,95,4150,28,33,13200
0,161,peugot,gas,std,four,sedan,rwd,front,107.90,186.70,68.40,56.70,3075,l,four,120,mpfi,3.46,2.19,8.40,95,5000,19,24,15580
0,161,peugot,diesel,turbo,four,sedan,rwd,front,107.90,186.70,68.40,56.70,3252,l,four,152,idi,3.70,3.52,21.00,95,4150,28,33,16900
0,161,peugot,gas,std,four,sedan,rwd,front,107.90,186.70,68.40,56.70,3075,l,four,120,mpfi,3.46,3.19,8.40,97,5000,19,24,16630
0,161,peugot,diesel,turbo,four,sedan,rwd,front,107.90,186.70,68.40,56.70,3252,l,four,152,idi,3.70,3.52,21.00,95,4150,28,33,17950
0,161,peugot,gas,turbo,four,sedan,rwd,front,108.00,186.70,68.30,56.00,3130,l,four,134,mpfi,3.61,3.21,7.00,142,5600,18,24,18150
1,119,plymouth,gas,std,two,hatchback,fwd,front,93.70,157.30,63.80,50.80,1918,ohc,four,90,2bbl,2.97,3.23,9.40,68,5500,37,41,5572
1,119,plymouth,gas,turbo,two,hatchback,fwd,front,93.70,157.30,63.80,50.80,2128,ohc,four,98,spdi,3.03,3.39,7.60,102,5500,24,30,7957
1,154,plymouth,gas,std,four,hatchback,fwd,front,93.70,157.30,63.80,50.60,1967,ohc,four,90,2bbl,2.97,3.23,9.40,68,5500,31,38,6229
1,154,plymouth,gas,std,four,sedan,fwd,front,93.70,167.30,63.80,50.80,1989,ohc,four,90,2bbl,2.97,3.23,9.40,68,5500,31,38,6692
1,154,plymouth,gas,std,four,sedan,fwd,front,93.70,167.30,63.80,50.80,2191,ohc,four,98,2bbl,2.97,3.23,9.40,68,5500,31,38,7609
-1,74,plymouth,gas,std,four,wagon,fwd,front,103.30,174.60,64.60,59.80,2535,ohc,four,122,2bbl,3.35,3.46,8.50,88,5000,24,30,8921
3,186,porsche,gas,std,two,hatchback,rwd,front,94.50,168.90,68.30,50.20,2778,ohc,four,151,mpfi,3.94,3.11,9.50,143,5500,19,27,22018
3,150,saab,gas,std,two,hatchback,fwd,front,99.10,186.60,66.50,56.10,2658,ohc,four,121,mpfi,3.54,3.07,9.31,110,5250,21,28,11850
2,104,saab,gas,std,four,sedan,fwd,front,99.10,186.60,66.50,56.10,2695,ohc,four,121,mpfi,3.54,3.07,9.30,110,5250,21,28,12170
3,150,saab,gas,std,two,hatchback,fwd,front,99.10,186.60,66.50,56.10,2707,ohc,four,121,mpfi,2.54,2.07,9.30,110,5250,21,28,15040
2,104,saab,gas,std,four,sedan,fwd,front,99.10,186.60,66.50,56.10,2758,ohc,four,121,mpfi,3.54,3.07,9.30,110,5250,21,28,15510
3,150,saab,gas,turbo,two,hatchback,fwd,front,99.10,186.60,66.50,56.10,2808,dohc,four,121,mpfi,3.54,3.07,9.00,160,5500,19,26,18150
2,104,saab,gas,turbo,four,sedan,fwd,front,99.10,186.60,66.50,56.10,2847,dohc,four,121,mpfi,3.54,3.07,9.00,160,5500,19,26,18620
2,83,subaru,gas,std,two,hatchback,fwd,front,93.70,156.90,63.40,53.70,2050,ohcf,four,97,2bbl,3.62,2.36,9.00,69,4900,31,36,5118
2,83,subaru,gas,std,two,hatchback,fwd,front,93.70,157.90,63.60,53.70,2120,ohcf,four,108,2bbl,3.62,2.64,8.70,73,4400,26,31,7053
2,83,subaru,gas,std,two,hatchback,4wd,front,93.30,157.30,63.80,55.70,2240,ohcf,four,108,2bbl,3.62,2.64,8.70,73,4400,26,31,7603
0,102,subaru,gas,std,four,sedan,fwd,front,97.20,172.00,65.40,52.50,2145,ohcf,four,108,2bbl,3.62,2.64,9.50,82,4800,32,37,7126
0,102,subaru,gas,std,four,sedan,fwd,front,97.20,172.00,65.40,52.50,2190,ohcf,four,108,2bbl,3.62,2.64,9.50,82,4400,28,33,7775
0,102,subaru,gas,std,four,sedan,fwd,front,97.20,172.00,65.40,52.50,2340,ohcf,four,108,mpfi,3.62,2.64,9.00,94,5200,26,32,9960
0,102,subaru,gas,std,four,sedan,4wd,front,97.00,172.00,65.40,54.30,2385,ohcf,four,108,2bbl,3.62,2.64,9.00,82,4800,24,25,9233
0,102,subaru,gas,turbo,four,sedan,4wd,front,97.00,172.00,65.40,54.30,2510,ohcf,four,108,mpfi,3.62,2.64,7.70,111,4800,24,29,11259
0,89,subaru,gas,std,four,wagon,fwd,front,97.00,173.50,65.40,53.00,2290,ohcf,four,108,2bbl,3.62,2.64,9.00,82,4800,28,32,7463
0,89,subaru,gas,std,four,wagon,fwd,front,97.00,173.50,65.40,53.00,2455,ohcf,four,108,mpfi,3.62,2.64,9.00,94,5200,25,31,10198
0,85,subaru,gas,std,four,wagon,4wd,front,96.90,173.60,65.40,54.90,2420,ohcf,four,108,2bbl,3.62,2.64,9.00,82,4800,23,29,8013
0,85,subaru,gas,turbo,four,wagon,4wd,front,96.90,173.60,65.40,54.90,2650,ohcf,four,108,mpfi,3.62,2.64,7.70,111,4800,23,23,11694
1,87,toyota,gas,std,two,hatchback,fwd,front,95.70,158.70,63.60,54.50,1985,ohc,four,92,2bbl,3.05,3.03,9.00,62,4800,35,39,5348
1,87,toyota,gas,std,two,hatchback,fwd,front,95.70,158.70,63.60,54.50,2040,ohc,four,92,2bbl,3.05,3.03,9.00,62,4800,31,38,6338
1,74,toyota,gas,std,four,hatchback,fwd,front,95.70,158.70,63.60,54.50,2015,ohc,four,92,2bbl,3.05,3.03,9.00,62,4800,31,38,6488
0,77,toyota,gas,std,four,wagon,fwd,front,95.70,169.70,63.60,59.10,2280,ohc,four,92,2bbl,3.05,3.03,9.00,62,4800,31,37,6918
0,81,toyota,gas,std,four,wagon,4wd,front,95.70,169.70,63.60,59.10,2290,ohc,four,92,2bbl,3.05,3.03,9.00,62,4800,27,32,7898
0,91,toyota,gas,std,four,wagon,4wd,front,95.70,169.70,63.60,59.10,3110,ohc,four,92,2bbl,3.05,3.03,9.00,62,4800,27,32,8778
0,91,toyota,gas,std,four,sedan,fwd,front,95.70,166.30,64.40,53.00,2081,ohc,four,98,2bbl,3.19,3.03,9.00,70,4800,30,37,6938
0,91,toyota,gas,std,four,hatchback,fwd,front,95.70,166.30,64.40,52.80,2109,ohc,four,98,2bbl,3.19,3.03,9.00,70,4800,30,37,7198
0,91,toyota,diesel,std,four,sedan,fwd,front,95.70,166.30,64.40,53.00,2275,ohc,four,110,idi,3.27,3.35,22.50,56,4500,34,36,7898
0,91,toyota,diesel,std,four,hatchback,fwd,front,95.70,166.30,64.40,52.80,2275,ohc,four,110,idi,3.27,3.35,22.50,56,4500,38,47,7788
0,91,toyota,gas,std,four,sedan,fwd,front,95.70,166.30,64.40,53.00,2094,ohc,four,98,2bbl,3.19,3.03,9.00,70,4800,38,47,7738
0,91,toyota,gas,std,four,hatchback,fwd,front,95.70,166.30,64.40,52.80,2122,ohc,four,98,2bbl,3.19,3.03,9.00,70,4800,28,34,8358
0,91,toyota,gas,std,four,sedan,fwd,front,95.70,166.30,64.40,52.80,2140,ohc,four,98,2bbl,3.19,3.03,9.00,70,4800,28,34,9258
1,168,toyota,gas,std,two,sedan,rwd,front,94.50,168.70,64.00,52.60,2169,ohc,four,98,2bbl,3.19,3.03,9.00,70,4800,29,34,8058
1,168,toyota,gas,std,two,hatchback,rwd,front,94.50,168.70,64.00,52.60,2204,ohc,four,98,2bbl,3.19,3.03,9.00,70,4800,29,34,8238
1,168,toyota,gas,std,two,sedan,rwd,front,94.50,168.70,64.00,52.60,2265,dohc,four,98,mpfi,3.24,3.08,9.40,112,6600,26,29,9298
1,168,toyota,gas,std,two,hatchback,rwd,front,94.50,168.70,64.00,52.60,2300,dohc,four,98,mpfi,3.24,3.08,9.40,112,6600,26,29,9538
2,134,toyota,gas,std,two,hardtop,rwd,front,98.40,176.20,65.60,52.00,2540,ohc,four,146,mpfi,3.62,3.50,9.30,116,4800,24,30,8449
2,134,toyota,gas,std,two,hardtop,rwd,front,98.40,176.20,65.60,52.00,2536,ohc,four,146,mpfi,3.62,3.50,9.30,116,4800,24,30,9639
2,134,toyota,gas,std,two,hatchback,rwd,front,98.40,176.20,65.60,52.00,2551,ohc,four,146,mpfi,3.62,3.50,9.30,116,4800,24,30,9989
2,134,toyota,gas,std,two,hardtop,rwd,front,98.40,176.20,65.60,52.00,2679,ohc,four,146,mpfi,3.62,3.50,9.30,116,4800,24,30,11199
2,134,toyota,gas,std,two,hatchback,rwd,front,98.40,176.20,65.60,52.00,2714,ohc,four,146,mpfi,3.62,3.50,9.30,116,4800,24,30,11549
2,134,toyota,gas,std,two,convertible,rwd,front,98.40,176.20,65.60,53.00,2975,ohc,four,146,mpfi,3.62,3.50,9.30,116,4800,24,30,17669
-1,65,toyota,gas,std,four,sedan,fwd,front,102.40,175.60,66.50,54.90,2326,ohc,four,122,mpfi,3.31,3.54,8.70,92,4200,29,34,8948
-1,65,toyota,diesel,turbo,four,sedan,fwd,front,102.40,175.60,66.50,54.90,2480,ohc,four,110,idi,3.27,3.35,22.50,73,4500,30,33,10698
-1,65,toyota,gas,std,four,hatchback,fwd,front,102.40,175.60,66.50,53.90,2414,ohc,four,122,mpfi,3.31,3.54,8.70,92,4200,27,32,9988
-1,65,toyota,gas,std,four,sedan,fwd,front,102.40,175.60,66.50,54.90,2414,ohc,four,122,mpfi,3.31,3.54,8.70,92,4200,27,32,10898
-1,65,toyota,gas,std,four,hatchback,fwd,front,102.40,175.60,66.50,53.90,2458,ohc,four,122,mpfi,3.31,3.54,8.70,92,4200,27,32,11248
3,197,toyota,gas,std,two,hatchback,rwd,front,102.90,183.50,67.70,52.00,2976,dohc,six,171,mpfi,3.27,3.35,9.30,161,5200,20,24,16558
3,197,toyota,gas,std,two,hatchback,rwd,front,102.90,183.50,67.70,52.00,3016,dohc,six,171,mpfi,3.27,3.35,9.30,161,5200,19,24,15998
-1,90,toyota,gas,std,four,sedan,rwd,front,104.50,187.80,66.50,54.10,3131,dohc,six,171,mpfi,3.27,3.35,9.20,156,5200,20,24,15690
2,122,volkswagen,diesel,std,two,sedan,fwd,front,97.30,171.70,65.50,55.70,2261,ohc,four,97,idi,3.01,3.40,23.00,52,4800,37,46,7775
2,122,volkswagen,gas,std,two,sedan,fwd,front,97.30,171.70,65.50,55.70,2209,ohc,four,109,mpfi,3.19,3.40,9.00,85,5250,27,34,7975
2,94,volkswagen,diesel,std,four,sedan,fwd,front,97.30,171.70,65.50,55.70,2264,ohc,four,97,idi,3.01,3.40,23.00,52,4800,37,46,7995
2,94,volkswagen,gas,std,four,sedan,fwd,front,97.30,171.70,65.50,55.70,2212,ohc,four,109,mpfi,3.19,3.40,9.00,85,5250,27,34,8195
2,94,volkswagen,gas,std,four,sedan,fwd,front,97.30,171.70,65.50,55.70,2275,ohc,four,109,mpfi,3.19,3.40,9.00,85,5250,27,34,8495
2,94,volkswagen,diesel,turbo,four,sedan,fwd,front,97.30,171.70,65.50,55.70,2319,ohc,four,97,idi,3.01,3.40,23.00,68,4500,37,42,9495
2,94,volkswagen,gas,std,four,sedan,fwd,front,97.30,171.70,65.50,55.70,2300,ohc,four,109,mpfi,3.19,3.40,10.00,100,5500,26,32,9995
3,256,volkswagen,gas,std,two,hatchback,fwd,front,94.50,165.70,64.00,51.40,2221,ohc,four,109,mpfi,3.19,3.40,8.50,90,5500,24,29,9980
-2,103,volvo,gas,std,four,sedan,rwd,front,104.30,188.80,67.20,56.20,2912,ohc,four,141,mpfi,3.78,3.15,9.50,114,5400,23,28,12940
-1,74,volvo,gas,std,four,wagon,rwd,front,104.30,188.80,67.20,57.50,3034,ohc,four,141,mpfi,3.78,3.15,9.50,114,5400,23,28,13415
-2,103,volvo,gas,std,four,sedan,rwd,front,104.30,188.80,67.20,56.20,2935,ohc,four,141,mpfi,3.78,3.15,9.50,114,5400,24,28,15985
-1,74,volvo,gas,std,four,wagon,rwd,front,104.30,188.80,67.20,57.50,3042,ohc,four,141,mpfi,3.78,3.15,9.50,114,5400,24,28,16515
-2,103,volvo,gas,turbo,four,sedan,rwd,front,104.30,188.80,67.20,56.20,3045,ohc,four,130,mpfi,3.62,3.15,7.50,162,5100,17,22,18420
-1,74,volvo,gas,turbo,four,wagon,rwd,front,104.30,188.80,67.20,57.50,3157,ohc,four,130,mpfi,3.62,3.15,7.50,162,5100,17,22,18950
-1,95,volvo,gas,std,four,sedan,rwd,front,109.10,188.80,68.90,55.50,2952,ohc,four,141,mpfi,3.78,3.15,9.50,114,5400,23,28,16845
-1,95,volvo,gas,turbo,four,sedan,rwd,front,109.10,188.80,68.80,55.50,3049,ohc,four,141,mpfi,3.78,3.15,8.70,160,5300,19,25,19045
-1,95,volvo,gas,std,four,sedan,rwd,front,109.10,188.80,68.90,55.50,3012,ohcv,six,173,mpfi,3.58,2.87,8.80,134,5500,18,23,21485
-1,95,volvo,diesel,turbo,four,sedan,rwd,front,109.10,188.80,68.90,55.50,3217,ohc,six,145,idi,3.01,3.40,23.00,106,4800,26,27,22470
-1,95,volvo,gas,turbo,four,sedan,rwd,front,109.10,188.80,68.90,55.50,3062,ohc,four,141,mpfi,3.78,3.15,9.50,114,5400,19,25,22625
================================================
FILE: data/day3/haberman.csv
================================================
Age,Year,AuxNodes,Status
30,64,1,1
30,62,3,1
30,65,0,1
31,59,2,1
31,65,4,1
33,58,10,1
33,60,0,1
34,59,0,2
34,66,9,2
34,58,30,1
34,60,1,1
34,61,10,1
34,67,7,1
34,60,0,1
35,64,13,1
35,63,0,1
36,60,1,1
36,69,0,1
37,60,0,1
37,63,0,1
37,58,0,1
37,59,6,1
37,60,15,1
37,63,0,1
38,69,21,2
38,59,2,1
38,60,0,1
38,60,0,1
38,62,3,1
38,64,1,1
38,66,0,1
38,66,11,1
38,60,1,1
38,67,5,1
39,66,0,2
39,63,0,1
39,67,0,1
39,58,0,1
39,59,2,1
39,63,4,1
40,58,2,1
40,58,0,1
40,65,0,1
41,60,23,2
41,64,0,2
41,67,0,2
41,58,0,1
41,59,8,1
41,59,0,1
41,64,0,1
41,69,8,1
41,65,0,1
41,65,0,1
42,69,1,2
42,59,0,2
42,58,0,1
42,60,1,1
42,59,2,1
42,61,4,1
42,62,20,1
42,65,0,1
42,63,1,1
43,58,52,2
43,59,2,2
43,64,0,2
43,64,0,2
43,63,14,1
43,64,2,1
43,64,3,1
43,60,0,1
43,63,2,1
43,65,0,1
43,66,4,1
44,64,6,2
44,58,9,2
44,63,19,2
44,61,0,1
44,63,1,1
44,61,0,1
44,67,16,1
45,65,6,2
45,66,0,2
45,67,1,2
45,60,0,1
45,67,0,1
45,59,14,1
45,64,0,1
45,68,0,1
45,67,1,1
46,58,2,2
46,69,3,2
46,62,5,2
46,65,20,2
46,62,0,1
46,58,3,1
46,63,0,1
47,63,23,2
47,62,0,2
47,65,0,2
47,61,0,1
47,63,6,1
47,66,0,1
47,67,0,1
47,58,3,1
47,60,4,1
47,68,4,1
47,66,12,1
48,58,11,2
48,58,11,2
48,67,7,2
48,61,8,1
48,62,2,1
48,64,0,1
48,66,0,1
49,63,0,2
49,64,10,2
49,61,1,1
49,62,0,1
49,66,0,1
49,60,1,1
49,62,1,1
49,63,3,1
49,61,0,1
49,67,1,1
50,63,13,2
50,64,0,2
50,59,0,1
50,61,6,1
50,61,0,1
50,63,1,1
50,58,1,1
50,59,2,1
50,61,0,1
50,64,0,1
50,65,4,1
50,66,1,1
51,59,13,2
51,59,3,2
51,64,7,1
51,59,1,1
51,65,0,1
51,66,1,1
52,69,3,2
52,59,2,2
52,62,3,2
52,66,4,2
52,61,0,1
52,63,4,1
52,69,0,1
52,60,4,1
52,60,5,1
52,62,0,1
52,62,1,1
52,64,0,1
52,65,0,1
52,68,0,1
53,58,4,2
53,65,1,2
53,59,3,2
53,60,9,2
53,63,24,2
53,65,12,2
53,58,1,1
53,60,1,1
53,60,2,1
53,61,1,1
53,63,0,1
54,60,11,2
54,65,23,2
54,65,5,2
54,68,7,2
54,59,7,1
54,60,3,1
54,66,0,1
54,67,46,1
54,62,0,1
54,69,7,1
54,63,19,1
54,58,1,1
54,62,0,1
55,63,6,2
55,68,15,2
55,58,1,1
55,58,0,1
55,58,1,1
55,66,18,1
55,66,0,1
55,69,3,1
55,69,22,1
55,67,1,1
56,65,9,2
56,66,3,2
56,60,0,1
56,66,2,1
56,66,1,1
56,67,0,1
56,60,0,1
57,61,5,2
57,62,14,2
57,64,1,2
57,64,9,1
57,69,0,1
57,61,0,1
57,62,0,1
57,63,0,1
57,64,0,1
57,64,0,1
57,67,0,1
58,59,0,1
58,60,3,1
58,61,1,1
58,67,0,1
58,58,0,1
58,58,3,1
58,61,2,1
59,62,35,2
59,60,0,1
59,63,0,1
59,64,1,1
59,64,4,1
59,64,0,1
59,64,7,1
59,67,3,1
60,59,17,2
60,65,0,2
60,61,1,1
60,67,2,1
60,61,25,1
60,64,0,1
61,62,5,2
61,65,0,2
61,68,1,2
61,59,0,1
61,59,0,1
61,64,0,1
61,65,8,1
61,68,0,1
61,59,0,1
62,59,13,2
62,58,0,2
62,65,19,2
62,62,6,1
62,66,0,1
62,66,0,1
62,58,0,1
63,60,1,2
63,61,0,1
63,62,0,1
63,63,0,1
63,63,0,1
63,66,0,1
63,61,9,1
63,61,28,1
64,58,0,1
64,65,22,1
64,66,0,1
64,61,0,1
64,68,0,1
65,58,0,2
65,61,2,2
65,62,22,2
65,66,15,2
65,58,0,1
65,64,0,1
65,67,0,1
65,59,2,1
65,64,0,1
65,67,1,1
66,58,0,2
66,61,13,2
66,58,0,1
66,58,1,1
66,68,0,1
67,64,8,2
67,63,1,2
67,66,0,1
67,66,0,1
67,61,0,1
67,65,0,1
68,67,0,1
68,68,0,1
69,67,8,2
69,60,0,1
69,65,0,1
69,66,0,1
70,58,0,2
70,58,4,2
70,66,14,1
70,67,0,1
70,68,0,1
70,59,8,1
70,63,0,1
71,68,2,1
72,63,0,2
72,58,0,1
72,64,0,1
72,67,3,1
73,62,0,1
73,68,0,1
74,65,3,2
74,63,0,1
75,62,1,1
76,67,0,1
77,65,3,1
78,65,1,2
83,58,2,2
================================================
FILE: data/day6/glass.csv
================================================
id,ri,na,mg,al,si,k,ca,ba,fe,class
1,1.52101,13.64,4.49,1.10,71.78,0.06,8.75,0.00,0.00,1
2,1.51761,13.89,3.60,1.36,72.73,0.48,7.83,0.00,0.00,1
3,1.51618,13.53,3.55,1.54,72.99,0.39,7.78,0.00,0.00,1
4,1.51766,13.21,3.69,1.29,72.61,0.57,8.22,0.00,0.00,1
5,1.51742,13.27,3.62,1.24,73.08,0.55,8.07,0.00,0.00,1
6,1.51596,12.79,3.61,1.62,72.97,0.64,8.07,0.00,0.26,1
7,1.51743,13.30,3.60,1.14,73.09,0.58,8.17,0.00,0.00,1
8,1.51756,13.15,3.61,1.05,73.24,0.57,8.24,0.00,0.00,1
9,1.51918,14.04,3.58,1.37,72.08,0.56,8.30,0.00,0.00,1
10,1.51755,13.00,3.60,1.36,72.99,0.57,8.40,0.00,0.11,1
11,1.51571,12.72,3.46,1.56,73.20,0.67,8.09,0.00,0.24,1
12,1.51763,12.80,3.66,1.27,73.01,0.60,8.56,0.00,0.00,1
13,1.51589,12.88,3.43,1.40,73.28,0.69,8.05,0.00,0.24,1
14,1.51748,12.86,3.56,1.27,73.21,0.54,8.38,0.00,0.17,1
15,1.51763,12.61,3.59,1.31,73.29,0.58,8.50,0.00,0.00,1
16,1.51761,12.81,3.54,1.23,73.24,0.58,8.39,0.00,0.00,1
17,1.51784,12.68,3.67,1.16,73.11,0.61,8.70,0.00,0.00,1
18,1.52196,14.36,3.85,0.89,71.36,0.15,9.15,0.00,0.00,1
19,1.51911,13.90,3.73,1.18,72.12,0.06,8.89,0.00,0.00,1
20,1.51735,13.02,3.54,1.69,72.73,0.54,8.44,0.00,0.07,1
21,1.51750,12.82,3.55,1.49,72.75,0.54,8.52,0.00,0.19,1
22,1.51966,14.77,3.75,0.29,72.02,0.03,9.00,0.00,0.00,1
23,1.51736,12.78,3.62,1.29,72.79,0.59,8.70,0.00,0.00,1
24,1.51751,12.81,3.57,1.35,73.02,0.62,8.59,0.00,0.00,1
25,1.51720,13.38,3.50,1.15,72.85,0.50,8.43,0.00,0.00,1
26,1.51764,12.98,3.54,1.21,73.00,0.65,8.53,0.00,0.00,1
27,1.51793,13.21,3.48,1.41,72.64,0.59,8.43,0.00,0.00,1
28,1.51721,12.87,3.48,1.33,73.04,0.56,8.43,0.00,0.00,1
29,1.51768,12.56,3.52,1.43,73.15,0.57,8.54,0.00,0.00,1
30,1.51784,13.08,3.49,1.28,72.86,0.60,8.49,0.00,0.00,1
31,1.51768,12.65,3.56,1.30,73.08,0.61,8.69,0.00,0.14,1
32,1.51747,12.84,3.50,1.14,73.27,0.56,8.55,0.00,0.00,1
33,1.51775,12.85,3.48,1.23,72.97,0.61,8.56,0.09,0.22,1
34,1.51753,12.57,3.47,1.38,73.39,0.60,8.55,0.00,0.06,1
35,1.51783,12.69,3.54,1.34,72.95,0.57,8.75,0.00,0.00,1
36,1.51567,13.29,3.45,1.21,72.74,0.56,8.57,0.00,0.00,1
37,1.51909,13.89,3.53,1.32,71.81,0.51,8.78,0.11,0.00,1
38,1.51797,12.74,3.48,1.35,72.96,0.64,8.68,0.00,0.00,1
39,1.52213,14.21,3.82,0.47,71.77,0.11,9.57,0.00,0.00,1
40,1.52213,14.21,3.82,0.47,71.77,0.11,9.57,0.00,0.00,1
41,1.51793,12.79,3.50,1.12,73.03,0.64,8.77,0.00,0.00,1
42,1.51755,12.71,3.42,1.20,73.20,0.59,8.64,0.00,0.00,1
43,1.51779,13.21,3.39,1.33,72.76,0.59,8.59,0.00,0.00,1
44,1.52210,13.73,3.84,0.72,71.76,0.17,9.74,0.00,0.00,1
45,1.51786,12.73,3.43,1.19,72.95,0.62,8.76,0.00,0.30,1
46,1.51900,13.49,3.48,1.35,71.95,0.55,9.00,0.00,0.00,1
47,1.51869,13.19,3.37,1.18,72.72,0.57,8.83,0.00,0.16,1
48,1.52667,13.99,3.70,0.71,71.57,0.02,9.82,0.00,0.10,1
49,1.52223,13.21,3.77,0.79,71.99,0.13,10.02,0.00,0.00,1
50,1.51898,13.58,3.35,1.23,72.08,0.59,8.91,0.00,0.00,1
51,1.52320,13.72,3.72,0.51,71.75,0.09,10.06,0.00,0.16,1
52,1.51926,13.20,3.33,1.28,72.36,0.60,9.14,0.00,0.11,1
53,1.51808,13.43,2.87,1.19,72.84,0.55,9.03,0.00,0.00,1
54,1.51837,13.14,2.84,1.28,72.85,0.55,9.07,0.00,0.00,1
55,1.51778,13.21,2.81,1.29,72.98,0.51,9.02,0.00,0.09,1
56,1.51769,12.45,2.71,1.29,73.70,0.56,9.06,0.00,0.24,1
57,1.51215,12.99,3.47,1.12,72.98,0.62,8.35,0.00,0.31,1
58,1.51824,12.87,3.48,1.29,72.95,0.60,8.43,0.00,0.00,1
59,1.51754,13.48,3.74,1.17,72.99,0.59,8.03,0.00,0.00,1
60,1.51754,13.39,3.66,1.19,72.79,0.57,8.27,0.00,0.11,1
61,1.51905,13.60,3.62,1.11,72.64,0.14,8.76,0.00,0.00,1
62,1.51977,13.81,3.58,1.32,71.72,0.12,8.67,0.69,0.00,1
63,1.52172,13.51,3.86,0.88,71.79,0.23,9.54,0.00,0.11,1
64,1.52227,14.17,3.81,0.78,71.35,0.00,9.69,0.00,0.00,1
65,1.52172,13.48,3.74,0.90,72.01,0.18,9.61,0.00,0.07,1
66,1.52099,13.69,3.59,1.12,71.96,0.09,9.40,0.00,0.00,1
67,1.52152,13.05,3.65,0.87,72.22,0.19,9.85,0.00,0.17,1
68,1.52152,13.05,3.65,0.87,72.32,0.19,9.85,0.00,0.17,1
69,1.52152,13.12,3.58,0.90,72.20,0.23,9.82,0.00,0.16,1
70,1.52300,13.31,3.58,0.82,71.99,0.12,10.17,0.00,0.03,1
71,1.51574,14.86,3.67,1.74,71.87,0.16,7.36,0.00,0.12,2
72,1.51848,13.64,3.87,1.27,71.96,0.54,8.32,0.00,0.32,2
73,1.51593,13.09,3.59,1.52,73.10,0.67,7.83,0.00,0.00,2
74,1.51631,13.34,3.57,1.57,72.87,0.61,7.89,0.00,0.00,2
75,1.51596,13.02,3.56,1.54,73.11,0.72,7.90,0.00,0.00,2
76,1.51590,13.02,3.58,1.51,73.12,0.69,7.96,0.00,0.00,2
77,1.51645,13.44,3.61,1.54,72.39,0.66,8.03,0.00,0.00,2
78,1.51627,13.00,3.58,1.54,72.83,0.61,8.04,0.00,0.00,2
79,1.51613,13.92,3.52,1.25,72.88,0.37,7.94,0.00,0.14,2
80,1.51590,12.82,3.52,1.90,72.86,0.69,7.97,0.00,0.00,2
81,1.51592,12.86,3.52,2.12,72.66,0.69,7.97,0.00,0.00,2
82,1.51593,13.25,3.45,1.43,73.17,0.61,7.86,0.00,0.00,2
83,1.51646,13.41,3.55,1.25,72.81,0.68,8.10,0.00,0.00,2
84,1.51594,13.09,3.52,1.55,72.87,0.68,8.05,0.00,0.09,2
85,1.51409,14.25,3.09,2.08,72.28,1.10,7.08,0.00,0.00,2
86,1.51625,13.36,3.58,1.49,72.72,0.45,8.21,0.00,0.00,2
87,1.51569,13.24,3.49,1.47,73.25,0.38,8.03,0.00,0.00,2
88,1.51645,13.40,3.49,1.52,72.65,0.67,8.08,0.00,0.10,2
89,1.51618,13.01,3.50,1.48,72.89,0.60,8.12,0.00,0.00,2
90,1.51640,12.55,3.48,1.87,73.23,0.63,8.08,0.00,0.09,2
91,1.51841,12.93,3.74,1.11,72.28,0.64,8.96,0.00,0.22,2
92,1.51605,12.90,3.44,1.45,73.06,0.44,8.27,0.00,0.00,2
93,1.51588,13.12,3.41,1.58,73.26,0.07,8.39,0.00,0.19,2
94,1.51590,13.24,3.34,1.47,73.10,0.39,8.22,0.00,0.00,2
95,1.51629,12.71,3.33,1.49,73.28,0.67,8.24,0.00,0.00,2
96,1.51860,13.36,3.43,1.43,72.26,0.51,8.60,0.00,0.00,2
97,1.51841,13.02,3.62,1.06,72.34,0.64,9.13,0.00,0.15,2
98,1.51743,12.20,3.25,1.16,73.55,0.62,8.90,0.00,0.24,2
99,1.51689,12.67,2.88,1.71,73.21,0.73,8.54,0.00,0.00,2
100,1.51811,12.96,2.96,1.43,72.92,0.60,8.79,0.14,0.00,2
101,1.51655,12.75,2.85,1.44,73.27,0.57,8.79,0.11,0.22,2
102,1.51730,12.35,2.72,1.63,72.87,0.70,9.23,0.00,0.00,2
103,1.51820,12.62,2.76,0.83,73.81,0.35,9.42,0.00,0.20,2
104,1.52725,13.80,3.15,0.66,70.57,0.08,11.64,0.00,0.00,2
105,1.52410,13.83,2.90,1.17,71.15,0.08,10.79,0.00,0.00,2
106,1.52475,11.45,0.00,1.88,72.19,0.81,13.24,0.00,0.34,2
107,1.53125,10.73,0.00,2.10,69.81,0.58,13.30,3.15,0.28,2
108,1.53393,12.30,0.00,1.00,70.16,0.12,16.19,0.00,0.24,2
109,1.52222,14.43,0.00,1.00,72.67,0.10,11.52,0.00,0.08,2
110,1.51818,13.72,0.00,0.56,74.45,0.00,10.99,0.00,0.00,2
111,1.52664,11.23,0.00,0.77,73.21,0.00,14.68,0.00,0.00,2
112,1.52739,11.02,0.00,0.75,73.08,0.00,14.96,0.00,0.00,2
113,1.52777,12.64,0.00,0.67,72.02,0.06,14.40,0.00,0.00,2
114,1.51892,13.46,3.83,1.26,72.55,0.57,8.21,0.00,0.14,2
115,1.51847,13.10,3.97,1.19,72.44,0.60,8.43,0.00,0.00,2
116,1.51846,13.41,3.89,1.33,72.38,0.51,8.28,0.00,0.00,2
117,1.51829,13.24,3.90,1.41,72.33,0.55,8.31,0.00,0.10,2
118,1.51708,13.72,3.68,1.81,72.06,0.64,7.88,0.00,0.00,2
119,1.51673,13.30,3.64,1.53,72.53,0.65,8.03,0.00,0.29,2
120,1.51652,13.56,3.57,1.47,72.45,0.64,7.96,0.00,0.00,2
121,1.51844,13.25,3.76,1.32,72.40,0.58,8.42,0.00,0.00,2
122,1.51663,12.93,3.54,1.62,72.96,0.64,8.03,0.00,0.21,2
123,1.51687,13.23,3.54,1.48,72.84,0.56,8.10,0.00,0.00,2
124,1.51707,13.48,3.48,1.71,72.52,0.62,7.99,0.00,0.00,2
125,1.52177,13.20,3.68,1.15,72.75,0.54,8.52,0.00,0.00,2
126,1.51872,12.93,3.66,1.56,72.51,0.58,8.55,0.00,0.12,2
127,1.51667,12.94,3.61,1.26,72.75,0.56,8.60,0.00,0.00,2
128,1.52081,13.78,2.28,1.43,71.99,0.49,9.85,0.00,0.17,2
129,1.52068,13.55,2.09,1.67,72.18,0.53,9.57,0.27,0.17,2
130,1.52020,13.98,1.35,1.63,71.76,0.39,10.56,0.00,0.18,2
131,1.52177,13.75,1.01,1.36,72.19,0.33,11.14,0.00,0.00,2
132,1.52614,13.70,0.00,1.36,71.24,0.19,13.44,0.00,0.10,2
133,1.51813,13.43,3.98,1.18,72.49,0.58,8.15,0.00,0.00,2
134,1.51800,13.71,3.93,1.54,71.81,0.54,8.21,0.00,0.15,2
135,1.51811,13.33,3.85,1.25,72.78,0.52,8.12,0.00,0.00,2
136,1.51789,13.19,3.90,1.30,72.33,0.55,8.44,0.00,0.28,2
137,1.51806,13.00,3.80,1.08,73.07,0.56,8.38,0.00,0.12,2
138,1.51711,12.89,3.62,1.57,72.96,0.61,8.11,0.00,0.00,2
139,1.51674,12.79,3.52,1.54,73.36,0.66,7.90,0.00,0.00,2
140,1.51674,12.87,3.56,1.64,73.14,0.65,7.99,0.00,0.00,2
141,1.51690,13.33,3.54,1.61,72.54,0.68,8.11,0.00,0.00,2
142,1.51851,13.20,3.63,1.07,72.83,0.57,8.41,0.09,0.17,2
143,1.51662,12.85,3.51,1.44,73.01,0.68,8.23,0.06,0.25,2
144,1.51709,13.00,3.47,1.79,72.72,0.66,8.18,0.00,0.00,2
145,1.51660,12.99,3.18,1.23,72.97,0.58,8.81,0.00,0.24,2
146,1.51839,12.85,3.67,1.24,72.57,0.62,8.68,0.00,0.35,2
147,1.51769,13.65,3.66,1.11,72.77,0.11,8.60,0.00,0.00,3
148,1.51610,13.33,3.53,1.34,72.67,0.56,8.33,0.00,0.00,3
149,1.51670,13.24,3.57,1.38,72.70,0.56,8.44,0.00,0.10,3
150,1.51643,12.16,3.52,1.35,72.89,0.57,8.53,0.00,0.00,3
151,1.51665,13.14,3.45,1.76,72.48,0.60,8.38,0.00,0.17,3
152,1.52127,14.32,3.90,0.83,71.50,0.00,9.49,0.00,0.00,3
153,1.51779,13.64,3.65,0.65,73.00,0.06,8.93,0.00,0.00,3
154,1.51610,13.42,3.40,1.22,72.69,0.59,8.32,0.00,0.00,3
155,1.51694,12.86,3.58,1.31,72.61,0.61,8.79,0.00,0.00,3
156,1.51646,13.04,3.40,1.26,73.01,0.52,8.58,0.00,0.00,3
157,1.51655,13.41,3.39,1.28,72.64,0.52,8.65,0.00,0.00,3
158,1.52121,14.03,3.76,0.58,71.79,0.11,9.65,0.00,0.00,3
159,1.51776,13.53,3.41,1.52,72.04,0.58,8.79,0.00,0.00,3
160,1.51796,13.50,3.36,1.63,71.94,0.57,8.81,0.00,0.09,3
161,1.51832,13.33,3.34,1.54,72.14,0.56,8.99,0.00,0.00,3
162,1.51934,13.64,3.54,0.75,72.65,0.16,8.89,0.15,0.24,3
163,1.52211,14.19,3.78,0.91,71.36,0.23,9.14,0.00,0.37,3
164,1.51514,14.01,2.68,3.50,69.89,1.68,5.87,2.20,0.00,5
165,1.51915,12.73,1.85,1.86,72.69,0.60,10.09,0.00,0.00,5
166,1.52171,11.56,1.88,1.56,72.86,0.47,11.41,0.00,0.00,5
167,1.52151,11.03,1.71,1.56,73.44,0.58,11.62,0.00,0.00,5
168,1.51969,12.64,0.00,1.65,73.75,0.38,11.53,0.00,0.00,5
169,1.51666,12.86,0.00,1.83,73.88,0.97,10.17,0.00,0.00,5
170,1.51994,13.27,0.00,1.76,73.03,0.47,11.32,0.00,0.00,5
171,1.52369,13.44,0.00,1.58,72.22,0.32,12.24,0.00,0.00,5
172,1.51316,13.02,0.00,3.04,70.48,6.21,6.96,0.00,0.00,5
173,1.51321,13.00,0.00,3.02,70.70,6.21,6.93,0.00,0.00,5
174,1.52043,13.38,0.00,1.40,72.25,0.33,12.50,0.00,0.00,5
175,1.52058,12.85,1.61,2.17,72.18,0.76,9.70,0.24,0.51,5
176,1.52119,12.97,0.33,1.51,73.39,0.13,11.27,0.00,0.28,5
177,1.51905,14.00,2.39,1.56,72.37,0.00,9.57,0.00,0.00,6
178,1.51937,13.79,2.41,1.19,72.76,0.00,9.77,0.00,0.00,6
179,1.51829,14.46,2.24,1.62,72.38,0.00,9.26,0.00,0.00,6
180,1.51852,14.09,2.19,1.66,72.67,0.00,9.32,0.00,0.00,6
181,1.51299,14.40,1.74,1.54,74.55,0.00,7.59,0.00,0.00,6
182,1.51888,14.99,0.78,1.74,72.50,0.00,9.95,0.00,0.00,6
183,1.51916,14.15,0.00,2.09,72.74,0.00,10.88,0.00,0.00,6
184,1.51969,14.56,0.00,0.56,73.48,0.00,11.22,0.00,0.00,6
185,1.51115,17.38,0.00,0.34,75.41,0.00,6.65,0.00,0.00,6
186,1.51131,13.69,3.20,1.81,72.81,1.76,5.43,1.19,0.00,7
187,1.51838,14.32,3.26,2.22,71.25,1.46,5.79,1.63,0.00,7
188,1.52315,13.44,3.34,1.23,72.38,0.60,8.83,0.00,0.00,7
189,1.52247,14.86,2.20,2.06,70.26,0.76,9.76,0.00,0.00,7
190,1.52365,15.79,1.83,1.31,70.43,0.31,8.61,1.68,0.00,7
191,1.51613,13.88,1.78,1.79,73.10,0.00,8.67,0.76,0.00,7
192,1.51602,14.85,0.00,2.38,73.28,0.00,8.76,0.64,0.09,7
193,1.51623,14.20,0.00,2.79,73.46,0.04,9.04,0.40,0.09,7
194,1.51719,14.75,0.00,2.00,73.02,0.00,8.53,1.59,0.08,7
195,1.51683,14.56,0.00,1.98,73.29,0.00,8.52,1.57,0.07,7
196,1.51545,14.14,0.00,2.68,73.39,0.08,9.07,0.61,0.05,7
197,1.51556,13.87,0.00,2.54,73.23,0.14,9.41,0.81,0.01,7
198,1.51727,14.70,0.00,2.34,73.28,0.00,8.95,0.66,0.00,7
199,1.51531,14.38,0.00,2.66,73.10,0.04,9.08,0.64,0.00,7
200,1.51609,15.01,0.00,2.51,73.05,0.05,8.83,0.53,0.00,7
201,1.51508,15.15,0.00,2.25,73.50,0.00,8.34,0.63,0.00,7
202,1.51653,11.95,0.00,1.19,75.18,2.70,8.93,0.00,0.00,7
203,1.51514,14.85,0.00,2.42,73.72,0.00,8.39,0.56,0.00,7
204,1.51658,14.80,0.00,1.99,73.11,0.00,8.28,1.71,0.00,7
205,1.51617,14.95,0.00,2.27,73.30,0.00,8.71,0.67,0.00,7
206,1.51732,14.95,0.00,1.80,72.99,0.00,8.61,1.55,0.00,7
207,1.51645,14.94,0.00,1.87,73.11,0.00,8.67,1.38,0.00,7
208,1.51831,14.39,0.00,1.82,72.86,1.41,6.47,2.88,0.00,7
209,1.51640,14.37,0.00,2.74,72.85,0.00,9.45,0.54,0.00,7
210,1.51623,14.14,0.00,2.88,72.61,0.08,9.18,1.06,0.00,7
211,1.51685,14.92,0.00,1.99,73.06,0.00,8.40,1.59,0.00,7
212,1.52065,14.36,0.00,2.02,73.42,0.00,8.44,1.64,0.00,7
213,1.51651,14.38,0.00,1.94,73.61,0.00,8.48,1.57,0.00,7
214,1.51711,14.23,0.00,2.08,73.36,0.00,8.62,1.67,0.00,7
================================================
FILE: data/day7/winequality-white.csv
================================================
"fixed acidity";"volatile acidity";"citric acid";"residual sugar";"chlorides";"free sulfur dioxide";"total sulfur dioxide";"density";"pH";"sulphates";"alcohol";"quality"
7;0.27;0.36;20.7;0.045;45;170;1.001;3;0.45;8.8;6
6.3;0.3;0.34;1.6;0.049;14;132;0.994;3.3;0.49;9.5;6
8.1;0.28;0.4;6.9;0.05;30;97;0.9951;3.26;0.44;10.1;6
7.2;0.23;0.32;8.5;0.058;47;186;0.9956;3.19;0.4;9.9;6
7.2;0.23;0.32;8.5;0.058;47;186;0.9956;3.19;0.4;9.9;6
8.1;0.28;0.4;6.9;0.05;30;97;0.9951;3.26;0.44;10.1;6
6.2;0.32;0.16;7;0.045;30;136;0.9949;3.18;0.47;9.6;6
7;0.27;0.36;20.7;0.045;45;170;1.001;3;0.45;8.8;6
6.3;0.3;0.34;1.6;0.049;14;132;0.994;3.3;0.49;9.5;6
8.1;0.22;0.43;1.5;0.044;28;129;0.9938;3.22;0.45;11;6
8.1;0.27;0.41;1.45;0.033;11;63;0.9908;2.99;0.56;12;5
8.6;0.23;0.4;4.2;0.035;17;109;0.9947;3.14;0.53;9.7;5
7.9;0.18;0.37;1.2;0.04;16;75;0.992;3.18;0.63;10.8;5
6.6;0.16;0.4;1.5;0.044;48;143;0.9912;3.54;0.52;12.4;7
8.3;0.42;0.62;19.25;0.04;41;172;1.0002;2.98;0.67;9.7;5
6.6;0.17;0.38;1.5;0.032;28;112;0.9914;3.25;0.55;11.4;7
6.3;0.48;0.04;1.1;0.046;30;99;0.9928;3.24;0.36;9.6;6
6.2;0.66;0.48;1.2;0.029;29;75;0.9892;3.33;0.39;12.8;8
7.4;0.34;0.42;1.1;0.033;17;171;0.9917;3.12;0.53;11.3;6
6.5;0.31;0.14;7.5;0.044;34;133;0.9955;3.22;0.5;9.5;5
6.2;0.66;0.48;1.2;0.029;29;75;0.9892;3.33;0.39;12.8;8
6.4;0.31;0.38;2.9;0.038;19;102;0.9912;3.17;0.35;11;7
6.8;0.26;0.42;1.7;0.049;41;122;0.993;3.47;0.48;10.5;8
7.6;0.67;0.14;1.5;0.074;25;168;0.9937;3.05;0.51;9.3;5
6.6;0.27;0.41;1.3;0.052;16;142;0.9951;3.42;0.47;10;6
7;0.25;0.32;9;0.046;56;245;0.9955;3.25;0.5;10.4;6
6.9;0.24;0.35;1;0.052;35;146;0.993;3.45;0.44;10;6
7;0.28;0.39;8.7;0.051;32;141;0.9961;3.38;0.53;10.5;6
7.4;0.27;0.48;1.1;0.047;17;132;0.9914;3.19;0.49;11.6;6
7.2;0.32;0.36;2;0.033;37;114;0.9906;3.1;0.71;12.3;7
8.5;0.24;0.39;10.4;0.044;20;142;0.9974;3.2;0.53;10;6
8.3;0.14;0.34;1.1;0.042;7;47;0.9934;3.47;0.4;10.2;6
7.4;0.25;0.36;2.05;0.05;31;100;0.992;3.19;0.44;10.8;6
6.2;0.12;0.34;1.5;0.045;43;117;0.9939;3.42;0.51;9;6
5.8;0.27;0.2;14.95;0.044;22;179;0.9962;3.37;0.37;10.2;5
7.3;0.28;0.43;1.7;0.08;21;123;0.9905;3.19;0.42;12.8;5
6.5;0.39;0.23;5.4;0.051;25;149;0.9934;3.24;0.35;10;5
7;0.33;0.32;1.2;0.053;38;138;0.9906;3.13;0.28;11.2;6
7.3;0.24;0.39;17.95;0.057;45;149;0.9999;3.21;0.36;8.6;5
7.3;0.24;0.39;17.95;0.057;45;149;0.9999;3.21;0.36;8.6;5
6.7;0.23;0.39;2.5;0.172;63;158;0.9937;3.11;0.36;9.4;6
6.7;0.24;0.39;2.9;0.173;63;157;0.9937;3.1;0.34;9.4;6
7;0.31;0.26;7.4;0.069;28;160;0.9954;3.13;0.46;9.8;6
6.6;0.24;0.27;1.4;0.057;33;152;0.9934;3.22;0.56;9.5;6
6.7;0.23;0.26;1.4;0.06;33;154;0.9934;3.24;0.56;9.5;6
7.4;0.18;0.31;1.4;0.058;38;167;0.9931;3.16;0.53;10;7
6.2;0.45;0.26;4.4;0.063;63;206;0.994;3.27;0.52;9.8;4
6.2;0.46;0.25;4.4;0.066;62;207;0.9939;3.25;0.52;9.8;5
7;0.31;0.26;7.4;0.069;28;160;0.9954;3.13;0.46;9.8;6
6.9;0.19;0.35;5;0.067;32;150;0.995;3.36;0.48;9.8;5
7.2;0.19;0.31;1.6;0.062;31;173;0.9917;3.35;0.44;11.7;6
6.6;0.25;0.29;1.1;0.068;39;124;0.9914;3.34;0.58;11;7
6.2;0.16;0.33;1.1;0.057;21;82;0.991;3.32;0.46;10.9;7
6.4;0.18;0.35;1;0.045;39;108;0.9911;3.31;0.35;10.9;6
6.8;0.2;0.59;0.9;0.147;38;132;0.993;3.05;0.38;9.1;6
6.9;0.25;0.35;1.3;0.039;29;191;0.9908;3.13;0.52;11;6
7.2;0.21;0.34;11.9;0.043;37;213;0.9962;3.09;0.5;9.6;6
6;0.19;0.26;12.4;0.048;50;147;0.9972;3.3;0.36;8.9;6
6.6;0.38;0.15;4.6;0.044;25;78;0.9931;3.11;0.38;10.2;6
7.4;0.2;0.36;1.2;0.038;44;111;0.9926;3.36;0.34;9.9;6
6.8;0.22;0.24;4.9;0.092;30;123;0.9951;3.03;0.46;8.6;6
6;0.19;0.26;12.4;0.048;50;147;0.9972;3.3;0.36;8.9;6
7;0.47;0.07;1.1;0.035;17;151;0.991;3.02;0.34;10.5;5
6.6;0.38;0.15;4.6;0.044;25;78;0.9931;3.11;0.38;10.2;6
7.2;0.24;0.27;1.4;0.038;31;122;0.9927;3.15;0.46;10.3;6
6.2;0.35;0.03;1.2;0.064;29;120;0.9934;3.22;0.54;9.1;5
6.4;0.26;0.24;6.4;0.04;27;124;0.9903;3.22;0.49;12.6;7
6.7;0.25;0.13;1.2;0.041;81;174;0.992;3.14;0.42;9.8;5
6.7;0.23;0.31;2.1;0.046;30;96;0.9926;3.33;0.64;10.7;8
7.4;0.24;0.29;10.1;0.05;21;105;0.9962;3.13;0.35;9.5;5
6.2;0.27;0.43;7.8;0.056;48;244;0.9956;3.1;0.51;9;6
6.8;0.3;0.23;4.6;0.061;50.5;238.5;0.9958;3.32;0.6;9.5;5
6;0.27;0.28;4.8;0.063;31;201;0.9964;3.69;0.71;10;5
8.6;0.23;0.46;1;0.054;9;72;0.9941;2.95;0.49;9.1;6
6.7;0.23;0.31;2.1;0.046;30;96;0.9926;3.33;0.64;10.7;8
7.4;0.24;0.29;10.1;0.05;21;105;0.9962;3.13;0.35;9.5;5
7.1;0.18;0.36;1.4;0.043;31;87;0.9898;3.26;0.37;12.7;7
7;0.32;0.34;1.3;0.042;20;69;0.9912;3.31;0.65;12;7
7.4;0.18;0.3;8.8;0.064;26;103;0.9961;2.94;0.56;9.3;5
6.7;0.54;0.28;5.4;0.06;21;105;0.9949;3.27;0.37;9;5
6.8;0.22;0.31;1.4;0.053;34;114;0.9929;3.39;0.77;10.6;6
7.1;0.2;0.34;16;0.05;51;166;0.9985;3.21;0.6;9.2;6
7.1;0.34;0.2;6.1;0.063;47;164;0.9946;3.17;0.42;10;5
7.3;0.22;0.3;8.2;0.047;42;207;0.9966;3.33;0.46;9.5;6
7.1;0.43;0.61;11.8;0.045;54;155;0.9974;3.11;0.45;8.7;5
7.1;0.44;0.62;11.8;0.044;52;152;0.9975;3.12;0.46;8.7;6
7.2;0.39;0.63;11;0.044;55;156;0.9974;3.09;0.44;8.7;6
6.8;0.25;0.31;13.3;0.05;69;202;0.9972;3.22;0.48;9.7;6
7.1;0.43;0.61;11.8;0.045;54;155;0.9974;3.11;0.45;8.7;5
7.1;0.44;0.62;11.8;0.044;52;152;0.9975;3.12;0.46;8.7;6
7.2;0.39;0.63;11;0.044;55;156;0.9974;3.09;0.44;8.7;6
6.1;0.27;0.43;7.5;0.049;65;243;0.9957;3.12;0.47;9;5
6.9;0.24;0.33;1.7;0.035;47;136;0.99;3.26;0.4;12.6;7
6.9;0.21;0.33;1.8;0.034;48;136;0.9899;3.25;0.41;12.6;7
7.5;0.17;0.32;1.7;0.04;51;148;0.9916;3.21;0.44;11.5;7
7.1;0.26;0.29;12.4;0.044;62;240;0.9969;3.04;0.42;9.2;6
6;0.34;0.66;15.9;0.046;26;164;0.9979;3.14;0.5;8.8;6
8.6;0.265;0.36;1.2;0.034;15;80;0.9913;2.95;0.36;11.4;7
9.8;0.36;0.46;10.5;0.038;4;83;0.9956;2.89;0.3;10.1;4
6;0.34;0.66;15.9;0.046;26;164;0.9979;3.14;0.5;8.8;6
7.4;0.25;0.37;13.5;0.06;52;192;0.9975;3;0.44;9.1;5
7.1;0.12;0.32;9.6;0.054;64;162;0.9962;3.4;0.41;9.4;5
6;0.21;0.24;12.1;0.05;55;164;0.997;3.34;0.39;9.4;5
7.5;0.305;0.4;18.9;0.059;44;170;1;2.99;0.46;9;5
7.4;0.25;0.37;13.5;0.06;52;192;0.9975;3;0.44;9.1;5
7.3;0.13;0.32;14.4;0.051;34;109;0.9974;3.2;0.35;9.2;6
7.1;0.12;0.32;9.6;0.054;64;162;0.9962;3.4;0.41;9.4;5
7.1;0.23;0.35;16.5;0.04;60;171;0.999;3.16;0.59;9.1;6
7.1;0.23;0.35;16.5;0.04;60;171;0.999;3.16;0.59;9.1;6
6.9;0.33;0.28;1.3;0.051;37;187;0.9927;3.27;0.6;10.3;5
6.5;0.17;0.54;8.5;0.082;64;163;0.9959;2.89;0.39;8.8;6
7.2;0.27;0.46;18.75;0.052;45;255;1;3.04;0.52;8.9;5
7.2;0.31;0.5;13.3;0.056;68;195;0.9982;3.01;0.47;9.2;5
6.7;0.41;0.34;9.2;0.049;29;150;0.9968;3.22;0.51;9.1;5
6.7;0.41;0.34;9.2;0.049;29;150;0.9968;3.22;0.51;9.1;5
5.5;0.485;0;1.5;0.065;8;103;0.994;3.63;0.4;9.7;4
6;0.31;0.24;3.3;0.041;25;143;0.9914;3.31;0.44;11.3;6
7;0.14;0.4;1.7;0.035;16;85;0.9911;3.19;0.42;11.8;6
7.2;0.31;0.5;13.3;0.056;68;195;0.9982;3.01;0.47;9.2;5
7.3;0.32;0.48;13.3;0.06;57;196;0.9982;3.04;0.5;9.2;5
5.9;0.36;0.04;5.7;0.046;21;87;0.9934;3.22;0.51;10.2;5
7.8;0.24;0.32;12.2;0.054;42;138;0.9984;3.01;0.54;8.8;5
7.4;0.16;0.31;6.85;0.059;31;131;0.9952;3.29;0.34;9.7;5
6.9;0.19;0.28;5;0.058;14;146;0.9952;3.29;0.36;9.1;6
6.4;0.13;0.47;1.6;0.092;40;158;0.9928;3.21;0.36;9.8;6
6.7;0.19;0.36;1.1;0.026;63;143;0.9912;3.27;0.48;11;6
7.4;0.39;0.23;7;0.033;29;126;0.994;3.14;0.42;10.5;5
6.5;0.24;0.32;7.6;0.038;48;203;0.9958;3.45;0.54;9.7;7
6.1;0.3;0.56;2.8;0.044;47;179;0.9924;3.3;0.57;10.9;7
6.1;0.3;0.56;2.7;0.046;46;184;0.9924;3.31;0.57;10.9;6
5.7;0.26;0.25;10.4;0.02;7;57;0.994;3.39;0.37;10.6;5
6.5;0.24;0.32;7.6;0.038;48;203;0.9958;3.45;0.54;9.7;7
6.5;0.425;0.4;13.1;0.038;59;241;0.9979;3.23;0.57;9;5
6.6;0.24;0.27;15.8;0.035;46;188;0.9982;3.24;0.51;9.2;5
6.8;0.27;0.22;8.1;0.034;55;203;0.9961;3.19;0.52;8.9;5
6.7;0.27;0.31;15.7;0.036;44;179;0.9979;3.26;0.56;9.6;5
8.2;0.23;0.4;1.2;0.027;36;121;0.992;3.12;0.38;10.7;6
7.1;0.37;0.67;10.5;0.045;49;155;0.9975;3.16;0.44;8.7;5
6.8;0.19;0.36;1.9;0.035;30;96;0.9917;3.15;0.54;10.8;7
8.1;0.28;0.39;1.9;0.029;18;79;0.9923;3.23;0.52;11.8;6
6.3;0.31;0.34;2.2;0.045;20;77;0.9927;3.3;0.43;10.2;5
7.1;0.37;0.67;10.5;0.045;49;155;0.9975;3.16;0.44;8.7;5
7.9;0.21;0.4;1.2;0.039;38;107;0.992;3.21;0.54;10.8;6
8.5;0.21;0.41;4.3;0.036;24;99;0.9947;3.18;0.53;9.7;6
8.1;0.2;0.4;2;0.037;19;87;0.9921;3.12;0.54;11.2;6
6.3;0.255;0.37;1.1;0.04;37;114;0.9905;3;0.39;10.9;6
5.6;0.16;0.27;1.4;0.044;53;168;0.9918;3.28;0.37;10.1;6
6.4;0.595;0.14;5.2;0.058;15;97;0.9951;3.38;0.36;9;4
6.3;0.34;0.33;4.6;0.034;19;80;0.9917;3.38;0.58;12;7
6.9;0.25;0.3;4.1;0.054;23;116;0.994;2.99;0.38;9.4;6
7.9;0.22;0.38;8;0.043;46;152;0.9934;3.12;0.32;11.5;7
7.6;0.18;0.46;10.2;0.055;58;135;0.9968;3.14;0.43;9.9;6
6.9;0.25;0.3;4.1;0.054;23;116;0.994;2.99;0.38;9.4;6
7.2;0.18;0.41;1.2;0.048;41;97;0.9919;3.14;0.45;10.4;5
8.2;0.23;0.4;7.5;0.049;12;76;0.9966;3.06;0.84;9.7;6
7.4;0.24;0.42;14;0.066;48;198;0.9979;2.89;0.42;8.9;6
7.4;0.24;0.42;14;0.066;48;198;0.9979;2.89;0.42;8.9;6
6.1;0.32;0.24;1.5;0.036;38;124;0.9898;3.29;0.42;12.4;7
5.2;0.44;0.04;1.4;0.036;43;119;0.9894;3.36;0.33;12.1;8
5.2;0.44;0.04;1.4;0.036;43;119;0.9894;3.36;0.33;12.1;8
6.1;0.32;0.24;1.5;0.036;38;124;0.9898;3.29;0.42;12.4;7
6.4;0.22;0.56;14.5;0.055;27;159;0.998;2.98;0.4;9.1;5
6.3;0.36;0.3;4.8;0.049;14;85;0.9932;3.28;0.39;10.6;5
7.4;0.24;0.42;14;0.066;48;198;0.9979;2.89;0.42;8.9;6
6.7;0.24;0.35;13.1;0.05;64;205;0.997;3.15;0.5;9.5;5
7;0.23;0.36;13;0.051;72;177;0.9972;3.16;0.49;9.8;5
8.4;0.27;0.46;8.7;0.048;39;197;0.9974;3.14;0.59;9.6;6
6.7;0.46;0.18;2.4;0.034;25;98;0.9896;3.08;0.44;12.6;7
7.5;0.29;0.31;8.95;0.055;20;151;0.9968;3.08;0.54;9.3;5
9.8;0.42;0.48;9.85;0.034;5;110;0.9958;2.87;0.29;10;5
7.1;0.3;0.46;1.5;0.066;29;133;0.9906;3.12;0.54;12.7;6
7.9;0.19;0.45;1.5;0.045;17;96;0.9917;3.13;0.39;11;6
7.6;0.48;0.37;0.8;0.037;4;100;0.9902;3.03;0.39;11.4;4
6.3;0.22;0.43;4.55;0.038;31;130;0.9918;3.35;0.33;11.5;7
7.5;0.27;0.31;17.7;0.051;33;173;0.999;3.09;0.64;10.2;5
6.9;0.23;0.4;7.5;0.04;50;151;0.9927;3.11;0.27;11.4;6
7.2;0.32;0.47;5.1;0.044;19;65;0.991;3.03;0.41;12.6;4
5.9;0.23;0.3;12.9;0.054;57;170;0.9972;3.28;0.39;9.4;5
6;0.67;0.07;1.2;0.06;9;108;0.9931;3.11;0.35;8.7;4
6.4;0.25;0.32;5.5;0.049;41;176;0.995;3.19;0.68;9.2;6
6.4;0.33;0.31;5.5;0.048;42;173;0.9951;3.19;0.66;9.3;6
7.1;0.34;0.15;1.2;0.053;61;183;0.9936;3.09;0.43;9.2;5
6.8;0.28;0.4;22;0.048;48;167;1.001;2.93;0.5;8.7;5
6.9;0.27;0.4;14;0.05;64;227;0.9979;3.18;0.58;9.6;6
6.8;0.26;0.56;11.9;0.043;64;226;0.997;3.02;0.63;9.3;5
6.8;0.29;0.56;11.9;0.043;66;230;0.9972;3.02;0.63;9.3;5
6.7;0.24;0.41;9.4;0.04;49;166;0.9954;3.12;0.61;9.9;6
5.9;0.3;0.23;4.2;0.038;42;119;0.9924;3.15;0.5;11;5
6.8;0.53;0.35;3.8;0.034;26;109;0.9906;3.26;0.57;12.7;8
6.5;0.28;0.28;8.5;0.047;54;210;0.9962;3.09;0.54;8.9;4
6.6;0.28;0.28;8.5;0.052;55;211;0.9962;3.09;0.55;8.9;6
6.8;0.28;0.4;22;0.048;48;167;1.001;2.93;0.5;8.7;5
6.8;0.28;0.36;8;0.045;28;123;0.9928;3.02;0.37;11.4;6
6.6;0.15;0.34;5.1;0.055;34;125;0.9942;3.36;0.42;9.6;5
6.4;0.29;0.44;3.6;0.2;75;181;0.9942;3.02;0.41;9.1;5
6.4;0.3;0.45;3.5;0.197;76;180;0.9942;3.02;0.39;9.1;6
6.4;0.29;0.44;3.6;0.197;75;183;0.9942;3.01;0.38;9.1;5
6.8;0.26;0.24;7.8;0.052;54;214;0.9961;3.13;0.47;8.9;5
7.1;0.32;0.24;13.1;0.05;52;204;0.998;3.1;0.49;8.8;5
6.8;0.26;0.24;7.8;0.052;54;214;0.9961;3.13;0.47;8.9;5
6.8;0.27;0.26;16.1;0.049;55;196;0.9984;3.15;0.5;9.3;5
7.1;0.32;0.24;13.1;0.05;52;204;0.998;3.1;0.49;8.8;5
6.9;0.54;0.32;13.2;0.05;53;236;0.9973;3.2;0.5;9.6;5
6.8;0.26;0.34;13.9;0.034;39;134;0.9949;3.33;0.53;12;6
5.8;0.28;0.35;2.3;0.053;36;114;0.9924;3.28;0.5;10.2;4
6.4;0.21;0.5;11.6;0.042;45;153;0.9972;3.15;0.43;8.8;5
7;0.16;0.32;8.3;0.045;38;126;0.9958;3.21;0.34;9.2;5
10.2;0.44;0.88;6.2;0.049;20;124;0.9968;2.99;0.51;9.9;4
6.8;0.57;0.29;2.2;0.04;15;77;0.9938;3.32;0.74;10.2;5
6.1;0.4;0.31;0.9;0.048;23;170;0.993;3.22;0.77;9.5;6
5.6;0.245;0.25;9.7;0.032;12;68;0.994;3.31;0.34;10.5;5
6.8;0.18;0.38;1.4;0.038;35;111;0.9918;3.32;0.59;11.2;7
7;0.16;0.32;8.3;0.045;38;126;0.9958;3.21;0.34;9.2;5
6.7;0.13;0.29;5.3;0.051;31;122;0.9944;3.44;0.37;9.7;6
6.2;0.25;0.25;1.4;0.03;35;105;0.9912;3.3;0.44;11.1;7
5.8;0.26;0.24;9.2;0.044;55;152;0.9961;3.31;0.38;9.4;5
7.5;0.27;0.36;7;0.036;45;164;0.9939;3.03;0.33;11;5
5.8;0.26;0.24;9.2;0.044;55;152;0.9961;3.31;0.38;9.4;5
5.7;0.28;0.24;17.5;0.044;60;167;0.9989;3.31;0.44;9.4;5
7.5;0.23;0.36;7;0.036;43;161;0.9938;3.04;0.32;11;5
7.5;0.27;0.36;7;0.036;45;164;0.9939;3.03;0.33;11;5
7.2;0.685;0.21;9.5;0.07;33;172;0.9971;3;0.55;9.1;6
6.2;0.25;0.25;1.4;0.03;35;105;0.9912;3.3;0.44;11.1;7
6.5;0.19;0.3;0.8;0.043;33;144;0.9936;3.42;0.39;9.1;6
6.3;0.495;0.22;1.8;0.046;31;140;0.9929;3.39;0.54;10.4;6
7.1;0.24;0.41;17.8;0.046;39;145;0.9998;3.32;0.39;8.7;5
6.4;0.17;0.32;2.4;0.048;41;200;0.9938;3.5;0.5;9.7;6
7.1;0.25;0.32;10.3;0.041;66;272;0.9969;3.17;0.52;9.1;6
6.4;0.17;0.32;2.4;0.048;41;200;0.9938;3.5;0.5;9.7;6
7.1;0.24;0.41;17.8;0.046;39;145;0.9998;3.32;0.39;8.7;5
6.8;0.64;0.08;9.7;0.062;26;142;0.9972;3.37;0.46;8.9;4
8.3;0.28;0.4;7.8;0.041;38;194;0.9976;3.34;0.51;9.6;6
8.2;0.27;0.39;7.8;0.039;49;208;0.9976;3.31;0.51;9.5;6
7.2;0.23;0.38;14.3;0.058;55;194;0.9979;3.09;0.44;9;6
7.2;0.23;0.38;14.3;0.058;55;194;0.9979;3.09;0.44;9;6
7.2;0.23;0.38;14.3;0.058;55;194;0.9979;3.09;0.44;9;6
7.2;0.23;0.38;14.3;0.058;55;194;0.9979;3.09;0.44;9;6
6.8;0.52;0.32;13.2;0.044;54;221;0.9972;3.27;0.5;9.6;6
7;0.26;0.59;1.4;0.037;40;120;0.9918;3.34;0.41;11.1;7
6.2;0.25;0.21;15.55;0.039;28;159;0.9982;3.48;0.64;9.6;6
7.3;0.32;0.23;13.7;0.05;49;197;0.9985;3.2;0.46;8.7;5
7.7;0.31;0.26;7.8;0.031;23;90;0.9944;3.13;0.5;10.4;5
7.1;0.21;0.37;2.4;0.026;23;100;0.9903;3.15;0.38;11.4;7
6.8;0.24;0.34;2.7;0.047;64.5;218.5;0.9934;3.3;0.58;9.7;6
6.9;0.4;0.56;11.2;0.043;40;142;0.9975;3.14;0.46;8.7;5
6.1;0.18;0.36;2;0.038;20;249.5;0.9923;3.37;0.79;11.3;6
6.8;0.21;0.27;2.1;0.03;26;139;0.99;3.16;0.61;12.6;7
5.8;0.2;0.27;1.4;0.031;12;77;0.9905;3.25;0.36;10.9;7
5.6;0.19;0.26;1.4;0.03;12;76;0.9905;3.25;0.37;10.9;7
6.1;0.41;0.14;10.4;0.037;18;119;0.996;3.38;0.45;10;5
5.9;0.21;0.28;4.6;0.053;40;199;0.9964;3.72;0.7;10;4
8.5;0.26;0.21;16.2;0.074;41;197;0.998;3.02;0.5;9.8;3
6.9;0.4;0.56;11.2;0.043;40;142;0.9975;3.14;0.46;8.7;5
5.8;0.24;0.44;3.5;0.029;5;109;0.9913;3.53;0.43;11.7;3
5.8;0.24;0.39;1.5;0.054;37;158;0.9932;3.21;0.52;9.3;6
6.7;0.26;0.39;1.1;0.04;45;147;0.9935;3.32;0.58;9.6;8
6.3;0.35;0.3;5.7;0.035;8;97;0.9927;3.27;0.41;11;7
6.3;0.35;0.3;5.7;0.035;8;97;0.9927;3.27;0.41;11;7
6.4;0.23;0.39;1.8;0.032;23;118;0.9912;3.32;0.5;11.8;6
5.8;0.36;0.38;0.9;0.037;3;75;0.9904;3.28;0.34;11.4;4
6.9;0.115;0.35;5.4;0.048;36;108;0.9939;3.32;0.42;10.2;6
6.9;0.29;0.4;19.45;0.043;36;156;0.9996;2.93;0.47;8.9;5
6.9;0.28;0.4;8.2;0.036;15;95;0.9944;3.17;0.33;10.2;5
7.2;0.29;0.4;13.6;0.045;66;231;0.9977;3.08;0.59;9.6;6
6.2;0.24;0.35;1.2;0.038;22;167;0.9912;3.1;0.48;10.6;6
6.9;0.29;0.4;19.45;0.043;36;156;0.9996;2.93;0.47;8.9;5
6.9;0.32;0.26;8.3;0.053;32;180;0.9965;3.25;0.51;9.2;6
5.3;0.58;0.07;6.9;0.043;34;149;0.9944;3.34;0.57;9.7;5
5.3;0.585;0.07;7.1;0.044;34;145;0.9945;3.34;0.57;9.7;6
5.4;0.59;0.07;7;0.045;36;147;0.9944;3.34;0.57;9.7;6
6.9;0.32;0.26;8.3;0.053;32;180;0.9965;3.25;0.51;9.2;6
5.2;0.6;0.07;7;0.044;33;147;0.9944;3.33;0.58;9.7;5
5.8;0.25;0.26;13.1;0.051;44;148;0.9972;3.29;0.38;9.3;5
6.6;0.58;0.3;5.1;0.057;30;123;0.9949;3.24;0.38;9;5
7;0.29;0.54;10.7;0.046;59;234;0.9966;3.05;0.61;9.5;5
6.6;0.19;0.41;8.9;0.046;51;169;0.9954;3.14;0.57;9.8;6
6.7;0.2;0.41;9.1;0.044;50;166;0.9954;3.14;0.58;9.8;6
7.7;0.26;0.4;1.1;0.042;9;60;0.9915;2.89;0.5;10.6;5
6.8;0.32;0.34;1.2;0.044;14;67;0.9919;3.05;0.47;10.6;4
7;0.3;0.49;4.7;0.036;17;105;0.9916;3.26;0.68;12.4;7
7;0.24;0.36;2.8;0.034;22;112;0.99;3.19;0.38;12.6;8
6.1;0.31;0.58;5;0.039;36;114;0.9909;3.3;0.6;12.3;8
6.8;0.44;0.37;5.1;0.047;46;201;0.9938;3.08;0.65;10.5;4
6.7;0.34;0.3;15.6;0.054;51;196;0.9982;3.19;0.49;9.3;5
7.1;0.35;0.24;15.4;0.055;46;198;0.9988;3.12;0.49;8.8;5
7.3;0.32;0.25;7.2;0.056;47;180;0.9961;3.08;0.47;8.8;5
6.5;0.28;0.33;15.7;0.053;51;190;0.9978;3.22;0.51;9.7;6
7.2;0.23;0.39;14.2;0.058;49;192;0.9979;2.98;0.48;9;7
7.2;0.23;0.39;14.2;0.058;49;192;0.9979;2.98;0.48;9;7
7.2;0.23;0.39;14.2;0.058;49;192;0.9979;2.98;0.48;9;7
7.2;0.23;0.39;14.2;0.058;49;192;0.9979;2.98;0.48;9;7
5.9;0.15;0.31;5.8;0.041;53;155;0.9945;3.52;0.46;10.5;6
7.4;0.28;0.42;19.8;0.066;53;195;1;2.96;0.44;9.1;5
6.2;0.28;0.22;7.3;0.041;26;157;0.9957;3.44;0.64;9.8;7
9.1;0.59;0.38;1.6;0.066;34;182;0.9968;3.23;0.38;8.5;3
6.3;0.33;0.27;1.2;0.046;34;175;0.9934;3.37;0.54;9.4;6
8.3;0.39;0.7;10.6;0.045;33;169;0.9976;3.09;0.57;9.4;5
7.2;0.19;0.46;3.8;0.041;82;187;0.9932;3.19;0.6;11.2;7
7.5;0.17;0.44;11.3;0.046;65;146;0.997;3.17;0.45;10;6
6.7;0.17;0.5;2.1;0.043;27;122;0.9923;3.15;0.45;10.3;6
6.1;0.41;0;1.6;0.063;36;87;0.9914;3.27;0.67;10.8;6
8.3;0.2;0.35;0.9;0.05;12;74;0.992;3.13;0.38;10.5;6
6.1;0.41;0;1.6;0.063;36;87;0.9914;3.27;0.67;10.8;6
6;0.29;0.21;1.3;0.055;42;168;0.9914;3.32;0.43;11.1;6
7.3;0.41;0.24;6.8;0.057;41;163;0.9949;3.2;0.41;9.9;6
7.3;0.41;0.24;6.8;0.057;41;163;0.9949;3.2;0.41;9.9;6
7.2;0.43;0.24;6.7;0.058;40;163;0.995;3.2;0.41;9.9;5
7.3;0.4;0.24;6.7;0.058;41;166;0.995;3.2;0.41;9.9;6
6.2;0.33;0.27;4.9;0.036;30;134;0.9927;3.2;0.42;10.4;7
6.2;0.31;0.26;4.8;0.037;36;148;0.9928;3.21;0.41;10.4;6
6.1;0.36;0.27;2.1;0.035;16;100;0.9917;3.4;0.71;11.5;7
5;0.55;0.14;8.3;0.032;35;164;0.9918;3.53;0.51;12.5;8
7.8;0.25;0.41;3.7;0.042;37;149;0.9954;3.36;0.45;10;6
5.7;0.36;0.21;6.7;0.038;51;166;0.9941;3.29;0.63;10;6
5.8;0.34;0.21;6.6;0.04;50;167;0.9941;3.29;0.62;10;5
6.8;0.28;0.6;1.1;0.132;42;127;0.9934;3.09;0.44;9.1;6
6.8;0.25;0.34;4.7;0.031;34;134;0.9927;3.21;0.38;10.6;6
6.6;0.24;0.35;7.7;0.031;36;135;0.9938;3.19;0.37;10.5;5
5.9;0.3;0.47;7.85;0.03;19;133;0.9933;3.52;0.43;11.5;7
6.1;0.125;0.25;3.3;0.04;10;69;0.9934;3.54;0.59;10.1;6
6;0.1;0.24;1.1;0.041;15;65;0.9927;3.61;0.61;10.3;7
6.6;0.24;0.35;7.7;0.031;36;135;0.9938;3.19;0.37;10.5;5
6.8;0.25;0.34;4.7;0.031;34;134;0.9927;3.21;0.38;10.6;6
6.8;0.28;0.44;9.3;0.031;35;137;0.9946;3.16;0.36;10.4;6
8.3;0.41;0.51;2;0.046;11;207;0.993;3.02;0.55;11.4;5
7.5;0.27;0.31;5.8;0.057;131;313;0.9946;3.18;0.59;10.5;5
7.9;0.26;0.41;15.15;0.04;38;216;0.9976;2.96;0.6;10;6
6.4;0.34;0.23;6.3;0.039;37;143;0.9944;3.19;0.65;10;6
6.5;0.28;0.35;15.4;0.042;55;195;0.9978;3.23;0.5;9.6;6
7.2;0.21;0.41;1.3;0.036;33;85;0.992;3.17;0.51;10.4;5
6.4;0.32;0.35;4.8;0.03;34;101;0.9912;3.36;0.6;12.5;8
6.8;0.24;0.34;4.6;0.032;37;135;0.9927;3.2;0.39;10.6;5
6.3;0.23;0.3;1.8;0.033;16;91;0.9906;3.28;0.4;11.8;6
6.5;0.28;0.34;9.9;0.038;30;133;0.9954;3.11;0.44;9.8;5
5.6;0.26;0.26;5.7;0.031;12;80;0.9923;3.25;0.38;10.8;5
6.3;0.23;0.3;1.8;0.033;16;91;0.9906;3.28;0.4;11.8;6
6.3;0.23;0.33;1.5;0.036;15;105;0.991;3.32;0.42;11.2;6
5.8;0.27;0.27;12.3;0.045;55;170;0.9972;3.28;0.42;9.3;6
5.9;0.26;0.4;1.3;0.047;12;139;0.9945;3.45;0.53;10.4;5
6.6;0.18;0.35;1.5;0.049;49;141;0.9934;3.43;0.85;10.2;7
7.4;0.2;0.43;7.8;0.045;27;153;0.9964;3.19;0.55;9;7
8;0.24;0.36;1.5;0.047;17;129;0.9948;3.2;0.54;10;6
6.4;0.26;0.42;9.7;0.044;30;140;0.9962;3.18;0.47;9.1;6
5.4;0.31;0.47;3;0.053;46;144;0.9931;3.29;0.76;10;5
5.4;0.29;0.47;3;0.052;47;145;0.993;3.29;0.75;10;6
7.1;0.145;0.33;4.6;0.05;33;131;0.9942;3.28;0.4;9.6;6
5.6;0.34;0.1;1.3;0.031;20;68;0.9906;3.36;0.51;11.2;7
6.7;0.19;0.41;15.6;0.056;75;155;0.9995;3.2;0.44;8.8;6
7.8;0.18;0.46;13.6;0.052;38;118;0.998;3.15;0.5;10;6
7.6;0.17;0.45;11.2;0.054;56;137;0.997;3.15;0.47;10;5
6.3;0.12;0.36;2.1;0.044;47;146;0.9914;3.27;0.74;11.4;7
7.3;0.33;0.4;6.85;0.038;32;138;0.992;3.03;0.3;11.9;7
5.5;0.335;0.3;2.5;0.071;27;128;0.9924;3.14;0.51;9.6;6
7.3;0.33;0.4;6.85;0.038;32;138;0.992;3.03;0.3;11.9;7
5.8;0.4;0.42;4.4;0.047;38.5;245;0.9937;3.25;0.57;9.6;6
7.3;0.22;0.37;14.3;0.063;48;191;0.9978;2.89;0.38;9;6
7.3;0.22;0.37;14.3;0.063;48;191;0.9978;2.89;0.38;9;6
6.1;0.36;0.33;1.1;0.05;24;169;0.9927;3.15;0.78;9.5;6
10;0.2;0.39;1.4;0.05;19;152;0.994;3;0.42;10.4;6
6.9;0.24;0.34;4.7;0.04;43;161;0.9935;3.2;0.59;10.6;6
6.4;0.24;0.32;14.9;0.047;54;162;0.9968;3.28;0.5;10.2;6
7.1;0.365;0.14;1.2;0.055;24;84;0.9941;3.15;0.43;8.9;5
6.8;0.15;0.3;5.3;0.05;40;127;0.9942;3.4;0.39;9.7;6
7.3;0.22;0.37;14.3;0.063;48;191;0.9978;2.89;0.38;9;6
6.8;0.16;0.4;2.3;0.037;18;102;0.9923;3.49;0.42;11.4;7
6;0.26;0.32;3.5;0.028;29;113;0.9912;3.4;0.71;12.3;7
6;0.18;0.27;1.5;0.089;40;143;0.9923;3.49;0.62;10.8;6
6.9;0.33;0.21;1;0.053;39;148;0.9927;3.12;0.45;9.4;6
7.7;0.29;0.48;2.3;0.049;36;178;0.9931;3.17;0.64;10.6;6
7.1;0.39;0.35;12.5;0.044;26;72;0.9941;3.17;0.29;11.6;5
6.9;0.33;0.21;1;0.053;39;148;0.9927;3.12;0.45;9.4;6
7.7;0.29;0.48;2.3;0.049;36;178;0.9931;3.17;0.64;10.6;6
6.6;0.905;0.19;0.8;0.048;17;204;0.9934;3.34;0.56;10;5
7.2;0.27;0.27;2.4;0.048;30;149;0.9936;3.1;0.51;9.2;6
5.1;0.33;0.22;1.6;0.027;18;89;0.9893;3.51;0.38;12.5;7
5.1;0.33;0.22;1.6;0.027;18;89;0.9893;3.51;0.38;12.5;7
6.4;0.31;0.28;1.5;0.037;12;119;0.9919;3.32;0.51;10.4;7
7.3;0.2;0.44;1.4;0.045;21;98;0.9924;3.15;0.46;10;7
5.7;0.32;0.5;2.6;0.049;17;155;0.9927;3.22;0.64;10;6
6.4;0.31;0.28;1.5;0.037;12;119;0.9919;3.32;0.51;10.4;7
7.3;0.2;0.44;1.4;0.045;21;98;0.9924;3.15;0.46;10;7
7.2;0.28;0.26;12.5;0.046;48;179;0.9975;3.1;0.52;9;6
7.5;0.35;0.28;9.6;0.051;26;157;0.9969;3.12;0.53;9.2;6
7.2;0.27;0.27;2.4;0.048;30;149;0.9936;3.1;0.51;9.2;6
6;0.36;0.39;3.2;0.027;20;125;0.991;3.38;0.39;11.3;7
5.1;0.33;0.22;1.6;0.027;18;89;0.9893;3.51;0.38;12.5;7
5;0.17;0.56;1.5;0.026;24;115;0.9906;3.48;0.39;10.8;7
6.3;0.39;0.35;5.9;0.04;82.5;260;0.9941;3.12;0.66;10.1;5
6.7;0.21;0.32;5.4;0.047;29;140;0.995;3.39;0.46;9.7;6
7;0.3;0.38;14.9;0.032;60;181;0.9983;3.18;0.61;9.3;7
7;0.3;0.38;14.9;0.032;60;181;0.9983;3.18;0.61;9.3;7
6.5;0.36;0.32;1.1;0.031;13;66;0.9916;3.1;0.46;10.6;5
6.1;0.55;0.15;9.8;0.031;19;125;0.9957;3.36;0.47;10.2;6
7.3;0.24;0.43;2;0.021;20;69;0.99;3.08;0.56;12.2;6
6.8;0.37;0.51;11.8;0.044;62;163;0.9976;3.19;0.44;8.8;5
6.8;0.27;0.12;1.3;0.04;87;168;0.992;3.18;0.41;10;5
8.2;0.28;0.42;1.8;0.031;30;93;0.9917;3.09;0.39;11.4;5
6.3;0.2;0.4;1.5;0.037;35;107;0.9917;3.46;0.5;11.4;6
5.9;0.26;0.27;18.2;0.048;52;168;0.9993;3.35;0.44;9.4;5
6.4;0.19;0.42;2.9;0.032;32;83;0.9908;3.3;0.41;11.7;6
6.3;0.2;0.4;1.5;0.037;35;107;0.9917;3.46;0.5;11.4;6
6.8;0.37;0.51;11.8;0.044;62;163;0.9976;3.19;0.44;8.8;5
6.1;0.35;0.07;1.4;0.069;22;108;0.9934;3.23;0.52;9.2;5
7.1;0.27;0.31;18.2;0.046;55;252;1;3.07;0.56;8.7;5
6.8;0.22;0.31;6.3;0.035;33;170;0.9918;3.24;0.66;12.6;6
6.8;0.27;0.12;1.3;0.04;87;168;0.992;3.18;0.41;10;5
5.8;0.28;0.34;4;0.031;40;99;0.9896;3.39;0.39;12.8;7
6.9;0.49;0.24;1.2;0.049;13;125;0.9932;3.17;0.51;9.4;5
6.3;0.14;0.39;1.2;0.044;26;116;0.992;3.26;0.53;10.3;6
8.2;0.28;0.42;1.8;0.031;30;93;0.9917;3.09;0.39;11.4;5
7.2;0.25;0.39;18.95;0.038;42;155;0.9999;2.97;0.47;9;6
7.3;0.28;0.36;12.7;0.04;38;140;0.998;3.3;0.79;9.6;6
7.2;0.19;0.39;1.2;0.036;32;85;0.9918;3.16;0.5;10.5;5
7.2;0.19;0.39;1.2;0.036;32;85;0.9918;3.16;0.5;10.5;5
7.2;0.25;0.39;18.95;0.038;42;155;0.9999;2.97;0.47;9;6
7.3;0.28;0.36;12.7;0.04;38;140;0.998;3.3;0.79;9.6;6
7.4;0.21;0.27;1.2;0.041;27;99;0.9927;3.19;0.33;9.8;6
6.8;0.26;0.22;7.7;0.047;57;210;0.9959;3.1;0.47;9;5
7.4;0.21;0.27;1.2;0.041;27;99;0.9927;3.19;0.33;9.8;6
7.4;0.31;0.28;1.6;0.05;33;137;0.9929;3.31;0.56;10.5;6
7;0.22;0.31;2.7;0.03;41;136;0.9898;3.16;0.37;12.7;7
7;0.21;0.28;8.7;0.045;37;222;0.9954;3.25;0.54;10.4;6
7;0.21;0.28;8.6;0.045;37;221;0.9954;3.25;0.54;10.4;6
7;0.21;0.28;8.6;0.045;37;221;0.9954;3.25;0.54;10.4;6
6.9;0.23;0.38;8.3;0.047;47;162;0.9954;3.34;0.52;10.5;7
7;0.21;0.28;8.7;0.045;37;222;0.9954;3.25;0.54;10.4;6
7;0.21;0.28;8.6;0.045;37;221;0.9954;3.25;0.54;10.4;6
6.8;0.29;0.5;13.3;0.053;48;194;0.9974;3.09;0.45;9.4;5
7.8;0.21;0.27;1.2;0.051;20;89;0.9936;3.06;0.46;9.1;5
7.1;0.31;0.47;13.6;0.056;54;197;0.9978;3.1;0.49;9.3;5
6.8;0.29;0.5;13.3;0.053;48;194;0.9974;3.09;0.45;9.4;5
6.4;0.34;0.1;1.1;0.048;19;84;0.9927;3.21;0.38;9.8;5
7.4;0.155;0.34;2.3;0.045;73.5;214;0.9934;3.18;0.61;9.9;7
7.2;0.55;0.09;1.5;0.108;16;151;0.9938;3.07;0.57;9.2;4
7;0.23;0.36;7.1;0.028;31;104;0.9922;3.35;0.47;12.1;8
6.9;0.2;0.37;6.2;0.027;24;97;0.992;3.38;0.49;12.2;7
6.1;0.28;0.32;2.5;0.042;23;218.5;0.9935;3.27;0.6;9.8;5
6.6;0.16;0.32;1.4;0.035;49;186;0.9906;3.35;0.64;12.4;8
7.4;0.155;0.34;2.3;0.045;73.5;214;0.9934;3.18;0.61;9.9;7
6.2;0.35;0.04;1.2;0.06;23;108;0.9934;3.26;0.54;9.2;5
6.7;0.22;0.37;1.6;0.028;24;102;0.9913;3.29;0.59;11.6;7
6.1;0.38;0.2;6.6;0.033;25;137;0.9938;3.3;0.69;10.4;6
6;0.25;0.28;2.2;0.026;54;126;0.9898;3.43;0.65;12.9;8
6.6;0.52;0.44;12.2;0.048;54;245;0.9975;3.26;0.54;9.3;6
6.9;0.24;0.36;20.8;0.031;40;139;0.9975;3.2;0.33;11;6
7.1;0.32;0.32;11;0.038;16;66;0.9937;3.24;0.4;11.5;3
5.8;0.28;0.27;2.6;0.054;30;156;0.9914;3.53;0.42;12.4;5
6.5;0.41;0.24;14;0.048;24;113;0.9982;3.44;0.53;9.8;6
6.5;0.41;0.24;14;0.048;24;113;0.9982;3.44;0.53;9.8;6
6.4;0.28;0.29;1.6;0.052;34;127;0.9929;3.48;0.56;10.5;7
7.2;0.6;0.2;9.9;0.07;21;174;0.9971;3.03;0.54;9.1;5
6.1;0.2;0.25;1.2;0.038;34;128;0.9921;3.24;0.44;10.1;5
5.9;0.46;0.14;2.7;0.042;27;160;0.9931;3.46;0.51;10.6;7
6;0.27;0.27;1.6;0.046;32;113;0.9924;3.41;0.51;10.5;7
6.4;0.28;0.29;1.6;0.052;34;127;0.9929;3.48;0.56;10.5;7
6.4;0.41;0.24;14;0.048;24;113;0.9982;3.44;0.53;9.8;6
6.3;0.23;0.31;1.5;0.022;11;82;0.9892;3.3;0.4;12.9;7
7.1;0.21;0.27;8.6;0.056;26;111;0.9956;2.95;0.52;9.5;5
6;0.37;0.32;1;0.053;31;218.5;0.9924;3.29;0.72;9.8;6
6.1;0.43;0.35;9.1;0.059;83;249;0.9971;3.37;0.5;8.5;5
7.1;0.21;0.27;8.6;0.056;26;111;0.9956;2.95;0.52;9.5;5
7;0.25;0.29;15.2;0.047;40;171;0.9982;3.22;0.45;9.3;5
5.9;0.25;0.19;12.4;0.047;50;162;0.9973;3.35;0.38;9.5;5
6.8;0.32;0.21;2.2;0.044;15;68;0.9932;3.17;0.39;9.4;6
7.2;0.39;0.62;11;0.047;66;178;0.9976;3.16;0.5;8.7;5
6.3;0.21;0.58;10;0.081;34;126;0.9962;2.95;0.46;8.9;5
7;0.14;0.32;9;0.039;54;141;0.9956;3.22;0.43;9.4;6
6.8;0.32;0.21;2.2;0.044;15;68;0.9932;3.17;0.39;9.4;6
7.2;0.39;0.62;11;0.047;66;178;0.9976;3.16;0.5;8.7;5
7.2;0.29;0.53;18.15;0.047;59;182;0.9992;3.09;0.52;9.6;5
8.6;0.37;0.7;12.15;0.039;21;158;0.9983;3;0.73;9.3;6
6.5;0.38;0.34;3.4;0.036;34;200;0.9937;3.14;0.76;10;5
6.6;0.24;0.29;2;0.023;19;86;0.99;3.25;0.45;12.5;6
7;0.17;0.31;4.8;0.034;34;132;0.9944;3.36;0.48;9.6;7
5.5;0.16;0.22;4.5;0.03;30;102;0.9938;3.24;0.36;9.4;6
7;0.24;0.51;11;0.029;55;227;0.9965;3.03;0.61;9.5;5
7.4;0.28;0.36;1.1;0.028;42;105;0.9893;2.99;0.39;12.4;7
7;0.22;0.28;1.5;0.037;29;115;0.9927;3.11;0.55;10.5;6
7.1;0.55;0.13;1.7;0.073;21;165;0.994;2.97;0.58;9.2;6
6.3;0.22;0.33;1.7;0.041;67;164;0.9928;3.32;0.56;10.4;6
6.7;0.47;0.34;8.9;0.043;31;172;0.9964;3.22;0.6;9.2;5
5.9;0.36;0.41;1.3;0.047;45;104;0.9917;3.33;0.51;10.6;6
5.8;0.25;0.24;13.3;0.044;41;137;0.9972;3.34;0.42;9.5;5
6.7;0.47;0.34;8.9;0.043;31;172;0.9964;3.22;0.6;9.2;5
6.2;0.37;0.3;6.6;0.346;79;200;0.9954;3.29;0.58;9.6;5
6.2;0.18;0.38;1.5;0.028;36;117;0.993;3.47;0.54;9.7;6
6;0.16;0.37;1.5;0.025;43;117;0.9928;3.46;0.51;9.7;6
6.6;0.34;0.28;1.3;0.035;32;90;0.9916;3.1;0.42;10.7;6
7.4;0.29;0.29;1.6;0.045;53;180;0.9936;3.34;0.68;10.5;6
7.4;0.26;0.31;7.6;0.047;52;177;0.9962;3.13;0.45;8.9;6
7;0.28;0.36;1;0.035;8;70;0.9899;3.09;0.46;12.1;6
7.1;0.23;0.39;1.6;0.032;12;65;0.9898;3.25;0.4;12.7;7
7.8;0.19;0.26;8.9;0.039;42;182;0.996;3.18;0.46;9.9;6
6.3;0.19;0.28;1.8;0.022;28;158;0.9907;3.2;0.64;11.4;6
6.8;0.2;0.38;4.7;0.04;27;103;0.994;3.37;0.58;10.7;6
5.7;0.44;0.13;7;0.025;28;173;0.9913;3.33;0.48;12.5;6
7.2;0.4;0.62;10.8;0.041;70;189;0.9976;3.08;0.49;8.6;4
6.8;0.23;0.32;1.6;0.026;43;147;0.9904;3.29;0.54;12.5;6
5.7;0.335;0.34;1;0.04;13;174;0.992;3.27;0.66;10;5
7.2;0.4;0.62;10.8;0.041;70;189;0.9976;3.08;0.49;8.6;4
7.2;0.28;0.54;16.7;0.045;54;200;0.999;3.08;0.49;9.5;6
6.8;0.19;0.58;14.2;0.038;51;164;0.9975;3.12;0.48;9.6;6
6.4;0.3;0.3;2.25;0.038;8;210;0.9937;3.2;0.62;9.9;6
6.5;0.3;0.29;2.25;0.037;8;210;0.9937;3.19;0.62;9.9;5
7.8;0.18;0.31;12.2;0.053;46;140;0.998;3.06;0.53;8.9;6
7.8;0.18;0.31;12.2;0.053;46;140;0.998;3.06;0.53;8.9;6
7.3;0.51;0.26;3.3;0.09;7;135;0.9944;3.01;0.52;8.8;5
6;0.24;0.27;1.9;0.048;40;170;0.9938;3.64;0.54;10;7
5.9;0.62;0.28;3.5;0.039;55;152;0.9907;3.44;0.44;12;6
6;0.24;0.27;1.9;0.048;40;170;0.9938;3.64;0.54;10;7
6.7;0.27;0.12;1.3;0.041;62;138;0.9921;3.21;0.42;10;6
7.8;0.34;0.35;1.8;0.042;8;167;0.9908;3.11;0.41;12.1;6
7.3;0.26;0.36;5.2;0.04;31;141;0.9931;3.16;0.59;11;6
7.4;0.36;0.33;1.4;0.025;27;55;0.9915;3.21;0.33;11.2;6
7.8;0.28;0.32;9;0.036;34;115;0.9952;3.17;0.39;10.3;7
6.1;0.31;0.26;2.2;0.051;28;167;0.9926;3.37;0.47;10.4;6
6.8;0.18;0.37;1.6;0.055;47;154;0.9934;3.08;0.45;9.1;5
7.4;0.15;0.42;1.7;0.045;49;154;0.992;3;0.6;10.4;6
5.9;0.13;0.28;1.9;0.05;20;78;0.9918;3.43;0.64;10.8;6
7.2;0.34;0.34;12.6;0.048;7;41;0.9942;3.19;0.4;11.7;5
7.9;0.19;0.26;2.1;0.039;8;143;0.9942;3.05;0.74;9.8;5
7.9;0.19;0.26;2.1;0.039;8;143;0.9942;3.05;0.74;9.8;5
6.9;0.25;0.4;1.3;0.038;22;101;0.9901;3.03;0.39;11.4;6
5.8;0.36;0.32;1.7;0.033;22;96;0.9898;3.03;0.38;11.2;6
5.6;0.35;0.37;1;0.038;6;72;0.9902;3.37;0.34;11.4;5
5.9;0.32;0.39;3.3;0.114;24;140;0.9934;3.09;0.45;9.2;6
7.2;0.31;0.46;5;0.04;3;29;0.9906;3.04;0.53;12.5;4
6.1;0.28;0.22;1.8;0.034;32;116;0.9898;3.36;0.44;12.6;6
5.2;0.36;0.02;1.6;0.031;24;104;0.9896;3.44;0.35;12.2;6
5.6;0.19;0.47;4.5;0.03;19;112;0.9922;3.56;0.45;11.2;6
6.4;0.1;0.35;4.9;0.048;31;103;0.9947;3.43;0.79;9.7;6
6.4;0.18;0.48;4;0.186;64;150;0.9945;3.06;0.4;9.3;5
7.4;0.25;0.36;13.2;0.067;53;178;0.9976;3.01;0.48;9;6
7.4;0.25;0.36;13.2;0.067;53;178;0.9976;3.01;0.48;9;6
7.4;0.25;0.36;13.2;0.067;53;178;0.9976;3.01;0.48;9;6
7.9;0.345;0.51;15.3;0.047;54;171;0.9987;3.09;0.51;9.1;5
7.9;0.345;0.51;15.3;0.047;54;171;0.9987;3.09;0.51;9.1;5
7.4;0.25;0.36;13.2;0.067;53;178;0.9976;3.01;0.48;9;6
6.1;0.24;0.3;1.5;0.045;22;61;0.992;3.31;0.54;10.4;5
6.8;0.25;0.24;4.55;0.053;41;211;0.9955;3.37;0.67;9.5;6
6.7;0.31;0.31;9.9;0.04;10;175;0.9953;3.46;0.55;11.4;4
7.2;0.46;0.65;10.4;0.05;76;192;0.9976;3.16;0.42;8.7;5
5.5;0.35;0.35;1.1;0.045;14;167;0.992;3.34;0.68;9.9;6
6.7;0.24;0.41;8.7;0.036;29;148;0.9952;3.22;0.62;9.9;6
6.8;0.28;0.17;13.9;0.047;49;162;0.9983;3.21;0.51;9;6
6.4;0.16;0.22;1.4;0.04;41;149;0.9933;3.49;0.58;10;6
6.3;0.26;0.24;7.2;0.039;38;172;0.9958;3.49;0.64;9.7;6
7.7;0.22;0.42;1.9;0.052;10;87;0.9922;3.3;0.49;11.8;6
6.5;0.18;0.31;1.7;0.044;30;127;0.9928;3.49;0.5;10.2;7
7.2;0.46;0.65;10.4;0.05;76;192;0.9976;3.16;0.42;8.7;5
7;0.3;0.51;13.6;0.05;40;168;0.9976;3.07;0.52;9.6;7
9.2;0.25;0.34;1.2;0.026;31;93;0.9916;2.93;0.37;11.3;7
7.8;0.28;0.34;1.6;0.028;32;118;0.9901;3;0.38;12.1;7
7;0.3;0.51;13.6;0.05;40;168;0.9976;3.07;0.52;9.6;7
7.8;0.28;0.34;1.6;0.028;32;118;0.9901;3;0.38;12.1;7
9.2;0.25;0.34;1.2;0.026;31;93;0.9916;2.93;0.37;11.3;7
8.4;0.35;0.71;12.2;0.046;22;160;0.9982;2.98;0.65;9.4;5
6.1;0.41;0.24;1.6;0.049;16;137;0.993;3.32;0.5;10.4;6
5.9;0.21;0.24;12.1;0.044;53;165;0.9969;3.25;0.39;9.5;5
7.2;0.34;0.44;4.2;0.047;51;144;0.991;3.01;0.76;12.3;6
6.7;0.21;0.42;9.1;0.049;31;150;0.9953;3.12;0.74;9.9;7
5.9;0.37;0.1;1.6;0.057;39;128;0.9924;3.24;0.48;10.1;5
7.7;0.34;0.27;8.8;0.063;39;184;0.9969;3.09;0.63;9.2;6
7.4;0.3;0.22;1.4;0.046;16;135;0.9928;3.08;0.77;10.4;7
6.8;0.51;0.3;4.2;0.066;38;165;0.9945;3.2;0.42;9.1;5
7.8;0.22;0.38;10.3;0.059;28;99;0.9967;3.12;0.47;10;6
7.2;0.35;0.34;12.4;0.051;6;37;0.9944;3.13;0.39;11.5;6
6;0.26;0.5;2.2;0.048;59;153;0.9928;3.08;0.61;9.8;5
6.1;0.26;0.51;2.2;0.05;61;154;0.9929;3.08;0.6;9.8;6
6.5;0.28;0.27;5.2;0.04;44;179;0.9948;3.19;0.69;9.4;6
7.4;0.41;0.66;10.8;0.051;77;194;0.9976;3.05;0.46;8.7;5
6.5;0.28;0.29;2.7;0.038;26;107;0.9912;3.32;0.41;11.6;7
6.7;0.34;0.54;16.3;0.047;44;181;0.9987;3.04;0.56;8.8;5
7.2;0.2;0.34;2.7;0.032;49;151;0.99;3.16;0.39;12.7;7
7.4;0.2;0.33;1.9;0.035;39;138;0.991;3.17;0.44;11.7;7
8.2;0.22;0.3;1.8;0.047;47;185;0.9933;3.13;0.5;10.2;6
8.2;0.23;0.29;1.8;0.047;47;187;0.9933;3.13;0.5;10.2;6
7.1;0.22;0.33;2.8;0.033;48;153;0.9899;3.15;0.38;12.7;7
6.5;0.28;0.29;2.7;0.038;26;107;0.9912;3.32;0.41;11.6;7
6;0.38;0.26;6;0.034;42;134;0.9912;3.38;0.38;12.3;7
7.4;0.41;0.66;10.8;0.051;77;194;0.9976;3.05;0.46;8.7;5
5.7;0.18;0.22;4.2;0.042;25;111;0.994;3.35;0.39;9.4;5
7.3;0.3;0.22;6.4;0.056;44;168;0.9947;3.13;0.35;10.1;6
7.4;0.24;0.22;10.7;0.042;26;81;0.9954;2.86;0.36;9.7;6
6.6;0.25;0.3;1.6;0.046;32;134;0.993;3.42;0.51;10.1;7
7.4;0.24;0.22;10.7;0.042;26;81;0.9954;2.86;0.36;9.7;6
7.4;0.26;0.3;7.9;0.049;38;157;0.9963;3.13;0.48;8.9;6
6.1;0.32;0.25;1.7;0.034;37;136;0.992;3.47;0.5;10.8;7
6.9;0.28;0.27;2.1;0.036;42;121;0.9926;3.42;0.49;10.8;7
7;0.23;0.33;5.8;0.04;25;136;0.995;3.19;0.58;9.5;6
7.1;0.31;0.5;14.5;0.059;6;148;0.9983;2.94;0.44;9.1;5
7.3;0.2;0.37;1.2;0.037;48;119;0.992;3.32;0.49;10.9;6
6.9;0.41;0.33;10.1;0.043;28;152;0.9968;3.2;0.52;9.4;5
6.4;0.45;0.07;1.1;0.03;10;131;0.9905;2.97;0.28;10.8;5
6.4;0.475;0.06;1;0.03;9;131;0.9904;2.97;0.29;10.8;5
6.3;0.27;0.38;0.9;0.051;7;140;0.9926;3.45;0.5;10.5;7
6.9;0.41;0.33;10.1;0.043;28;152;0.9968;3.2;0.52;9.4;5
7;0.29;0.37;4.9;0.034;26;127;0.9928;3.17;0.44;10.8;6
5.9;0.27;0.29;11.4;0.036;31;115;0.9949;3.35;0.48;10.5;8
6.9;0.19;0.4;1.4;0.036;14;55;0.9909;3.08;0.68;11.5;7
6.7;0.3;0.35;1.4;0.18;36;160;0.9937;3.11;0.54;9.4;6
7.2;0.24;0.4;1.4;0.045;31;106;0.9914;2.88;0.38;10.8;6
6.4;0.45;0.07;1.1;0.03;10;131;0.9905;2.97;0.28;10.8;5
6.4;0.475;0.06;1;0.03;9;131;0.9904;2.97;0.29;10.8;5
6.3;0.26;0.49;1.5;0.052;34;134;0.9924;2.99;0.61;9.8;6
6.3;0.26;0.49;1.5;0.052;34;134;0.9924;2.99;0.61;9.8;6
7.3;0.25;0.29;7.5;0.049;38;158;0.9965;3.43;0.38;9.6;5
7.3;0.25;0.29;7.5;0.049;38;158;0.9965;3.43;0.38;9.6;5
6.1;0.28;0.25;17.75;0.044;48;161;0.9993;3.34;0.48;9.5;5
7.4;0.37;0.35;5.7;0.061;12;94;0.9965;3.48;0.69;10.7;6
6.5;0.36;0.28;3.2;0.037;29;119;0.9908;3.25;0.65;12.4;8
7.4;0.24;0.4;4.3;0.032;9;95;0.992;3.09;0.39;11.1;6
7.5;0.23;0.68;11;0.047;37;133;0.9978;2.99;0.38;8.8;5
7.5;0.21;0.68;10.9;0.045;38;133;0.9978;3;0.36;8.7;5
7.5;0.21;0.68;10.9;0.045;38;133;0.9978;3;0.36;8.7;5
7.5;0.23;0.68;11;0.047;37;133;0.9978;2.99;0.38;8.8;5
7.8;0.32;0.33;2.4;0.037;18;101;0.9912;3.21;0.65;11.7;7
7.8;0.26;0.27;1.9;0.051;52;195;0.9928;3.23;0.5;10.9;6
7.7;0.24;0.27;1.8;0.051;52;190;0.9928;3.23;0.5;10.8;6
7.4;0.19;0.3;1.4;0.057;33;135;0.993;3.12;0.5;9.6;6
6.5;0.46;0.41;16.8;0.084;59;222;0.9993;3.18;0.58;9;5
6.5;0.26;0.43;8.9;0.083;50;171;0.9965;2.85;0.5;9;5
5.3;0.32;0.12;6.6;0.043;22;141;0.9937;3.36;0.6;10.4;6
7.2;0.24;0.34;1.1;0.045;3;64;0.9913;3.23;0.51;11.4;5
6;0.36;0.06;1.4;0.066;27;128;0.9934;3.26;0.55;9.3;5
6.2;0.24;0.29;13.3;0.039;49;130;0.9952;3.33;0.46;11;8
7.6;0.56;0.12;10.4;0.096;22;177;0.9983;3.32;0.45;9.1;4
7;0.32;0.24;6.2;0.048;31;228;0.9957;3.23;0.62;9.4;6
7;0.32;0.24;6.2;0.048;31;228;0.9957;3.23;0.62;9.4;6
5.8;0.31;0.33;1.2;0.036;23;99;0.9916;3.18;0.6;10.5;6
7;0.23;0.42;18.05;0.05;35;144;0.9999;3.22;0.42;8.8;5
7;0.23;0.42;18.05;0.05;35;144;0.9999;3.22;0.42;8.8;5
6.9;0.24;0.33;4.8;0.04;16;131;0.9936;3.26;0.64;10.7;6
6;0.29;0.2;12.6;0.045;45;187;0.9972;3.33;0.42;9.5;5
6.1;0.17;0.28;4.5;0.033;46;150;0.9933;3.43;0.49;10.9;6
5.9;0.14;0.25;4.5;0.027;34;140;0.9934;3.49;0.51;10.8;6
6.2;0.17;0.28;4.7;0.037;39;133;0.9931;3.41;0.46;10.8;7
7.4;0.28;0.25;11.9;0.053;25;148;0.9976;3.1;0.62;9.2;5
5.6;0.35;0.14;5;0.046;48;198;0.9937;3.3;0.71;10.3;5
5.8;0.335;0.14;5.8;0.046;49;197;0.9937;3.3;0.71;10.3;5
5.6;0.235;0.29;1.2;0.047;33;127;0.991;3.34;0.5;11;7
6.1;0.28;0.25;12.9;0.054;34;189;0.9979;3.25;0.43;9;4
6.3;0.21;0.33;13.9;0.046;68;179;0.9971;3.36;0.5;10.4;6
6.4;0.24;0.28;11.5;0.05;34;163;0.9969;3.31;0.45;9.5;5
6.4;0.24;0.29;11.4;0.051;32;166;0.9968;3.31;0.45;9.5;5
6.3;0.26;0.25;7.8;0.058;44;166;0.9961;3.24;0.41;9;5
6.5;0.33;0.72;1.1;0.061;7;151;0.993;3.09;0.57;9.5;4
7.4;0.105;0.34;12.2;0.05;57;146;0.9973;3.16;0.37;9;6
6;0.32;0.12;5.9;0.041;34;190;0.9944;3.16;0.72;10;5
7.1;0.26;0.34;14.4;0.067;35;189;0.9986;3.07;0.53;9.1;7
7.1;0.26;0.34;14.4;0.067;35;189;0.9986;3.07;0.53;9.1;7
7.1;0.26;0.34;14.4;0.067;35;189;0.9986;3.07;0.53;9.1;7
7.1;0.26;0.34;14.4;0.067;35;189;0.9986;3.07;0.53;9.1;7
5.9;0.24;0.26;12.3;0.053;34;134;0.9972;3.34;0.45;9.5;6
6.5;0.21;0.37;2.5;0.048;70;138;0.9917;3.33;0.75;11.4;7
7.7;0.27;0.35;5.3;0.03;30;117;0.992;3.11;0.42;12.2;6
9;0.27;0.35;4.9;0.028;27;95;0.9932;3.04;0.4;11.3;6
7.3;0.34;0.21;3.2;0.05;14;136;0.9936;3.25;0.44;10.2;5
6.6;0.27;0.25;3.1;0.052;41;188;0.9915;3.24;0.4;11.3;5
6.8;0.29;0.16;1.4;0.038;122.5;234.5;0.9922;3.15;0.47;10;4
7.1;0.28;0.26;1.9;0.049;12;86;0.9934;3.15;0.38;9.4;5
6.8;0.25;0.34;14;0.032;47;133;0.9952;3.37;0.5;12.2;7
7;0.57;0.1;8.3;0.094;23;188;0.9972;3.4;0.47;9.2;4
7.1;0.28;0.26;1.9;0.049;12;86;0.9934;3.15;0.38;9.4;5
7.1;0.17;0.38;7.4;0.052;49;182;0.9958;3.35;0.52;9.6;6
7.8;0.28;0.22;1.4;0.056;24;130;0.9944;3.28;0.48;9.5;5
6.8;0.22;0.37;1.7;0.036;38;195;0.9908;3.35;0.72;12.5;6
7.1;0.17;0.38;7.4;0.052;49;182;0.9958;3.35;0.52;9.6;6
6.1;0.14;0.25;1.3;0.047;37;173;0.9925;3.35;0.46;10;6
6.4;0.24;0.5;11.6;0.047;60;211;0.9966;3.18;0.57;9.3;5
7.8;0.42;0.26;9.2;0.058;34;199;0.9972;3.14;0.55;9.3;6
6.6;0.28;0.36;1.7;0.038;22;101;0.9912;3.29;0.57;11.6;6
7.1;0.32;0.34;14.5;0.039;46;150;0.995;3.38;0.5;12.5;8
6.7;0.31;0.3;2.1;0.038;18;130;0.9928;3.36;0.63;10.6;6
6.4;0.32;0.5;10.7;0.047;57;206;0.9968;3.08;0.6;9.4;5
6.1;0.28;0.25;6.9;0.056;44;201;0.9955;3.19;0.4;9.1;6
5.9;0.29;0.25;12;0.057;48;224;0.9981;3.23;0.41;9;6
5.8;0.32;0.38;4.75;0.033;23;94;0.991;3.42;0.42;11.8;7
5.8;0.32;0.38;4.75;0.033;23;94;0.991;3.42;0.42;11.8;7
5.7;0.32;0.38;4.75;0.033;23;94;0.991;3.42;0.42;11.8;7
6.7;0.28;0.14;1.4;0.043;64;159;0.992;3.17;0.39;10;5
6.8;0.34;0.69;1.3;0.058;12;171;0.9931;3.06;0.47;9.7;5
5.9;0.25;0.25;11.3;0.052;30;165;0.997;3.24;0.44;9.5;6
6.4;0.27;0.32;4.5;0.24;61;174;0.9948;3.12;0.48;9.4;5
8.1;0.46;0.31;1.7;0.052;50;183;0.9923;3.03;0.42;11.2;5
6.2;0.36;0.26;13.2;0.051;54;201;0.9976;3.25;0.46;9;5
6.8;0.22;0.35;5.5;0.043;21;114;0.9938;3.3;0.53;10.7;7
6.8;0.67;0.3;13;0.29;22;193;0.9984;3.08;0.67;9;4
7.2;0.28;0.3;10.7;0.044;61;222;0.9972;3.14;0.5;9.1;6
6.7;0.17;0.37;2;0.039;34;125;0.9922;3.26;0.6;10.8;7
6.9;0.2;0.34;1.9;0.043;25;136;0.9935;3.31;0.6;10.1;4
6.1;0.36;0.16;6.4;0.037;36;198;0.9944;3.17;0.62;9.9;6
6;0.36;0.16;6.3;0.036;36;191;0.9942;3.17;0.62;9.8;5
5.9;0.37;0.14;6.3;0.036;34;185;0.9944;3.17;0.63;9.8;5
7.6;0.29;0.58;17.5;0.041;51;225;0.9997;3.16;0.66;9.5;6
6.3;0.34;0.28;14.7;0.047;49;198;0.9977;3.23;0.46;9.5;5
6.7;0.19;0.34;1;0.022;22;94;0.9912;3.23;0.57;11.1;6
7.5;0.31;0.51;14.8;0.039;62;204;0.9982;3.06;0.6;9.5;5
7.5;0.31;0.51;14.8;0.039;62;204;0.9982;3.06;0.6;9.5;5
7.4;0.31;0.48;14.2;0.042;62;204;0.9983;3.06;0.59;9.4;5
8.4;0.4;0.7;13.1;0.042;29;197;0.998;3.06;0.64;9.7;5
5.9;0.34;0.22;2.4;0.03;19;135;0.9894;3.41;0.78;13.9;7
6.6;0.38;0.18;1.2;0.042;20;84;0.9927;3.22;0.45;10.1;4
6.4;0.33;0.28;1.1;0.038;30;110;0.9917;3.12;0.42;10.5;6
5.6;0.25;0.26;3.6;0.037;18;115;0.9904;3.42;0.5;12.6;6
8.6;0.27;0.46;6.1;0.032;13;41;0.993;2.89;0.34;10.9;5
6.2;0.31;0.21;6.3;0.041;50;218;0.9941;3.15;0.6;10;5
7.2;0.18;0.45;4.4;0.046;57;166;0.9943;3.13;0.62;11.2;6
7.7;0.2;0.44;13.9;0.05;44;130;0.99855;3.11;0.48;10;6
6.2;0.47;0.21;1;0.044;13;98;0.99345;3.14;0.46;9.2;5
6.1;0.25;0.24;12.1;0.046;51;172;0.998;3.35;0.45;9.5;5
8.2;0.27;0.43;1.6;0.035;31;128;0.9916;3.1;0.5;12.3;6
8.2;0.27;0.43;1.6;0.035;31;128;0.9916;3.1;0.5;12.3;6
6.4;0.31;0.39;7.5;0.04;57;213;0.99475;3.32;0.43;10;5
6;0.39;0.26;2.7;0.038;39;187;0.99325;3.41;0.5;10.8;6
6.2;0.21;0.27;1.7;0.038;41;150;0.9933;3.49;0.71;10.5;7
7.7;0.42;0.31;9.2;0.048;22;221;0.9969;3.06;0.61;9.2;6
7;0.27;0.41;18.75;0.042;34;157;1.0002;2.96;0.5;9.1;5
6.2;0.21;0.27;1.7;0.038;41;150;0.9933;3.49;0.71;10.5;7
7.4;0.29;0.5;1.8;0.042;35;127;0.9937;3.45;0.5;10.2;7
6.6;0.29;0.44;9;0.053;62;178;0.99685;3.02;0.45;8.9;5
6;0.3;0.44;1.5;0.046;15;182;0.99455;3.5;0.52;10.4;5
6.9;0.31;0.34;1.6;0.032;23;128;0.9917;3.37;0.47;11.7;6
6.6;0.33;0.31;1.3;0.02;29;89;0.99035;3.26;0.44;12.4;8
7.8;0.3;0.4;1.8;0.028;23;122;0.9914;3.14;0.39;10.9;7
6.4;0.39;0.21;1.2;0.041;35;136;0.99225;3.15;0.46;10.2;5
6.4;0.24;0.31;2.8;0.038;41;114;0.99155;3.37;0.66;11.7;7
7;0.21;0.34;8;0.057;19;101;0.9954;2.99;0.59;9.4;5
6.4;0.16;0.31;5.3;0.043;42;157;0.99455;3.35;0.47;10.5;5
6;0.33;0.27;0.8;0.185;12;188;0.9924;3.12;0.62;9.4;5
6.5;0.23;0.33;13.8;0.042;25;139;0.99695;3.35;0.56;10.4;6
6.2;0.25;0.48;10;0.044;78;240;0.99655;3.25;0.47;9.5;6
8.8;0.28;0.45;6;0.022;14;49;0.9934;3.01;0.33;11.1;7
6.6;0.25;0.3;14.4;0.052;40;183;0.998;3.02;0.5;9.1;6
6.9;0.38;0.25;9.8;0.04;28;191;0.9971;3.28;0.61;9.2;5
6.4;0.25;0.3;5.5;0.038;15;129;0.9948;3.14;0.49;9.6;6
6.6;0.25;0.3;14.4;0.052;40;183;0.998;3.02;0.5;9.1;6
6.9;0.38;0.25;9.8;0.04;28;191;0.9971;3.28;0.61;9.2;5
7.1;0.21;0.31;3.8;0.021;40;142;0.99215;3.17;0.39;10.8;7
6.4;0.25;0.3;5.5;0.038;15;129;0.9948;3.14;0.49;9.6;6
6.9;0.39;0.4;4.6;0.022;5;19;0.9915;3.31;0.37;12.6;3
5.8;0.2;0.3;1.5;0.031;21;57;0.99115;3.44;0.55;11;6
7;0.2;0.37;2;0.03;26;136;0.9932;3.28;0.61;10.2;6
5.9;0.26;0.25;12.5;0.034;38;152;0.9977;3.33;0.43;9.4;5
7.4;0.38;0.27;7.5;0.041;24;160;0.99535;3.17;0.43;10;5
7.4;0.2;1.66;2.1;0.022;34;113;0.99165;3.26;0.55;12.2;6
7;0.21;0.34;8.5;0.033;31;253;0.9953;3.22;0.56;10.5;6
7.2;0.29;0.4;7.6;0.024;56;177;0.9928;3.04;0.32;11.5;6
6.9;0.18;0.38;8.1;0.049;44;176;0.9958;3.3;0.54;9.8;6
7.3;0.3;0.42;7.35;0.025;51;175;0.9928;3.04;0.32;11.4;6
7.2;0.29;0.4;7.6;0.024;56;177;0.9928;3.04;0.32;11.5;6
6.9;0.2;0.5;10;0.036;78;167;0.9964;3.15;0.55;10.2;6
6.7;0.2;0.42;14;0.038;83;160;0.9987;3.16;0.5;9.4;6
7;0.21;0.34;8.5;0.033;31;253;0.9953;3.22;0.56;10.5;6
5.9;0.35;0.47;2.2;0.11;14;138;0.9932;3.09;0.5;9.1;5
7.1;0.28;0.44;1.8;0.032;32;107;0.9907;3.25;0.48;12.2;7
5.8;0.25;0.28;11.1;0.056;45;175;0.99755;3.42;0.43;9.5;5
6.8;0.22;0.37;15.2;0.051;68;178;0.99935;3.4;0.85;9.3;6
7.1;0.14;0.4;1.2;0.051;55;136;0.9932;3.3;0.96;9.8;7
7.1;0.13;0.4;1.2;0.047;54;134;0.9932;3.3;0.97;9.8;7
6.9;0.18;0.38;8.1;0.049;44;176;0.9958;3.3;0.54;9.8;6
7;0.2;0.38;8.1;0.05;42;173;0.99585;3.3;0.54;9.8;6
6.8;0.24;0.49;19.3;0.057;55;247;1.00055;3;0.56;8.7;5
5;0.44;0.04;18.6;0.039;38;128;0.9985;3.37;0.57;10.2;6
6.3;0.3;0.28;5;0.042;36;168;0.99505;3.22;0.69;9.5;6
7.2;0.27;0.42;1.6;0.05;35;135;0.992;2.94;0.46;11;6
6.7;0.5;0.63;13.4;0.078;81;238;0.9988;3.08;0.44;9.2;5
6.8;0.2;0.36;1.6;0.028;7;46;0.99175;3.21;0.6;10.9;6
6.7;0.11;0.34;8.8;0.043;41;113;0.9962;3.42;0.4;9.3;7
6.7;0.11;0.34;8.8;0.043;41;113;0.9962;3.42;0.4;9.3;7
6.8;0.12;0.31;5.2;0.045;29;120;0.9942;3.41;0.46;9.8;7
6.6;0.16;0.57;1.1;0.13;58;140;0.9927;3.12;0.39;9.3;7
6.6;0.21;0.6;1.1;0.135;61;144;0.9927;3.12;0.39;9.3;7
6.1;0.27;0.3;16.7;0.039;49;172;0.99985;3.4;0.45;9.4;5
9.1;0.27;0.45;10.6;0.035;28;124;0.997;3.2;0.46;10.4;9
6.4;0.225;0.48;2.2;0.115;29;104;0.9918;3.24;0.58;12.1;6
8.3;0.14;0.45;1.5;0.039;18;98;0.99215;3.02;0.56;11;6
7.2;0.23;0.19;13.7;0.052;47;197;0.99865;3.12;0.53;9;5
6.9;0.22;0.37;15;0.053;59;178;0.9992;3.37;0.82;9.5;7
8.1;0.17;0.44;14.1;0.053;43;145;1.0006;3.28;0.75;8.8;8
6;0.395;0;1.4;0.042;7;55;0.99135;3.37;0.38;11.2;4
7.8;0.29;0.22;9.5;0.056;44;213;0.99715;3.08;0.61;9.3;6
6.9;0.22;0.37;15;0.053;59;178;0.9992;3.37;0.82;9.5;7
8.1;0.17;0.44;14.1;0.053;43;145;1.0006;3.28;0.75;8.8;8
7.2;0.23;0.19;13.7;0.052;47;197;0.99865;3.12;0.53;9;5
7.6;0.3;0.27;10.6;0.039;31;119;0.99815;3.27;0.3;9.3;6
7.7;0.34;0.28;11;0.04;31;117;0.99815;3.27;0.29;9.2;6
7.7;0.34;0.28;11;0.04;31;117;0.99815;3.27;0.29;9.2;6
5.8;0.34;0.16;7;0.037;26;116;0.9949;3.46;0.45;10;7
7.6;0.3;0.27;10.6;0.039;31;119;0.99815;3.27;0.3;9.3;6
7.7;0.34;0.28;11;0.04;31;117;0.99815;3.27;0.29;9.2;6
5.9;0.24;0.3;2;0.033;28;92;0.99225;3.39;0.69;10.9;7
6.4;0.46;0.08;4.9;0.046;34;144;0.99445;3.1;0.56;10;5
5.9;0.24;0.3;2;0.033;28;92;0.99225;3.39;0.69;10.9;7
7.4;0.32;0.27;1.4;0.049;38;173;0.99335;3.03;0.52;9.3;5
7.2;0.31;0.26;7.3;0.05;37;157;0.99625;3.09;0.43;9;5
7.8;0.42;0.23;8.8;0.054;42;215;0.9971;3.02;0.58;9.2;6
6.9;0.24;0.33;12.5;0.046;47;153;0.9983;3.28;0.77;9.6;6
5.4;0.18;0.24;4.8;0.041;30;113;0.99445;3.42;0.4;9.4;6
6;0.18;0.31;1.4;0.036;14;75;0.99085;3.34;0.58;11.1;8
7.8;0.27;0.58;11.2;0.036;44;161;0.9977;3.06;0.41;8.9;6
6;0.28;0.49;6.8;0.048;61;222;0.9953;3.19;0.47;9.3;5
6.8;0.39;0.35;11.6;0.044;57;220;0.99775;3.07;0.53;9.3;5
6.6;0.21;0.31;11.4;0.039;46;165;0.99795;3.41;0.44;9.8;7
7.3;0.32;0.34;6.6;0.032;24;112;0.99505;3.22;0.46;9.8;6
7.8;0.27;0.58;11.2;0.036;44;161;0.9977;3.06;0.41;8.9;6
6.4;0.31;0.26;13.2;0.046;57;205;0.9975;3.17;0.41;9.6;5
6.2;0.29;0.26;13.1;0.046;55;204;0.99745;3.16;0.41;9.6;6
6;0.39;0.17;12;0.046;65;246;0.9976;3.15;0.38;9;6
6.2;0.3;0.26;13.4;0.046;57;206;0.99775;3.17;0.43;9.5;6
6;0.28;0.49;6.8;0.048;61;222;0.9953;3.19;0.47;9.3;5
6;0.41;0.05;1.5;0.063;17;120;0.9932;3.21;0.56;9.2;6
6.4;0.35;0.28;1.1;0.055;9;160;0.99405;3.42;0.5;9.1;7
6.5;0.26;0.32;16.5;0.045;44;166;1;3.38;0.46;9.5;6
7.9;0.35;0.24;15.6;0.072;44;229;0.99785;3.03;0.59;10.5;6
6.2;0.3;0.17;2.8;0.04;24;125;0.9939;3.01;0.46;9;5
8.4;0.18;0.42;5.1;0.036;7;77;0.9939;3.16;0.52;11.7;5
6.6;0.56;0.22;8.9;0.034;27;133;0.99675;3.2;0.51;9.1;5
6.2;0.3;0.17;2.8;0.04;24;125;0.9939;3.01;0.46;9;5
6.6;0.56;0.22;8.9;0.034;27;133;0.99675;3.2;0.51;9.1;5
6.6;0.36;0.29;1.6;0.021;24;85;0.98965;3.41;0.61;12.4;9
7.3;0.655;0.2;10.2;0.071;28;212;0.9971;2.96;0.58;9.2;6
6.8;0.18;0.21;5.4;0.053;34;104;0.99445;3.3;0.43;9.4;5
6.7;0.19;0.23;6.2;0.047;36;117;0.9945;3.34;0.43;9.6;6
8.4;0.18;0.42;5.1;0.036;7;77;0.9939;3.16;0.52;11.7;5
7;0.21;0.37;7.2;0.042;36;167;0.9958;3.26;0.56;9.8;6
6.8;0.25;0.38;8.1;0.046;24;155;0.9956;3.33;0.59;10.2;6
7.4;0.24;0.36;2;0.031;27;139;0.99055;3.28;0.48;12.5;9
7.1;0.16;0.36;10.7;0.044;20;90;0.9959;3.16;0.44;10.9;7
7.1;0.16;0.36;1.2;0.043;21;90;0.9925;3.16;0.42;11;7
7.3;0.205;0.31;1.7;0.06;34;110;0.9963;3.72;0.69;10.5;6
7.4;0.17;0.4;5.5;0.037;34;161;0.9935;3.05;0.62;11.5;4
7.3;0.3;0.34;2.7;0.044;34;108;0.99105;3.36;0.53;12.8;8
6.9;0.25;0.34;1.3;0.035;27;82;0.99045;3.18;0.44;12.2;6
7.3;0.205;0.31;1.7;0.06;34;110;0.9963;3.72;0.69;10.5;6
7.5;0.42;0.34;4.3;0.04;34;108;0.99155;3.14;0.45;12.8;8
7.3;0.25;0.36;2.1;0.034;30;177;0.99085;3.25;0.4;11.9;8
7.3;0.25;0.36;2.1;0.034;30;177;0.99085;3.25;0.4;11.9;8
7.3;0.25;0.36;2.1;0.034;30;177;0.99085;3.25;0.4;11.9;8
7.5;0.34;0.35;6;0.034;12;126;0.9924;3.16;0.39;12;7
7.6;0.33;0.35;6.3;0.036;12;126;0.9924;3.16;0.39;12;7
8.7;0.23;0.32;13.4;0.044;35;169;0.99975;3.12;0.47;8.8;7
8.7;0.23;0.32;13.4;0.044;35;169;0.99975;3.12;0.47;8.8;7
6.9;0.19;0.35;1.7;0.036;33;101;0.99315;3.21;0.54;10.8;7
7.3;0.21;0.29;1.6;0.034;29;118;0.9917;3.3;0.5;11;8
7.3;0.21;0.29;1.6;0.034;29;118;0.9917;3.3;0.5;11;8
6.6;0.22;0.37;15.4;0.035;62;153;0.99845;3.02;0.4;9.3;5
9.2;0.34;0.27;1.2;0.026;17;73;0.9921;3.08;0.39;10.8;5
8.7;0.23;0.32;13.4;0.044;35;169;0.99975;3.12;0.47;8.8;7
6;0.2;0.24;1.8;0.03;30;105;0.9909;3.31;0.47;11.5;6
6.9;0.19;0.35;1.7;0.036;33;101;0.99315;3.21;0.54;10.8;7
8.2;0.38;0.49;13.6;0.042;58;166;0.99855;3.1;0.54;9.4;5
6.9;0.18;0.36;1.3;0.036;40;117;0.9934;3.27;0.95;9.5;7
7.7;0.34;0.58;11.1;0.039;41;151;0.9978;3.06;0.49;8.6;5
6.9;0.18;0.36;1.3;0.036;40;117;0.9934;3.27;0.95;9.5;7
7.4;0.2;0.35;2.1;0.038;30;116;0.9949;3.49;0.77;10.3;7
8.2;0.38;0.49;13.6;0.042;58;166;0.99855;3.1;0.54;9.4;5
8.2;0.4;0.48;13.7;0.042;59;169;0.9986;3.1;0.52;9.4;5
6.7;0.22;0.39;10.2;0.038;60;149;0.99725;3.17;0.54;10;7
6.6;0.3;0.3;4.8;0.17;60;166;0.9946;3.18;0.47;9.4;5
8.1;0.27;0.35;1.7;0.03;38;103;0.99255;3.22;0.63;10.4;8
7.3;0.25;0.42;14.2;0.041;57;182;0.9996;3.29;0.75;9.1;7
4.8;0.34;0;6.5;0.028;33;163;0.9939;3.36;0.61;9.9;6
6.2;0.28;0.33;1.7;0.029;24;111;0.99;3.24;0.5;12.1;6
4.8;0.33;0;6.5;0.028;34;163;0.9937;3.35;0.61;9.9;5
6.1;0.27;0.33;2.2;0.021;26;117;0.9886;3.12;0.3;12.5;6
6.9;0.18;0.36;1.3;0.036;40;117;0.9934;3.27;0.95;9.5;7
7.8;0.18;0.46;12.6;0.042;41;143;1;3.24;0.76;8.5;8
7.3;0.28;0.42;14.4;0.04;49;173;0.9994;3.28;0.82;9;7
7.3;0.24;0.29;1.2;0.037;37;97;0.9926;3.19;0.7;10.1;6
6;0.45;0.65;9.7;0.08;11;159;0.9956;3.04;0.48;9.4;5
7.7;0.34;0.58;11.1;0.039;41;151;0.9978;3.06;0.49;8.6;5
6.3;0.26;0.21;4;0.03;24;125;0.9915;3.06;0.34;10.7;6
10.3;0.17;0.47;1.4;0.037;5;33;0.9939;2.89;0.28;9.6;3
7.7;0.15;0.29;1.3;0.029;10;64;0.9932;3.35;0.39;10.1;5
7.1;0.21;0.32;2.2;0.037;28;141;0.993;3.2;0.57;10;7
6.9;0.36;0.34;4.2;0.018;57;119;0.9898;3.28;0.36;12.7;9
6;0.28;0.34;1.6;0.119;33;104;0.9921;3.19;0.38;10.2;6
6.2;0.16;0.54;1.4;0.126;37;110;0.9932;3.23;0.37;8.9;6
6.9;0.12;0.36;2.2;0.037;18;111;0.9919;3.41;0.82;11.9;8
7.1;0.21;0.32;2.2;0.037;28;141;0.993;3.2;0.57;10;7
8.8;0.36;0.44;1.9;0.04;9;121;0.9953;3.19;0.48;9.9;6
7.4;0.26;0.43;6;0.022;22;125;0.9928;3.13;0.55;11.5;6
7.4;0.26;0.43;6;0.022;22;125;0.9928;3.13;0.55;11.5;6
6.8;0.23;0.29;12.2;0.035;38;236;0.9976;3.35;0.52;9.8;6
6.1;0.34;0.27;2.6;0.024;20;105;0.9906;3.4;0.67;12.2;7
7.3;0.26;0.31;1.6;0.04;39;173;0.9918;3.19;0.51;11.4;6
6.5;0.3;0.32;2;0.044;34;90;0.99185;3.37;0.68;11;7
7.3;0.26;0.31;1.6;0.04;39;173;0.9918;3.19;0.51;11.4;6
6.5;0.3;0.32;2;0.044;34;90;0.99185;3.37;0.68;11;7
5;0.31;0;6.4;0.046;43;166;0.994;3.3;0.63;9.9;6
5.8;0.26;0.18;1.2;0.031;40;114;0.9908;3.42;0.4;11;7
5.9;0.26;0.3;1;0.036;38;114;0.9928;3.58;0.48;9.4;5
7;0.31;0.29;1.4;0.037;33;128;0.9896;3.12;0.36;12.2;7
5.8;0.26;0.18;1.2;0.031;40;114;0.9908;3.42;0.4;11;7
5.6;0.19;0.39;1.1;0.043;17;67;0.9918;3.23;0.53;10.3;6
6.8;0.18;0.28;8.7;0.047;52;242;0.9952;3.22;0.53;10.5;6
7;0.29;0.26;1.6;0.044;12;87;0.9923;3.08;0.46;10.5;6
6.6;0.26;0.29;1.4;0.039;13;67;0.9915;3.05;0.49;10.9;6
6.8;0.18;0.28;8.5;0.047;52;242;0.9952;3.22;0.53;10.5;6
6.6;0.2;0.38;7.9;0.052;30;145;0.9947;3.32;0.56;11;7
8;0.29;0.29;13.2;0.046;26;113;0.9983;3.25;0.37;9.7;6
6.1;0.28;0.35;12.8;0.048;63;229;0.9975;3.08;0.4;8.9;5
5.9;0.31;0.3;7.7;0.047;60;206;0.995;3.2;0.39;9.6;6
6.9;0.21;0.28;2.4;0.056;49;159;0.9944;3.02;0.47;8.8;8
8.4;0.19;0.42;1.6;0.047;9;101;0.994;3.06;0.65;11.1;4
8.3;0.27;0.45;1.3;0.048;8;72;0.9944;3.08;0.61;10.3;4
7.1;0.25;0.39;2.1;0.036;30;124;0.9908;3.28;0.43;12.2;8
8;0.23;0.37;9.6;0.054;23;159;0.99795;3.32;0.47;9.8;4
7.5;0.24;0.31;13;0.049;46;217;0.9985;3.08;0.53;8.8;5
6.3;0.33;0.2;5.8;0.04;24;144;0.99425;3.15;0.63;9.9;5
6.2;0.33;0.19;5.6;0.042;22;143;0.99425;3.15;0.63;9.9;5
6.3;0.34;0.19;5.8;0.041;22;145;0.9943;3.15;0.63;9.9;5
5.8;0.29;0.05;0.8;0.038;11;30;0.9924;3.36;0.35;9.2;5
8;0.32;0.26;1.2;0.05;11.5;88;0.9946;3.24;0.37;9.5;4
5.6;0.29;0.05;0.8;0.038;11;30;0.9924;3.36;0.35;9.2;5
7.4;0.13;0.39;4.7;0.042;36;137;0.995;3.36;0.56;10.3;7
7.7;0.3;0.32;1.6;0.037;23;124;0.9919;2.93;0.33;11;6
7;0.24;0.34;1.4;0.031;27;107;0.99;3.06;0.39;11.9;6
8.6;0.18;0.4;1.1;0.04;20;107;0.9923;2.94;0.32;10.2;7
7;0.11;0.32;4.6;0.057;59;144;0.9956;3.55;0.44;9.4;7
7.7;0.32;0.62;10.6;0.036;56;153;0.9978;3.13;0.44;8.9;6
7.7;0.32;0.62;10.6;0.036;56;153;0.9978;3.13;0.44;8.9;6
6.5;0.26;0.27;12.9;0.044;69;215;0.9967;3.17;0.43;10;6
7.9;0.28;0.41;2;0.044;50;152;0.9934;3.45;0.49;10.7;8
6.3;0.27;0.23;2.9;0.047;13;100;0.9936;3.28;0.43;9.8;5
5.4;0.595;0.1;2.8;0.042;26;80;0.9932;3.36;0.38;9.3;5
6.7;0.25;0.33;2.9;0.057;52;173;0.9934;3.02;0.48;9.5;7
6.5;0.25;0.35;12;0.055;47;179;0.998;3.58;0.47;10;5
6.1;0.36;0.58;15;0.044;42;115;0.9978;3.15;0.51;9;5
7.7;0.17;0.52;5.9;0.017;21;84;0.9929;3.14;0.4;11.9;7
6.4;0.26;0.43;12.6;0.033;64;230;0.9974;3.08;0.38;8.9;5
6.5;0.26;0.28;12.5;0.046;80;225;0.99685;3.18;0.41;10;6
5.9;0.29;0.33;7.4;0.037;58;205;0.99495;3.26;0.41;9.6;5
6.2;0.28;0.43;13;0.039;64;233;0.99745;3.08;0.38;8.9;5
6.1;0.27;0.44;6.7;0.041;61;230;0.99505;3.12;0.4;8.9;5
6.4;0.43;0.32;1.4;0.048;10;67;0.992;3.08;0.41;11.4;5
6.1;0.36;0.58;15;0.044;42;115;0.9978;3.15;0.51;9;5
6.2;0.35;0.29;7.3;0.044;56;244;0.9956;3.36;0.55;10;6
7.7;0.24;0.29;15.3;0.044;39;194;0.9982;3.06;0.47;9.6;7
6.2;0.34;0.28;7.5;0.034;40;197;0.99485;3.14;0.6;9.7;5
6.3;0.27;0.46;11.75;0.037;61;212;0.9971;3.25;0.53;9.5;6
5.4;0.415;0.19;1.6;0.039;27;88;0.99265;3.54;0.41;10;7
6.9;0.48;0.36;3.5;0.03;31;135;0.9904;3.14;0.38;12.2;7
6.5;0.18;0.33;8;0.051;16;131;0.9965;3.28;0.44;8.7;7
6.7;0.15;0.29;5;0.058;28;105;0.9946;3.52;0.44;10.2;7
8.2;0.345;1;18.2;0.047;55;205;0.99965;2.96;0.43;9.6;5
8.5;0.16;0.35;1.6;0.039;24;147;0.9935;2.96;0.36;10;5
6.8;0.705;0.25;3.2;0.048;10;57;0.996;3.36;0.52;9.5;4
7.3;0.25;0.39;6.4;0.034;8;84;0.9942;3.18;0.46;11.5;5
7.6;0.345;0.26;1.9;0.043;15;134;0.9936;3.08;0.38;9.5;5
7.6;0.22;0.34;9.7;0.035;26;143;0.9965;3.08;0.49;9.8;6
6.5;0.17;0.33;1.4;0.028;14;99;0.9928;3.23;0.55;10.1;6
8.2;0.23;0.37;1.3;0.042;39;117;0.9928;2.99;0.36;10;5
7.6;0.22;0.34;9.7;0.035;26;143;0.9965;3.08;0.49;9.8;6
7.6;0.345;0.26;1.9;0.043;15;134;0.9936;3.08;0.38;9.5;5
7.5;0.32;0.26;1.8;0.042;13;133;0.9938;3.07;0.38;9.5;5
6.6;0.23;0.32;0.9;0.041;25;79;0.9926;3.39;0.54;10.2;7
6.6;0.2;0.32;1.1;0.039;25;78;0.9926;3.39;0.54;10.2;7
7.3;0.24;0.34;15.4;0.05;38;174;0.9983;3.03;0.42;9;6
7.3;0.24;0.34;15.4;0.05;38;174;0.9983;3.03;0.42;9;6
8;0.42;0.36;5;0.037;34;101;0.992;3.13;0.57;12.3;7
7.3;0.24;0.34;15.4;0.05;38;174;0.9983;3.03;0.42;9;6
6.1;0.19;0.25;4;0.023;23;112;0.9923;3.37;0.51;11.6;6
5.9;0.26;0.21;12.5;0.034;36;152;0.9972;3.28;0.43;9.5;6
8.3;0.23;0.43;3.2;0.035;14;101;0.9928;3.15;0.36;11.5;5
6.5;0.34;0.28;1.8;0.041;43;188;0.9928;3.13;0.37;9.6;6
6.8;0.22;0.35;17.5;0.039;38;153;0.9994;3.24;0.42;9;6
6.5;0.08;0.33;1.9;0.028;23;93;0.991;3.34;0.7;12;7
5.5;0.42;0.09;1.6;0.019;18;68;0.9906;3.33;0.51;11.4;7
5.1;0.42;0.01;1.5;0.017;25;102;0.9894;3.38;0.36;12.3;7
6;0.27;0.19;1.7;0.02;24;110;0.9898;3.32;0.47;12.6;7
6.8;0.22;0.35;17.5;0.039;38;153;0.9994;3.24;0.42;9;6
6.5;0.08;0.33;1.9;0.028;23;93;0.991;3.34;0.7;12;7
7.1;0.13;0.38;1.8;0.046;14;114;0.9925;3.32;0.9;11.7;6
7.6;0.3;0.25;4.3;0.054;22;111;0.9956;3.12;0.49;9.2;5
6.6;0.13;0.3;4.9;0.058;47;131;0.9946;3.51;0.45;10.3;6
6.5;0.14;0.33;7.6;0.05;53;189;0.9966;3.25;0.49;8.6;5
7.7;0.28;0.33;6.7;0.037;32;155;0.9951;3.39;0.62;10.7;7
6;0.2;0.71;1.6;0.15;10;54;0.9927;3.12;0.47;9.8;5
6;0.19;0.71;1.5;0.152;9;55;0.9927;3.12;0.46;9.8;6
7.7;0.28;0.33;6.7;0.037;32;155;0.9951;3.39;0.62;10.7;7
5.1;0.39;0.21;1.7;0.027;15;72;0.9894;3.5;0.45;12.5;6
5.7;0.36;0.34;4.2;0.026;21;77;0.9907;3.41;0.45;11.9;6
6.9;0.19;0.33;1.6;0.043;63;149;0.9925;3.44;0.52;10.8;5
6;0.41;0.21;1.9;0.05;29;122;0.9928;3.42;0.52;10.5;6
7.4;0.28;0.3;5.3;0.054;44;161;0.9941;3.12;0.48;10.3;6
7.4;0.3;0.3;5.2;0.053;45;163;0.9941;3.12;0.45;10.3;6
6.9;0.19;0.33;1.6;0.043;63;149;0.9925;3.44;0.52;10.8;5
7.7;0.28;0.39;8.9;0.036;8;117;0.9935;3.06;0.38;12;7
8.6;0.16;0.38;3.4;0.04;41;143;0.9932;2.95;0.39;10.2;6
8.2;0.26;0.44;1.3;0.046;7;69;0.9944;3.14;0.62;10.2;4
6.5;0.25;0.27;15.2;0.049;75;217;0.9972;3.19;0.39;9.9;5
7;0.24;0.18;1.3;0.046;9;62;0.994;3.38;0.47;10.1;4
8.6;0.18;0.36;1.8;0.04;24;187;0.9956;3.25;0.55;9.5;6
7.8;0.27;0.34;1.6;0.046;27;154;0.9927;3.05;0.45;10.5;6
6;0.26;0.34;1.3;0.046;6;29;0.9924;3.29;0.63;10.4;5
6.1;0.24;0.27;9.8;0.062;33;152;0.9966;3.31;0.47;9.5;6
8;0.24;0.3;17.45;0.056;43;184;0.9997;3.05;0.5;9.2;6
7.6;0.21;0.6;2.1;0.046;47;165;0.9936;3.05;0.54;10.1;7
8;0.19;0.36;1.8;0.05;16;84;0.9936;3.15;0.45;9.8;7
6.4;0.28;0.41;6.8;0.045;61;216;0.9952;3.09;0.46;9.4;5
6.4;0.28;0.43;7.1;0.045;60;221;0.9952;3.09;0.45;9.4;6
6.9;0.24;0.39;1.3;0.063;18;136;0.9928;3.31;0.48;10.4;7
5.8;0.36;0.26;3.3;0.038;40;153;0.9911;3.34;0.55;11.3;6
6.6;0.18;0.28;3.3;0.044;18;91;0.993;3.42;0.64;10.8;6
5.8;0.36;0.26;3.3;0.038;40;153;0.9911;3.34;0.55;11.3;6
5.1;0.52;0.06;2.7;0.052;30;79;0.9932;3.32;0.43;9.3;5
6.6;0.22;0.37;1.2;0.059;45;199;0.993;3.37;0.55;10.3;7
8.3;0.15;0.39;1.3;0.055;32;146;0.993;3.08;0.39;10.5;6
7.6;0.16;0.44;1.4;0.043;25;109;0.9932;3.11;0.75;10.3;6
7.7;0.16;0.41;1.7;0.048;60;173;0.9932;3.24;0.66;11.2;7
8.3;0.16;0.48;1.7;0.057;31;98;0.9943;3.15;0.41;10.3;6
6.2;0.25;0.47;11.6;0.048;62;210;0.9968;3.19;0.5;9.5;5
6.1;0.16;0.27;12.6;0.064;63;162;0.9994;3.66;0.43;8.9;5
7.6;0.39;0.22;2.8;0.036;19;113;0.9926;3.03;0.29;10.2;5
6.8;0.37;0.47;11.2;0.071;44;136;0.9968;2.98;0.88;9.2;5
7.6;0.16;0.44;1.4;0.043;25;109;0.9932;3.11;0.75;10.3;6
7.1;0.18;0.42;1.4;0.045;47;157;0.9916;2.95;0.31;10.5;6
8.3;0.14;0.26;1.5;0.049;56;189;0.9946;3.21;0.62;9.5;6
8.6;0.2;0.42;1.5;0.041;35;125;0.9925;3.11;0.49;11.4;7
8.6;0.2;0.42;1.5;0.041;35;125;0.9925;3.11;0.49;11.4;7
6.8;0.19;0.32;7.05;0.019;54;188;0.9935;3.25;0.37;11.1;8
7.6;0.19;0.38;10.6;0.06;48;174;0.9962;3.13;0.38;10.5;6
6.8;0.34;0.74;2.8;0.088;23;185;0.9928;3.51;0.7;12;6
6.2;0.15;0.46;1.6;0.039;38;123;0.993;3.38;0.51;9.7;6
6.6;0.14;0.44;1.6;0.042;47;140;0.993;3.32;0.51;10.2;6
8;0.55;0.17;8.2;0.04;13;60;0.9956;3.09;0.3;9.5;4
7;0.24;0.35;1.5;0.052;51;128;0.9941;3.41;0.59;10.4;7
6.3;0.6;0.44;11;0.05;50;245;0.9972;3.19;0.57;9.3;4
7.1;0.2;0.41;2.1;0.054;24;166;0.9948;3.48;0.62;10.5;6
6.2;0.34;0.29;7.6;0.047;45;232;0.9955;3.35;0.62;10;6
7.1;0.3;0.36;6.8;0.055;44.5;234;0.9972;3.49;0.64;10.2;6
7.1;0.3;0.36;6.8;0.055;44.5;234;0.9972;3.49;0.64;10.2;6
7.9;0.64;0.46;10.6;0.244;33;227;0.9983;2.87;0.74;9.1;3
8.8;0.17;0.38;1.8;0.04;39;148;0.9942;3.16;0.67;10.2;6
7.5;0.17;0.37;1.5;0.06;18;75;0.9936;3.54;0.88;10.7;5
7.1;0.47;0.24;6;0.044;11;77;0.9956;3.21;0.56;9.7;5
7.1;0.15;0.34;5.3;0.034;33;104;0.9953;3.37;0.52;9.3;7
7.5;0.17;0.34;1.4;0.035;13;102;0.9918;3.05;0.74;11;5
8.2;0.68;0.3;2.1;0.047;17;138;0.995;3.22;0.71;10.8;4
7.7;0.275;0.3;1;0.039;19;75;0.992;3.01;0.56;10.7;5
7.3;0.49;0.32;5.2;0.043;18;104;0.9952;3.24;0.45;10.7;4
7.5;0.33;0.48;19.45;0.048;55;243;1.001;2.95;0.4;8.8;5
7.2;0.21;0.37;1.6;0.049;23;94;0.9924;3.16;0.48;10.9;7
7.3;0.15;0.4;2;0.05;24;92;0.9932;3.14;0.45;10.5;5
6.5;0.19;0.1;1.3;0.046;23;107;0.9937;3.29;0.45;10;5
7;0.31;0.52;1.7;0.029;5;61;0.9918;3.07;0.43;10.4;5
8.3;0.4;0.38;1.1;0.038;15;75;0.9934;3.03;0.43;9.2;5
6.1;0.37;0.36;4.7;0.035;36;116;0.991;3.31;0.62;12.6;6
7.3;0.24;0.34;7.5;0.048;29;152;0.9962;3.1;0.54;9;5
6.9;0.21;0.81;1.1;0.137;52;123;0.9932;3.03;0.39;9.2;6
7.6;0.29;0.42;1.3;0.035;18;86;0.9908;2.99;0.39;11.3;5
9.4;0.29;0.55;2.2;0.05;17;119;0.9962;3.12;0.69;10.3;4
7;0.31;0.52;1.7;0.029;5;61;0.9918;3.07;0.43;10.4;5
8.6;0.26;0.41;2.2;0.049;29;111;0.9941;2.96;0.44;10;5
7.5;0.21;0.34;1.2;0.06;26;111;0.9931;3.51;0.47;10.7;6
7.2;0.51;0.24;10;0.093;35;197;0.9981;3.41;0.47;9;5
7.5;0.21;0.34;1.2;0.06;26;111;0.9931;3.51;0.47;10.7;6
5.3;0.3;0.2;1.1;0.077;48;166;0.9944;3.3;0.54;8.7;4
8;0.26;0.36;2;0.054;30;121;0.992;3.09;0.72;11.6;7
7;0.21;0.28;7.5;0.07;45;185;0.9966;3.34;0.55;9.4;5
6.7;0.26;0.26;4;0.079;35.5;216;0.9956;3.31;0.68;9.5;5
6.7;0.26;0.26;4.1;0.073;36;202;0.9956;3.3;0.67;9.5;5
8.1;0.26;0.37;1.9;0.072;48;159;0.9949;3.37;0.7;10.9;6
8.3;0.22;0.38;14.8;0.054;32;126;1.0002;3.22;0.5;9.7;5
6.4;0.3;0.51;5.5;0.048;62;172;0.9942;3.08;0.45;9.1;6
7.5;0.19;0.34;2.6;0.037;33;125;0.9923;3.1;0.49;11.1;7
8.8;0.33;0.44;6.35;0.024;9;87;0.9917;2.96;0.4;12.6;7
6.9;0.2;0.36;1.5;0.031;38;147;0.9931;3.35;0.56;11;6
8;0.37;0.32;1.6;0.04;32;166;0.992;3;0.55;11.3;7
8.3;0.22;0.38;14.8;0.054;32;126;1.0002;3.22;0.5;9.7;5
8.2;0.29;0.33;9.1;0.036;28;118;0.9953;2.96;0.4;10.9;7
7.7;0.34;0.3;8;0.048;25;192;0.9951;2.97;0.47;10.9;5
6.2;0.55;0.45;12;0.049;27;186;0.9974;3.17;0.5;9.3;6
6.4;0.4;0.19;3.2;0.033;28;124;0.9904;3.22;0.54;12.7;7
7.5;0.28;0.33;7.7;0.048;42;180;0.9974;3.37;0.59;10.1;6
7.8;0.26;0.44;1.3;0.037;43;132;0.9944;3.18;0.65;10;5
6.5;0.26;0.34;16.3;0.051;56;197;1.0004;3.49;0.42;9.8;5
6.3;0.34;0.29;6.2;0.046;29;227;0.9952;3.29;0.53;10.1;6
6.8;0.15;0.33;4.7;0.059;31;118;0.9956;3.43;0.39;9;7
6.3;0.27;0.25;5.8;0.038;52;155;0.995;3.28;0.38;9.4;6
6.3;0.27;0.25;5.8;0.038;52;155;0.995;3.28;0.38;9.4;6
7.4;0.2;0.37;16.95;0.048;43;190;0.9995;3.03;0.42;9.2;6
6.3;0.23;0.21;5.1;0.035;29;142;0.9942;3.36;0.33;10.1;7
7.3;0.31;0.69;10.2;0.041;58;160;0.9977;3.06;0.45;8.6;5
5.2;0.24;0.45;3.8;0.027;21;128;0.992;3.55;0.49;11.2;8
7;0.24;0.32;1.3;0.037;39;123;0.992;3.17;0.42;11.2;8
7.4;0.2;0.37;16.95;0.048;43;190;0.9995;3.03;0.42;9.2;6
7;0.17;0.33;4;0.034;17;127;0.9934;3.19;0.39;10.6;7
8.3;0.21;0.58;17.1;0.049;62;213;1.0006;3.01;0.51;9.3;6
7.2;0.21;0.35;14.5;0.048;35;178;0.9982;3.05;0.47;8.9;6
7.1;0.21;0.4;1.2;0.069;24;156;0.9928;3.42;0.43;10.6;6
8.4;0.17;0.31;6.7;0.038;29;132;0.9945;3.1;0.32;10.6;7
7.4;0.24;0.31;8.4;0.045;52;183;0.9963;3.09;0.32;8.8;5
5.3;0.24;0.33;1.3;0.033;25;97;0.9906;3.59;0.38;11;8
6.5;0.28;0.26;8.8;0.04;44;139;0.9956;3.32;0.37;10.2;6
6.3;0.23;0.21;5.1;0.035;29;142;0.9942;3.36;0.33;10.1;7
6.5;0.29;0.25;10.6;0.039;32;120;0.9962;3.31;0.34;10.1;6
5.8;0.29;0.21;2.6;0.025;12;120;0.9894;3.39;0.79;14;7
6.3;0.27;0.25;5.8;0.038;52;155;0.995;3.28;0.38;9.4;6
6.3;0.17;0.42;2.8;0.028;45;107;0.9908;3.27;0.43;11.8;6
6.3;0.16;0.4;1.6;0.033;59;148;0.9914;3.44;0.53;11.4;5
7.9;0.29;0.39;6.7;0.036;6;117;0.9938;3.12;0.42;10.7;5
7.3;0.31;0.69;10.2;0.041;58;160;0.9977;3.06;0.45;8.6;5
5.5;0.32;0.45;4.9;0.028;25;191;0.9922;3.51;0.49;11.5;7
5.2;0.24;0.45;3.8;0.027;21;128;0.992;3.55;0.49;11.2;8
7.2;0.37;0.15;2;0.029;27;87;0.9903;3.3;0.59;12.6;7
6.1;0.29;0.27;1.7;0.024;13;76;0.9893;3.21;0.51;12.6;7
9.2;0.22;0.4;2.4;0.054;18;151;0.9952;3.04;0.46;9.3;4
7.2;0.37;0.15;2;0.029;27;87;0.9903;3.3;0.59;12.6;7
8;0.18;0.37;1.3;0.04;15;96;0.9912;3.06;0.61;12.1;6
6.5;0.22;0.34;12;0.053;55;177;0.9983;3.52;0.44;9.9;6
7.4;0.18;0.4;1.6;0.047;22;102;0.9937;3.28;0.44;10.7;5
6.5;0.52;0.17;1.4;0.047;5;26;0.9932;3.26;0.32;10;4
7;0.15;0.38;2.2;0.047;33;96;0.9928;3.13;0.39;10.4;8
5.9;0.415;0.13;1.4;0.04;11;64;0.9922;3.29;0.52;10.5;5
8.1;0.45;0.34;8.3;0.037;33;216;0.9976;3.31;0.64;9.7;5
5.8;0.415;0.13;1.4;0.04;11;64;0.9922;3.29;0.52;10.5;5
6.4;0.5;0.16;12.9;0.042;26;138;0.9974;3.28;0.33;9;5
6.7;0.105;0.32;12.4;0.051;34;106;0.998;3.54;0.45;9.2;6
6;0.4;0.3;1.6;0.047;30;117;0.9931;3.17;0.48;10.1;6
6.6;0.25;0.39;1.45;0.04;40;89;0.9911;3.35;0.4;11.4;7
9.8;0.36;0.45;1.6;0.042;11;124;0.9944;2.93;0.46;10.8;5
9.6;0.23;0.4;1.5;0.044;19;135;0.9937;2.96;0.49;10.9;5
6.3;0.55;0.45;13;0.047;33;182;0.9974;3.2;0.46;9.2;6
6.5;0.115;0.29;1.95;0.038;73;166;0.989;3.12;0.25;12.9;7
6.4;0.125;0.29;5.85;0.042;24;99;0.992;3.23;0.32;12;7
5.7;0.1;0.27;1.3;0.047;21;100;0.9928;3.27;0.46;9.5;5
7.9;0.25;0.29;5.3;0.031;33;117;0.9918;3.06;0.32;11.8;7
6.9;0.2;0.28;1.2;0.048;36;159;0.9936;3.19;0.43;9.1;6
6.9;0.23;0.34;4;0.047;24;128;0.9944;3.2;0.52;9.7;6
6.8;0.39;0.31;14.35;0.043;28;162;0.9988;3.17;0.54;9.1;5
8.7;0.22;0.42;2.3;0.053;27;114;0.994;2.99;0.43;10;5
7.4;0.41;0.34;4.7;0.042;19;127;0.9953;3.25;0.42;10.4;5
6.7;0.25;0.34;12.85;0.048;30;161;0.9986;3.44;0.47;9.5;6
6;0.26;0.42;5.2;0.027;70;178;0.9914;3.4;0.4;12.3;8
6.1;0.31;0.37;8.4;0.031;70;170;0.9934;3.42;0.4;11.7;8
9.2;0.28;0.46;3.2;0.058;39;133;0.996;3.14;0.58;9.5;5
9;0.31;0.49;6.9;0.034;26;91;0.9937;2.99;0.34;11.5;5
8.5;0.16;0.33;1;0.076;17;57;0.9921;3.14;0.46;10.6;6
9.3;0.34;0.49;7.3;0.052;30;146;0.998;3.17;0.61;10.2;5
9.2;0.28;0.46;3.2;0.058;39;133;0.996;3.14;0.58;9.5;5
7.2;0.24;0.3;1.6;0.048;27;131;0.9933;3.25;0.45;10.5;5
7.2;0.25;0.32;1.5;0.047;27;132;0.9933;3.26;0.44;10.5;5
6.8;0.32;0.18;7.5;0.041;71;223;0.9959;3.14;0.41;8.9;5
9.1;0.27;0.32;1.1;0.031;15;151;0.9936;3.03;0.41;10.6;5
8.9;0.34;0.32;1.3;0.041;12;188;0.9953;3.17;0.49;9.5;5
7;0.17;0.37;5.7;0.025;29;111;0.9938;3.2;0.49;10.8;6
6.7;0.25;0.23;7.2;0.038;61;220;0.9952;3.14;0.35;9.5;5
6.9;0.32;0.17;7.6;0.042;69;219;0.9959;3.13;0.4;8.9;5
6.8;0.32;0.18;7.5;0.041;71;223;0.9959;3.14;0.41;8.9;5
6.1;0.6;0;1.3;0.042;24;79;0.9937;3.31;0.38;9.4;4
5.3;0.395;0.07;1.3;0.035;26;102;0.992;3.5;0.35;10.6;6
7.9;0.16;0.3;4.8;0.037;37;171;0.9967;3.47;0.44;9;4
7.6;0.33;0.36;2.1;0.034;26;172;0.9944;3.42;0.48;10.5;4
7.8;0.3;0.29;16.85;0.054;23;135;0.9998;3.16;0.38;9;6
7.8;0.3;0.29;16.85;0.054;23;135;0.9998;3.16;0.38;9;6
5.7;0.26;0.27;4.1;0.201;73.5;189.5;0.9942;3.27;0.38;9.4;6
7.8;0.3;0.29;16.85;0.054;23;135;0.9998;3.16;0.38;9;6
7.5;0.14;0.34;1.3;0.055;50;153;0.9945;3.29;0.8;9.6;6
7.8;0.3;0.29;16.85;0.054;23;135;0.9998;3.16;0.38;9;6
6.6;0.25;0.41;7.4;0.043;29;151;0.9946;3.15;0.6;10.2;7
5.7;0.26;0.27;4.1;0.201;73.5;189.5;0.9942;3.27;0.38;9.4;6
8.2;0.23;0.49;0.9;0.057;15;73;0.9928;3.07;0.38;10.4;6
6;0.24;0.32;6.3;0.03;34;129;0.9946;3.52;0.41;10.4;5
6.1;0.45;0.27;0.8;0.039;13;82;0.9927;3.23;0.32;9.5;5
7.4;0.23;0.43;1.4;0.044;22;113;0.9938;3.22;0.62;10.6;6
7.2;0.2;0.38;1;0.037;21;74;0.9918;3.21;0.37;11;5
7.5;0.14;0.34;1.3;0.055;50;153;0.9945;3.29;0.8;9.6;6
7.7;0.25;0.43;4.5;0.062;20;115;0.9966;3.38;0.5;9.9;6
8.2;0.61;0.45;5.4;0.03;15;118;0.9954;3.14;0.34;9.6;5
7.6;0.21;0.44;1.9;0.036;10;119;0.9913;3.01;0.7;12.8;6
7.4;0.22;0.33;2;0.045;31;101;0.9931;3.42;0.55;11.4;5
7.2;0.26;0.26;12.7;0.036;49;214;0.9986;3.41;0.5;10;6
6.4;0.25;0.41;8.6;0.042;57;173;0.9965;3;0.44;9.1;5
6.3;0.32;0.35;11.1;0.039;29;198;0.9984;3.36;0.5;9.4;7
6.8;0.25;0.29;2;0.042;19;189;0.9952;3.46;0.54;10.2;6
9.8;0.44;0.4;2.8;0.036;35;167;0.9956;2.97;0.39;9.2;5
7.2;0.2;0.25;4.5;0.044;31;109;0.9949;3.23;0.36;9.4;5
8.2;0.61;0.45;5.4;0.03;15;118;0.9954;3.14;0.34;9.6;5
7.5;0.42;0.45;9.1;0.029;20;125;0.996;3.12;0.36;10.1;6
7.4;0.22;0.33;2;0.045;31;101;0.9931;3.42;0.55;11.4;5
6.4;0.26;0.3;2.2;0.025;33;134;0.992;3.21;0.47;10.6;6
7.9;0.46;0.32;4.1;0.033;40;138;0.9912;3.18;0.44;12.8;7
6.5;0.41;0.64;11.8;0.065;65;225;0.9978;3.12;0.51;8.9;5
7.5;0.32;0.37;1.2;0.048;22;184;0.9938;3.09;0.43;9.3;5
6.6;0.21;0.38;2.2;0.026;40;104;0.9914;3.25;0.4;11.1;8
7.1;0.21;0.3;1.4;0.037;45;143;0.9932;3.13;0.33;9.9;6
7.6;0.26;0.47;1.6;0.068;5;55;0.9944;3.1;0.45;9.6;5
7.6;0.21;0.44;1.9;0.036;10;119;0.9913;3.01;0.7;12.8;6
6.9;0.25;0.26;5.2;0.024;36;135;0.9948;3.16;0.72;10.7;7
7.1;0.26;0.32;14.45;0.074;29;107;0.998;2.96;0.42;9.2;6
7.3;0.22;0.4;14.75;0.042;44.5;129.5;0.9998;3.36;0.41;9.1;7
6.2;0.37;0.22;8.3;0.025;36;216;0.9964;3.33;0.6;9.6;6
7.9;0.22;0.45;14.2;0.038;53;141;0.9992;3.03;0.46;9.2;6
6.9;0.25;0.26;5.2;0.024;36;135;0.9948;3.16;0.72;10.7;7
7.3;0.22;0.4;14.75;0.042;44.5;129.5;0.9998;3.36;0.41;9.1;7
7.1;0.26;0.32;14.45;0.074;29;107;0.998;2.96;0.42;9.2;6
7.4;0.25;0.37;6.9;0.02;14;93;0.9939;3;0.48;10.7;7
6.8;0.18;0.37;1.5;0.027;37;93;0.992;3.3;0.45;10.8;6
7;0.17;0.37;1.5;0.028;26;75;0.9922;3.3;0.46;10.8;7
6.4;0.3;0.38;7.8;0.046;35;192;0.9955;3.1;0.37;9;5
5;0.33;0.16;1.5;0.049;10;97;0.9917;3.48;0.44;10.7;6
5;0.33;0.16;1.5;0.049;10;97;0.9917;3.48;0.44;10.7;6
8.9;0.33;0.32;1.5;0.047;11;200;0.9954;3.19;0.46;9.4;5
7;0.26;0.46;15.55;0.037;61;171;0.9986;2.94;0.35;8.8;6
6.4;0.3;0.38;7.8;0.046;35;192;0.9955;3.1;0.37;9;5
6.3;0.21;0.4;1.7;0.031;48;134;0.9917;3.42;0.49;11.5;6
8;0.23;0.46;1.5;0.03;30;125;0.9907;3.23;0.47;12.5;6
9.2;0.28;0.41;1;0.042;14;59;0.9922;2.96;0.25;10.5;6
7.3;0.27;0.39;6.7;0.064;28;188;0.9958;3.29;0.3;9.7;5
7.6;0.32;0.36;1.6;0.04;32;155;0.993;3.23;0.52;11.3;6
5;0.33;0.16;1.5;0.049;10;97;0.9917;3.48;0.44;10.7;6
9.7;0.24;0.45;1.2;0.033;11;59;0.9926;2.74;0.47;10.8;6
8;0.28;0.42;7.1;0.045;41;169;0.9959;3.17;0.43;10.6;5
8.2;0.37;0.36;1;0.034;17;93;0.9906;3.04;0.32;11.7;8
8;0.61;0.38;12.1;0.301;24;220;0.9993;2.94;0.48;9.2;5
7.2;0.26;0.44;7.1;0.027;25;126;0.993;3.02;0.34;11.1;8
8.2;0.37;0.36;1;0.034;17;93;0.9906;3.04;0.32;11.7;8
6.4;0.23;0.33;1.15;0.044;15.5;217.5;0.992;3.33;0.44;11;6
5.9;0.4;0.32;6;0.034;50;127;0.992;3.51;0.58;12.5;7
7.6;0.28;0.39;1.2;0.038;21;115;0.994;3.16;0.67;10;6
8;0.28;0.42;7.1;0.045;41;169;0.9959;3.17;0.43;10.6;5
7.2;0.23;0.39;2.3;0.033;29;102;0.9908;3.26;0.54;12.3;7
6.8;0.32;0.37;3.4;0.023;19;87;0.9902;3.14;0.53;12.7;6
7.2;0.23;0.39;2.3;0.033;29;102;0.9908;3.26;0.54;12.3;7
6.9;0.18;0.38;6.5;0.039;20;110;0.9943;3.1;0.42;10.5;5
9.4;0.26;0.53;1.2;0.047;25;109;0.9921;3.23;0.28;12.5;6
8.3;0.33;0.42;1.15;0.033;18;96;0.9911;3.2;0.32;12.4;3
7.3;0.29;0.3;13;0.043;46;238;0.9986;3.06;0.41;8.7;6
7.9;0.41;0.37;4.5;0.03;40;114;0.992;3.17;0.54;12.4;7
7.9;0.44;0.37;5.85;0.033;27;93;0.992;3.16;0.54;12.6;7
7.7;0.39;0.3;5.2;0.037;29;131;0.9943;3.38;0.44;11;6
7.7;0.26;0.31;1.3;0.043;47;155;0.9937;3.42;0.5;10.1;6
7.8;0.32;0.31;1.7;0.036;46;195;0.993;3.03;0.48;10.5;5
6.8;0.32;0.37;3.4;0.023;19;87;0.9902;3.14;0.53;12.7;6
7.3;0.24;0.39;3.6;0.024;35;116;0.9928;3.17;0.51;10.9;5
7.1;0.44;0.37;2.7;0.041;35;128;0.9896;3.07;0.43;13.5;7
10.3;0.25;0.48;2.2;0.042;28;164;0.998;3.19;0.59;9.7;5
7.9;0.14;0.28;1.8;0.041;44;178;0.9954;3.45;0.43;9.2;6
7.4;0.18;0.42;2.1;0.036;33;187;0.9938;3.4;0.41;10.6;7
8.1;0.43;0.42;6.6;0.033;36;141;0.9918;2.98;0.39;13.3;7
7.1;0.44;0.37;2.7;0.041;35;128;0.9896;3.07;0.43;13.5;7
6.4;0.26;0.22;5.1;0.037;23;131;0.9944;3.29;0.32;10.1;5
8;0.66;0.72;17.55;0.042;62;233;0.9999;2.92;0.68;9.4;4
8;0.2;0.4;5.2;0.055;41;167;0.9953;3.18;0.4;10.6;7
7.2;0.21;0.34;1.1;0.046;25;80;0.992;3.25;0.4;11.3;6
7.2;0.18;0.31;1.1;0.045;20;73;0.9925;3.32;0.4;10.8;7
8.4;0.57;0.44;10.7;0.051;46;195;0.9981;3.15;0.51;10.4;5
5.3;0.26;0.23;5.15;0.034;48;160;0.9952;3.82;0.51;10.5;7
5.7;0.245;0.33;1.1;0.049;28;150;0.9927;3.13;0.42;9.3;5
5.6;0.245;0.32;1.1;0.047;24;152;0.9927;3.12;0.42;9.3;6
7.3;0.25;0.41;1.8;0.037;52;165;0.9911;3.29;0.39;12.2;7
7;0.16;0.73;1;0.138;58;150;0.9936;3.08;0.3;9.2;5
6.4;0.22;0.34;1.8;0.057;29;104;0.9959;3.81;0.57;10.3;6
7.3;0.18;0.65;1.4;0.046;28;157;0.9946;3.33;0.62;9.4;6
6.4;0.17;0.27;6.7;0.036;88;223;0.9948;3.28;0.35;10.2;6
6.9;0.29;0.16;6.8;0.034;65;212;0.9955;3.08;0.39;9;6
6.2;0.21;0.38;6.8;0.036;64;245;0.9951;3.06;0.36;9.3;6
6.4;0.23;0.3;7.1;0.037;63;236;0.9952;3.06;0.34;9.2;6
7.3;0.19;0.68;1.5;0.05;31;156;0.9946;3.32;0.64;9.4;6
7.3;0.18;0.65;1.4;0.046;28;157;0.9946;3.33;0.62;9.4;6
9.6;0.29;0.46;1.45;0.039;77.5;223;0.9944;2.92;0.46;9.5;6
7.2;0.14;0.35;1.2;0.036;15;73;0.9938;3.46;0.39;9.9;5
6.9;0.31;0.34;7.4;0.059;36;174;0.9963;3.46;0.62;11.1;7
7.5;0.28;0.34;4.2;0.028;36;116;0.991;2.99;0.41;12.3;8
8;0.22;0.42;14.6;0.044;45;163;1.0003;3.21;0.69;8.6;7
7.6;0.31;0.29;10.5;0.04;21;145;0.9966;3.04;0.35;9.4;5
8.4;0.35;0.56;13.8;0.048;55;190;0.9993;3.07;0.58;9.4;6
8;0.22;0.42;14.6;0.044;45;163;1.0003;3.21;0.69;8.6;7
8.1;0.5;0.47;1.1;0.037;23;126;0.9938;3.21;0.42;10.9;5
7;0.39;0.31;5.3;0.169;32;162;0.9965;3.2;0.48;9.4;5
8.1;0.5;0.47;1.1;0.037;23;126;0.9938;3.21;0.42;10.9;5
8.4;0.35;0.56;13.8;0.048;55;190;0.9993;3.07;0.58;9.4;6
6.2;0.22;0.27;1.5;0.064;20;132;0.9938;3.22;0.46;9.2;6
8;0.22;0.42;14.6;0.044;45;163;1.0003;3.21;0.69;8.6;7
7.6;0.31;0.29;10.5;0.04;21;145;0.9966;3.04;0.35;9.4;5
7;0.24;0.36;4.9;0.083;10;133;0.9942;3.33;0.37;10.8;6
6.6;0.27;0.3;1.9;0.025;14;153;0.9928;3.29;0.62;10.5;6
7.8;0.16;0.41;1.7;0.026;29;140;0.991;3.02;0.78;12.5;6
7.7;0.27;0.34;1.8;0.028;26;168;0.9911;2.99;0.48;12.1;7
7.4;0.31;0.74;10.7;0.039;51;147;0.9977;3.02;0.43;8.7;5
8;0.45;0.36;8.8;0.026;50;151;0.9927;3.07;0.25;12.7;8
7.7;0.27;0.34;1.8;0.028;26;168;0.9911;2.99;0.48;12.1;7
7.8;0.16;0.41;1.7;0.026;29;140;0.991;3.02;0.78;12.5;6
6.6;0.16;0.29;1.8;0.05;40;147;0.9912;3.06;0.44;11.4;7
8.3;0.21;0.4;1.6;0.032;35;110;0.9907;3.02;0.6;12.9;7
7.2;0.32;0.33;1.4;0.029;29;109;0.9902;3.15;0.51;12.8;7
6.6;0.16;0.3;1.6;0.034;15;78;0.992;3.38;0.44;11.2;6
8.4;0.16;0.33;1.5;0.033;16;98;0.994;3.14;0.42;9.7;6
7.5;0.23;0.32;9.2;0.038;54;191;0.9966;3.04;0.56;9.7;6
6.2;0.17;0.3;1.1;0.037;14;79;0.993;3.5;0.54;10.3;6
6.9;0.39;0.22;4.3;0.03;10;102;0.993;3;0.87;11.6;4
6.9;0.41;0.22;4.2;0.031;10;102;0.993;3;0.86;11.6;4
7.5;0.23;0.32;9.2;0.038;54;191;0.9966;3.04;0.56;9.7;6
7.5;0.38;0.33;5;0.045;30;131;0.9942;3.32;0.44;10.9;6
7.3;0.42;0.38;6.8;0.045;29;122;0.9925;3.19;0.37;12.6;7
7.3;0.34;0.39;5.2;0.04;45;163;0.9925;3.3;0.47;12.4;6
7.8;0.23;0.28;4.75;0.042;45;166;0.9928;2.96;0.4;11.5;5
9;0.245;0.38;5.9;0.045;52;159;0.995;2.93;0.35;10.2;6
6.9;0.2;0.4;7.7;0.032;51;176;0.9939;3.22;0.27;11.4;5
7.4;0.19;0.42;6.4;0.067;39;212;0.9958;3.3;0.33;9.6;6
8.2;0.2;0.36;8.1;0.035;60;163;0.9952;3.05;0.3;10.3;6
8;0.59;0.71;17.35;0.038;61;228;1;2.95;0.75;9.3;5
7.9;0.14;0.45;1.8;0.05;17;114;0.9948;3.33;0.49;10.7;7
6.8;0.24;0.4;1.8;0.047;34;105;0.99;3.13;0.49;12.8;8
9.7;0.14;0.59;1.5;0.049;23;142;0.9958;2.98;0.62;9.5;5
9.2;0.15;0.68;1.6;0.046;22;130;0.9948;3.02;0.45;10.4;6
9.4;0.17;0.55;1.6;0.049;14;94;0.9949;3.02;0.61;10.3;6
5.2;0.365;0.08;13.5;0.041;37;142;0.997;3.46;0.39;9.9;6
6.3;0.23;0.22;3.75;0.039;37;116;0.9927;3.23;0.5;10.7;6
9.6;0.25;0.54;1.3;0.04;16;160;0.9938;2.94;0.43;10.5;5
9.2;0.32;0.42;1.3;0.046;14;186;0.9949;3.08;0.48;9.6;5
6.4;0.31;0.4;6.2;0.04;46;169;0.9953;3.15;0.46;9.3;6
8.1;0.2;0.36;9.7;0.044;63;162;0.997;3.1;0.46;10;6
7.9;0.255;0.26;2;0.026;40;190;0.9932;3.04;0.39;11.2;6
7;0.15;0.34;1.4;0.039;21;177;0.9927;3.32;0.62;10.8;5
6.4;0.15;0.31;1.1;0.044;25;96;0.9932;3.54;0.51;10.3;6
6.4;0.25;0.53;6.6;0.038;59;234;0.9955;3.03;0.42;8.8;5
7.6;0.19;0.42;1.5;0.044;6;114;0.9914;3.04;0.74;12.8;6
7.3;0.43;0.37;4.6;0.028;17;114;0.991;3.23;0.43;13.2;6
5.1;0.31;0.3;0.9;0.037;28;152;0.992;3.54;0.56;10.1;6
6.2;0.2;0.26;1.7;0.093;40;161;0.9924;3.44;0.66;11;5
6.9;0.16;0.35;1.3;0.043;21;182;0.9927;3.25;0.62;10.8;6
7.7;0.32;0.48;2.3;0.04;28;114;0.9911;3.2;0.52;12.8;7
6.5;0.22;0.72;6.8;0.042;33;168;0.9958;3.12;0.36;9.2;6
6.8;0.26;0.33;1.5;0.047;44;167;0.9928;3.12;0.44;10.5;6
5.2;0.37;0.33;1.2;0.028;13;81;0.9902;3.37;0.38;11.7;6
8.4;0.19;0.43;2.1;0.052;20;104;0.994;2.85;0.46;9.5;5
8.3;0.21;0.41;2.2;0.05;24;108;0.994;2.85;0.45;9.5;5
6.8;0.15;0.32;8.8;0.058;24;110;0.9972;3.4;0.4;8.8;6
7.9;0.16;0.64;17;0.05;69;210;1.0004;3.15;0.51;9.3;7
7.8;0.21;0.39;1.8;0.034;62;180;0.991;3.09;0.75;12.6;8
9;0.24;0.5;1.2;0.048;26;107;0.9918;3.21;0.34;12.4;6
5.7;0.21;0.24;2.3;0.047;60;189;0.995;3.65;0.72;10.1;6
7.8;0.29;0.36;7;0.042;38;161;0.9941;3.26;0.37;11.2;8
6.7;0.18;0.3;6.4;0.048;40;251;0.9956;3.29;0.52;10;5
6.7;0.18;0.3;6.4;0.048;40;251;0.9956;3.29;0.52;10;5
8.4;0.58;0.27;12.15;0.033;37;116;0.9959;2.99;0.39;10.8;6
7.2;0.16;0.32;0.8;0.04;50;121;0.9922;3.27;0.33;10;6
7.6;0.54;0.23;2;0.029;13;151;0.9931;3.04;0.33;10.4;5
8.4;0.58;0.27;12.15;0.033;37;116;0.9959;2.99;0.39;10.8;6
6.6;0.25;0.31;12.4;0.059;52;181;0.9984;3.51;0.47;9.8;6
7.3;0.23;0.37;1.9;0.041;51;165;0.9908;3.26;0.4;12.2;8
7.3;0.39;0.37;1.1;0.043;36;113;0.991;3.39;0.48;12.7;8
7;0.46;0.39;6.2;0.039;46;163;0.9928;3.21;0.35;12.2;7
8.2;0.35;0.4;6.3;0.039;35;162;0.9936;3.15;0.34;11.9;7
7.8;0.29;0.36;7;0.042;38;161;0.9941;3.26;0.37;11.2;8
9.2;0.35;0.39;0.9;0.042;15;61;0.9924;2.96;0.28;10.4;4
8;0.57;0.39;3.9;0.034;22;122;0.9917;3.29;0.67;12.8;7
6.5;0.37;0.33;3.9;0.027;40;130;0.9906;3.28;0.39;12.7;7
5.7;0.21;0.24;2.3;0.047;60;189;0.995;3.65;0.72;10.1;6
6.7;0.18;0.3;6.4;0.048;40;251;0.9956;3.29;0.52;10;5
7.8;0.13;0.3;1.8;0.04;43;179;0.9955;3.43;0.41;9;5
7.6;0.19;0.41;1.1;0.04;38;143;0.9907;2.92;0.42;11.4;5
7.3;0.22;0.41;15.4;0.05;55;191;1;3.32;0.59;8.9;6
6.3;0.29;0.4;6.5;0.039;43;167;0.9953;3.15;0.44;9.3;6
6.8;0.35;0.32;2.4;0.048;35;103;0.9911;3.28;0.46;12;8
6.5;0.19;0.32;1.4;0.04;31;132;0.9922;3.36;0.54;10.8;7
6.2;0.12;0.26;5.7;0.044;56;158;0.9951;3.52;0.37;10.5;6
6;0.13;0.28;5.7;0.038;56;189.5;0.9948;3.59;0.43;10.6;7
6.4;0.25;0.33;1.4;0.04;42;115;0.9906;3.19;0.48;11.3;7
6.9;0.32;0.16;1.4;0.051;15;96;0.994;3.22;0.38;9.5;4
7.6;0.19;0.41;1.1;0.04;38;143;0.9907;2.92;0.42;11.4;5
6.7;0.13;0.28;1.2;0.046;35;140;0.9927;3.33;0.33;10.1;7
7;0.14;0.41;0.9;0.037;22;95;0.9914;3.25;0.43;10.9;6
7.6;0.27;0.24;3.8;0.058;19;115;0.9958;3.15;0.45;8.9;5
7.3;0.22;0.41;15.4;0.05;55;191;1;3.32;0.59;8.9;6
7.4;0.64;0.47;14.15;0.168;42;185;0.9984;2.9;0.49;9.3;5
7.6;0.28;0.39;1.9;0.052;23;116;0.9941;3.25;0.4;10.4;6
8.3;0.26;0.41;9.2;0.042;41;162;0.9944;3.1;0.38;12;7
10.7;0.22;0.56;8.2;0.044;37;181;0.998;2.87;0.68;9.5;6
10.7;0.22;0.56;8.2;0.044;37;181;0.998;2.87;0.68;9.5;6
6.9;0.23;0.34;2.7;0.032;24;121;0.9902;3.14;0.38;12.4;7
6.2;0.3;0.32;1.7;0.032;30;130;0.9911;3.28;0.41;11.2;7
6.9;0.27;0.41;1.7;0.047;6;134;0.9929;3.15;0.69;11.4;6
6.9;0.28;0.41;1.7;0.05;10;136;0.993;3.16;0.71;11.4;6
6.9;0.28;0.3;1.6;0.047;46;132;0.9918;3.35;0.38;11.1;7
6.9;0.46;0.2;0.9;0.054;5;126;0.992;3.1;0.42;10.4;6
6.9;0.38;0.32;8.5;0.044;36;152;0.9932;3.38;0.35;12;7
5.7;0.43;0.3;5.7;0.039;24;98;0.992;3.54;0.61;12.3;7
6.6;0.56;0.16;3.1;0.045;28;92;0.994;3.12;0.35;9.1;6
7.1;0.36;0.56;1.3;0.046;25;102;0.9923;3.24;0.33;10.5;6
6.8;0.23;0.4;1.6;0.047;5;133;0.993;3.23;0.7;11.4;6
6.2;0.33;0.29;1.3;0.042;26;138;0.9956;3.77;0.64;9.5;5
5.6;0.49;0.13;4.5;0.039;17;116;0.9907;3.42;0.9;13.7;7
6.6;0.42;0.33;2.8;0.034;15;85;0.99;3.28;0.51;13.4;6
7.3;0.18;0.29;1.2;0.044;12;143;0.9918;3.2;0.48;11.3;7
8.1;0.19;0.4;0.9;0.037;73;180;0.9926;3.06;0.34;10;6
5.9;0.19;0.26;7.4;0.034;33;123;0.995;3.49;0.42;10.1;6
6.2;0.16;0.47;1.4;0.029;23;81;0.99;3.26;0.42;12.2;6
6.6;0.42;0.33;2.8;0.034;15;85;0.99;3.28;0.51;13.4;6
5.7;0.135;0.3;4.6;0.042;19;101;0.9946;3.31;0.42;9.3;6
5.6;0.49;0.13;4.5;0.039;17;116;0.9907;3.42;0.9;13.7;7
6.9;0.19;0.33;1.6;0.039;27;98;0.9898;3.09;0.46;12.3;7
7.3;0.18;0.29;1.2;0.044;12;143;0.9918;3.2;0.48;11.3;7
7.3;0.25;0.36;13.1;0.05;35;200;0.9986;3.04;0.46;8.9;7
7.3;0.25;0.36;13.1;0.05;35;200;0.9986;3.04;0.46;8.9;7
7;0.2;0.34;5.7;0.035;32;83;0.9928;3.19;0.46;11.5;6
7.3;0.25;0.36;13.1;0.05;35;200;0.9986;3.04;0.46;8.9;7
6.3;0.67;0.48;12.6;0.052;57;222;0.9979;3.17;0.52;9.3;6
7.4;0.4;0.29;5.4;0.044;31;122;0.994;3.3;0.5;11.1;8
7.1;0.26;0.31;2.2;0.044;29;128;0.9937;3.34;0.64;10.9;8
9;0.31;0.48;6.6;0.043;11;73;0.9938;2.9;0.38;11.6;5
6.3;0.39;0.24;6.9;0.069;9;117;0.9942;3.15;0.35;10.2;4
8.2;0.22;0.36;6.8;0.034;12;90;0.9944;3.01;0.38;10.5;8
7.1;0.19;0.28;3.6;0.033;16;78;0.993;2.91;0.78;11.4;6
7.3;0.25;0.36;13.1;0.05;35;200;0.9986;3.04;0.46;8.9;7
7.9;0.2;0.34;1.2;0.04;29;118;0.9932;3.14;0.41;10.6;6
7.1;0.26;0.32;5.9;0.037;39;97;0.9934;3.31;0.4;11.6;6
7;0.2;0.34;5.7;0.035;32;83;0.9928;3.19;0.46;11.5;6
6.9;0.3;0.33;4.1;0.035;26;155;0.9925;3.25;0.79;12.3;8
8.1;0.29;0.49;7.1;0.042;22;124;0.9944;3.14;0.41;10.8;6
5.8;0.17;0.3;1.4;0.037;55;130;0.9909;3.29;0.38;11.3;6
5.9;0.415;0.02;0.8;0.038;22;63;0.9932;3.36;0.36;9.3;5
6.6;0.23;0.26;1.3;0.045;16;128;0.9934;3.36;0.6;10;6
8.6;0.55;0.35;15.55;0.057;35.5;366.5;1.0001;3.04;0.63;11;3
6.9;0.35;0.74;1;0.044;18;132;0.992;3.13;0.55;10.2;5
7.6;0.14;0.74;1.6;0.04;27;103;0.9916;3.07;0.4;10.8;7
9.2;0.28;0.49;11.8;0.042;29;137;0.998;3.1;0.34;10.1;4
6.2;0.18;0.49;4.5;0.047;17;90;0.9919;3.27;0.37;11.6;6
5.3;0.165;0.24;1.1;0.051;25;105;0.9925;3.32;0.47;9.1;5
9.8;0.25;0.74;10;0.056;36;225;0.9977;3.06;0.43;10;4
8.1;0.29;0.49;7.1;0.042;22;124;0.9944;3.14;0.41;10.8;6
6.8;0.22;0.49;0.9;0.052;26;128;0.991;3.25;0.35;11.4;6
7.2;0.22;0.49;1;0.045;34;140;0.99;3.05;0.34;12.7;6
7.4;0.25;0.49;1.1;0.042;35;156;0.9917;3.13;0.55;11.3;5
8.2;0.18;0.49;1.1;0.033;28;81;0.9923;3;0.68;10.4;7
6.1;0.22;0.49;1.5;0.051;18;87;0.9928;3.3;0.46;9.6;5
7;0.39;0.24;1;0.048;8;119;0.9923;3;0.31;10.1;4
6.1;0.22;0.49;1.5;0.051;18;87;0.9928;3.3;0.46;9.6;5
6.5;0.36;0.49;2.9;0.03;16;94;0.9902;3.1;0.49;12.1;7
7.1;0.29;0.49;1.2;0.031;32;99;0.9893;3.07;0.33;12.2;6
7.4;0.25;0.49;1.1;0.042;35;156;0.9917;3.13;0.55;11.3;5
6.9;0.23;0.24;14.2;0.053;19;94;0.9982;3.17;0.5;9.6;5
8.5;0.56;0.74;17.85;0.051;51;243;1.0005;2.99;0.7;9.2;5
8.2;0.18;0.49;1.1;0.033;28;81;0.9923;3;0.68;10.4;7
6.3;0.23;0.49;7.1;0.05;67;210;0.9951;3.23;0.34;9.5;5
6.1;0.25;0.49;7.6;0.052;67;226;0.9956;3.16;0.47;8.9;5
7.2;0.26;0.74;13.6;0.05;56;162;0.998;3.03;0.44;8.8;5
7.2;0.31;0.24;1.4;0.057;17;117;0.9928;3.16;0.35;10.5;5
8;0.25;0.49;1.2;0.061;27;117;0.9938;3.08;0.34;9.4;5
7;0.18;0.49;5.3;0.04;34;125;0.9914;3.24;0.4;12.2;6
7.8;0.43;0.49;13;0.033;37;158;0.9955;3.14;0.35;11.3;6
8.3;0.2;0.74;4.45;0.044;33;130;0.9924;3.25;0.42;12.2;6
6.3;0.27;0.49;1.2;0.063;35;92;0.9911;3.38;0.42;12.2;6
7.4;0.16;0.49;1.2;0.055;18;150;0.9917;3.23;0.47;11.2;6
7.4;0.16;0.49;1.2;0.055;18;150;0.9917;3.23;0.47;11.2;6
6.9;0.19;0.49;6.6;0.036;49;172;0.9932;3.2;0.27;11.5;6
7.8;0.43;0.49;13;0.033;37;158;0.9955;3.14;0.35;11.3;6
7.2;0.4;0.49;1.1;0.048;11;138;0.9929;3.01;0.42;9.3;5
7.8;0.43;0.49;13;0.033;37;158;0.9955;3.14;0.35;11.3;6
7.6;0.52;0.49;14;0.034;37;156;0.9958;3.14;0.38;11.8;7
8.3;0.21;0.49;19.8;0.054;50;231;1.0012;2.99;0.54;9.2;5
6.9;0.34;0.74;11.2;0.069;44;150;0.9968;3;0.81;9.2;5
6.3;0.27;0.49;1.2;0.063;35;92;0.9911;3.38;0.42;12.2;6
8.3;0.2;0.74;4.45;0.044;33;130;0.9924;3.25;0.42;12.2;6
7.1;0.22;0.74;2.7;0.044;42;144;0.991;3.31;0.41;12.2;6
7.9;0.11;0.49;4.5;0.048;27;133;0.9946;3.24;0.42;10.6;6
8.5;0.17;0.74;3.6;0.05;29;128;0.9928;3.28;0.4;12.4;6
6.4;0.145;0.49;5.4;0.048;54;164;0.9946;3.56;0.44;10.8;6
7.4;0.16;0.49;1.2;0.055;18;150;0.9917;3.23;0.47;11.2;6
8.3;0.19;0.49;1.2;0.051;11;137;0.9918;3.06;0.46;11;6
8;0.44;0.49;9.1;0.031;46;151;0.9926;3.16;0.27;12.7;8
7;0.2;0.74;0.8;0.044;19;163;0.9931;3.46;0.53;10.2;5
6.9;0.19;0.49;6.6;0.036;49;172;0.9932;3.2;0.27;11.5;6
7.1;0.25;0.49;3;0.03;30;96;0.9903;3.13;0.39;12.3;7
6.5;0.24;0.24;1.6;0.046;15;60;0.9928;3.19;0.39;9.8;5
7.2;0.4;0.49;1.1;0.048;11;138;0.9929;3.01;0.42;9.3;5
7.6;0.52;0.49;14;0.034;37;156;0.9958;3.14;0.38;11.8;7
7.8;0.43;0.49;13;0.033;37;158;0.9955;3.14;0.35;11.3;6
7.8;0.21;0.49;1.35;0.052;6;48;0.9911;3.15;0.28;11.4;5
7;0.2;0.49;5.9;0.038;39;128;0.9938;3.21;0.48;10.8;6
6.9;0.25;0.24;3.6;0.057;13;85;0.9942;2.99;0.48;9.5;4
7.2;0.08;0.49;1.3;0.05;18;148;0.9945;3.46;0.44;10.2;6
7.1;0.85;0.49;8.7;0.028;40;184;0.9962;3.22;0.36;10.7;5
7.6;0.51;0.24;1.2;0.04;10;104;0.992;3.05;0.29;10.8;6
7.9;0.22;0.24;4.6;0.044;39;159;0.9927;2.99;0.28;11.5;6
7.7;0.16;0.49;2;0.056;20;124;0.9948;3.32;0.49;10.7;6
7.2;0.08;0.49;1.3;0.05;18;148;0.9945;3.46;0.44;10.2;6
6.6;0.25;0.24;1.7;0.048;26;124;0.9942;3.37;0.6;10.1;6
6.7;0.16;0.49;2.4;0.046;57;187;0.9952;3.62;0.81;10.4;6
6.9;0.25;0.24;3.6;0.057;13;85;0.9942;2.99;0.48;9.5;4
7.5;0.32;0.24;4.6;0.053;8;134;0.9958;3.14;0.5;9.1;3
7.4;0.28;0.49;1.5;0.034;20;126;0.9918;2.98;0.39;10.6;6
6.2;0.15;0.49;0.9;0.033;17;51;0.9932;3.3;0.7;9.4;6
6.7;0.25;0.74;19.4;0.054;44;169;1.0004;3.51;0.45;9.8;6
6.5;0.26;0.74;13.3;0.044;68;224;0.9972;3.18;0.54;9.5;6
7.9;0.16;0.74;17.85;0.037;52;187;0.9998;2.99;0.41;9.3;5
5.6;0.185;0.49;1.1;0.03;28;117;0.9918;3.55;0.45;10.3;6
7.5;0.2;0.49;1.3;0.031;8;97;0.9918;3.06;0.62;11.1;5
8;0.3;0.49;9.4;0.046;47;188;0.9964;3.14;0.48;10;5
8;0.34;0.49;9;0.033;39;180;0.9936;3.13;0.38;12.3;8
7.7;0.35;0.49;8.65;0.033;42;186;0.9931;3.14;0.38;12.4;8
7.6;0.29;0.49;9.6;0.03;45;197;0.9938;3.13;0.38;12.3;7
6.7;0.62;0.24;1.1;0.039;6;62;0.9934;3.41;0.32;10.4;5
6.8;0.27;0.49;1.2;0.044;35;126;0.99;3.13;0.48;12.1;7
7.7;0.27;0.49;1.8;0.041;23;86;0.9914;3.16;0.42;12.5;6
6.7;0.51;0.24;2.1;0.043;14;155;0.9904;3.22;0.6;13;6
7.4;0.19;0.49;9.3;0.03;26;132;0.994;2.99;0.32;11;7
8.3;0.2;0.49;1.7;0.04;34;169;0.9938;3.05;0.37;10.1;5
6.6;0.3;0.24;1.2;0.034;17;121;0.9933;3.13;0.36;9.2;5
6.8;0.36;0.24;4.6;0.039;24;124;0.9909;3.27;0.34;12.6;7
7;0.17;0.74;12.8;0.045;24;126;0.9942;3.26;0.38;12.2;8
9.2;0.18;0.49;1.5;0.041;39;130;0.9945;3.04;0.49;9.8;7
8.1;0.2;0.49;8.1;0.051;51;205;0.9954;3.1;0.52;11;6
7.8;0.26;0.74;7.5;0.044;59;160;0.996;3.22;0.64;10;6
6.8;0.21;0.49;14.5;0.06;50;170;0.9991;3.55;0.44;9.8;6
7.9;0.2;0.49;1.6;0.053;15;144;0.993;3.16;0.47;10.5;5
8;0.18;0.49;1.8;0.061;10;145;0.9942;3.23;0.48;10;5
8.8;0.23;0.74;3.2;0.042;15;126;0.9934;3.02;0.51;11.2;6
7.3;0.22;0.49;9.4;0.034;29;134;0.9939;2.99;0.32;11;7
7.3;0.22;0.49;9.9;0.031;48;161;0.9937;3.01;0.28;11.2;6
7.4;0.19;0.49;9.3;0.03;26;132;0.994;2.99;0.32;11;7
7.3;0.155;0.49;1.3;0.039;34;136;0.9926;3.14;0.77;10.5;6
8.2;0.22;0.49;9.6;0.037;53;154;0.9951;3.02;0.33;10.6;6
8.2;0.24;0.49;9.3;0.038;52;163;0.9952;3.02;0.33;10.6;6
8.4;0.23;0.49;7.8;0.035;22;95;0.9935;3.04;0.34;12;6
8.3;0.2;0.49;1.7;0.04;34;169;0.9938;3.05;0.37;10.1;5
8.3;0.2;0.49;1.7;0.038;38;167;0.9939;3.05;0.37;10.1;6
6.6;0.3;0.24;1.2;0.034;17;121;0.9933;3.13;0.36;9.2;5
6.9;0.21;0.49;1.4;0.041;15;164;0.9927;3.25;0.63;11;5
8;0.25;0.49;9;0.044;31;185;0.998;3.34;0.49;10;6
6.6;0.21;0.49;18.15;0.042;41;158;0.9997;3.28;0.39;8.7;6
7.2;0.27;0.74;12.5;0.037;47;156;0.9981;3.04;0.44;8.7;5
14.2;0.27;0.49;1.1;0.037;33;156;0.992;3.15;0.54;11.1;6
7.9;0.28;0.49;7.7;0.045;48;195;0.9954;3.04;0.55;11;6
7.4;0.27;0.49;1.1;0.037;33;156;0.992;3.15;0.54;11.1;6
6.6;0.21;0.49;18.15;0.042;41;158;0.9997;3.28;0.39;8.7;6
7.2;0.27;0.74;12.5;0.037;47;156;0.9981;3.04;0.44;8.7;5
8.1;0.3;0.49;8.1;0.037;26;174;0.9943;3.1;0.3;11.2;7
7.5;0.23;0.49;7.7;0.049;61;209;0.9941;3.14;0.3;11.1;7
7.3;0.26;0.49;5;0.028;32;107;0.9936;3.24;0.54;10.8;6
7.1;0.18;0.74;15.6;0.044;44;176;0.9996;3.38;0.67;9;6
8.5;0.15;0.49;1.5;0.031;17;122;0.9932;3.03;0.4;10.3;6
8.9;0.13;0.49;1;0.028;6;24;0.9926;2.91;0.32;9.9;5
8.1;0.28;0.49;1;0.04;32;148;0.9936;3.13;0.41;10;6
6;0.17;0.49;1;0.034;26;106;0.992;3.21;0.42;9.8;6
7.3;0.26;0.49;5;0.028;32;107;0.9936;3.24;0.54;10.8;6
7.1;0.18;0.74;15.6;0.044;44;176;0.9996;3.38;0.67;9;6
7.1;0.53;0.24;0.8;0.029;29;86;0.993;3.16;0.32;9.1;4
7.2;0.16;0.49;1.3;0.037;27;104;0.9924;3.23;0.57;10.6;6
7.3;0.14;0.49;1.1;0.038;28;99;0.9928;3.2;0.72;10.6;6
8.9;0.13;0.49;1;0.028;6;24;0.9926;2.91;0.32;9.9;5
7.9;0.12;0.49;5.2;0.049;33;152;0.9952;3.18;0.47;10.6;6
6.7;0.29;0.49;4.7;0.034;35;156;0.9945;3.13;0.45;9.9;6
6.7;0.3;0.49;4.8;0.034;36;158;0.9945;3.12;0.45;9.9;6
7.1;0.36;0.24;1.8;0.025;32;102;0.9903;3.34;0.59;12.8;6
8.5;0.15;0.49;1.5;0.031;17;122;0.9932;3.03;0.4;10.3;6
7.9;0.18;0.49;5.2;0.051;36;157;0.9953;3.18;0.48;10.6;6
6.6;0.19;0.99;1.2;0.122;45;129;0.9936;3.09;0.31;8.7;6
7.3;0.21;0.49;1.8;0.038;44;152;0.9912;3.32;0.44;12.6;7
6.9;0.3;0.49;7.6;0.057;25;156;0.9962;3.43;0.63;11;7
7.9;0.42;0.49;8.2;0.056;32;164;0.9965;3.29;0.6;11.2;7
6.9;0.24;0.49;1.3;0.032;35;148;0.9932;3.45;0.57;10.7;7
7.6;0.23;0.49;10;0.036;45;182;0.9967;3.08;0.58;9.6;6
7.9;0.18;0.49;5.2;0.051;36;157;0.9953;3.18;0.48;10.6;6
6.2;0.43;0.49;6.4;0.045;12;115;0.9963;3.27;0.57;9;4
8.8;0.35;0.49;1;0.036;14;56;0.992;2.96;0.33;10.5;4
7.8;0.3;0.74;1.8;0.033;33;156;0.991;3.29;0.52;12.8;6
9.1;0.28;0.49;2;0.059;10;112;0.9958;3.15;0.46;10.1;5
7.1;0.34;0.49;1.5;0.027;26;126;0.99;3.3;0.33;12.2;7
7.8;0.3;0.74;1.8;0.033;33;156;0.991;3.29;0.52;12.8;6
9.1;0.28;0.49;2;0.059;10;112;0.9958;3.15;0.46;10.1;5
8.5;0.19;0.49;3.5;0.044;29;117;0.9938;3.14;0.51;10.1;6
7.6;0.18;0.49;18.05;0.046;36;158;0.9996;3.06;0.41;9.2;5
7.5;0.19;0.49;1.8;0.055;19;110;0.9946;3.33;0.44;9.9;5
7.4;0.3;0.49;8.2;0.055;49;188;0.9974;3.52;0.58;9.7;6
6.7;0.3;0.74;5;0.038;35;157;0.9945;3.21;0.46;9.9;5
6.6;0.3;0.74;4.6;0.041;36;159;0.9946;3.21;0.45;9.9;5
7.4;0.3;0.49;8.2;0.055;49;188;0.9974;3.52;0.58;9.7;6
6.9;0.22;0.49;7;0.063;50;168;0.9957;3.54;0.5;10.3;6
7.8;0.26;0.49;3.1;0.045;21;116;0.9931;3.16;0.35;10.3;5
8.5;0.17;0.49;8.8;0.048;23;108;0.9947;2.88;0.34;10.5;4
6.8;0.17;0.74;2.4;0.053;61;182;0.9953;3.63;0.76;10.5;6
6.2;0.27;0.49;1.4;0.05;20;74;0.9931;3.32;0.44;9.8;6
7.1;0.64;0.49;1.8;0.05;17;128;0.9946;3.31;0.58;10.6;4
6.4;0.18;0.74;11.9;0.046;54;168;0.9978;3.58;0.68;10.1;5
7.6;0.31;0.49;13.4;0.062;50;191;0.9989;3.22;0.53;9;4
9.8;0.31;0.49;15.4;0.046;13;119;1.0004;3.18;0.45;9.5;5
9;0.3;0.49;7.2;0.039;32;84;0.9938;2.94;0.32;11.5;6
8.4;0.24;0.49;7.4;0.039;46;108;0.9934;3.03;0.33;11.9;7
6.4;0.18;0.74;11.9;0.046;54;168;0.9978;3.58;0.68;10.1;5
6.4;0.25;0.74;7.8;0.045;52;209;0.9956;3.21;0.42;9.2;6
7.3;0.3;0.74;13.5;0.039;46;165;0.9982;3.02;0.4;8.7;5
9.3;0.31;0.49;1.3;0.042;34;147;0.9948;3.11;0.46;9.8;5
6.4;0.25;0.74;7.8;0.045;52;209;0.9956;3.21;0.42;9.2;6
7.3;0.3;0.74;13.5;0.039;46;165;0.9982;3.02;0.4;8.7;5
7;0.27;0.74;1.5;0.036;27;122;0.9926;3.35;0.48;11.2;6
7.9;0.14;0.74;1.2;0.028;30;165;0.991;3.08;0.82;12.3;6
6.4;0.12;0.49;6.4;0.042;49;161;0.9945;3.34;0.44;10.4;6
6.8;0.21;0.74;1.2;0.047;25;111;0.9916;3.13;0.41;10.7;6
8.6;0.16;0.49;7.3;0.043;9;63;0.9953;3.13;0.59;10.5;6
7;0.29;0.49;3.8;0.047;37;136;0.9938;2.95;0.4;9.4;6
6.4;0.27;0.49;7.3;0.046;53;206;0.9956;3.24;0.43;9.2;6
6.6;0.55;0.01;2.7;0.034;56;122;0.9906;3.15;0.3;11.9;5
6.4;0.27;0.49;7.3;0.046;53;206;0.9956;3.24;0.43;9.2;6
6.3;0.24;0.74;1.4;0.172;24;108;0.9932;3.27;0.39;9.9;6
6.7;0.33;0.49;1.6;0.167;20;94;0.9914;3.11;0.5;11.4;6
7;0.29;0.49;3.8;0.047;37;136;0.9938;2.95;0.4;9.4;6
8.2;0.34;0.49;8;0.046;55;223;0.996;3.08;0.52;10.7;6
5.6;0.39;0.24;4.7;0.034;27;77;0.9906;3.28;0.36;12.7;5
5.6;0.41;0.24;1.9;0.034;10;53;0.98815;3.32;0.5;13.5;7
6.7;0.41;0.01;2.8;0.048;39;137;0.9942;3.24;0.35;9.5;5
7.1;0.26;0.49;2.2;0.032;31;113;0.9903;3.37;0.42;12.9;9
7.5;0.32;0.49;1.7;0.031;44;109;0.9906;3.07;0.46;12.5;6
5.8;0.19;0.49;4.9;0.04;44;118;0.9935;3.34;0.38;9.5;7
6.9;0.27;0.49;23.5;0.057;59;235;1.0024;2.98;0.47;8.6;5
8.1;0.2;0.49;11.8;0.048;46;212;0.9968;3.09;0.46;10;7
7.5;0.32;0.49;1.7;0.031;44;109;0.9906;3.07;0.46;12.5;6
8.2;0.26;0.49;5.2;0.04;19;100;0.9941;3.12;0.34;10.1;6
7.8;0.26;0.49;3.2;0.027;28;87;0.9919;3.03;0.32;11.3;7
8;0.14;0.49;1.5;0.035;42;120;0.9928;3.26;0.4;10.6;7
8;0.29;0.49;11.7;0.035;40;131;0.9958;3.14;0.34;10.8;5
7.5;0.19;0.49;1.6;0.047;42;140;0.9932;3.4;0.47;10.7;6
6.9;0.34;0.49;7.3;0.045;61;206;0.9957;3.09;0.4;9;6
6.2;0.2;0.49;1.6;0.065;17;143;0.9937;3.22;0.52;9.2;6
6.4;0.37;0.49;13.3;0.045;53;243;0.9982;3.14;0.48;8.5;6
6.2;0.22;0.49;6;0.029;31;128;0.9928;3.41;0.36;11.3;8
7.8;0.26;0.49;3.2;0.027;28;87;0.9919;3.03;0.32;11.3;7
8.9;0.32;0.49;1.6;0.05;17;131;0.9956;3.13;0.34;9.4;5
6.5;0.44;0.49;7.7;0.045;16;169;0.9957;3.11;0.37;8.7;6
7;0.14;0.49;5.9;0.053;22;118;0.9954;3.36;0.36;9.4;6
9;0.17;0.49;1;0.039;46;131;0.993;3.09;0.51;10.5;7
6.4;0.26;0.49;6.4;0.037;37;161;0.9954;3.38;0.53;9.7;6
9;0.22;0.49;10.4;0.048;52;195;0.9987;3.31;0.44;10.2;6
8.9;0.32;0.49;1.6;0.05;17;131;0.9956;3.13;0.34;9.4;5
8.2;0.2;0.49;3.5;0.057;14;108;0.9928;3.19;0.35;11.5;6
7.8;0.15;0.24;7.7;0.047;21;98;0.9951;2.94;0.31;9.6;6
6.9;0.25;0.24;1.8;0.053;6;121;0.993;3.23;0.7;11.4;5
8.2;0.2;0.49;3.5;0.057;14;108;0.9928;3.19;0.35;11.5;6
7.1;0.28;0.49;6.5;0.041;28;111;0.9926;3.41;0.58;12.2;8
7.4;0.19;0.49;6.7;0.037;15;110;0.9938;3.2;0.38;11;7
8.3;0.25;0.49;16.8;0.048;50;228;1.0001;3.03;0.52;9.2;6
7.5;0.14;0.74;1.6;0.035;21;126;0.9933;3.26;0.45;10.2;6
7.8;0.49;0.49;7;0.043;29;149;0.9952;3.21;0.33;10;5
8.1;0.12;0.49;1.2;0.042;43;160;0.9934;3.13;0.48;9.7;6
7.6;0.47;0.49;13;0.239;42;220;0.9988;2.96;0.51;9.2;5
7.9;0.22;0.49;3.8;0.042;26;105;0.993;3.1;0.39;10.5;5
7.8;0.49;0.49;7;0.043;29;149;0.9952;3.21;0.33;10;5
6.4;0.22;0.49;7.5;0.054;42;151;0.9948;3.27;0.52;10.1;6
7.3;0.19;0.49;15.55;0.058;50;134;0.9998;3.42;0.36;9.1;7
8.1;0.3;0.49;12.3;0.049;50;144;0.9971;3.09;0.57;10.2;7
7.3;0.19;0.49;15.55;0.058;50;134;0.9998;3.42;0.36;9.1;7
7.5;0.24;0.49;9.4;0.048;50;149;0.9962;3.17;0.59;10.5;7
6.4;0.22;0.49;7.5;0.054;42;151;0.9948;3.27;0.52;10.1;6
7.8;0.21;0.49;1.2;0.036;20;99;0.99;3.05;0.28;12.1;7
7.1;0.3;0.49;1.6;0.045;31;100;0.9942;3.4;0.59;10.2;5
6.9;0.26;0.49;1.6;0.058;39;166;0.9965;3.65;0.52;9.4;4
7.6;0.31;0.49;3.95;0.044;27;131;0.9912;3.08;0.67;12.8;7
6.4;0.42;0.74;12.8;0.076;48;209;0.9978;3.12;0.58;9;6
8.2;0.29;0.49;1;0.044;29;118;0.9928;3.24;0.36;10.9;4
7.9;0.33;0.28;31.6;0.053;35;176;1.0103;3.15;0.38;8.8;6
6.6;0.46;0.49;7.4;0.052;19;184;0.9956;3.11;0.38;9;5
7.8;0.28;0.49;1.3;0.046;27;142;0.9936;3.09;0.59;10.2;5
5.8;0.15;0.49;1.1;0.048;21;98;0.9929;3.19;0.48;9.2;5
7.8;0.4;0.49;7.8;0.06;34;162;0.9966;3.26;0.58;11.3;6
6.6;0.31;0.49;7.7;0.05;52;220;0.9964;3.12;0.45;8.8;5
6.6;0.325;0.49;7.7;0.049;53;217;0.996;3.16;0.4;9.3;5
6.6;0.27;0.49;7.8;0.049;62;217;0.9959;3.17;0.45;9.4;6
6.7;0.26;0.49;8.3;0.047;54;191;0.9954;3.23;0.4;10.3;6
6.7;0.21;0.49;1.4;0.047;30;114;0.9914;2.92;0.42;10.8;7
7.9;0.33;0.28;31.6;0.053;35;176;1.0103;3.15;0.38;8.8;6
8.1;0.28;0.46;15.4;0.059;32;177;1.0004;3.27;0.58;9;4
6.5;0.13;0.37;1;0.036;48;114;0.9911;3.41;0.51;11.5;8
7.8;0.445;0.56;1;0.04;8;84;0.9938;3.25;0.43;10.8;5
8.8;0.39;0.34;5.9;0.055;33;128;0.9927;2.95;0.51;11.8;6
7.9;0.18;0.33;1.2;0.033;20;72;0.9922;3.12;0.38;10.5;7
7.1;0.31;0.38;1.2;0.036;10;124;0.9924;3.14;0.44;9.9;6
7.8;0.24;0.18;6.7;0.046;33;160;0.9963;3.2;0.56;9.8;6
7;0.35;0.3;6.5;0.028;27;87;0.9936;3.4;0.42;11.4;7
6.6;0.26;0.31;4.8;0.138;41;168;0.9951;3.2;0.38;9.3;5
6.6;0.27;0.31;5.3;0.137;35;163;0.9951;3.2;0.38;9.3;5
6.8;0.22;0.29;8.9;0.046;82;188;0.9955;3.3;0.44;10.3;6
6.2;0.27;0.32;8.8;0.047;65;224;0.9961;3.17;0.47;8.9;5
7;0.35;0.3;6.5;0.028;27;87;0.9936;3.4;0.42;11.4;7
7.3;0.23;0.37;1.8;0.032;60;156;0.992;3.11;0.35;11.1;6
6.2;0.3;0.2;6.6;0.045;42;170;0.9944;3.36;0.45;10.4;6
6.4;0.35;0.2;5.7;0.034;18;117;0.9944;3.33;0.43;10.1;5
7.6;0.32;0.34;18.35;0.054;44;197;1.0008;3.22;0.55;9;5
6.3;0.31;0.3;10;0.046;49;212;0.9962;3.74;0.55;11.9;6
7.2;0.25;0.28;14.4;0.055;55;205;0.9986;3.12;0.38;9;7
7.2;0.25;0.28;14.4;0.055;55;205;0.9986;3.12;0.38;9;7
7.3;0.26;0.33;17.85;0.049;41.5;195;1;3.06;0.44;9.1;7
7.2;0.25;0.28;14.4;0.055;55;205;0.9986;3.12;0.38;9;7
7.4;0.26;0.37;9.4;0.047;42;147;0.9982;3.46;0.72;10;5
7.3;0.26;0.33;17.85;0.049;41.5;195;1;3.06;0.44;9.1;7
6.7;0.25;0.26;1.55;0.041;118.5;216;0.9949;3.55;0.63;9.4;3
7.1;0.16;0.25;1.3;0.034;28;123;0.9915;3.27;0.55;11.4;6
9;0.43;0.3;1.5;0.05;7;175;0.9951;3.11;0.45;9.7;4
7.2;0.25;0.28;14.4;0.055;55;205;0.9986;3.12;0.38;9;7
7;0.24;0.3;4.2;0.04;41;213;0.9927;3.28;0.49;11.8;6
6.7;0.265;0.22;8.6;0.048;54;198;0.9955;3.25;0.41;10.2;5
7.7;0.12;0.32;1.4;0.06;47;150;0.9952;3.37;0.42;9.2;6
7.2;0.21;0.33;3;0.036;35;132;0.9928;3.25;0.4;11;6
8.5;0.32;0.36;14.9;0.041;47;190;0.9982;3.08;0.31;10;6
6.9;0.18;0.3;2;0.038;39;190;0.9914;3.32;0.37;12.2;6
7;0.24;0.3;4.2;0.04;41;213;0.9927;3.28;0.49;11.8;6
6.3;0.26;0.29;2.2;0.043;35;175;0.9918;3.38;0.43;11.6;6
6.7;0.26;0.3;1.8;0.043;25;121;0.9944;3.44;0.61;1
gitextract_gjqzpqql/
├── README.md
├── bonus/
│ └── Dockerfile
├── data/
│ ├── day1/
│ │ ├── iris.csv
│ │ └── regression.csv
│ ├── day11/
│ │ └── credit.csv
│ ├── day15/
│ │ └── jobclass.csv
│ ├── day2/
│ │ └── automobile.csv
│ ├── day3/
│ │ └── haberman.csv
│ ├── day6/
│ │ └── glass.csv
│ ├── day7/
│ │ └── winequality-white.csv
│ └── day9/
│ └── banknote_authentication.csv
├── day01/
│ ├── .ipynb_checkpoints/
│ │ ├── BlackBox Takeaways-checkpoint.ipynb
│ │ └── Pandas(1-5)-checkpoint.ipynb
│ ├── BlackBox Takeaways.ipynb
│ ├── Linear Regression.ipynb
│ ├── Pandas(1-5).ipynb
│ └── README.md
├── day02/
│ ├── Data Spread.ipynb
│ ├── Multivariate Regression.ipynb
│ ├── Pandas(6-10).ipynb
│ └── README.md
├── day03/
│ ├── Logistic Regression.ipynb
│ ├── Pandas(11-15).ipynb
│ ├── README.md
│ └── Visualization.ipynb
├── day04/
│ ├── .ipynb_checkpoints/
│ │ └── Pandas(16-18)-checkpoint.ipynb
│ ├── Pandas(16-18).ipynb
│ └── README.md
├── day06/
│ ├── K-NearestNeighbours.ipynb
│ ├── Pandas(23-26).ipynb
│ └── README.md
├── day07/
│ ├── Numpy.ipynb
│ └── README.md
├── day08/
│ ├── README.md
│ └── Titanic.ipynb
├── day09/
│ ├── Lime.ipynb
│ ├── README.md
│ └── SVM.ipynb
├── day10/
│ ├── Average Ensemble Models.ipynb
│ └── README.md
├── day11/
│ ├── Feature Scaling.ipynb
│ └── README.md
├── day12/
│ ├── Decision Trees.ipynb
│ └── README.md
├── day13/
│ ├── Missing Values (Basics).ipynb
│ └── README.md
├── day15/
│ ├── Model Stacking.ipynb
│ └── README.md
├── day16/
│ └── Missing Value Imputations + Accuracy Measure.ipynb
├── day18/
│ ├── Pandas(Scraper).ipynb
│ └── README.md
├── day19/
│ ├── FeatureSelection.ipynb
│ └── README.md
├── day20/
│ ├── .ipynb_checkpoints/
│ │ └── Tqdm-checkpoint.ipynb
│ ├── README.md
│ ├── Resampling.ipynb
│ └── Tqdm.ipynb
├── day21/
│ ├── README.md
│ └── Save-Load.ipynb
├── day22/
│ └── pytorch.py
├── day27/
│ ├── cartpole.py
│ ├── cartpole_monitor.py
│ └── gym_pre.py
├── day28/
│ ├── tensorboard_pre.py
│ └── torch_pre.py
├── day31/
│ ├── cross-entropy-tensorboard.py
│ └── cross-entropy.py
├── day33/
│ └── Matplotlib.ipynb
└── day39/
├── Agglomerative.ipynb
└── README.md
SYMBOL INDEX (13 symbols across 3 files)
FILE: day28/torch_pre.py
class OurModule (line 29) | class OurModule(nn.Module):
method __init__ (line 31) | def __init__(self, inp, classes, dropout):
method forward (line 43) | def forward(self, x):
FILE: day31/cross-entropy-tensorboard.py
class MyNet (line 24) | class MyNet(nn.Module):
method __init__ (line 26) | def __init__(self, obs_dim, actions):
method forward (line 34) | def forward(self, x):
function iterate_batches (line 37) | def iterate_batches(env, net, batch_size):
function filter_batch (line 61) | def filter_batch(batch, percent):
FILE: day31/cross-entropy.py
class MyNet (line 23) | class MyNet(nn.Module):
method __init__ (line 25) | def __init__(self, obs_dim, actions):
method forward (line 35) | def forward(self, x):
function iterate_batches (line 38) | def iterate_batches(env, net, batch_size):
function filter_batch (line 62) | def filter_batch(batch, percent):
About this extraction
This page contains the full source code of the prakhar21/100-Days-of-ML GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 70 files (5.9 MB), approximately 1.5M tokens, and a symbol index with 13 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.
Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.